2017-11-21 16:56:16 +00:00
|
|
|
[package]
|
|
|
|
name = "mentat_cli"
|
|
|
|
version = "0.0.1"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "mentat_cli"
|
|
|
|
path = "src/mentat_cli/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "mentat_cli"
|
|
|
|
doc = false
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
2018-01-30 22:11:41 +00:00
|
|
|
combine = "2.2.2"
|
2018-05-01 20:46:03 +00:00
|
|
|
env_logger = "0.5"
|
2018-01-30 22:11:41 +00:00
|
|
|
getopts = "0.2"
|
|
|
|
lazy_static = "0.2"
|
2018-01-18 04:33:22 +00:00
|
|
|
linefeed = "0.4"
|
2018-05-01 20:46:03 +00:00
|
|
|
log = "0.4"
|
2018-01-30 22:11:41 +00:00
|
|
|
tabwriter = "1"
|
2017-11-21 16:56:16 +00:00
|
|
|
tempfile = "1.1"
|
2018-02-15 15:36:18 +00:00
|
|
|
termion = "1"
|
|
|
|
time = "0.1"
|
2017-11-21 16:56:16 +00:00
|
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2018-02-22 19:41:57 +00:00
|
|
|
version = "0.13"
|
2018-02-13 16:25:58 +00:00
|
|
|
features = ["limits"]
|
2017-11-21 16:56:16 +00:00
|
|
|
|
|
|
|
[dependencies.mentat]
|
|
|
|
path = "../.."
|
|
|
|
|
|
|
|
[dependencies.mentat_parser_utils]
|
|
|
|
path = "../../parser-utils"
|
|
|
|
|
|
|
|
[dependencies.edn]
|
|
|
|
path = "../../edn"
|
|
|
|
|
|
|
|
[dependencies.mentat_query]
|
|
|
|
path = "../../query"
|
|
|
|
|
|
|
|
[dependencies.mentat_core]
|
|
|
|
path = "../../core"
|
|
|
|
|
|
|
|
[dependencies.mentat_db]
|
|
|
|
path = "../../db"
|