Skip to content
Open
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
56 changes: 47 additions & 9 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 @@ -66,7 +66,7 @@ semver = { version = "^1.0.27" } # 2025-11-03 sw: version range evaluation for d

# Tier 0 — cryptography, serialization, dedup core (2025-11-03 sw; see docs/dependency-security.md#tier-0)
serde = { version = "=1.0.228", features = ["derive"] } # 2025-11-03 sw: canonical serialization; CT reviewed
serde_json = { version = "=1.0.145" } # 2025-11-03 sw: deterministic JSON for protocol surfaces
serde_json = { version = "=1.0.149" } # 2025-11-03 sw: deterministic JSON for protocol surfaces
Copy link
Copy Markdown

@augmentcode augmentcode Bot Apr 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

serde_json 1.0.149 changes float-to-string formatting internals (Ryū → Żmij) and also tweaks arbitrary_precision number string formatting; if any JSON output is used as canonical bytes for hashing/signing or protocol compatibility, this bump could change results. Consider validating any protocol/persistence paths that rely on deterministic JSON serialization.

Severity: low

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

serde_yaml = { version = "0.9" } # YAML parsing for CLI policies
blake3 = { version = "=1.8.3" } # 2025-11-03 sw: convergent hash, SIMD constant-time per upstream audit
bloomfilter = { version = "=1.0.13" } # 2025-11-03 sw: dedupe candidate screening, bounded memory
Expand Down Expand Up @@ -98,7 +98,7 @@ libp2p-tcp = { version = "=0.41.0", default-features = false, features = ["tokio
libp2p-noise = { version = "=0.44.0" } # 2025-11-16 sw: Noise handshake
libp2p-yamux = { version = "=0.45.2" } # 2025-11-16 sw: Yamux multiplexer
multiaddr = { version = "=0.18.2" } # 2025-11-16 sw: Multiaddr /ip4/... format
bincode = { version = "=1.3.3" } # 2025-11-16 sw: Binary serialization for gossip messages
bincode = { version = "=2.0.1" } # 2025-11-16 sw: Binary serialization for gossip messages
Copy link
Copy Markdown

@augmentcode augmentcode Bot Apr 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Upgrading to bincode 2 is a major API change (v2 replaces bincode::serialize/deserialize with bincode::serde::encode_*/decode_* and requires passing an explicit Configuration). Since bincode is used for gossip messages, snapshots, and sled state across the workspace, please ensure all call sites migrate and that a deliberate config (e.g., bincode::config::legacy()) is pinned anywhere format compatibility matters.

Severity: high

Other Locations
  • crates/foundry/Cargo.toml:11
  • crates/scaling/Cargo.toml:26

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

bytes = { version = "^1.10.1" } # 2025-11-16 sw: Zero-copy byte buffers
rand = { version = "=0.8.6" } # 2026-05-08 sw: Random peer selection for gossip; includes RUSTSEC-2026-0097 fix
backoff = { version = "=0.4.0" } # 2025-11-16 sw: Retry logic with exponential backoff
Expand Down
2 changes: 1 addition & 1 deletion crates/foundry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false

[dependencies]
anyhow = { workspace = true }
bincode = "1.3"
bincode = "2.0"
bytes = { workspace = true }
dashmap = "5.5.3"
futures = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/scaling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ futures = { workspace = true }
raft-rs = { workspace = true, optional = true }
bytes = "1"
blake3 = { workspace = true }
bincode = "1"
bincode = "2"
hex = "0.4"
socket2 = { version = "0.5", features = ["all"] }
dashmap = "5"
Expand Down
Loading