83ec0a6c7e
Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/rusqlite-0.26.1...v0.28.0) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
118 lines
2.6 KiB
TOML
118 lines
2.6 KiB
TOML
[package]
|
|
edition = "2018"
|
|
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>",
|
|
"Grisha Kruglov <grigory@kruglov.ca>",
|
|
"Kit Cambridge <kit@yakshaving.ninja>",
|
|
"Edouard Oger <eoger@fastmail.com>",
|
|
"Thom Chiovoloni <tchiovoloni@mozilla.com>",
|
|
"Gregory Burd <greg@burd.me>",
|
|
]
|
|
name = "mentat"
|
|
version = "0.13.0"
|
|
build = "build/version.rs"
|
|
|
|
[features]
|
|
default = ["bundled_sqlite3", "syncable"]
|
|
bundled_sqlite3 = ["rusqlite/bundled"]
|
|
sqlcipher = ["rusqlite/sqlcipher", "mentat_db/sqlcipher"]
|
|
syncable = ["mentat_tolstoy", "tolstoy_traits", "mentat_db/syncable"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"tools/cli",
|
|
"ffi", "core", "core-traits","db", "db-traits", "edn", "public-traits", "query-algebrizer",
|
|
"query-algebrizer-traits", "query-projector", "query-projector-traits","query-pull",
|
|
"query-sql", "sql", "sql-traits", "tolstoy-traits", "tolstoy", "transaction"
|
|
]
|
|
|
|
[build-dependencies]
|
|
rustc_version = "~0.4"
|
|
|
|
[dev-dependencies]
|
|
assert_approx_eq = "~1.1"
|
|
|
|
#[dev-dependencies.cargo-husky]
|
|
#version = "1"
|
|
#default-features = false # Disable features which are enabled by default
|
|
#features = ["run-for-all", "precommit-hook", "run-cargo-fmt", "run-cargo-test", "run-cargo-check", "run-cargo-clippy"]
|
|
#cargo audit
|
|
#cargo outdated
|
|
|
|
[dependencies]
|
|
chrono = "~0.4"
|
|
failure = "~0.1"
|
|
lazy_static = "~1.4"
|
|
time = "0.3.1"
|
|
log = "~0.4"
|
|
uuid = { version = "~1.0", features = ["v4", "serde"] }
|
|
|
|
[dependencies.rusqlite]
|
|
version = "~0.28"
|
|
features = ["limits", "bundled"]
|
|
|
|
[dependencies.edn]
|
|
path = "edn"
|
|
|
|
[dependencies.core_traits]
|
|
path = "core-traits"
|
|
|
|
[dependencies.mentat_core]
|
|
path = "core"
|
|
|
|
[dependencies.mentat_sql]
|
|
path = "sql"
|
|
|
|
[dependencies.mentat_db]
|
|
path = "db"
|
|
|
|
[dependencies.db_traits]
|
|
path = "db-traits"
|
|
|
|
[dependencies.mentat_query_algebrizer]
|
|
path = "query-algebrizer"
|
|
|
|
[dependencies.query_algebrizer_traits]
|
|
path = "query-algebrizer-traits"
|
|
|
|
[dependencies.mentat_query_projector]
|
|
path = "query-projector"
|
|
|
|
[dependencies.query_projector_traits]
|
|
path = "query-projector-traits"
|
|
|
|
[dependencies.mentat_query_pull]
|
|
path = "query-pull"
|
|
|
|
[dependencies.query_pull_traits]
|
|
path = "query-pull-traits"
|
|
|
|
[dependencies.mentat_query_sql]
|
|
path = "query-sql"
|
|
|
|
[dependencies.sql_traits]
|
|
path = "sql-traits"
|
|
|
|
[dependencies.public_traits]
|
|
path = "public-traits"
|
|
|
|
[dependencies.mentat_transaction]
|
|
path = "transaction"
|
|
|
|
[dependencies.mentat_tolstoy]
|
|
path = "tolstoy"
|
|
optional = true
|
|
|
|
[dependencies.tolstoy_traits]
|
|
path = "tolstoy-traits"
|
|
optional = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
lto = true
|