Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ untrusted = "0.7.1"
zeroize = "1.8.1"
toml_edit = "0.23.0"

# libloading v0.8.9 has MSRV of 1.71.0
libloading = "=0.8.8"

[profile.bench]
lto = true

Expand Down
5 changes: 5 additions & 0 deletions aws-lc-fips-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ dunce.workspace = true
fs_extra.workspace = true
cc.workspace = true
regex.workspace = true
# libloading v0.8.9 has MSRV of 1.71.0
libloading.workspace = true

[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]
bindgen = { workspace = true, optional = true }
Expand All @@ -82,3 +84,6 @@ regex.workspace = true

[package.metadata.aws-lc-fips-sys]
commit-hash = "fcd86b8478a66721b3356e1fe85a0d1e31a4e834"

[package.metadata.cargo-udeps.ignore]
build = ["libloading"]
5 changes: 5 additions & 0 deletions aws-lc-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ cmake.workspace = true
dunce.workspace = true
fs_extra.workspace = true
cc = { workspace = true, features = ["parallel"] }
# libloading v0.8.9 has MSRV of 1.71.0
libloading.workspace = true

[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]
bindgen = { workspace = true, optional = true }
Expand All @@ -78,3 +80,6 @@ bindgen.workspace = true

[package.metadata.aws-lc-sys]
commit-hash = "0fa8839018a3d98bae2fb24c557183d8ca02e6c5"

[package.metadata.cargo-udeps.ignore]
build = ["libloading"]
Loading