diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b536800fe..c4d8294afe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -183,6 +183,7 @@ argument use `void` as its sole argument. ## Removed ## Fixed +- Allow compiling `bindgen-cli` with a static libclang. ## Security # 0.68.1 diff --git a/bindgen-cli/Cargo.toml b/bindgen-cli/Cargo.toml index 72e231cf02..07e7786113 100644 --- a/bindgen-cli/Cargo.toml +++ b/bindgen-cli/Cargo.toml @@ -20,7 +20,7 @@ path = "main.rs" name = "bindgen" [dependencies] -bindgen = { path = "../bindgen", version = "=0.68.1", features = ["__cli", "experimental"] } +bindgen = { path = "../bindgen", version = "=0.68.1", default-features = false, features = ["__cli", "experimental"] } clap = { version = "4", features = ["derive"] } clap_complete = "4" env_logger = { version = "0.10.0", optional = true }