mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 04:36:24 +00:00
Fix dev dependencies in client/Cargo.toml
This commit is contained in:
parent
8d7bb8b1a3
commit
9f6c53b547
1 changed files with 5 additions and 1 deletions
|
@ -7,7 +7,7 @@ edition = "2018"
|
|||
path = "src/client.rs"
|
||||
|
||||
[features]
|
||||
test-support = ["rpc/test-support"]
|
||||
test-support = ["gpui/test-support", "rpc/test-support"]
|
||||
|
||||
[dependencies]
|
||||
gpui = { path = "../gpui" }
|
||||
|
@ -29,3 +29,7 @@ surf = "2.2"
|
|||
thiserror = "1.0.29"
|
||||
time = "0.3"
|
||||
tiny_http = "0.8"
|
||||
|
||||
[dev-dependencies]
|
||||
gpui = { path = "../gpui", features = ["test-support"] }
|
||||
rpc = { path = "../rpc", features = ["test-support"] }
|
||||
|
|
Loading…
Reference in a new issue