Skip to content

Commit

Permalink
Fix MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Dec 11, 2024
1 parent 79da5fa commit e61343b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ jobs:
with:
toolchain: 1.63.0 # TODO: dynamically identify MSRV

- name: Update dependencies
run: |
cargo +1.63.0 update
cargo +1.63.0 tree
- name: Verify msrv
working-directory: ./aws-lc-rs
run: cargo +1.63.0 check --features bindgen
4 changes: 4 additions & 0 deletions aws-lc-fips-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,9 @@ bindgen = { version = "0.69.5" }
libc = "0.2.121"
paste = "1.0.11"

[dev-dependencies]
# Pinned dependency to preserve MSRV: 1.60.0 <= rust-version < 1.65.0
regex = "~1.9.6"

[package.metadata.aws-lc-fips-sys]
commit-hash = "ec94d74a19b5a0aa738b436a95bb06ff87fc7ba9"
2 changes: 1 addition & 1 deletion aws-lc-rs-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aws-lc-rs-testing"
authors = ["AWS-LibCrypto"]
version = "0.1.0"
edition = "2021"
rust-version = "1.60"
rust-version = "1.63"
publish = false

[features]
Expand Down
1 change: 1 addition & 0 deletions links-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "links-testing"
version = "0.1.0"
edition = "2021"
rust-version = "1.63.0"
publish = false

[features]
Expand Down

0 comments on commit e61343b

Please sign in to comment.