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
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/dsm-sphincs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ blake3 = { version = "1", default-features = false }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false, features = ["derive", "alloc"] }
# Deterministic keygen expands the 32-byte seed via ChaCha20 (no_std, no OS RNG).
rand = { version = "0.9", default-features = false }
rand = { version = "0.8", default-features = false }
rand_chacha = { version = "0.9", default-features = false }
2 changes: 1 addition & 1 deletion dsm_client/deterministic_state_machine/dsm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ bitflags = "2.13.0"
arrayref = "0.3.9"
argon2 = "0.5.3"

rand = "0.9.2"
rand = "0.8.7"
uuid = { version = "1.23", features = ["std"] }
# serde_cbor removed from code paths (unmaintained); deterministic CBOR is hand-encoded locally
# Prefer stable crypto crates to reduce duplicate dependency versions across workspace.
Expand Down
2 changes: 1 addition & 1 deletion dsm_client/deterministic_state_machine/dsm_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ ed25519-dalek = { version = "2", default-features = false, features = ["std"] }
# AEAD
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc", "std"] }
hmac = "0.13.0"
rand = "0.9.2"
rand = "0.8.7"
rand_chacha = "0.9.0"
getrandom = "0.4.2"
merlin = "3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion tools/vertical_validation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ instant = "0.1"
dsm = { version = "0.1.0-beta.3", path = "../../dsm_client/deterministic_state_machine/dsm" }

# Deterministic seeded RNG for reproducible property tests
rand = "0.9.2"
rand = "0.8.7"
rand_chacha = "0.9.0"

[lints]
Expand Down
Loading