mentat/tolstoy-traits/Cargo.toml
Grisha Kruglov 9e8292e68b Allow 'sqlcipher' feature for all uses of rusqlite
This also patches our CI test script to only run "--feature sqlcipher"
tests on sub-crates which expose this feature (i.e. themselves rely on rusqlite).
2018-08-20 16:55:34 -07:00

26 lines
395 B
TOML

[package]
name = "tolstoy_traits"
version = "0.0.1"
workspace = ".."
[lib]
name = "tolstoy_traits"
path = "lib.rs"
[features]
sqlcipher = ["rusqlite/sqlcipher"]
[dependencies]
failure = "0.1.1"
failure_derive = "0.1.1"
hyper = "0.11"
serde_json = "1.0"
uuid = { version = "0.5" }
[dependencies.db_traits]
path = "../db-traits"
[dependencies.rusqlite]
version = "0.13"
features = ["limits"]