zed/crates/room/Cargo.toml

27 lines
543 B
TOML
Raw Normal View History

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",
"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"] }