mentat/Cargo.toml
Brian Grinstead 9b8257a725 Create a new crate for the query parser. Fixes #138. r=rnewman
Starting to work out the project layout for sub-crates.  The crate inside query-parser/ is "datomish-query-parser" and the core code in src/ depends on it.
2016-12-16 18:43:47 -08:00

16 lines
342 B
TOML

[package]
name = "datomish"
version = "0.4.0"
authors = ["Richard Newman <rnewman@twinql.com>", "Nicholas Alexander <nalexander@mozilla.com>"]
[dependencies]
[dependencies.datomish-query-parser]
path = "query-parser"
[dev-dependencies]
[dev-dependencies.datomish-cli]
path = "cli"
[[bin]]
name = "datomish-cli"
path = "cli/src/main.rs"