70b112801c
* Add a failing test for EDN parsing '…'. * Expose a SQLValueType trait to get value_type_tag values out of a ValueType. * Add accessors to FindSpec. * Implement querying. * Implement rudimentary projection. * Export mentat_db::new_connection. * Export symbols from mentat. * Add rudimentary end-to-end query tests.
27 lines
502 B
TOML
27 lines
502 B
TOML
[package]
|
|
name = "mentat_query_translator"
|
|
version = "0.0.1"
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
[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"
|