Skip to content

Commit 9c0be2e

Browse files
committed
MSRV 1.81 fixups
The MSRVs for dependent crates did not get bumped before #1660 was merged. This bumps them accordingly.
1 parent 66ca151 commit 9c0be2e

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/cipher.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
rust:
26-
- 1.65.0 # MSRV
26+
- 1.81.0 # MSRV
2727
- stable
2828
target:
2929
- thumbv7em-none-eabi
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
matrix:
5959
rust:
60-
- 1.65.0 # MSRV
60+
- 1.81.0 # MSRV
6161
- stable
6262
steps:
6363
- uses: actions/checkout@v4

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ members = [
1616
]
1717

1818
[patch.crates-io]
19+
crypto-common = { path = "./crypto-common" }
1920
digest = { path = "./digest" }
2021
signature = { path = "./signature" }

cipher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
88
edition = "2021"
9-
rust-version = "1.65"
9+
rust-version = "1.81"
1010
documentation = "https://docs.rs/cipher"
1111
repository = "https://github.com/RustCrypto/traits"
1212
keywords = ["crypto", "block-cipher", "stream-cipher", "trait"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common/" }
16+
crypto-common = "0.2.0-rc.1"
1717
inout = "0.2.0-rc.0"
1818

1919
# optional dependencies

cipher/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ implementations which use these traits.
1616

1717
## Minimum Supported Rust Version
1818

19-
Rust **1.65** or higher.
19+
Rust **1.81** or higher.
2020

2121
Minimum supported Rust version can be changed in the future, but it will be
2222
done with a minor version bump.
@@ -48,7 +48,7 @@ dual licensed as above, without any additional terms or conditions.
4848
[docs-image]: https://docs.rs/cipher/badge.svg
4949
[docs-link]: https://docs.rs/cipher/
5050
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
51-
[rustc-image]: https://img.shields.io/badge/rustc-1.65+-blue.svg
51+
[rustc-image]: https://img.shields.io/badge/rustc-1.81+-blue.svg
5252
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
5353
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260050-traits
5454
[build-image]: https://github.com/RustCrypto/traits/workflows/cipher/badge.svg?branch=master&event=push

digest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
88
edition = "2021"
9-
rust-version = "1.71"
9+
rust-version = "1.81"
1010
documentation = "https://docs.rs/digest"
1111
repository = "https://github.com/RustCrypto/traits"
1212
keywords = ["digest", "crypto", "hash"]

universal-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Traits which describe the functionality of universal hash functio
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
edition = "2021"
8-
rust-version = "1.65"
8+
rust-version = "1.81"
99
readme = "README.md"
1010
documentation = "https://docs.rs/universal-hash"
1111
repository = "https://github.com/RustCrypto/traits"

0 commit comments

Comments
 (0)