2024-01-30 19:27:14 +01:00
|
|
|
[package]
|
|
|
|
name = "ncpn"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-14 22:02:46 +02:00
|
|
|
axum = { version = "0.7.5", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing"] }
|
2024-04-16 22:07:00 +02:00
|
|
|
axum-extra = { version = "0.9.3", features = ["async-read-body", "typed-header"] }
|
2024-04-14 22:02:46 +02:00
|
|
|
bytes = "1.6.0"
|
|
|
|
eyre = "0.6.12"
|
|
|
|
figment = { version = "0.10.15", features = ["env", "toml"] }
|
2024-02-03 14:46:18 +01:00
|
|
|
futures-util = { version = "0.3.30", default-features = false }
|
2024-04-16 22:07:00 +02:00
|
|
|
headers = "0.4.0"
|
2024-02-03 14:46:18 +01:00
|
|
|
hex = "0.4.3"
|
2024-04-14 22:02:46 +02:00
|
|
|
http = "1.1.0"
|
|
|
|
http-body-util = "0.1.1"
|
|
|
|
mime = "0.3.17"
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
2024-02-03 14:46:18 +01:00
|
|
|
sha2 = "0.10.8"
|
2024-04-14 22:02:46 +02:00
|
|
|
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "uuid"] }
|
|
|
|
thiserror = "1.0.58"
|
|
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
|
2024-02-03 14:46:18 +01:00
|
|
|
tokio-util = { version = "0.7.10", features = ["io"] }
|
2024-04-14 22:02:46 +02:00
|
|
|
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"] }
|
2024-01-30 19:27:14 +01:00
|
|
|
url = { version = "2.5.0", features = ["serde"] }
|
|
|
|
uuid = "1.7.0"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|