Files
blob-store-app/Cargo.toml
2024-04-23 11:13:45 -07:00

32 lines
772 B
TOML

[package]
name = "blob-store-app"
version = "0.1.0"
edition = "2021"
default-run = "blob-store-app"
[[bin]]
name = "blob-store-app"
path = "src/main.rs"
[[bin]]
name = "load-test"
path = "load_test/main.rs"
[dependencies]
axum = { version = "0.7.5", features = ["macros"] }
axum_typed_multipart = "0.11.1"
chrono = "0.4.38"
clap = { version = "4.5.4", features = ["derive"] }
futures = "0.3.30"
kdam = "0.5.1"
rand = "0.8.5"
rusqlite = "0.31.0"
serde = { version = "1.0.198", features = ["serde_derive"] }
serde_json = "1.0.116"
sha2 = "0.10.8"
tokio = { version = "1.37.0", features = ["full", "rt-multi-thread"] }
tokio-rusqlite = "0.5.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
reqwest = { version = "0.12.4", features = ["json", "multipart", "blocking"] }