2021-10-05 08:37:40 +00:00
|
|
|
[package]
|
|
|
|
name = "workspace"
|
|
|
|
version = "0.1.0"
|
2022-01-17 15:59:06 +00:00
|
|
|
edition = "2021"
|
2021-10-05 11:45:19 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/workspace.rs"
|
|
|
|
|
2021-10-05 11:45:19 +00:00
|
|
|
[features]
|
2021-12-06 05:37:08 +00:00
|
|
|
test-support = ["client/test-support", "project/test-support"]
|
2021-10-05 11:45:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
client = { path = "../client" }
|
2021-12-21 08:50:11 +00:00
|
|
|
clock = { path = "../clock" }
|
2022-01-07 16:38:37 +00:00
|
|
|
collections = { path = "../collections" }
|
2021-10-05 11:45:19 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2021-10-20 20:51:40 +00:00
|
|
|
language = { path = "../language" }
|
2021-10-05 11:45:19 +00:00
|
|
|
project = { path = "../project" }
|
|
|
|
theme = { path = "../theme" }
|
2022-01-17 18:46:47 +00:00
|
|
|
util = { path = "../util" }
|
2021-10-05 11:45:19 +00:00
|
|
|
anyhow = "1.0.38"
|
|
|
|
log = "0.4"
|
2021-12-18 15:12:59 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-10-05 11:45:19 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-11-24 15:04:24 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-05 11:45:19 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|