mentat/sql/Cargo.toml
Richard Newman 2ac7a1b1de Add a feature flag to control the use of rusqlite's bundled SQLite. r=emily
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.
2018-02-13 08:25:58 -08:00

16 lines
302 B
TOML

[package]
name = "mentat_sql"
version = "0.0.1"
workspace = ".."
[dependencies]
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
ordered-float = "0.5"
[dependencies.rusqlite]
version = "0.12"
features = ["limits"]
[dependencies.mentat_core]
path = "../core"