mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
1af8f4be19
Co-Authored-By: Julia Risley <julia@zed.dev>
34 lines
761 B
TOML
34 lines
761 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 = "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 = { version = "1.0", features = ["derive"] }
|
|
serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
|
|
smol = "1.2"
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
env_logger = "0.9.1"
|
|
tempdir = { version = "0.3.7" }
|