Cargo.toml

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