Added empty [workspace] table to zed-storybook/Cargo.toml to explicitly tell cargo this package is not part of the parent workspace. This fixes the Zed extension build error.
15 lines
220 B
TOML
15 lines
220 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "zed-storybook"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
description = "Zed extension for Storybook DSL"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
zed_extension_api = "0.2.0"
|