Disable benches by default

This commit is contained in:
gwenn 2020-03-08 16:14:04 +01:00
parent 8ddacbb27c
commit 0edc91e8ef
2 changed files with 22 additions and 17 deletions

View File

@ -56,6 +56,7 @@ series = ["vtab"]
# check for invalid query.
extra_check = []
modern_sqlite = ["libsqlite3-sys/bundled_bindings"]
unstable = []
[dependencies]
time = "0.1.0"

View File

@ -1,4 +1,7 @@
#![feature(test)]
#![cfg_attr(feature = "unstable", feature(test))]
#[cfg(feature = "unstable")]
mod bench {
extern crate test;
use rusqlite::Connection;
@ -18,3 +21,4 @@ fn bench_cache(b: &mut Bencher) {
let sql = "SELECT 1, 'test', 3.14 UNION SELECT 2, 'exp', 2.71";
b.iter(|| db.prepare_cached(sql).unwrap());
}
}