c600152d78
* Update some dependencies. * Update rusqlite to 0.12. * Update error-chain to a forked version that implements Sync. * Fix some compiler warnings. * Remove unused imports in tests. * Parse errors no longer naturally print with the expected symbol.
35 lines
677 B
TOML
35 lines
677 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"
|
|
# System sqlite might be very old.
|
|
features = ["bundled", "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"
|
|
|