Cargo.toml

 1[package]
 2name = "db"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/db.rs"
10doctest = false
11
12[features]
13test-support = []
14
15[dependencies]
16collections = { path = "../collections" }
17gpui = { path = "../gpui" }
18release_channel = { path = "../release_channel" }
19sqlez = { path = "../sqlez" }
20sqlez_macros = { path = "../sqlez_macros" }
21util = { path = "../util" }
22anyhow.workspace = true
23indoc.workspace = true
24async-trait.workspace = true
25lazy_static.workspace = true
26log.workspace = true
27parking_lot.workspace = true
28serde.workspace = true
29serde_derive.workspace = true
30smol.workspace = true
31
32[dev-dependencies]
33gpui = { path = "../gpui", features = ["test-support"] }
34env_logger.workspace = true
35tempfile.workspace = true