nodata/Cargo.toml
kjuulh 4d37578c59
feat: add storage backend
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-11-09 17:19:19 +01:00

22 lines
625 B
TOML

[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
nodata-storage = { path = "crates/nodata-storage" }
anyhow = { version = "1" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.18" }
clap = { version = "4", features = ["derive", "env"] }
dotenv = { version = "0.15" }
axum = { version = "0.7" }
drift = { git = "https://github.com/kjuulh/drift", branch = "main" }
async-trait = "0.1"
tonic = "0.12.1"
bytes = "1.7.1"
prost = "0.13.1"
prost-types = "0.13.1"
uuid = { version = "1.7.0", features = ["v4", "v7"] }