Skip to content

Commit 27f0d1e

Browse files
committed
Raise MSRV to 1.63
1 parent df67e29 commit 27f0d1e

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to Rust's notion of
77

88
## [Unreleased]
99
### Changed
10-
- MSRV is now 1.60.0.
10+
- MSRV is now 1.63.0.
1111

1212
## [0.5.1] - 2023-03-02
1313
### Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
"Jack Grigg <[email protected]>",
1010
]
1111
edition = "2021"
12-
rust-version = "1.60"
12+
rust-version = "1.63"
1313
license = "MIT OR Apache-2.0"
1414
repository = "https://github.com/zcash/pasta_curves"
1515
documentation = "https://docs.rs/pasta_curves"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you want to propose "substantial" changes to this crate, please
1414

1515
## Minimum Supported Rust Version
1616

17-
Requires Rust **1.60** or higher.
17+
Requires Rust **1.63** or higher.
1818

1919
Minimum supported Rust version can be changed in the future, but it will be done with a
2020
minor version bump.

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.60.0"
2+
channel = "1.63.0"
33
components = [ "clippy", "rustfmt" ]

src/arithmetic/curves.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ pub trait CurveExt:
6464
/// (g * x + &(h * r)).to_affine()
6565
/// }
6666
/// ```
67+
#[allow(clippy::type_complexity)]
6768
fn hash_to_curve<'a>(domain_prefix: &'a str) -> Box<dyn Fn(&[u8]) -> Self + 'a>;
6869

6970
/// Returns whether or not this element is on the curve; should

0 commit comments

Comments
 (0)