Skip to content

Commit 4054bf4

Browse files
committed
dsa,ecdsa,lms,slh-dsa,rfc6979: bump MSRV to 1.81
1 parent 06b5b6d commit 4054bf4

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

.github/workflows/dsa.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- thumbv7em-none-eabi
2525
- wasm32-unknown-unknown
2626
toolchain:
27-
- 1.72.0 # MSRV
27+
- 1.81.0 # MSRV
2828
- stable
2929
steps:
3030
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
- macos-latest
4343
- windows-latest
4444
toolchain:
45-
- 1.72.0 # MSRV
45+
- 1.81.0 # MSRV
4646
- stable
4747
runs-on: ${{ matrix.platform }}
4848
steps:

.github/workflows/ecdsa.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- thumbv7em-none-eabi
2727
- wasm32-unknown-unknown
2828
rust:
29-
- 1.73.0 # MSRV
29+
- 1.81.0 # MSRV
3030
- stable
3131
steps:
3232
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.73.0 # MSRV
45+
- 1.81.0 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v4

.github/workflows/lms.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.73.0 # MSRV
25+
- 1.81.0 # MSRV
2626
- stable
2727
steps:
2828
- uses: actions/checkout@v4

.github/workflows/rfc6979.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- thumbv7em-none-eabi
2525
- wasm32-unknown-unknown
2626
rust:
27-
- 1.72.0 # MSRV
27+
- 1.81.0 # MSRV
2828
- stable
2929
steps:
3030
- uses: actions/checkout@v4
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
rust:
42-
- 1.72.0 # MSRV
42+
- 1.81.0 # MSRV
4343
- stable
4444
steps:
4545
- uses: actions/checkout@v4

.github/workflows/slh-dsa.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.75.0 # MSRV
25+
- 1.81.0 # MSRV
2626
- stable
2727
steps:
2828
- uses: actions/checkout@v4

.github/workflows/workspace.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- uses: actions/checkout@v4
3030
- uses: dtolnay/rust-toolchain@master
3131
with:
32-
toolchain: 1.75.0
32+
toolchain: 1.81.0
3333
components: clippy
3434
- run: cargo clippy --all-features -- -D warnings

dsa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ homepage = "https://github.com/RustCrypto/signatures/tree/master/dsa"
1313
repository = "https://github.com/RustCrypto/signatures"
1414
categories = ["cryptography", "no-std"]
1515
keywords = ["crypto", "nist", "signature"]
16-
rust-version = "1.72"
16+
rust-version = "1.81"
1717

1818
[dependencies]
1919
digest = "=0.11.0-pre.9"

ecdsa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "README.md"
1414
categories = ["cryptography", "no-std"]
1515
keywords = ["crypto", "ecc", "nist", "secp256k1", "signature"]
1616
edition = "2021"
17-
rust-version = "1.73"
17+
rust-version = "1.81"
1818

1919
[dependencies]
2020
elliptic-curve = { version = "0.14.0-rc.1", default-features = false, features = ["digest", "sec1"] }

lms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0 OR MIT"
77
homepage = "https://github.com/RustCrypto/signatures/tree/master/lms"
88
repository = "https://github.com/RustCrypto/signatures"
99
readme = "README.md"
10-
rust-version = "1.73"
10+
rust-version = "1.81"
1111
categories = ["cryptography"]
1212
keywords = ["crypto", "signature"]
1313

rfc6979/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
categories = ["cryptography", "no-std"]
1414
keywords = ["dsa", "ecdsa", "signature"]
1515
edition = "2021"
16-
rust-version = "1.72"
16+
rust-version = "1.81"
1717

1818
[dependencies]
1919
hmac = { version = "=0.13.0-pre.4", default-features = false, features = ["reset"] }

slh-dsa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FIPS-205 standard
66
"""
77
version = "0.1.0"
88
edition = "2021"
9-
rust-version = "1.75"
9+
rust-version = "1.81"
1010
license = "Apache-2.0 OR MIT"
1111
homepage = "https://github.com/RustCrypto/signatures/tree/master/slh-dsa"
1212
repository = "https://github.com/RustCrypto/signatures"

0 commit comments

Comments
 (0)