2021-10-05 11:37:40 +03:00
|
|
|
[package]
|
|
|
|
name = "workspace"
|
|
|
|
version = "0.1.0"
|
2022-01-17 18:59:06 +03:00
|
|
|
edition = "2021"
|
2021-10-05 14:45:19 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/workspace.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-05 14:45:19 +03:00
|
|
|
[features]
|
2022-04-12 01:54:52 +03:00
|
|
|
test-support = ["client/test-support", "project/test-support", "settings/test-support"]
|
2021-10-05 14:45:19 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
client = { path = "../client" }
|
2021-12-21 11:50:11 +03:00
|
|
|
clock = { path = "../clock" }
|
2022-01-07 19:38:37 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-07-13 13:15:36 +03:00
|
|
|
context_menu = { path = "../context_menu" }
|
2021-10-05 14:45:19 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language" }
|
2022-06-16 21:30:02 +03:00
|
|
|
menu = { path = "../menu" }
|
2021-10-05 14:45:19 +03:00
|
|
|
project = { path = "../project" }
|
2022-04-06 03:10:17 +03:00
|
|
|
settings = { path = "../settings" }
|
2021-10-05 14:45:19 +03:00
|
|
|
theme = { path = "../theme" }
|
2022-01-17 21:46:47 +03:00
|
|
|
util = { path = "../util" }
|
2021-10-05 14:45:19 +03:00
|
|
|
anyhow = "1.0.38"
|
2022-02-21 19:25:52 +03:00
|
|
|
futures = "0.3"
|
2022-04-08 19:06:51 +03:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-12-18 18:12:59 +03:00
|
|
|
parking_lot = "0.11.1"
|
2021-10-05 14:45:19 +03:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-05-31 12:16:32 +03:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-05-26 10:34:39 +03:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2022-03-11 11:59:13 +03:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2021-10-05 14:45:19 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-11-24 18:04:24 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-05 14:45:19 +03:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-04-06 03:10:17 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|