2022-09-19 16:01:34 +00:00
|
|
|
[package]
|
|
|
|
name = "room"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/room.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"client/test-support",
|
2022-09-23 13:05:32 +00:00
|
|
|
"collections/test-support",
|
2022-09-19 16:01:34 +00:00
|
|
|
"gpui/test-support",
|
|
|
|
"project/test-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.38"
|
|
|
|
client = { path = "../client" }
|
2022-09-23 13:05:32 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-09-19 16:01:34 +00:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2022-09-23 13:05:32 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-09-19 16:01:34 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
project = { path = "../project", features = ["test-support"] }
|