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