From 7eab57a26489d33ca8ca297b4b3bf732c1f084c9 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 16 Aug 2024 17:33:04 +0300 Subject: [PATCH] Add a task for running zed in "local release" mode (#16357) Release Notes: - N/A --- .zed/tasks.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zed/tasks.json b/.zed/tasks.json index 259ab07f3e..800588a96b 100644 --- a/.zed/tasks.json +++ b/.zed/tasks.json @@ -3,5 +3,10 @@ "label": "clippy", "command": "./script/clippy", "args": [] + }, + { + "label": "cargo run --profile release-fast", + "command": "cargo", + "args": ["run", "--profile", "release-fast"] } ]