Skip to content

Commit 3664914

Browse files
committed
bump MSRV
1 parent f9a7c29 commit 3664914

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/curve25519-dalek.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
run: cargo test --no-default-features --features alloc,precomputed-tables,zeroize,group-bits --target x86_64-unknown-linux-gnu
131131

132132
msrv:
133-
name: Current MSRV is 1.60.0
133+
name: Current MSRV is 1.71.0
134134
runs-on: ubuntu-latest
135135
steps:
136136
- uses: actions/checkout@v3
@@ -139,7 +139,7 @@ jobs:
139139
- run: cargo update -Z minimal-versions
140140
# Now check that `cargo build` works with respect to the oldest possible
141141
# deps and the stated MSRV
142-
- uses: dtolnay/rust-toolchain@1.60.0
142+
- uses: dtolnay/rust-toolchain@1.71.0
143143
- run: cargo build --no-default-features --features serde
144144
# Also make sure the AVX2 build works
145145
- run: cargo build --target x86_64-unknown-linux-gnu

.github/workflows/ed25519-dalek.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
jobs:
2121

2222
msrv:
23-
name: Current MSRV is 1.60.0
23+
name: Current MSRV is 1.72.0
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v3
@@ -29,5 +29,5 @@ jobs:
2929
- run: cargo update -Z minimal-versions
3030
# Now check that `cargo build` works with respect to the oldest possible
3131
# deps and the stated MSRV
32-
- uses: dtolnay/rust-toolchain@1.60.0
32+
- uses: dtolnay/rust-toolchain@1.72.0
3333
- run: cargo build

.github/workflows/x25519-dalek.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
jobs:
2121

2222
msrv:
23-
name: Current MSRV is 1.60.0
23+
name: Current MSRV is 1.71.0
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v3
@@ -29,5 +29,5 @@ jobs:
2929
- run: cargo update -Z minimal-versions
3030
# Now check that `cargo build` works with respect to the oldest possible
3131
# deps and the stated MSRV
32-
- uses: dtolnay/rust-toolchain@1.60.0
32+
- uses: dtolnay/rust-toolchain@1.71.0
3333
- run: cargo build

curve25519-dalek/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "curve25519-dalek"
66
# - if README was updated, also update module documentation in src/lib.rs
77
version = "4.2.0-pre"
88
edition = "2021"
9-
rust-version = "1.60.0"
9+
rust-version = "1.71.0"
1010
authors = ["Isis Lovecruft <[email protected]>",
1111
"Henry de Valence <[email protected]>"]
1212
readme = "README.md"

ed25519-dalek/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"]
1616
categories = ["cryptography", "no-std"]
1717
description = "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust."
1818
exclude = [ ".gitignore", "TESTVECTORS", "VALIDATIONVECTORS", "res/*" ]
19-
rust-version = "1.60"
19+
rust-version = "1.72"
2020

2121
[package.metadata.docs.rs]
2222
rustdoc-args = [

x25519-dalek/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ exclude = [
2525
".travis.yml",
2626
"CONTRIBUTING.md",
2727
]
28-
rust-version = "1.60"
28+
rust-version = "1.71"
2929

3030
[badges]
3131
travis-ci = { repository = "dalek-cryptography/x25519-dalek", branch = "master"}

0 commit comments

Comments
 (0)