nodata/crates/nodata/Cargo.toml
kjuulh b9be9a3ef1
feat: working dagger engine
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-08-19 07:29:26 +02:00

39 lines
951 B
TOML

[package]
name = "nodata"
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
drift.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"uuid",
"time",
] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
mad = { git = "https://github.com/kjuulh/mad", branch = "main" }
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.11.10"
rand = "0.8.5"
[dev-dependencies]
tracing-test = { version = "0.2.5" } #, features = ["no-env-filter"] }