components/support/sql/Cargo.toml (23 lines of code) (raw):

[package] name = "sql-support" edition = "2021" version = "0.1.0" authors = ["Thom Chiovoloni <tchiovoloni@mozilla.com>"] license = "MPL-2.0" [features] default = [] ### The debug-tools feature brings in utilities to help with debugging. # "dep:prettytable-rs" temp removed for moz-central integration. debug-tools = ["rusqlite/column_decltype"] [dependencies] log = "0.4" lazy_static = "1.4" interrupt-support = { path = "../interrupt" } thiserror = "1.0" tempfile = "3.1.0" parking_lot = ">=0.11,<=0.12" # disable for m-c :( # prettytable-rs = { version = "0.10", optional = true } rusqlite = { version = "0.33.0", features = ["functions", "limits", "bundled", "unlock_notify"] } [dev-dependencies] env_logger = {version = "0.10", default-features = false}