We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e64aa9 commit 48427c1Copy full SHA for 48427c1
Cargo.toml
@@ -11,7 +11,7 @@ path = "src/main.rs"
11
[dependencies]
12
clap = { version = "4", features = ["derive"] }
13
colored = "2"
14
-ddcutil-sys = { workspace = true, feature = "bindgen" }
+ddcutil-sys = { workspace = true, features = ["bindgen"] }
15
error-stack = "0.5"
16
thiserror = "2"
17
tracing = "0.1.37"
ddcutil-sys/build.rs
@@ -6,7 +6,8 @@ pub fn main() {
6
let bindings = bindgen::Builder::default()
7
.header("headers/ddcutil.h")
8
.header("headers/version.h")
9
- .allowlist_file("ddcutil_c_api.h")
+ // .allowlist_file("*.c_api\\.h")
10
+ // .allowlist_file("*._types\\.h")
.generate()
.expect("Bindings");
bindings
0 commit comments