Skip to content

Commit 71e4064

Browse files
committed
Bump crypto-bigint to v0.6.0-pre.7
1 parent 78d20f3 commit 71e4064

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Changed
1010

11-
- Bumped `crypto-bigint` to 0.6.0-pre.6. ([#36])
11+
- Bumped `crypto-bigint` to 0.6.0-pre.7. ([#40])
1212
- Bumped MSRV to 1.73. ([#36])
1313
- `MillerRabin::new()` takes an `Odd`-wrapped integer by value. `random_odd_uint()` returns an `Odd`-wrapped integer. `LucasBase::generate()` takes an `Odd`-wrapped integer. `lucas_test` takes an `Odd`-wrapped integer. ([#36])
1414
- `random_odd_uint()` is renamed to `random_odd_integer()`, takes a `NonZeroU32` for `bit_length`. ([#38])
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
[#36]: https://github.com/entropyxyz/crypto-primes/pull/36
2121
[#38]: https://github.com/entropyxyz/crypto-primes/pull/38
22+
[#40]: https://github.com/entropyxyz/crypto-primes/pull/40
2223

2324

2425
## [0.5.0] - 2023-08-20

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ categories = ["cryptography", "no-std"]
1010
rust-version = "1.73"
1111

1212
[dependencies]
13-
crypto-bigint = { version = "0.6.0-pre.6", default-features = false, features = ["rand_core"] }
13+
crypto-bigint = { version = "0.6.0-pre.7", default-features = false, features = ["rand_core"] }
1414
rand_core = { version = "0.6.4", default-features = false }
1515
openssl = { version = "0.10.39", optional = true, features = ["vendored"] }
1616
rug = { version = "1.18", default-features = false, features = ["integer"], optional = true }
1717

1818
[dev-dependencies]
19+
# need `crypto-bigint` with `alloc` to test `BoxedUint`
20+
crypto-bigint = { version = "0.6.0-pre.7", default-features = false, features = ["alloc"] }
1921
rand_chacha = "0.3"
2022
criterion = { version = "0.4", features = ["html_reports"] }
2123
num-modular = { version = "0.5", features = ["num-bigint"] }

0 commit comments

Comments
 (0)