zed/crates/room/Cargo.toml
Antonio Scandurra 8fec7da799 WIP
2022-09-28 11:33:38 +02:00

26 lines
543 B
TOML

[package]
name = "room"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/room.rs"
doctest = false
[features]
test-support = [
"client/test-support",
"gpui/test-support",
"project/test-support",
]
[dependencies]
anyhow = "1.0.38"
client = { path = "../client" }
gpui = { path = "../gpui" }
project = { path = "../project" }
[dev-dependencies]
client = { path = "../client", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
project = { path = "../project", features = ["test-support"] }