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>",
|
2018-02-13 16:25:58 +00:00
|
|
|
"Grisha Kruglov <grigory@kruglov.ca>",
|
|
|
|
"Kit Cambridge <kit@yakshaving.ninja>",
|
|
|
|
"Edouard Oger <eoger@fastmail.com>",
|
|
|
|
"Thom Chiovoloni <tchiovoloni@mozilla.com>",
|
2017-02-17 07:03:48 +00:00
|
|
|
]
|
2017-01-07 01:20:00 +00:00
|
|
|
name = "mentat"
|
2018-07-31 16:58:43 +00:00
|
|
|
version = "0.11.0"
|
2017-02-17 20:04:45 +00:00
|
|
|
build = "build/version.rs"
|
|
|
|
|
2018-02-13 16:25:58 +00:00
|
|
|
[features]
|
2018-07-11 23:26:06 +00:00
|
|
|
default = ["bundled_sqlite3", "syncable"]
|
2018-02-13 16:25:58 +00:00
|
|
|
bundled_sqlite3 = ["rusqlite/bundled"]
|
2018-06-13 15:49:40 +00:00
|
|
|
sqlcipher = ["rusqlite/sqlcipher", "mentat_db/sqlcipher"]
|
2018-07-11 23:26:06 +00:00
|
|
|
syncable = ["mentat_tolstoy", "mentat_db/syncable"]
|
2018-02-13 16:25:58 +00:00
|
|
|
|
2017-02-20 17:35:32 +00:00
|
|
|
[workspace]
|
2018-03-20 19:16:32 +00:00
|
|
|
members = ["tools/cli", "ffi"]
|
2017-02-20 17:35:32 +00:00
|
|
|
|
2017-02-17 20:04:45 +00:00
|
|
|
[build-dependencies]
|
2018-03-06 16:09:59 +00:00
|
|
|
rustc_version = "0.2"
|
2016-12-16 18:39:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2017-11-21 16:24:08 +00:00
|
|
|
chrono = "0.4"
|
2018-06-04 22:07:09 +00:00
|
|
|
failure = "0.1.1"
|
|
|
|
failure_derive = "0.1.1"
|
2018-01-23 16:43:26 +00:00
|
|
|
lazy_static = "0.2"
|
2017-05-03 19:53:16 +00:00
|
|
|
time = "0.1"
|
2018-04-13 20:33:34 +00:00
|
|
|
uuid = { version = "0.5", features = ["v4", "serde"] }
|
2017-01-26 00:13:56 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2018-02-22 19:41:57 +00:00
|
|
|
version = "0.13"
|
2017-01-26 00:13:56 +00:00
|
|
|
# System sqlite might be very old.
|
2018-02-13 16:25:58 +00:00
|
|
|
features = ["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-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"
|
|
|
|
|
|
|
|
[dependencies.mentat_query_projector]
|
|
|
|
path = "query-projector"
|
|
|
|
|
2018-05-04 19:56:00 +00:00
|
|
|
[dependencies.mentat_query_pull]
|
|
|
|
path = "query-pull"
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[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-13 20:19:05 +00:00
|
|
|
[dependencies.mentat_tolstoy]
|
|
|
|
path = "tolstoy"
|
2018-07-11 23:26:06 +00:00
|
|
|
optional = true
|
2017-12-13 20:19:05 +00:00
|
|
|
|
2017-05-04 20:40:41 +00:00
|
|
|
[profile.release]
|
2018-03-05 19:21:19 +00:00
|
|
|
opt-level = 3
|
2018-03-05 20:52:20 +00:00
|
|
|
debug = false
|
2018-03-05 19:21:19 +00:00
|
|
|
lto = true
|