Fix dev dependencies in client/Cargo.toml

Antonio Scandurra created

Change summary

crates/client/Cargo.toml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Detailed changes

crates/client/Cargo.toml 🔗

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