From 9f6c53b5472bbdbbb68b00322ade476f42733234 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Mon, 10 Jan 2022 16:03:55 +0100 Subject: [PATCH] Fix dev dependencies in client/Cargo.toml --- crates/client/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index ac7bbcff87..bfa9731739 100644 --- a/crates/client/Cargo.toml +++ b/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"] }