Cargo.toml

 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" }
16anyhow = "1.0.57"
17async-trait = "0.1"
18lazy_static = "1.4.0"
19log = { version = "0.4.16", features = ["kv_unstable_serde"] }
20parking_lot = "0.11.1"
21rusqlite = { version = "0.28.0", features = ["bundled", "serde_json", "backup"] }
22rusqlite_migration = { git = "https://github.com/cljoly/rusqlite_migration", rev = "c433555d7c1b41b103426e35756eb3144d0ebbc6" }
23serde = { workspace = true }
24serde_rusqlite = "0.31.0"
25
26[dev-dependencies]
27gpui = { path = "../gpui", features = ["test-support"] }
28tempdir = { version = "0.3.7" }