Skip to content
This repository was archived by the owner on Jun 7, 2026. It is now read-only.

Commit e143fee

Browse files
authored
Bump rand_core dependency to v0.10.0-rc-2 (#3)
This brings a new MSRV of 1.85
1 parent b1e0777 commit e143fee

5 files changed

Lines changed: 25 additions & 81 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
matrix:
4545
target:
46-
- wasm32-wasi
46+
- wasm32-wasip1
4747
- thumbv6m-none-eabi
4848
- thumbv7em-none-eabihf
4949
steps:

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Jack Grigg <jack@z.cash>",
77
]
88
edition = "2021"
9-
rust-version = "1.63"
9+
rust-version = "1.85"
1010
readme = "README.md"
1111
license = "MIT/Apache-2.0"
1212

@@ -16,10 +16,10 @@ homepage = "https://github.com/RustCrypto/group"
1616
repository = "https://github.com/RustCrypto/group"
1717

1818
[dependencies]
19-
ff = { version = "=0.14.0-pre.0", default-features = false }
20-
rand = { version = "0.9", optional = true, default-features = false }
21-
rand_core = { version = "0.9", default-features = false }
22-
rand_xorshift = { version = "0.4", optional = true }
19+
ff = { version = "=0.14.0-pre.0", package = "rustcrypto-ff", default-features = false }
20+
rand = { version = "0.10.0-rc.1", optional = true, default-features = false }
21+
rand_core = { version = "0.10.0-rc-2", default-features = false }
22+
rand_xorshift = { version = "0.5.0-rc.0", optional = true }
2323
subtle = { version = "2.2.1", default-features = false }
2424

2525
# Crate for exposing the dynamic memory usage of the w-NAF structs.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ wider discussion.
1313

1414
## Minimum Supported Rust Version
1515

16-
Requires Rust **1.63** or higher.
16+
Requires Rust **1.85** or higher.
1717

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

rust-toolchain.toml

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

0 commit comments

Comments
 (0)