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"
17parking_lot = "0.11.1"
18rocksdb = "0.18"
19
20[dev-dependencies]
21gpui = { path = "../gpui", features = ["test-support"] }
22tempdir = { version = "0.3.7" }