initial commit
This commit is contained in:
31
Cargo.toml
Normal file
31
Cargo.toml
Normal file
@@ -0,0 +1,31 @@
|
||||
[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 = "src/load_test.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"
|
||||
reqwest = { version = "0.12.4", features = ["json", "multipart", "blocking"] }
|
||||
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"
|
||||
Reference in New Issue
Block a user