Cargo.toml

 1[package]
 2name = "db"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/db.rs"
 8doctest = false
 9
10[features]
11test-support = []
12
13[dependencies]
14indoc = "1.0.4"
15collections = { path = "../collections" }
16gpui = { path = "../gpui" }
17sqlez = { path = "../sqlez" }
18anyhow = "1.0.57"
19async-trait = "0.1"
20lazy_static = "1.4.0"
21log = { version = "0.4.16", features = ["kv_unstable_serde"] }
22parking_lot = "0.11.1"
23
24
25[dev-dependencies]
26gpui = { path = "../gpui", features = ["test-support"] }
27tempdir = { version = "0.3.7" }
28env_logger = "0.9.1"