nodata/crates/nodata/Cargo.toml
kjuulh 089c1d502f
All checks were successful
continuous-integration/drone/push Build is passing
feat: with updated notmad
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-11-19 17:30:18 +01:00

37 lines
991 B
TOML

[package]
name = "nodata"
version = "0.1.0"
edition = "2021"
description = "nodata is a kafka like message broker that is simple and easy to use, while relying on either local or s3 like data storage for consistency"
license = "MIT"
[dependencies]
nodata-storage.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
nodrift.workspace = true
uuid.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
tower-http = { version = "0.6.0", features = ["cors", "trace"] }
tokio-util = "0.7.11"
tonic.workspace = true
bytes.workspace = true
prost.workspace = true
prost-types.workspace = true
chrono = { version = "0.4.38", features = ["serde"] }
tokio-stream = "0.1.15"
dagger-sdk = "0.13.0"
rand = "0.8.5"
notmad = "0.5.0"
prometheus = "0.13.4"
[dev-dependencies]
tracing-test = { version = "0.2.5" } #, features = ["no-env-filter"] }