Skip to content

Commit 97de9a7

Browse files
authored
Bump rand_core dependency to v0.10.0-rc-2 (#3)
1 parent 888f7c8 commit 97de9a7

5 files changed

Lines changed: 34 additions & 88 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
target:
50-
- wasm32-wasi
50+
- wasm32-wasip1
5151
- thumbv6m-none-eabi
5252
- thumbv7em-none-eabihf
5353
steps:

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Jack Grigg <thestr4d@gmail.com>",
77
]
88
edition = "2021"
9-
rust-version = "1.63"
9+
rust-version = "1.85"
1010
description = "Library for building and interfacing with finite fields"
1111
readme = "README.md"
1212
documentation = "https://docs.rs/ff/"
@@ -18,12 +18,12 @@ repository = "https://github.com/zkcrypto/ff"
1818
bitvec = { version = "1", default-features = false, optional = true }
1919
byteorder = { version = "1", default-features = false, optional = true }
2020
ff_derive = { version = "=0.14.0-pre", package = "rustcrypto-ff_derive", path = "ff_derive", optional = true }
21-
rand_core = { version = "0.9", default-features = false }
21+
rand_core = { version = "0.10.0-rc-2", default-features = false }
2222
subtle = { version = "2.2.1", default-features = false, features = ["i128"] }
2323

2424
[dev-dependencies]
2525
blake2b_simd = "1"
26-
rand = "0.9"
26+
rand = "0.10.0-rc.1"
2727

2828
[features]
2929
default = ["bits", "std"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ And that's it! `Fp` now implements `Field` and `PrimeField`.
6161

6262
## Minimum Supported Rust Version
6363

64-
Requires Rust **1.63** or higher.
64+
Requires Rust **1.85** or higher.
6565

6666
Minimum supported Rust version can be changed in the future, but it will be done with a
6767
minor version bump.

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.63.0"
2+
channel = "1.85.0"
33
components = [ "clippy", "rustfmt" ]

0 commit comments

Comments
 (0)