Skip to content

Commit e10b2ff

Browse files
tls_codec: bump clap to v4.5 (#1628)
Trying to fix the security audit Update MSRV to 1.74 --------- Co-authored-by: Franziskus Kiefer <[email protected]>
1 parent 5c1e2c4 commit e10b2ff

File tree

5 files changed

+45
-103
lines changed

5 files changed

+45
-103
lines changed

.github/workflows/tls_codec.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.70.0 # MSRV
27+
- 1.74.0 # MSRV
2828
- stable
2929
target:
3030
- wasm32-unknown-unknown
@@ -50,15 +50,15 @@ jobs:
5050
include:
5151
# 32-bit Linux
5252
- targets: i686-unknown-linux-gnu
53-
rust: 1.70.0 # MSRV
53+
rust: 1.74.0 # MSRV
5454
deps: sudo apt update && sudo apt install gcc-multilib
5555
- targets: i686-unknown-linux-gnu
5656
rust: stable
5757
deps: sudo apt update && sudo apt install gcc-multilib
5858

5959
# 64-bit Linux
6060
- targets: x86_64-unknown-linux-gnu
61-
rust: 1.70.0 # MSRV
61+
rust: 1.74.0 # MSRV
6262
- targets: x86_64-unknown-linux-gnu
6363
rust: stable
6464
steps:

Cargo.lock

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

tls_codec/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
- [#1628](https://github.com/RustCrypto/formats/pull/1628) Bump MSRV to 1.74
11+
1012
## 0.4.1
1113

1214
- [#1284](https://github.com/RustCrypto/formats/pull/1284): implement `U24`. A `U24` integer type can be used for length encoding in three bytes.

tls_codec/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
homepage = "https://github.com/RustCrypto/formats/tree/master/tls_codec"
1010
repository = "https://github.com/RustCrypto/formats"
1111
edition = "2021"
12-
rust-version = "1.70"
12+
rust-version = "1.74"
1313

1414
[dependencies]
1515
zeroize = { version = "1.8", default-features = false, features = [
@@ -23,10 +23,10 @@ tls_codec_derive = { version = "=0.4.1", path = "./derive", optional = true }
2323
serde = { version = "1.0.184", features = ["derive"], optional = true }
2424

2525
[dev-dependencies]
26-
clap = "=4.3.23" # pinned to preserve MSRV
27-
clap_lex = "=0.5.0" # pinned to preserve MSRV
28-
anstyle = "=1.0.2" # pinned to preserve MSRV
29-
anstyle-parse = "=0.2.1" # pinned to preserve MSRV
26+
clap = "=4.5.23" # pinned to preserve MSRV
27+
clap_lex = "=0.7.4" # pinned to preserve MSRV
28+
anstyle = "=1.0.10" # pinned to preserve MSRV
29+
anstyle-parse = "=0.2.6" # pinned to preserve MSRV
3030
criterion = { version = "0.5", default-features = false }
3131
regex = "1.8"
3232

tls_codec/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ serialization/deserialization
3737

3838
## Minimum Supported Rust Version
3939

40-
This crate requires **Rust 1.70.0** at a minimum.
40+
This crate requires **Rust 1.74.0** at a minimum.
4141

4242
We may change the MSRV in the future, but it will be accompanied by a minor
4343
version bump.

0 commit comments

Comments
 (0)