mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
1445ce10b5
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
20 lines
525 B
TOML
20 lines
525 B
TOML
[package]
|
|
name = "project_panel"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/project_panel.rs"
|
|
|
|
[dependencies]
|
|
gpui = { path = "../gpui" }
|
|
project = { path = "../project" }
|
|
theme = { path = "../theme" }
|
|
workspace = { path = "../workspace" }
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|