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