Skip to content

Commit 8a04f9d

Browse files
authored
elliptic-curve: use rustcrypto-ff/rustcrypto-group (#2093)
Switches (hopefully temporarily) to our forks of the `ff` and `group` crates containing updates to `rand_core` v0.10.0 prereleases, which allows us to cut crate releases of `elliptic-curve` and all of its dependent crates
1 parent cd6747b commit 8a04f9d

File tree

3 files changed

+42
-42
lines changed

3 files changed

+42
-42
lines changed

Cargo.lock

Lines changed: 40 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,3 @@ members = [
1616
[patch.crates-io]
1717
digest = { path = "digest" }
1818
signature = { path = "signature" }
19-
20-
ff = { git = "https://github.com/tarcieri/ff", branch = "rand_core/v0.10.0-rc-2" }
21-
group = { git = "https://github.com/tarcieri/group", branch = "rand_core/v0.10.0-rc-2" }

elliptic-curve/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ zeroize = { version = "1.7", default-features = false }
2626

2727
# optional dependencies
2828
digest = { version = "0.11.0-rc.4", optional = true }
29-
ff = { version = "=0.14.0-pre.0", optional = true, default-features = false }
29+
ff = { version = "=0.14.0-pre.0", package = "rustcrypto-ff", optional = true, default-features = false }
3030
getrandom = { version = "0.3", optional = true }
31-
group = { version = "=0.14.0-pre.0", optional = true, default-features = false }
31+
group = { version = "=0.14.0-pre.0", package = "rustcrypto-group", optional = true, default-features = false }
3232
hkdf = { version = "0.13.0-rc.3", optional = true, default-features = false }
3333
hex-literal = { version = "1", optional = true }
3434
once_cell = { version = "1.21", optional = true, default-features = false }

0 commit comments

Comments
 (0)