Skip to content

Commit 190a87c

Browse files
committed
Fix MSRV
1 parent 9c9e333 commit 190a87c

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,11 @@ jobs:
203203
with:
204204
toolchain: 1.63.0 # TODO: dynamically identify MSRV
205205

206+
- name: Update dependencies
207+
run: |
208+
cargo +1.63.0 update
209+
cargo +1.63.0 tree
210+
206211
- name: Verify msrv
207212
working-directory: ./aws-lc-rs
208213
run: cargo +1.63.0 check --features bindgen

aws-lc-fips-sys/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,9 @@ bindgen = { version = "0.69.5" }
7575
libc = "0.2.121"
7676
paste = "1.0.11"
7777

78+
[dev-dependencies]
79+
# Pinned dependency to preserve MSRV: 1.60.0 <= rust-version < 1.65.0
80+
regex = "~1.9.6"
81+
7882
[package.metadata.aws-lc-fips-sys]
7983
commit-hash = "ec94d74a19b5a0aa738b436a95bb06ff87fc7ba9"

aws-lc-rs-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "aws-lc-rs-testing"
33
authors = ["AWS-LibCrypto"]
44
version = "0.1.0"
55
edition = "2021"
6-
rust-version = "1.60"
6+
rust-version = "1.63"
77
publish = false
88

99
[features]

links-testing/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "links-testing"
33
version = "0.1.0"
44
edition = "2021"
5+
rust-version = "1.63.0"
56
publish = false
67

78
[features]

0 commit comments

Comments
 (0)