Skip to content

Commit 4895a79

Browse files
authored
Fix MSRV CI - libloading (#888)
1 parent d120394 commit 4895a79

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ untrusted = "0.7.1"
3333
zeroize = "1.8.1"
3434
toml_edit = "0.23.0"
3535

36+
# libloading v0.8.9 has MSRV of 1.71.0
37+
libloading = "=0.8.8"
38+
3639
[profile.bench]
3740
lto = true
3841

aws-lc-fips-sys/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ dunce.workspace = true
7070
fs_extra.workspace = true
7171
cc.workspace = true
7272
regex.workspace = true
73+
# libloading v0.8.9 has MSRV of 1.71.0
74+
libloading.workspace = true
7375

7476
[target.'cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), any(target_os = "linux", target_os = "macos"), any(target_env = "gnu", target_env = "musl", target_env = "")))'.build-dependencies]
7577
bindgen = { workspace = true, optional = true }
@@ -82,3 +84,6 @@ regex.workspace = true
8284

8385
[package.metadata.aws-lc-fips-sys]
8486
commit-hash = "fcd86b8478a66721b3356e1fe85a0d1e31a4e834"
87+
88+
[package.metadata.cargo-udeps.ignore]
89+
build = ["libloading"]

aws-lc-sys/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ cmake.workspace = true
6969
dunce.workspace = true
7070
fs_extra.workspace = true
7171
cc = { workspace = true, features = ["parallel"] }
72+
# libloading v0.8.9 has MSRV of 1.71.0
73+
libloading.workspace = true
7274

7375
[target.'cfg(any(all(any(target_arch="x86_64",target_arch="aarch64"),any(target_os="linux",target_os="macos",target_os="windows"),any(target_env="gnu",target_env="musl",target_env="msvc",target_env="")),all(target_arch="x86",target_os="windows",target_env="msvc"),all(target_arch="x86",target_os="linux",target_env="gnu")))'.build-dependencies]
7476
bindgen = { workspace = true, optional = true }
@@ -78,3 +80,6 @@ bindgen.workspace = true
7880

7981
[package.metadata.aws-lc-sys]
8082
commit-hash = "0fa8839018a3d98bae2fb24c557183d8ca02e6c5"
83+
84+
[package.metadata.cargo-udeps.ignore]
85+
build = ["libloading"]

0 commit comments

Comments
 (0)