Skip to content
This repository was archived by the owner on Jun 7, 2026. It is now read-only.

Commit 8534991

Browse files
authored
Merge pull request zkcrypto#62 from zkcrypto/msrv-1.63
Raise MSRV to 1.63
2 parents 1d32e5f + 8240c17 commit 8534991

6 files changed

Lines changed: 17 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Changed
10+
- MSRV is now 1.63.0.
911

1012
## [0.13.0] - 2022-12-06
1113
### Changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Jack Grigg <jack@z.cash>",
77
]
88
edition = "2021"
9-
rust-version = "1.56"
9+
rust-version = "1.63"
1010
readme = "README.md"
1111
license = "MIT/Apache-2.0"
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ wider discussion.
1111

1212
## Minimum Supported Rust Version
1313

14-
Requires Rust **1.56** or higher.
14+
Requires Rust **1.63** or higher.
1515

1616
Minimum supported Rust version can be changed in the future, but it will be done with a
1717
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.56.0"
2+
channel = "1.63.0"
33
components = [ "clippy", "rustfmt" ]

src/wnaf.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,12 @@ pub struct Wnaf<W, B, S> {
255255
window_size: W,
256256
}
257257

258+
impl<G: Group> Default for Wnaf<(), Vec<G>, Vec<i64>> {
259+
fn default() -> Self {
260+
Self::new()
261+
}
262+
}
263+
258264
impl<G: Group> Wnaf<(), Vec<G>, Vec<i64>> {
259265
/// Construct a new wNAF context without allocating.
260266
pub fn new() -> Self {

0 commit comments

Comments
 (0)