43 lines
917 B
TOML
43 lines
917 B
TOML
[package]
|
|
name = "breeze"
|
|
version = "0.2.9"
|
|
edition = "2021"
|
|
|
|
[profile.dev.package]
|
|
tikv-jemalloc-sys = { opt-level = 3 }
|
|
|
|
[dependencies]
|
|
axum-extra = { version = "0.10.0", default-features = false, features = [
|
|
"tracing",
|
|
"typed-header",
|
|
] }
|
|
axum = { version = "0.8.1", features = ["macros", "http2"] }
|
|
tower = "0.5"
|
|
http = "1.2"
|
|
headers = "0.4"
|
|
tokio = { version = "1", features = [
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"net",
|
|
"fs",
|
|
"signal",
|
|
] }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
tokio-stream = "0.1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
bytes = "1"
|
|
rand = "0.9"
|
|
walkdir = "2"
|
|
anyhow = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_with = "3.12"
|
|
toml = "0.8.2"
|
|
argh = "0.1.12"
|
|
dashmap = { version = "6.1.0", features = ["inline"] }
|
|
atomic-time = "0.1.4"
|
|
img-parts = "0.3"
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
tikv-jemallocator = "0.6"
|