9e8292e68b
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).
25 lines
364 B
TOML
25 lines
364 B
TOML
[package]
|
|
name = "db_traits"
|
|
version = "0.0.1"
|
|
workspace = ".."
|
|
|
|
[lib]
|
|
name = "db_traits"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
sqlcipher = ["rusqlite/sqlcipher"]
|
|
|
|
[dependencies]
|
|
failure = "0.1.1"
|
|
failure_derive = "0.1.1"
|
|
|
|
[dependencies.edn]
|
|
path = "../edn"
|
|
|
|
[dependencies.core_traits]
|
|
path = "../core-traits"
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.13"
|
|
features = ["limits"]
|