Skip to content

Commit 43aae6e

Browse files
roypatwearyzen
authored andcommitted
fix: enable bindgen feature of aws-lc-rs
Since 1.6.1 aws-lc-sys no longer automatically generates its bindings, instead requiring you to enable the `bindgen` feature if you want to. This fixes the CI error ``` thread 'main' panicked at [...]/aws-lc-sys-0.13.0/builder/main.rs:286:5: E aws-lc-sys build failed. Please enable the 'bindgen' feature on aws-lc-rs or aws-lc-sys ``` Signed-off-by: Patrick Roy <[email protected]>
1 parent f0948e1 commit 43aae6e

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Cargo.lock

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vmm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
bench = false
1010

1111
[dependencies]
12-
aws-lc-rs = "1.0.2"
12+
aws-lc-rs = { version = "1.6.1", features = ["bindgen"] }
1313
bitflags = "2.0.2"
1414
derive_more = { version = "0.99.17", default-features = false, features = ["from", "display"] }
1515
event-manager = "0.4.0"

0 commit comments

Comments
 (0)