2017-11-21 16:56:16 +00:00
|
|
|
[package]
|
|
|
|
name = "mentat_cli"
|
2020-05-25 14:51:22 +00:00
|
|
|
version = "0.0.2"
|
2017-11-21 16:56:16 +00:00
|
|
|
|
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]
|
2021-07-02 14:06:31 +00:00
|
|
|
combine = "~4.6"
|
2020-08-06 03:03:58 +00:00
|
|
|
dirs = "~3.0"
|
2020-10-19 10:28:38 +00:00
|
|
|
env_logger = "~0.8"
|
2020-05-25 14:51:22 +00:00
|
|
|
failure = "~0.1"
|
|
|
|
failure_derive = "~0.1"
|
|
|
|
getopts = "~0.2"
|
|
|
|
lazy_static = "~1.4"
|
|
|
|
linefeed = "~0.6"
|
|
|
|
log = "~0.4"
|
|
|
|
tabwriter = "~1.2"
|
2021-07-02 14:06:01 +00:00
|
|
|
tempfile = "~3.2"
|
2020-05-25 14:51:22 +00:00
|
|
|
termion = "~1.5"
|
|
|
|
time = "~0.2"
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2020-08-24 10:29:49 +00:00
|
|
|
version = "~0.24"
|
2020-05-12 14:21:51 +00:00
|
|
|
features = ["limits", "bundled"]
|
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"
|