breeze/Cargo.toml

38 lines
877 B
TOML
Raw Permalink Normal View History

2022-12-28 21:57:06 -06:00
[package]
name = "breeze"
2025-01-06 18:58:24 -06:00
version = "0.2.8"
2022-12-28 21:57:06 -06:00
edition = "2021"
2025-01-13 17:52:43 -06:00
[profile.dev.package]
tikv-jemalloc-sys = { opt-level = 3 }
2022-12-28 21:57:06 -06:00
[dependencies]
2025-01-03 02:28:03 -06:00
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"
2022-12-28 21:57:06 -06:00
tokio = { version = "1", features = ["full"] }
2025-01-03 02:28:03 -06:00
tokio-util = { version = "0.7", features = ["full"] }
2022-12-28 21:57:06 -06:00
tokio-stream = "0.1"
2024-09-07 18:44:12 -05:00
tracing = "0.1"
tracing-subscriber = "0.3"
2022-12-28 21:57:06 -06:00
bytes = "1"
2024-09-07 18:44:12 -05:00
rand = "0.8.5"
2023-01-28 19:17:35 -06:00
walkdir = "2"
2024-09-07 18:44:12 -05:00
anyhow = "1.0"
2024-05-27 13:28:14 -05:00
serde = { version = "1.0", features = ["derive"] }
2025-01-03 02:28:03 -06:00
serde_with = "3.12"
toml = "0.8.2"
2024-09-07 18:44:12 -05:00
argh = "0.1.12"
2025-01-03 02:28:03 -06:00
dashmap = { version = "6.1.0", features = ["rayon", "inline"] }
2024-05-25 00:21:36 -05:00
rayon = "1.8"
atomic-time = "0.1.4"
2025-01-03 02:28:03 -06:00
img-parts = "0.3"
2025-01-13 17:52:43 -06:00
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.6"