Merge pull request #68 from zcash/msrv-1.60

Bump MSRV to 1.60
This commit is contained in:
str4d 2023-07-30 10:36:55 +01:00 committed by GitHub
commit a586b8c2db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

View File

@ -6,6 +6,9 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Changed
- MSRV is now 1.60.0.
## [0.5.1] - 2023-03-02
### Fixed
- Fix a bug on 32-bit platforms that could cause the square root implementation

View File

@ -9,7 +9,7 @@ authors = [
"Jack Grigg <jack@electriccoin.co>",
]
edition = "2021"
rust-version = "1.56"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/pasta_curves"
documentation = "https://docs.rs/pasta_curves"
@ -21,8 +21,7 @@ rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dev-dependencies]
bincode = "1.3"
criterion = "0.3"
csv = ">= 1.0, < 1.2" # csv 1.2 has MSRV 1.60
criterion = "0.4"
rand_xorshift = "0.3"
serde_json = "1.0"

View File

@ -8,7 +8,7 @@ Pallas and Vesta. More details about the Pasta curves can be found
## Minimum Supported Rust Version
Requires Rust **1.56** or higher.
Requires Rust **1.60** or higher.
Minimum supported Rust version can be changed in the future, but it will be done with a
minor version bump.

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "1.56.0"
channel = "1.60.0"
components = [ "clippy", "rustfmt" ]