Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ path = "src/main.rs"
clap = { version = "4.5", features = ["derive"] }

# Web Framework (Tokio ecosystem)
axum = "0.8.7"
axum = "0.8.8"
tokio = { version = "1.48", features = ["full"] }
tower = "0.5.2"
tower-http = { version = "0.6.7", features = ["fs", "trace", "cors"] }
tower-http = { version = "0.6.8", features = ["fs", "trace", "cors"] }

# Storage
rocksdb = "0.24.0"
Expand All @@ -31,9 +31,9 @@ bytes = "1.11"
# Performance Optimizations
rayon = "1.11"

arrow = "53.0"
prost = "0.13"
prost-types = "0.13"
arrow = "57.1"
prost = "0.14"
prost-types = "0.14"
tikv-jemallocator = "0.6"
# Serialization
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -45,7 +45,7 @@ ryu = "1.0"

# Configuration
config = "0.15.19"
toml = "0.9.8"
toml = "0.9.10"

# Time handling
chrono = { version = "0.4", features = ["serde"] }
Expand All @@ -57,12 +57,12 @@ thiserror = "2.0.17"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1.18", features = ["v4"] }
uuid = { version = "1.19", features = ["v4"] }
atty = "0.2"
wide = "0.8.3"
wide = "1.1.1"

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
criterion = { version = "0.8", features = ["html_reports"] }
tempfile = "3.23"

[[bench]]
Expand Down