66e6fef75e
* Define Store, which is a simple container for a SQLite connection and a Conn. This is a breaking change. * Return the FindSpec as part of QueryOutput, not just results. * Switch to using stderr in appropriate places in CLI. * Print columns in CLI output.
74 lines
1.4 KiB
TOML
74 lines
1.4 KiB
TOML
[package]
|
|
authors = [
|
|
"Richard Newman <rnewman@twinql.com>",
|
|
"Nicholas Alexander <nalexander@mozilla.com>",
|
|
"Victor Porof <vporof@mozilla.com>",
|
|
"Jordan Santell <jsantell@mozilla.com>",
|
|
"Joe Walker <jwalker@mozilla.com>",
|
|
"Emily Toop <etoop@mozilla.com>",
|
|
]
|
|
name = "mentat"
|
|
version = "0.6.0"
|
|
build = "build/version.rs"
|
|
|
|
[workspace]
|
|
members = ["tools/cli"]
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.1.7"
|
|
|
|
[dependencies]
|
|
chrono = "0.4"
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
|
lazy_static = "0.2"
|
|
time = "0.1"
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.12"
|
|
# System sqlite might be very old.
|
|
features = ["bundled", "limits"]
|
|
|
|
[dependencies.edn]
|
|
path = "edn"
|
|
|
|
[dependencies.mentat_parser_utils]
|
|
path = "parser-utils"
|
|
|
|
[dependencies.mentat_core]
|
|
path = "core"
|
|
|
|
[dependencies.mentat_sql]
|
|
path = "sql"
|
|
|
|
[dependencies.mentat_db]
|
|
path = "db"
|
|
|
|
[dependencies.mentat_query]
|
|
path = "query"
|
|
|
|
[dependencies.mentat_query_algebrizer]
|
|
path = "query-algebrizer"
|
|
|
|
[dependencies.mentat_query_parser]
|
|
path = "query-parser"
|
|
|
|
[dependencies.mentat_query_projector]
|
|
path = "query-projector"
|
|
|
|
[dependencies.mentat_query_sql]
|
|
path = "query-sql"
|
|
|
|
[dependencies.mentat_query_translator]
|
|
path = "query-translator"
|
|
|
|
[dependencies.mentat_tx]
|
|
path = "tx"
|
|
|
|
[dependencies.mentat_tx_parser]
|
|
path = "tx-parser"
|
|
|
|
[dependencies.mentat_tolstoy]
|
|
path = "tolstoy"
|
|
|
|
[profile.release]
|
|
debug = true
|