diff --git a/Cargo.lock b/Cargo.lock index 97b35b087b3..0d2b3433f54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -106,12 +106,27 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +[[package]] +name = "aws-lc-fips-sys" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56a70a3374eac10861d3031f2e32047f5e8c695b6739562f5ebe00d4ccece710" +dependencies = [ + "bindgen 0.69.2", + "cmake", + "dunce", + "fs_extra", + "libc", + "paste", +] + [[package]] name = "aws-lc-rs" version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb94ba389c4c48d9dc1983f8653cb92f7d9fc50b261e0501be2b7a636cbcbc4a" dependencies = [ + "aws-lc-fips-sys", "aws-lc-sys", "mirai-annotations", "paste", diff --git a/src/vmm/Cargo.toml b/src/vmm/Cargo.toml index 7092dcfe4b5..f3b63a40455 100644 --- a/src/vmm/Cargo.toml +++ b/src/vmm/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" bench = false [dependencies] -aws-lc-rs = "1.0.2" +aws-lc-rs = { version = "1.6.1", features = ["bindgen"] } bitflags = "2.0.2" derive_more = { version = "0.99.17", default-features = false, features = ["from", "display"] } event-manager = "0.4.0"