Reexport the features of sqlite3-sys

This commit is contained in:
Ivan Ukhov 2016-02-28 13:11:44 +01:00
parent 45508fb2b6
commit f33b528538

View File

@ -12,14 +12,18 @@ documentation = "https://stainless-steel.github.io/sqlite"
homepage = "https://github.com/stainless-steel/sqlite"
repository = "https://github.com/stainless-steel/sqlite"
[features]
default = ["standard"]
standard = ["sqlite3-sys/standard"]
sqlcipher = ["sqlite3-sys/sqlcipher"]
[dependencies]
libc = "0.2"
sqlite3-sys = "0.6"
[dependencies.sqlite3-sys]
sqlite3-sys = "0.7"
default-features = false
[dev-dependencies]
temporary = "0.5"
[features]
# Link sqlite3-sys against sqlcipher, instead of sqlite3,
# enabling support for transparent database encryption.
sqlcipher = ["sqlite3-sys/sqlcipher"]