Skip to content

Commit

Permalink
Add rand 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pinkforest committed Jan 26, 2025
1 parent fbf1fb5 commit 92ec8d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions curve25519-dalek/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ sha2 = { version = "0.10", default-features = false }
bincode = "1"
criterion = { version = "0.5", features = ["html_reports"] }
hex = "0.4.2"
rand = "0.8"
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
rand = "0.9"
rand_core = { version = "0.9", default-features = false, features = ["getrandom"] }

[build-dependencies]
rustc_version = "0.4.0"
Expand All @@ -49,7 +49,7 @@ required-features = ["alloc", "rand_core"]
cfg-if = "1"
ff = { version = "0.13", default-features = false, optional = true }
group = { version = "0.13", default-features = false, optional = true }
rand_core = { version = "0.6.4", default-features = false, optional = true }
rand_core = { version = "0.9", default-features = false, optional = true }
digest = { version = "0.10", default-features = false, optional = true }
subtle = { version = "2.6.0", default-features = false, features = ["const-generics"]}
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions ed25519-dalek/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ subtle = { version = "2.3.0", default-features = false }

# optional features
merlin = { version = "3", default-features = false, optional = true }
rand_core = { version = "0.6.4", default-features = false, optional = true }
rand_core = { version = "0.9", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }
zeroize = { version = "1.5", default-features = false, optional = true }

Expand All @@ -48,8 +48,8 @@ bincode = "1.0"
serde_json = "1.0"
criterion = { version = "0.5", features = ["html_reports"] }
hex-literal = "0.4"
rand = "0.8"
rand_core = { version = "0.6.4", default-features = false }
rand = "0.9"
rand_core = { version = "0.9", default-features = false }
serde = { version = "1.0", features = ["derive"] }
toml = { version = "0.7" }

Expand Down
4 changes: 2 additions & 2 deletions x25519-dalek/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ features = ["getrandom", "reusable_secrets", "serde", "static_secrets"]

[dependencies]
curve25519-dalek = { version = "4", path = "../curve25519-dalek", default-features = false }
rand_core = { version = "0.6", default-features = false }
rand_core = { version = "0.9", default-features = false }
serde = { version = "1", default-features = false, optional = true, features = ["derive"] }
zeroize = { version = "1", default-features = false, optional = true, features = ["zeroize_derive"] }

[dev-dependencies]
bincode = "1"
criterion = "0.5"
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
rand_core = { version = "0.9", default-features = false, features = ["getrandom"] }

[[bench]]
name = "x25519"
Expand Down

0 comments on commit 92ec8d3

Please sign in to comment.