32 lines
793 B
TOML
32 lines
793 B
TOML
|
[package]
|
||
|
name = "kafka-ingest"
|
||
|
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"] }
|
||
|
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"] }
|
||
|
kafka = "0.10.0"
|
||
|
|
||
|
drift = { git = "https://github.com/kjuulh/drift", branch = "main" }
|
||
|
num = { version = "0.4.3", features = ["num-bigint", "rand", "serde"] }
|
||
|
chrono = { version = "0.4.38", features = ["serde"] }
|
||
|
rand = "0.8.5"
|
||
|
serde_json = "1.0.122"
|