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" }
15anyhow = "1.0.57"
16async-trait = "0.1"
17parking_lot = "0.11.1"
18rusqlite = { version = "0.28.0", features = ["bundled", "serde_json"] }
19rusqlite_migration = "1.0.0"
20lazy_static = "1.4.0"
21
22[dev-dependencies]
23gpui = { path = "../gpui", features = ["test-support"] }
24tempdir = { version = "0.3.7" }