Skip to content

Commit

Permalink
fix: enable bindgen feature of aws-lc-rs
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
roypat authored and wearyzen committed Jan 30, 2024
1 parent f0948e1 commit 43aae6e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 43aae6e

Please sign in to comment.