Add a task for running zed in "local release" mode (#16357)

Kirill Bulatov created

Release Notes:

- N/A

Change summary

.zed/tasks.json | 5 +++++
1 file changed, 5 insertions(+)

Detailed changes

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