From 9cac2ed9394caa41e867d92afacf714aea3a1b00 Mon Sep 17 00:00:00 2001 From: Bogdan Opanchuk Date: Sun, 19 Jan 2025 22:22:22 -0800 Subject: [PATCH] Bump crypto-bigint to 0.6.0-rc.7 --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 2 ++ Cargo.toml | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5657e39..a20908f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: rust: - - 1.81.0 # MSRV + - 1.83.0 # MSRV - stable target: - wasm32-unknown-unknown @@ -83,7 +83,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.81.0 # MSRV + toolchain: 1.83.0 # MSRV components: clippy override: true profile: minimal diff --git a/CHANGELOG.md b/CHANGELOG.md index adf6e4c..a1dd9ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,11 +28,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bumped `crypto-bigint` to 0.6.0-rc.6 and MSRV to 1.81. ([#55]) - Switch to binary GCD for improved performance ([#54]) - Remove bit precision from the public API ([#46]) +- Bumped `crypto-bigint` to 0.6.0-rc.7 and MSRV to 1.83. ([#67]) [#55]: https://github.com/entropyxyz/crypto-primes/pull/55 [#54]: https://github.com/entropyxyz/crypto-primes/pull/54 [#46]: https://github.com/entropyxyz/crypto-primes/pull/46 +[#67]: https://github.com/entropyxyz/crypto-primes/pull/67 ## [0.6.0-pre.1] - 2024-10-03 diff --git a/Cargo.toml b/Cargo.toml index 2e09ebc..7c47165 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,10 +7,10 @@ description = "Random prime number generation and primality checking library" repository = "https://github.com/entropyxyz/crypto-primes" readme = "README.md" categories = ["cryptography", "no-std"] -rust-version = "1.81" +rust-version = "1.83" [dependencies] -crypto-bigint = { version = "0.6.0-rc.6", default-features = false, features = ["rand_core"] } +crypto-bigint = { version = "0.6.0-rc.7", default-features = false, features = ["rand_core"] } rand_core = { version = "0.6.4", default-features = false } # Optional dependencies used in tests and benchmarks @@ -21,7 +21,7 @@ rayon = { version = "1", optional = true } [dev-dependencies] # need `crypto-bigint` with `alloc` to test `BoxedUint` -crypto-bigint = { version = "0.6.0-rc.6", default-features = false, features = ["alloc"] } +crypto-bigint = { version = "0.6.0-rc.7", default-features = false, features = ["alloc"] } rand_chacha = "0.3" criterion = { version = "0.5", features = ["html_reports"] } num-modular = { version = "0.5", features = ["num-bigint"] }