mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
f5ba22659b
Co-authored-by: Mikayla <mikayla@zed.dev>
34 lines
693 B
TOML
34 lines
693 B
TOML
[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.workspace = true
|
|
indoc.workspace = true
|
|
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
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
tempdir.workspace = true
|