From abe1792f59e9e0642947826e89f890e0f1d0811b Mon Sep 17 00:00:00 2001 From: gwenn Date: Thu, 30 Aug 2018 21:15:38 +0200 Subject: [PATCH] `array` feature should not require `bundled` #384 Minimal fix --- .travis.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4833c9..68c645b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,7 +38,7 @@ script: - cargo test --features bundled - cargo test --features sqlcipher - cargo test --features "unlock_notify bundled" - - cargo test --features "array csvtab vtab" + - cargo test --features "array bundled csvtab vtab" - cargo test --features "backup blob chrono csvtab functions hooks limits load_extension serde_json trace vtab" - cargo test --features "backup blob chrono csvtab functions hooks limits load_extension serde_json trace vtab buildtime_bindgen" - cargo test --features "backup blob chrono csvtab functions hooks limits load_extension serde_json trace vtab bundled" diff --git a/Cargo.toml b/Cargo.toml index 1ee4818..dcaf27e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ unlock_notify = ["libsqlite3-sys/unlock_notify"] vtab = ["libsqlite3-sys/min_sqlite_version_3_7_7", "lazy_static"] csvtab = ["csv", "vtab"] # pointer passing interfaces: 3.20.0 -array = ["vtab", "bundled"] +array = ["vtab"] [dependencies] time = "0.1.0"