diff --git a/CHANGELOG.md b/CHANGELOG.md index c2943ee..db3a3f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 93091a5..7add469 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ authors = [ "Jack Grigg ", ] 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" diff --git a/README.md b/README.md index c81125c..03907cc 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/rust-toolchain.toml b/rust-toolchain.toml index de43b23..e06e5ca 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.56.0" +channel = "1.60.0" components = [ "clippy", "rustfmt" ]