bff24c60b7
* Add a top-level "syncable" feature. Tested with: cargo test --all cargo test --all --no-default-features cargo build --manifest-path tools/cli/Cargo.toml --no-default-features cargo run --manifest-path tools/cli/Cargo.toml --no-default-features debugcli Co-authored-by: Nick Alexander <nalexander@mozilla.com> * Add 'syncable' feature to 'db' crate to conditionally derive serialization for Partition* This is leading up to syncing with partition support.
53 lines
881 B
TOML
53 lines
881 B
TOML
[package]
|
|
name = "mentat_cli"
|
|
version = "0.0.1"
|
|
|
|
# Forward mentat's features.
|
|
[features]
|
|
default = ["bundled_sqlite3", "syncable"]
|
|
sqlcipher = ["mentat/sqlcipher"]
|
|
bundled_sqlite3 = ["mentat/bundled_sqlite3"]
|
|
syncable = ["mentat/syncable"]
|
|
|
|
[lib]
|
|
name = "mentat_cli"
|
|
path = "src/mentat_cli/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "mentat_cli"
|
|
doc = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
combine = "2.2.2"
|
|
env_logger = "0.5"
|
|
failure = "0.1.1"
|
|
failure_derive = "0.1.1"
|
|
getopts = "0.2"
|
|
lazy_static = "0.2"
|
|
linefeed = "0.5"
|
|
log = "0.4"
|
|
tabwriter = "1"
|
|
tempfile = "1.1"
|
|
termion = "1"
|
|
time = "0.1"
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.13"
|
|
features = ["limits"]
|
|
|
|
[dependencies.mentat]
|
|
path = "../.."
|
|
default-features = false
|
|
|
|
[dependencies.edn]
|
|
path = "../../edn"
|
|
|
|
[dependencies.mentat_query]
|
|
path = "../../query"
|
|
|
|
[dependencies.mentat_core]
|
|
path = "../../core"
|
|
|
|
[dependencies.mentat_db]
|
|
path = "../../db"
|