blob: b412acddd53f3de26ca130a5099b958a8815b4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "sql-support"
edition = "2018"
version = "0.1.0"
authors = ["Thom Chiovoloni <tchiovoloni@mozilla.com>"]
license = "MPL-2.0"
[features]
default = []
log_query_plans = []
[dependencies]
log = "0.4"
lazy_static = "1.4"
interrupt-support = { path = "../interrupt" }
ffi-support = "0.4"
[dependencies.rusqlite]
version = "0.24.1"
features = ["functions", "limits", "bundled", "unlock_notify"]
|