summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-12-03 19:52:05 +0100
committerHampusM <hampus@hampusmat.com>2023-12-03 19:52:05 +0100
commit66f5121eb49639ed4904df2fe10289dda79fe8c4 (patch)
treecfc66c67f74644293bdf1a0d11431d5a5057e403
parent067d5c321ca186382cedab2718cbe3ecd0651a33 (diff)
build: only use the bindgen runtime crate feature
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 282fa10..f767b94 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,10 +7,14 @@ description = "Low-level OpenGL bindings"
[dependencies]
[build-dependencies]
-bindgen = "0.63.0"
opengl-registry = "0.2.0"
quote = "1.0.23"
proc-macro2 = "1.0.56"
convert_case = "0.6.0"
regex = "1.7.1"
once_cell = "1.17.0"
+
+[build-dependencies.bindgen]
+version = "0.63.0"
+default-features = false
+features = ["runtime"]