1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -68,3 +68,3 @@
[build-dependencies.bindgen]
-version = "0.69"
+version = "0"
default-features = false
@@ -81,6 +81,6 @@
bindgen-runtime = ["bindgen/runtime"]
-bindgen-static = ["bindgen/static"]
+#bindgen-static = ["bindgen/static"]
bzip2 = ["bzip2-sys"]
default = [
- "static",
+# "static",
"bindgen/runtime",
@@ -94,6 +94,6 @@
snappy = []
-static = [
- "libz-sys?/static",
- "bzip2-sys?/static",
-]
+#static = [
+# "libz-sys?/static",
+# "bzip2-sys?/static",
+#]
zlib = ["libz-sys"]
|