[package] name = "db" version = "0.1.0" edition = "2021" publish = false [lib] path = "src/db.rs" doctest = false [features] test-support = [] [dependencies] collections = { path = "../collections" } gpui = { path = "../gpui" } sqlez = { path = "../sqlez" } sqlez_macros = { path = "../sqlez_macros" } util = { path = "../util" } anyhow = "1.0.57" indoc = "1.0.4" async-trait = "0.1" lazy_static = "1.4.0" log = { version = "0.4.16", features = ["kv_unstable_serde"] } parking_lot = "0.11.1" serde = { workspace = true } serde_derive = { workspace = true } smol = "1.2" [dev-dependencies] gpui = { path = "../gpui", features = ["test-support"] } env_logger = "0.9.1" tempdir = { version = "0.3.7" }