2016-12-16 18:39:08 +00:00
|
|
|
[package]
|
2017-02-17 07:03:48 +00:00
|
|
|
authors = [
|
|
|
|
"Richard Newman <rnewman@twinql.com>",
|
|
|
|
"Nicholas Alexander <nalexander@mozilla.com>",
|
|
|
|
"Victor Porof <vporof@mozilla.com>",
|
|
|
|
"Jordan Santell <jsantell@mozilla.com>",
|
|
|
|
"Joe Walker <jwalker@mozilla.com>",
|
2017-12-04 21:10:05 +00:00
|
|
|
"Emily Toop <etoop@mozilla.com>",
|
2017-02-17 07:03:48 +00:00
|
|
|
]
|
2017-01-07 01:20:00 +00:00
|
|
|
name = "mentat"
|
2018-01-12 05:44:05 +00:00
|
|
|
version = "0.5.1"
|
2017-02-17 20:04:45 +00:00
|
|
|
build = "build/version.rs"
|
|
|
|
|
2017-02-20 17:35:32 +00:00
|
|
|
[workspace]
|
2017-11-21 16:56:16 +00:00
|
|
|
members = ["tools/cli"]
|
2017-02-20 17:35:32 +00:00
|
|
|
|
2017-02-17 20:04:45 +00:00
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.1.7"
|
2016-12-16 18:39:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2017-11-21 16:24:08 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
2018-01-23 16:43:26 +00:00
|
|
|
lazy_static = "0.2"
|
2017-05-03 19:53:16 +00:00
|
|
|
time = "0.1"
|
2017-01-26 00:13:56 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2017-11-21 16:24:08 +00:00
|
|
|
version = "0.12"
|
2017-01-26 00:13:56 +00:00
|
|
|
# System sqlite might be very old.
|
2017-03-13 16:39:19 +00:00
|
|
|
features = ["bundled", "limits"]
|
2017-01-06 16:24:04 +00:00
|
|
|
|
2016-12-21 16:55:00 +00:00
|
|
|
[dependencies.edn]
|
2017-01-26 18:43:48 +00:00
|
|
|
path = "edn"
|
2016-12-21 16:55:00 +00:00
|
|
|
|
2017-02-02 16:18:04 +00:00
|
|
|
[dependencies.mentat_parser_utils]
|
2017-02-01 08:45:55 +00:00
|
|
|
path = "parser-utils"
|
|
|
|
|
2017-02-04 00:51:13 +00:00
|
|
|
[dependencies.mentat_core]
|
|
|
|
path = "core"
|
|
|
|
|
2017-02-16 23:07:52 +00:00
|
|
|
[dependencies.mentat_sql]
|
|
|
|
path = "sql"
|
|
|
|
|
2017-01-26 00:13:56 +00:00
|
|
|
[dependencies.mentat_db]
|
2017-01-26 18:43:48 +00:00
|
|
|
path = "db"
|
2017-01-26 00:13:56 +00:00
|
|
|
|
2017-01-04 13:09:12 +00:00
|
|
|
[dependencies.mentat_query]
|
2017-01-26 18:43:48 +00:00
|
|
|
path = "query"
|
2017-01-04 13:09:12 +00:00
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[dependencies.mentat_query_algebrizer]
|
|
|
|
path = "query-algebrizer"
|
|
|
|
|
2017-01-07 01:31:01 +00:00
|
|
|
[dependencies.mentat_query_parser]
|
2017-01-26 18:43:48 +00:00
|
|
|
path = "query-parser"
|
2017-01-13 00:08:29 +00:00
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[dependencies.mentat_query_projector]
|
|
|
|
path = "query-projector"
|
|
|
|
|
|
|
|
[dependencies.mentat_query_sql]
|
|
|
|
path = "query-sql"
|
2017-02-03 23:52:02 +00:00
|
|
|
|
2017-02-16 23:39:19 +00:00
|
|
|
[dependencies.mentat_query_translator]
|
|
|
|
path = "query-translator"
|
|
|
|
|
2017-12-05 15:58:24 +00:00
|
|
|
[dependencies.mentat_tx]
|
|
|
|
path = "tx"
|
|
|
|
|
2017-01-13 00:08:29 +00:00
|
|
|
[dependencies.mentat_tx_parser]
|
2017-01-26 18:43:48 +00:00
|
|
|
path = "tx-parser"
|
2017-05-04 20:40:41 +00:00
|
|
|
|
2017-12-13 20:19:05 +00:00
|
|
|
[dependencies.mentat_tolstoy]
|
|
|
|
path = "tolstoy"
|
|
|
|
|
2017-05-04 20:40:41 +00:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|