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"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/workspace.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-05 11:45:19 +00:00
|
|
|
[features]
|
2022-10-05 12:27:59 +00:00
|
|
|
test-support = [
|
|
|
|
"call/test-support",
|
|
|
|
"client/test-support",
|
|
|
|
"project/test-support",
|
2022-10-12 03:25:39 +00:00
|
|
|
"settings/test-support",
|
|
|
|
"gpui/test-support",
|
2024-02-19 16:41:43 +00:00
|
|
|
"fs/test-support",
|
2022-10-05 12:27:59 +00:00
|
|
|
]
|
2021-10-05 11:45:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-recursion = "1.0.0"
|
|
|
|
bincode = "1.2.1"
|
2024-02-06 19:41:36 +00:00
|
|
|
call.workspace = true
|
|
|
|
client.workspace = true
|
2024-02-23 03:28:08 +00:00
|
|
|
clock.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
|
|
|
db.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
derive_more.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fs.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2024-02-26 01:37:52 +00:00
|
|
|
itertools.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
language.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
node_runtime.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project.workspace = true
|
2024-02-21 12:56:43 +00:00
|
|
|
task.workspace = true
|
2023-05-17 03:25:18 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
smallvec.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
sqlez.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
2023-10-04 00:39:24 +00:00
|
|
|
uuid.workspace = true
|
2022-11-11 05:08:20 +00:00
|
|
|
|
2021-10-05 11:45:19 +00:00
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
call = { workspace = true, features = ["test-support"] }
|
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
db = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
env_logger.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|