2ac7a1b1de
You can use this in conjunction with setting SQLITE3_LIB_DIR to control which SQLite is used. See https://github.com/jgallagher/rusqlite for more. Also add recent contributors to the authors array.
34 lines
631 B
TOML
34 lines
631 B
TOML
[package]
|
|
name = "mentat_query_projector"
|
|
version = "0.0.1"
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.12"
|
|
features = ["limits"]
|
|
|
|
[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"
|
|
|