mentat/sql/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

25 lines
379 B
TOML

[package]
name = "mentat_sql"
version = "0.0.1"
workspace = ".."
[features]
sqlcipher = ["rusqlite/sqlcipher"]
[dependencies]
failure = "0.1.1"
ordered-float = "0.5"
[dependencies.rusqlite]
version = "0.13"
features = ["limits"]
[dependencies.core_traits]
path = "../core-traits"
[dependencies.mentat_core]
path = "../core"
[dependencies.sql_traits]
path = "../sql-traits"