mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-03 20:13:48 +00:00
Most of the changes in this PR are actually from the associated `rand` crate updates which are happening in rust-random/rand#1697, notably `OsRng` has been renamed to `SysRng` (and is now provided by the `getrandom` crate). We do use some `rand_core` APIs in a few places though, like the STROBE implementation, where this migrates from `rand_core::le` to `rand_core::utils`.
20 lines
616 B
TOML
20 lines
616 B
TOML
[workspace]
|
|
members = [
|
|
"curve25519-dalek",
|
|
"curve25519-dalek-derive",
|
|
"ed25519-dalek",
|
|
"x25519-dalek"
|
|
]
|
|
resolver = "2"
|
|
|
|
[profile.dev]
|
|
opt-level = 2
|
|
|
|
[patch.crates-io]
|
|
curve25519-dalek-derive = { path = "./curve25519-dalek-derive" }
|
|
curve25519-dalek = { path = "./curve25519-dalek" }
|
|
x25519-dalek = { path = "./x25519-dalek" }
|
|
|
|
# https://github.com/rust-random/rand/pull/1697
|
|
rand = { git = "https://github.com/rust-random/rand", rev = "99ae06fb348e5c5fee0fe41d2201bd4cbb107635" }
|
|
getrandom = { git = "https://github.com/rust-random/getrandom.git", rev = "f67c70110f706f80d7dd6fa52e38d0920754fe2c" }
|