Added some argument handling.

This commit is contained in:
Micheal Smith
2025-10-20 08:19:29 -05:00
parent cb4c8b3838
commit 06339ca8ab
4 changed files with 179 additions and 143 deletions

View File

@@ -5,17 +5,19 @@ edition = "2024"
[dependencies]
axum = { version = "0.8.6", features = ["multipart"] }
bytes = "1"
clap = { version = "4.5", features = ["derive"] }
color-eyre = "0.6"
config = { version = "0.15", default-features = false, features = [ "yaml" ] }
futures = "0.3"
#config = { version = "0.15", default-features = false, features = ["yaml"] }
nanoid = "0.4"
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"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.dev.package.backtrace]
opt-level = 3