zed/crates/project_panel/Cargo.toml

43 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "project_panel"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
path = "src/project_panel.rs"
doctest = false
[dependencies]
collections = { path = "../collections" }
db = { path = "../db" }
editor = { path = "../editor" }
gpui = { path = "../gpui" }
menu = { path = "../menu" }
project = { path = "../project" }
search = { path = "../search" }
settings = { path = "../settings" }
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
workspace = { path = "../workspace", package = "workspace" }
anyhow.workspace = true
postage.workspace = true
futures.workspace = true
2023-05-22 14:52:50 +03:00
serde.workspace = true
2023-05-23 06:23:07 +03:00
serde_derive.workspace = true
serde_json.workspace = true
2023-05-23 06:23:07 +03:00
schemars.workspace = true
smallvec.workspace = true
pretty_assertions.workspace = true
unicase = "2.6"
[dev-dependencies]
client = { path = "../client", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
workspace = { path = "../workspace", features = ["test-support"] }
serde_json.workspace = true