Skip to content
Closed
Show file tree
Hide file tree
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
102 changes: 80 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ hmac = { version = "=0.12.1" } # 2025-11-04 sw: HKDF based on HMAC-SHA256 for ke
sha2 = { version = "=0.10.8" } # 2025-11-04 sw: Hash core for HKDF extractor

# Web Interface & Mesh Networking (2025-11-16 sw; Next-gen web interface with gossip)
axum = { version = "^0.7.9", features = ["ws", "macros", "multipart"] } # 2025-11-16 sw: Web server framework
axum = { version = "^0.8.8", features = ["ws", "macros", "multipart"] } # 2025-11-16 sw: Web server framework
tower-http = { version = "^0.6.8", features = ["cors", "trace", "fs"] } # 2025-11-16 sw: HTTP middleware
libp2p-core = { version = "=0.41.3" } # 2025-11-16 sw: libp2p core transport traits
libp2p-identity = { version = "=0.2.13", default-features = false, features = ["peerid", "ed25519", "rand"] } # 2025-11-16 sw: PeerId + key material
Expand All @@ -109,7 +109,7 @@ leptos_axum = { version = "=0.6.15" } # 2025-11-16 sw: Leptos integration with A
wasm-bindgen = { version = "^0.2.91" } # 2025-11-16 sw: Wasm interop
gloo = { version = "=0.11.0" } # 2025-11-16 sw: Browser utilities for Wasm
web-sys = { version = "^0.3.68", features = ["WebSocket", "MessageEvent", "CloseEvent"] } # 2025-11-16 sw: Web APIs
tower = { version = "=0.4.13", features = ["util"] } # 2025-11-16 sw: Service abstractions
tower = { version = "=0.5.2", features = ["util"] } # 2025-11-16 sw: Service abstractions

raft-rs = { path = "vendor/raft-rs", version = "0.7.0" }
spdk-rs = { path = "vendor/spdk-rs", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/protocol-s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nvram-sim = { path = "../nvram-sim" }
# HTTP server
axum = { workspace = true, features = ["http2", "multipart"] } # 2025-11-03 sw: Tier1 HTTP surface per docs/dependency-security.md
tokio = { workspace = true }
tower = { version = "^0.4.13", features = ["util"] } # 2025-11-03 sw: aligns with axum 0.7 require
tower = { version = "^0.5.2", features = ["util"] } # 2025-11-03 sw: aligns with axum 0.7 require
tower-http = { workspace = true, features = ["cors", "trace"] } # 2025-11-03 sw: HTTP middleware review logged
tokio-util = { version = "^0.7.11", features = ["io"] }

Expand Down
Loading