File tree 2 files changed +22
-2
lines changed 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 17
17
# We can pin the version if nightly is too unstable.
18
18
# Otherwise, we test against the latest version.
19
19
RUST_NIGHTLY_TOOLCHAIN : nightly-2024-06-07
20
+ RUST_SCRIPT_NIGHTLY_TOOLCHAIN : nightly-2024-05-22
20
21
# Mirai version tag, updates this whenever a new version
21
22
# is released.
22
23
MIRAI_TOOLCHAIN : nightly-2023-05-09
@@ -287,3 +288,22 @@ jobs:
287
288
package : aws-lc-rs
288
289
feature-group : only-explicit-features
289
290
features : fips
291
+ metadata-checks :
292
+ if : github.repository_owner == 'aws'
293
+ runs-on : ubuntu-latest
294
+ steps :
295
+ - uses : dtolnay/rust-toolchain@master
296
+ id : toolchain
297
+ with :
298
+ toolchain : ${{ env.RUST_SCRIPT_NIGHTLY_TOOLCHAIN }}
299
+ - name : Set Rust toolchain override
300
+ run : rustup override set ${{ steps.toolchain.outputs.name }}
301
+ - name : Checkout
302
+ uses : actions/checkout@v3
303
+ with :
304
+ submodules : ' recursive'
305
+ - name : aws-lc-rs links
306
+ run : |
307
+ VERSION=$(scripts/tools/cargo-dig.rs aws-lc-rs/Cargo.toml -v)
308
+ LINKS_LINE=$(echo links = \"aws_lc_rs_${VERSION//./_}_sys\")
309
+ grep "${LINKS_LINE}" aws-lc-rs/Cargo.toml
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " aws-lc-rs"
3
3
authors = [" AWS-LibCrypto" ]
4
- version = " 1.7.3 "
4
+ version = " 1.8.0 "
5
5
# this crate re-exports whatever sys crate that was selected
6
- links = " aws_lc_rs_1_7_1_sys "
6
+ links = " aws_lc_rs_1_8_0_sys "
7
7
edition = " 2021"
8
8
rust-version = " 1.63.0"
9
9
keywords = [" crypto" , " cryptography" , " security" ]
You can’t perform that action at this time.
0 commit comments