zed/crates/db/Cargo.toml

34 lines
686 B
TOML
Raw Permalink Normal View History

[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" }
2022-10-21 01:07:58 +03:00
gpui = { path = "../gpui" }
2022-11-01 23:31:03 +03:00
sqlez = { path = "../sqlez" }
sqlez_macros = { path = "../sqlez_macros" }
2022-11-02 23:26:23 +03:00
util = { path = "../util" }
anyhow.workspace = true
2022-11-02 23:26:23 +03:00
indoc = "1.0.4"
async-trait.workspace = true
lazy_static.workspace = true
log.workspace = true
parking_lot.workspace = true
serde.workspace = true
serde_derive.workspace = true
smol.workspace = true
2022-11-01 23:31:03 +03:00
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
env_logger.workspace = true
tempdir.workspace = true