mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 21:13:02 +00:00
27 lines
543 B
TOML
27 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"] }
|