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"
|
2021-09-16 21:21:31 +00:00
|
|
|
dirs = "~4.0"
|
2021-07-14 21:21:11 +00:00
|
|
|
env_logger = "~0.9"
|
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"
|
2023-03-29 10:02:12 +00:00
|
|
|
tempfile = "~3.5"
|
2020-05-25 14:51:22 +00:00
|
|
|
termion = "~1.5"
|
2021-08-22 21:12:22 +00:00
|
|
|
time = "~0.3"
|
2021-08-23 21:25:10 +00:00
|
|
|
bytes = { version = "1.0.1", features = ["serde"] }
|
|
|
|
hex = "0.4.3"
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2021-10-04 21:22:11 +00:00
|
|
|
version = "~0.26"
|
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"
|