2017-03-06 22:40:10 +00:00
|
|
|
[package]
|
|
|
|
name = "mentat_query_projector"
|
|
|
|
version = "0.0.1"
|
|
|
|
workspace = ".."
|
|
|
|
|
|
|
|
[dependencies]
|
2017-11-21 16:24:08 +00:00
|
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
2018-04-24 22:04:00 +00:00
|
|
|
indexmap = "1"
|
2017-03-06 22:40:10 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2018-02-22 19:41:57 +00:00
|
|
|
version = "0.13"
|
2018-02-13 16:25:58 +00:00
|
|
|
features = ["limits"]
|
2017-03-06 22:40:10 +00:00
|
|
|
|
|
|
|
[dependencies.mentat_core]
|
|
|
|
path = "../core"
|
|
|
|
|
|
|
|
[dependencies.mentat_db]
|
|
|
|
path = "../db"
|
|
|
|
|
|
|
|
[dependencies.mentat_sql]
|
|
|
|
path = "../sql"
|
|
|
|
|
|
|
|
[dependencies.mentat_query]
|
|
|
|
path = "../query"
|
|
|
|
|
|
|
|
[dependencies.mentat_query_algebrizer]
|
|
|
|
path = "../query-algebrizer"
|
|
|
|
|
2018-05-04 19:56:00 +00:00
|
|
|
[dependencies.mentat_query_pull]
|
|
|
|
path = "../query-pull"
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
# Only for tests.
|
|
|
|
[dev-dependencies.mentat_query_parser]
|
|
|
|
path = "../query-parser"
|
|
|
|
|
|
|
|
[dependencies.mentat_query_sql]
|
|
|
|
path = "../query-sql"
|
|
|
|
|