mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 08:59:29 +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 = []
|
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"
|
||||||
|
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user