zed/crates/room/Cargo.toml

32 lines
705 B
TOML
Raw Normal View History

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