Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
target:
- wasm32-wasi
- wasm32-wasip1
- thumbv6m-none-eabi
- thumbv7em-none-eabihf
steps:
Expand Down
88 changes: 16 additions & 72 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
"Jack Grigg <[email protected]>",
]
edition = "2021"
rust-version = "1.63"
rust-version = "1.85"
readme = "README.md"
license = "MIT/Apache-2.0"

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

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

# Crate for exposing the dynamic memory usage of the w-NAF structs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ wider discussion.

## Minimum Supported Rust Version

Requires Rust **1.63** or higher.
Requires Rust **1.85** or higher.

Minimum supported Rust version can be changed in the future, but it will be done with a
minor version bump.
Expand Down
4 changes: 2 additions & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.63.0"
components = [ "clippy", "rustfmt" ]
channel = "1.85.0"
components = ["clippy", "rustfmt"]