Registry / RepositoryTypeScriptRustPython
Rollpie
ReadmeFiles
Versions
Info
Download
0.1.280.1 KB2026-09-140.1.167.6 KB2026-09-140.1.064.9 KB2026-09-14
Version
0.1.2
Copyright
Rollpie, Irohabook
Publisher
math
Published
2026-09-14
Size
80.1 KB
Downloads
1
Checksum
65387e928cd11d6abf76cfb0f7a839dd3b2b7bb9cdbe78e7b058d3213d9fbcc2
Dependencies
None

Cargo.toml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "mon"
version = "0.1.2"
edition = "2024"
description = "A Rust library that adds JSON errors, extractors, HTML, static files, a relay and sessions to axum."
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["axum", "server", "session", "sqlite", "proxy"]
categories = ["web-programming::http-server"]
exclude = ["static", "migration", "*.db", "*.db-shm", "*.db-wal"]

[dependencies]
anyhow = "1"
axum = {version = "0.8", features = ["macros"]}
chrono = {version = "0.4", features = ["serde"]}
getrandom = "0.4"
hyper = {version = "1", features = ["http1", "server"]}
hyper-util = {version = "0.1", features = ["tokio", "service"]}
reqwest = {version = "0.13", features = ["stream"]}
serde = {version = "1", features = ["derive"]}
serde_json = "1"
sha2 = "0.10"
sqlx = {version = "0.8", features = [
    "runtime-tokio",
    "tls-none",
    "sqlite",
    "chrono",
]}
thiserror = "2"
tokio = {version = "1", features = ["rt-multi-thread", "macros", "net", "signal", "fs", "time", "sync"]}
tower = {version = "0.5", features = ["util"]}
tower-http = {version = "0.7", features = [
    "trace",
    "cors",
    "request-id",
    "compression-gzip",
    "compression-br",
    "catch-panic",
    "fs",
    "limit",
    "set-header",
]}
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}

[dev-dependencies]
futures-util = "0.3"
tokio = {version = "1", features = ["io-util"]}
# 次の 2 つは examples/todo.rs だけが使う。ライブラリを使う側のビルドには入らない
sqlx = {version = "0.8", features = ["derive", "uuid"]}
uuid = {version = "1", features = ["v7", "serde"]}

# デバッグ情報を持たせない。macOS の dev は情報を .o に残したままにするので、target が膨らむ
[profile.dev]
debug = false

[profile.release]
lto = "fat"
codegen-units = 1
strip = true