df90c366af
* Pre: make FindQuery, FindSpec, and Element non-Clone. * Pre: make query translator return a Result. * Pre: make projection return a Result. * Pre: refactor query parser in preparation for parsing aggregates. * Pre: rename PredicateFn -> QueryFunction. * Pre: expose more about bound variables from CC. * Pre: move ValueTypeSet to core.
29 lines
593 B
TOML
29 lines
593 B
TOML
[package]
|
|
name = "mentat_query_translator"
|
|
version = "0.0.1"
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
|
|
|
[dependencies.mentat_core]
|
|
path = "../core"
|
|
|
|
[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_projector]
|
|
path = "../query-projector"
|
|
|
|
[dependencies.mentat_query_sql]
|
|
path = "../query-sql"
|