Fix features dependencies

This commit is contained in:
gwenn 2018-04-30 22:09:41 +02:00
parent 9c5c9e3c7e
commit 30e23cf0a0
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ buildtime_bindgen = ["libsqlite3-sys/buildtime_bindgen"]
limits = [] limits = []
hooks = [] hooks = []
sqlcipher = ["libsqlite3-sys/sqlcipher"] sqlcipher = ["libsqlite3-sys/sqlcipher"]
vtab = ["libsqlite3-sys/min_sqlite_version_3_7_7"] vtab = ["functions", "libsqlite3-sys/min_sqlite_version_3_7_7"]
csvtab = ["csv"] csvtab = ["csv", "vtab"]
[dependencies] [dependencies]
time = "0.1.0" time = "0.1.0"

View File

@ -125,7 +125,7 @@ pub mod limits;
mod hooks; mod hooks;
#[cfg(feature = "hooks")] #[cfg(feature = "hooks")]
pub use hooks::*; pub use hooks::*;
#[cfg(all(feature = "vtab", feature = "functions"))] #[cfg(feature = "vtab")]
pub mod vtab; pub mod vtab;
// Number of cached prepared statements we'll hold on to. // Number of cached prepared statements we'll hold on to.