Files
gumbucket/Cargo.toml

22 lines
684 B
TOML
Raw 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"] }
clap = { version = "4.5", features = ["derive"] }
color-eyre = "0.6"
config = { version = "0.15", default-features = false, features = [ "yaml" ] }
futures = "0.3"
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"
tracing-subscriber = "0.3"
[profile.dev.package.backtrace]
opt-level = 3