Files
gumbucket/Cargo.toml

29 lines
838 B
TOML
Raw Permalink Normal View History

2025-10-17 05:37:48 -05:00
[package]
name = "gumbucket"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8.6", features = ["multipart"] }
2025-10-20 08:19:29 -05:00
bytes = "1"
2025-10-17 05:37:48 -05:00
clap = { version = "4.5", features = ["derive"] }
color-eyre = "0.6"
content_inspector = "0.2"
2025-10-20 08:19:29 -05:00
#config = { version = "0.15", default-features = false, features = ["yaml"] }
nanoid = "0.4"
2025-10-17 05:37:48 -05:00
rocksdb = "0.24.0"
tokio = { version = "1.47.1", features = ["fs", "macros", "rt-multi-thread"] }
tokio-macros = "2.5"
tower = { version = "0.5", features = ["buffer", "limit", "load-shed", "timeout"] }
tower-http = { version = "0.6", features = ["compression-full", "limit", "trace", "util"] }
tracing = "0.1"
2025-10-20 08:19:29 -05:00
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2025-10-17 05:37:48 -05:00
2025-11-05 23:22:12 -06:00
[dev-dependencies]
rstest = "0.26.1"
tempfile = "3"
2025-10-17 05:37:48 -05:00
[profile.dev.package.backtrace]
opt-level = 3