From 040d42fc240d330b60ef46212a7b109bbf094227 Mon Sep 17 00:00:00 2001 From: Agus Zubiaga Date: Mon, 17 Mar 2025 10:32:19 -0300 Subject: [PATCH] assistant tools: Fix running tests locally (#26914) Without this, we running into the following error: ``` Running into this when running tests. Is this dyld[45041]: Library not loaded: @rpath/WebRTC.framework/WebRTC Referenced from: /Users/aguz/zed/zed/target/debug/deps/assistant_tools-522d7745dd439dfb Reason: no LC_RPATH's found ``` Thanks Piotr! Release Notes: - N/A --- crates/assistant_tools/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/assistant_tools/Cargo.toml b/crates/assistant_tools/Cargo.toml index 6387edf4edc308b74358337699244aaaea670291..749ff927c380521dd18a022d076422315c3c5ae6 100644 --- a/crates/assistant_tools/Cargo.toml +++ b/crates/assistant_tools/Cargo.toml @@ -38,3 +38,4 @@ collections = { workspace = true, features = ["test-support"] } gpui = { workspace = true, features = ["test-support"] } language = { workspace = true, features = ["test-support"] } project = { workspace = true, features = ["test-support"] } +workspace = { workspace = true, features = ["test-support"] }