Skip to content

Commit

Permalink
Merge pull request #67 from fjarri/bump-crypto-bigint
Browse files Browse the repository at this point in the history
Bump crypto-bigint to 0.6.0-rc.7
  • Loading branch information
fjarri authored Jan 20, 2025
2 parents 5b40e39 + 9cac2ed commit 61994ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
rust:
- 1.81.0 # MSRV
- 1.83.0 # MSRV
- stable
target:
- wasm32-unknown-unknown
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"] }
Expand Down

0 comments on commit 61994ae

Please sign in to comment.