mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
babd41916a
Co-authored-by: Mikayla <mikayla@zed.dev>
41 lines
1.4 KiB
TOML
41 lines
1.4 KiB
TOML
[package]
|
|
name = "project_panel2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/project_panel.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
db = { path = "../db2", package = "db2" }
|
|
editor = { path = "../editor2", package = "editor2" }
|
|
gpui = { path = "../gpui2", package = "gpui2" }
|
|
menu = { path = "../menu2", package = "menu2" }
|
|
project = { path = "../project2", package = "project2" }
|
|
settings = { path = "../settings2", package = "settings2" }
|
|
theme = { path = "../theme2", package = "theme2" }
|
|
ui = { path = "../ui2", package = "ui2" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace2", package = "workspace2" }
|
|
anyhow.workspace = true
|
|
postage.workspace = true
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
schemars.workspace = true
|
|
smallvec.workspace = true
|
|
pretty_assertions.workspace = true
|
|
unicase = "2.6"
|
|
|
|
[dev-dependencies]
|
|
client = { path = "../client2", package = "client2", features = ["test-support"] }
|
|
language = { path = "../language2", package = "language2", features = ["test-support"] }
|
|
editor = { path = "../editor2", package = "editor2", features = ["test-support"] }
|
|
gpui = { path = "../gpui2", package = "gpui2", features = ["test-support"] }
|
|
workspace = { path = "../workspace2", package = "workspace2", features = ["test-support"] }
|
|
serde_json.workspace = true
|