Extract project_panel into its own crate

This commit is contained in:
Antonio Scandurra 2021-10-05 14:19:57 +02:00
parent 499616d769
commit d04a11405c
6 changed files with 39 additions and 17 deletions

View file

@ -0,0 +1,14 @@
[package]
name = "project_panel"
version = "0.1.0"
edition = "2018"
[dependencies]
gpui = { path = "../gpui" }
project = { path = "../project" }
theme = { path = "../theme" }
workspace = { path = "../workspace" }
postage = { version = "0.4.1", features = ["futures-traits"] }
[dev-dependencies]
serde_json = { version = "1.0.64", features = ["preserve_order"] }