2022-09-26 22:37:09 +00:00
|
|
|
[package]
|
|
|
|
name = "db"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/db.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
|
|
|
anyhow = "1.0.57"
|
|
|
|
async-trait = "0.1"
|
2022-10-18 18:43:18 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2022-09-26 22:37:09 +00:00
|
|
|
parking_lot = "0.11.1"
|
2022-10-14 01:24:00 +00:00
|
|
|
rusqlite = { version = "0.28.0", features = ["bundled", "serde_json"] }
|
|
|
|
rusqlite_migration = "1.0.0"
|
2022-10-18 22:58:05 +00:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_rusqlite = "0.31.0"
|
2022-09-26 22:37:09 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
tempdir = { version = "0.3.7" }
|