Skip to content

Commit

Permalink
Merge pull request #68 from fjarri/bump-crypto-bigint
Browse files Browse the repository at this point in the history
Bump `crypto-bigint` to v0.6
  • Loading branch information
fjarri authored Jan 23, 2025
2 parents 61994ae + 68ff015 commit 838c157
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Renamed `Sieve` to `SmallPrimesSieve`. ([#64])
- Bumped `crypto-bigint` to 0.6.0-rc.7 and MSRV to 1.83. ([#67])
- Bumped `crypto-bigint` to 0.6. ([#68])


### Added
Expand All @@ -19,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[#60]: https://github.com/entropyxyz/crypto-primes/pull/60
[#64]: https://github.com/entropyxyz/crypto-primes/pull/64
[#67]: https://github.com/entropyxyz/crypto-primes/pull/67
[#68]: https://github.com/entropyxyz/crypto-primes/pull/68


## [0.6.0-pre.2] - 2024-10-18
Expand All @@ -28,13 +32,11 @@ 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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = ["cryptography", "no-std"]
rust-version = "1.83"

[dependencies]
crypto-bigint = { version = "0.6.0-rc.7", default-features = false, features = ["rand_core"] }
crypto-bigint = { version = "0.6", 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.7", default-features = false, features = ["alloc"] }
crypto-bigint = { version = "0.6", 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 838c157

Please sign in to comment.