zed/crates/db/Cargo.toml

30 lines
659 B
TOML
Raw Normal View History

[package]
name = "db"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/db.rs"
doctest = false
[features]
test-support = []
[dependencies]
collections = { path = "../collections" }
2022-10-20 22:07:58 +00:00
gpui = { path = "../gpui" }
2022-11-01 20:31:03 +00:00
sqlez = { path = "../sqlez" }
sqlez_macros = { path = "../sqlez_macros" }
2022-11-02 20:26:23 +00:00
util = { path = "../util" }
anyhow = "1.0.57"
2022-11-02 20:26:23 +00:00
indoc = "1.0.4"
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"] }
parking_lot = "0.11.1"
serde = { version = "1.0", features = ["derive"] }
2022-11-01 20:31:03 +00:00
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
tempdir = { version = "0.3.7" }
2022-10-31 19:47:13 +00:00
env_logger = "0.9.1"