Skip to content

Commit 9092180

Browse files
authored
Merge pull request #31 from fjarri/rust-version
Pin MSRV and the lower bound of some dependencies
2 parents 7d95cf6 + d2500b6 commit 9092180

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

66

7+
## Unreleased
8+
9+
### Changed
10+
11+
- Set and explicit MSRV 1.65 in `Cargo.toml`. ([#31])
12+
- Set lower bound `openssl = 0.10.39`. ([#31])
13+
- Set lower bound `rand_core = 0.6.4`. ([#31])
14+
15+
16+
[#31]: https://github.com/nucypher/rust-umbral/pull/31
17+
18+
719
## [0.4.1] - 2023-07-11
820

921
### Fixed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ description = "Random prime number generation and primality checking library"
77
repository = "https://github.com/entropyxyz/crypto-primes"
88
readme = "README.md"
99
categories = ["cryptography", "no-std"]
10+
rust-version = "1.65"
1011

1112
[dependencies]
1213
crypto-bigint = { version = "0.5.2", default-features = false, features = ["rand_core"] }
13-
rand_core = { version = "0.6", default-features = false }
14-
openssl = { version = "0.10", optional = true, features = ["vendored"] }
14+
rand_core = { version = "0.6.4", default-features = false }
15+
openssl = { version = "0.10.39", optional = true, features = ["vendored"] }
1516
rug = { version = "1.18", default-features = false, features = ["integer"], optional = true }
1617

1718
[dev-dependencies]

0 commit comments

Comments
 (0)