Skip to content

Commit

Permalink
[crypto-awslc] Don't use bindgen feature by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tomleavy committed Nov 13, 2023
1 parent 239784f commit 7244e0f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mls-rs-crypto-awslc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"

[dependencies]
aws-lc-rs = "1.4"
aws-lc-sys = { version = "0.11.0", features = ["bindgen"] }
aws-lc-sys = { version = "0.11.0" }
mls-rs-core = { path = "../mls-rs-core", version = "0.14.0" }
mls-rs-crypto-hpke = { path = "../mls-rs-crypto-hpke", version = "0.4.0" }
mls-rs-crypto-traits = { path = "../mls-rs-crypto-traits", version = "0.6.0" }
Expand All @@ -19,6 +19,9 @@ thiserror = "1.0.40"
zeroize = { version = "1", features = ["zeroize_derive"] }
maybe-async = "0.2.7"

[target.'cfg(all(target_arch = "aarch64", macos))'.dependencies]
aws-lc-sys = { version = "0.11.0", features = ["bindgen"] }

[dev-dependencies]
assert_matches = "1.5.0"
mls-rs-core = { path = "../mls-rs-core", version = "0.14.0", features = ["test_suite"] }
Expand Down

0 comments on commit 7244e0f

Please sign in to comment.