blob: b94c925d8bc7c9f0026cdc204227ca8ebe729fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[package]
name = "sql-support"
edition = "2021"
version = "0.1.0"
authors = ["Thom Chiovoloni <tchiovoloni@mozilla.com>"]
license = "MPL-2.0"
[features]
default = []
[dependencies]
log = "0.4"
lazy_static = "1.4"
interrupt-support = { path = "../interrupt" }
ffi-support = "0.4"
thiserror = "1.0"
tempfile = "3.1.0"
[dependencies.rusqlite]
version = "0.28.0"
features = ["functions", "limits", "bundled", "unlock_notify"]
[dev-dependencies]
env_logger = {version = "0.7", default-features = false}
[build-dependencies]
nss_build_common = { path = "../rc_crypto/nss/nss_build_common" }
|