kjuulh
43c5fa1731
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
37 lines
886 B
TOML
37 lines
886 B
TOML
[package]
|
|
name = "churn"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
clap.workspace = true
|
|
dotenv.workspace = true
|
|
axum.workspace = true
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
tower-http = { version = "0.6.0", features = ["cors", "trace"] }
|
|
notmad = "0.7.1"
|
|
tokio-util = "0.7.12"
|
|
async-trait = "0.1.83"
|
|
nodrift = "0.2.0"
|
|
rusqlite = { version = "0.32.1", features = ["bundled"] }
|
|
prost-types = "0.13.3"
|
|
prost = "0.13.3"
|
|
bytes = "1.8.0"
|
|
tonic = { version = "0.12.3", features = ["tls", "tls-roots"] }
|
|
toml = "0.8.19"
|
|
dirs = "5.0.1"
|
|
futures = "0.3.31"
|
|
reqwest = { version = "0.12.9", default-features = false, features = [
|
|
"json",
|
|
"http2",
|
|
"charset",
|
|
"native-tls-vendored",
|
|
] }
|
|
serde_json = "1.0.133"
|