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