2017-03-06 22:40:10 +00:00
|
|
|
[package]
|
|
|
|
name = "mentat_query_projector"
|
2020-05-25 14:51:22 +00:00
|
|
|
version = "0.0.2"
|
2017-03-06 22:40:10 +00:00
|
|
|
workspace = ".."
|
|
|
|
|
2018-08-20 23:09:16 +00:00
|
|
|
[features]
|
|
|
|
sqlcipher = ["rusqlite/sqlcipher"]
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[dependencies]
|
2020-05-25 14:51:22 +00:00
|
|
|
failure = "~0.1"
|
2021-07-02 21:30:48 +00:00
|
|
|
indexmap = "~1.7"
|
2017-03-06 22:40:10 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2021-10-04 21:22:11 +00:00
|
|
|
version = "~0.26"
|
2020-05-12 14:21:51 +00:00
|
|
|
features = ["limits", "bundled"]
|
2017-03-06 22:40:10 +00:00
|
|
|
|
2018-08-08 17:35:06 +00:00
|
|
|
[dependencies.core_traits]
|
|
|
|
path = "../core-traits"
|
|
|
|
|
2018-08-08 18:23:07 +00:00
|
|
|
[dependencies.edn]
|
|
|
|
path = "../edn"
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[dependencies.mentat_core]
|
|
|
|
path = "../core"
|
|
|
|
|
|
|
|
[dependencies.mentat_db]
|
|
|
|
path = "../db"
|
|
|
|
|
2018-08-08 17:37:59 +00:00
|
|
|
[dependencies.db_traits]
|
|
|
|
path = "../db-traits"
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[dependencies.mentat_query_algebrizer]
|
|
|
|
path = "../query-algebrizer"
|
|
|
|
|
2018-05-04 19:56:00 +00:00
|
|
|
[dependencies.mentat_query_pull]
|
|
|
|
path = "../query-pull"
|
|
|
|
|
2018-08-08 18:01:09 +00:00
|
|
|
[dependencies.query_pull_traits]
|
|
|
|
path = "../query-pull-traits"
|
|
|
|
|
2018-08-08 19:37:25 +00:00
|
|
|
[dependencies.query_projector_traits]
|
|
|
|
path = "../query-projector-traits"
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
[dependencies.mentat_query_sql]
|
|
|
|
path = "../query-sql"
|
|
|
|
|
2018-08-09 00:00:21 +00:00
|
|
|
[dev-dependencies.mentat_sql]
|
|
|
|
path = "../sql"
|