mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 07:09:20 +08:00
Fix clippy warnings
This commit is contained in:
parent
eaade5970d
commit
f971c6e625
@ -21,4 +21,4 @@ mod bench {
|
|||||||
let sql = "SELECT 1, 'test', 3.14 UNION SELECT 2, 'exp', 2.71";
|
let sql = "SELECT 1, 'test', 3.14 UNION SELECT 2, 'exp', 2.71";
|
||||||
b.iter(|| db.prepare_cached(sql).unwrap());
|
b.iter(|| db.prepare_cached(sql).unwrap());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,7 @@ fn main() {
|
|||||||
all(windows, feature = "bundled-windows")
|
all(windows, feature = "bundled-windows")
|
||||||
)) {
|
)) {
|
||||||
println!(
|
println!(
|
||||||
"cargo:warning={}",
|
"cargo:warning=Builds with bundled SQLCipher are not supported. Searching for SQLCipher to link against. \
|
||||||
"Builds with bundled SQLCipher are not supported. Searching for SQLCipher to link against. \
|
|
||||||
This can lead to issues if your version of SQLCipher is not up to date!");
|
This can lead to issues if your version of SQLCipher is not up to date!");
|
||||||
}
|
}
|
||||||
build_linked::main(&out_dir, &out_path)
|
build_linked::main(&out_dir, &out_path)
|
||||||
@ -280,7 +279,7 @@ mod bindings {
|
|||||||
use std::fs;
|
use std::fs;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
static PREBUILT_BINDGEN_PATHS: &'static [&'static str] = &[
|
static PREBUILT_BINDGEN_PATHS: &[&str] = &[
|
||||||
"bindgen-bindings/bindgen_3.6.8.rs",
|
"bindgen-bindings/bindgen_3.6.8.rs",
|
||||||
#[cfg(feature = "min_sqlite_version_3_6_23")]
|
#[cfg(feature = "min_sqlite_version_3_6_23")]
|
||||||
"bindgen-bindings/bindgen_3.6.23.rs",
|
"bindgen-bindings/bindgen_3.6.23.rs",
|
||||||
|
Loading…
Reference in New Issue
Block a user