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 = { workspace = true }
27serde_derive = { workspace = true }
28smol = "1.2"
29
30[dev-dependencies]
31gpui = { path = "../gpui", features = ["test-support"] }
32env_logger = "0.9.1"
33tempdir = { version = "0.3.7" }