diff options
author | HampusM <hampus@hampusmat.com> | 2023-11-12 23:20:52 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-11-12 23:20:52 +0100 |
commit | f41dc3c52e396dd7ed9e94518dba904b17cd3936 (patch) | |
tree | 34d4b3c136910599682cc0ae39eedf47dec74749 /glfw | |
parent | 8d821588cd4f51d4ae9c4ef52d45c0af0e1ce9e5 (diff) |
build(glfw): disable default features of bindgen dependency
Diffstat (limited to 'glfw')
-rw-r--r-- | glfw/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/glfw/Cargo.toml b/glfw/Cargo.toml index 9f7ecde..71d4913 100644 --- a/glfw/Cargo.toml +++ b/glfw/Cargo.toml @@ -7,5 +7,7 @@ edition = "2021" libc = "0.2.148" thiserror = "1.0.49" -[build-dependencies] -bindgen = "0.68.1" +[build-dependencies.bindgen] +version = "0.68.1" +default-features = false +features = ["runtime"] |