From 6ae0b3fdf68a0c1b1bd45bf8f428306e8e6ba7c2 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Mon, 16 Feb 2026 23:06:22 +0000 Subject: [PATCH] fix(workspace): exclude zed-storybook from workspace Added zed-storybook to workspace.exclude to prevent cargo from treating it as a workspace member. This allows Zed to build the extension independently. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bbc0ede..9fe2dfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] members = [".", "xtask"] -exclude = ["tree-sitter-storybook"] +exclude = ["tree-sitter-storybook", "zed-storybook"] [package] name = "storybook"