mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Fix features dependencies
This commit is contained in:
parent
9c5c9e3c7e
commit
30e23cf0a0
@ -28,8 +28,8 @@ buildtime_bindgen = ["libsqlite3-sys/buildtime_bindgen"]
|
||||
limits = []
|
||||
hooks = []
|
||||
sqlcipher = ["libsqlite3-sys/sqlcipher"]
|
||||
vtab = ["libsqlite3-sys/min_sqlite_version_3_7_7"]
|
||||
csvtab = ["csv"]
|
||||
vtab = ["functions", "libsqlite3-sys/min_sqlite_version_3_7_7"]
|
||||
csvtab = ["csv", "vtab"]
|
||||
|
||||
[dependencies]
|
||||
time = "0.1.0"
|
||||
|
@ -125,7 +125,7 @@ pub mod limits;
|
||||
mod hooks;
|
||||
#[cfg(feature = "hooks")]
|
||||
pub use hooks::*;
|
||||
#[cfg(all(feature = "vtab", feature = "functions"))]
|
||||
#[cfg(feature = "vtab")]
|
||||
pub mod vtab;
|
||||
|
||||
// Number of cached prepared statements we'll hold on to.
|
||||
|
Loading…
Reference in New Issue
Block a user