mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-03 20:13:48 +00:00
rust-random/rand#1697 which updates `rand_core` to v0.10.0-rc-3 for the `rand` crate has been merged. This removes `patch.crates-io` for `getrandom` and pins to the merged commit revision for `rand`, as well as bumping the `getrandom` dependency of `x25519-dalek` to v0.4.0-rc.0.
18 lines
449 B
TOML
18 lines
449 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" }
|
|
|
|
rand = { git = "https://github.com/rust-random/rand", rev = "ff07ec205347dd749a586aaee7218cb21590ea4c" }
|