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