1
0
Fork 0
ncpn/Cargo.toml

31 lines
1.1 KiB
TOML

[package]
name = "ncpn"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7.5", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing", "query", "form"] }
axum-extra = { version = "0.9.3", features = ["async-read-body"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "clock"] }
eyre = "0.6.12"
figment = { version = "0.10.19", features = ["env", "toml"] }
http = "1.1.0"
maud = { version = "0.26.0", features = ["axum"] }
memory-serve = "0.4.5"
serde = { version = "1.0.203", features = ["derive"] }
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "uuid"] }
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
tower-http = { version = "0.5.2", features = ["trace", "fs"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
ulid = { version = "1.1.2", features = ["uuid", "serde"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = "1.8.0"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"