mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
f0c50c1e0a
This will let us use it from the telemetry crate. Co-authored-by: Joseph Lyons <joseph@zed.dev>
23 lines
374 B
TOML
23 lines
374 B
TOML
[package]
|
|
name = "db"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/db.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
anyhow = "1.0.57"
|
|
async-trait = "0.1"
|
|
parking_lot = "0.11.1"
|
|
rocksdb = "0.18"
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
tempdir = { version = "0.3.7" }
|