forked from mozilla/application-services
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 782 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (25 loc) · 782 Bytes
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
28
29
30
[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.
debug-tools = ["dep:prettytable-rs", "rusqlite/column_decltype"]
[dependencies]
log = "0.4"
lazy_static = "1.4"
interrupt-support = { path = "../interrupt" }
ffi-support = "0.4"
thiserror = "1.0"
tempfile = "3.1.0"
prettytable-rs = { version = "0.10", optional = true }
[dependencies.rusqlite]
version = "0.29.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" }