mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "project_panel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/project_panel.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
context_menu = { path = "../context_menu" }
|
|
collections = { path = "../collections" }
|
|
db = { path = "../db" }
|
|
drag_and_drop = { path = "../drag_and_drop" }
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
menu = { path = "../menu" }
|
|
project = { path = "../project" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
postage.workspace = true
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
schemars.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
|