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" }
|
2017-03-06 22:40:10 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2017-11-21 16:24:08 +00:00
|
|
|
version = "0.12"
|
2017-03-06 22:40:10 +00:00
|
|
|
# System sqlite might be very old.
|
2017-03-13 16:39:19 +00:00
|
|
|
features = ["bundled", "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"
|
|
|
|
|
|
|
|
# Only for tests.
|
|
|
|
[dev-dependencies.mentat_query_parser]
|
|
|
|
path = "../query-parser"
|
|
|
|
|
|
|
|
[dependencies.mentat_query_sql]
|
|
|
|
path = "../query-sql"
|
|
|
|
|