2017-11-21 16:56:16 +00:00
|
|
|
[package]
|
|
|
|
name = "mentat_cli"
|
|
|
|
version = "0.0.1"
|
|
|
|
|
2018-06-13 15:49:40 +00:00
|
|
|
# Forward mentat's features.
|
|
|
|
[features]
|
2018-07-11 23:26:06 +00:00
|
|
|
default = ["bundled_sqlite3", "syncable"]
|
2018-06-13 15:49:40 +00:00
|
|
|
sqlcipher = ["mentat/sqlcipher"]
|
|
|
|
bundled_sqlite3 = ["mentat/bundled_sqlite3"]
|
2018-07-11 23:26:06 +00:00
|
|
|
syncable = ["mentat/syncable"]
|
2018-06-13 15:49:40 +00:00
|
|
|
|
2017-11-21 16:56:16 +00:00
|
|
|
[lib]
|
|
|
|
name = "mentat_cli"
|
|
|
|
path = "src/mentat_cli/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "mentat_cli"
|
|
|
|
doc = false
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-20 20:47:31 +00:00
|
|
|
combine = "4.0"
|
|
|
|
dirs = "2.0"
|
|
|
|
env_logger = "0.7"
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
2018-01-30 22:11:41 +00:00
|
|
|
getopts = "0.2"
|
2020-01-20 20:47:31 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
linefeed = "0.6"
|
2018-05-01 20:46:03 +00:00
|
|
|
log = "0.4"
|
2018-01-30 22:11:41 +00:00
|
|
|
tabwriter = "1"
|
2020-01-20 20:47:31 +00:00
|
|
|
tempfile = "3.1"
|
|
|
|
termion = "1.5"
|
|
|
|
time = "0.2"
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2020-01-14 15:46:21 +00:00
|
|
|
version = "0.21"
|
2018-02-13 16:25:58 +00:00
|
|
|
features = ["limits"]
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.mentat]
|
|
|
|
path = "../.."
|
2018-06-13 15:49:40 +00:00
|
|
|
default-features = false
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.edn]
|
|
|
|
path = "../../edn"
|
|
|
|
|
2018-08-08 17:36:41 +00:00
|
|
|
[dependencies.core_traits]
|
|
|
|
path = "../../core-traits"
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.mentat_db]
|
|
|
|
path = "../../db"
|