Remove old_sqlite feature

And associated bindgen_3.6.8.rs
This commit is contained in:
gwenn
2022-08-22 18:32:55 +02:00
committed by Thom Chiovoloni
parent 15d56bcb52
commit 6766d6a6cd
15 changed files with 5 additions and 1918 deletions

View File

@@ -19,7 +19,6 @@ bundled-sqlcipher = ["bundled"]
bundled-sqlcipher-vendored-openssl = ["bundled-sqlcipher", "openssl-sys/vendored"]
buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
sqlcipher = []
min_sqlite_version_3_6_8 = ["pkg-config", "vcpkg"]
min_sqlite_version_3_7_16 = ["pkg-config", "vcpkg"]
min_sqlite_version_3_14_0 = ["pkg-config", "vcpkg"]
# Bundle only the bindings file. Note that this does nothing if

File diff suppressed because it is too large Load Diff

View File

@@ -474,16 +474,11 @@ mod bindings {
use std::path::Path;
static PREBUILT_BINDGEN_PATHS: &[&str] = &[
#[cfg(feature = "min_sqlite_version_3_6_8")]
"bindgen-bindings/bindgen_3.6.8.rs",
#[cfg(feature = "min_sqlite_version_3_7_16")]
"bindgen-bindings/bindgen_3.7.16.rs",
#[cfg(any(
feature = "min_sqlite_version_3_14_0",
not(any(
feature = "min_sqlite_version_3_7_16",
feature = "min_sqlite_version_3_6_8"
))
not(any(feature = "min_sqlite_version_3_7_16",))
))]
"bindgen-bindings/bindgen_3.14.0.rs",
];