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]
14collections = { path = "../collections" }
15gpui = { path = "../gpui" }
16sqlez = { path = "../sqlez" }
17util = { path = "../util" }
18anyhow = "1.0.57"
19indoc = "1.0.4"
20async-trait = "0.1"
21lazy_static = "1.4.0"
22log = { version = "0.4.16", features = ["kv_unstable_serde"] }
23parking_lot = "0.11.1"
24serde = { version = "1.0", features = ["derive"] }
25
26
27[dev-dependencies]
28gpui = { path = "../gpui", features = ["test-support"] }
29tempdir = { version = "0.3.7" }
30env_logger = "0.9.1"