Skip to content

Commit f9a24b0

Browse files
authored
move ff back to release branch (#1788)
see zkcrypto/ff#130
1 parent 1548d2a commit f9a24b0

File tree

7 files changed

+75
-14
lines changed

7 files changed

+75
-14
lines changed

.github/workflows/cipher.yml

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
# TODO: use the reusable workflow after this crate will be part of the
4343
# root workspace
4444
minimal-versions:
45+
if: false # disabled until we stop using pre-releases
4546
runs-on: ubuntu-latest
4647
steps:
4748
- uses: actions/checkout@v4

.github/workflows/crypto.yml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
--features aead,cipher,digest,elliptic-curve,signature,universal-hash
4040

4141
minimal-versions:
42+
if: false # disabled until we stop using pre-releases
4243
runs-on: ubuntu-latest
4344
steps:
4445
- uses: actions/checkout@v4

.github/workflows/password-hash.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
# TODO: use the reusable workflow after this crate will be part of the
4242
# toot workspace
4343
minimal-versions:
44+
if: false # disabled until we stop using pre-releases
4445
runs-on: ubuntu-latest
4546
steps:
4647
- uses: actions/checkout@v4

Cargo.lock

+68-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ members = [
1818
[patch.crates-io]
1919
signature = { path = "signature" }
2020

21-
sha2 = { git = "https://github.com/RustCrypto/hashes" }
22-
sha3 = { git = "https://github.com/RustCrypto/hashes" }
23-
2421
# https://github.com/RustCrypto/MACs/pull/178
2522
hmac = { git = "https://github.com/RustCrypto/MACs.git" }
2623

@@ -31,7 +28,7 @@ crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }
3128
# https://github.com/zkcrypto/ff/pull/122
3229
# https://github.com/zkcrypto/ff/pull/126
3330
# https://github.com/zkcrypto/ff/pull/127
34-
ff = { git = "https://github.com/baloo/ff.git", branch = "baloo/try_from_rng" }
31+
ff = { git = "https://github.com/zkcrypto/ff.git", branch = "release-0.14.0" }
3532

3633
# https://github.com/zkcrypto/group/pull/56
3734
group = { git = "https://github.com/pinkforest/group.git", branch = "bump-rand-0.9" }

elliptic-curve/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ tap = { version = "1.0.1", optional = true, default-features = false } # hack fo
4040

4141
[dev-dependencies]
4242
hex-literal = "1"
43-
sha2 = "=0.11.0-pre.4"
44-
sha3 = "=0.11.0-pre.4"
43+
sha2 = "=0.11.0-pre.5"
44+
sha3 = "=0.11.0-pre.5"
4545

4646
[features]
4747
default = ["arithmetic"]

signature/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rand_core = { version = "0.9", optional = true, default-features = false }
2020

2121
[dev-dependencies]
2222
hex-literal = "1"
23-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
23+
sha2 = { version = "=0.11.0-pre.5", default-features = false }
2424

2525
[features]
2626
alloc = []

0 commit comments

Comments
 (0)