mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-14 02:43:19 +03:00
f2a1226e18
This PR sets up the `assistant2` crate with the storybook so that UI elements can be iterated on in isolation. To start, we have some stories for the `ChatMessage` component: ```sh cargo run -p storybook -- components/assistant_chat_message ``` <img width="1233" alt="Screenshot 2024-04-30 at 5 20 03 PM" src="https://github.com/zed-industries/zed/assets/1486634/510967ea-0e9b-4fa9-94fb-421ee74bcc45"> Release Notes: - N/A
41 lines
992 B
TOML
41 lines
992 B
TOML
[package]
|
|
name = "storybook"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "storybook"
|
|
path = "src/storybook.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
assistant2 = { workspace = true, features = ["stories"] }
|
|
clap = { workspace = true, features = ["derive", "string"] }
|
|
collab_ui = { workspace = true, features = ["stories"] }
|
|
ctrlc = "3.4"
|
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
|
editor.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
indoc.workspace = true
|
|
language.workspace = true
|
|
log.workspace = true
|
|
menu.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
rust-embed.workspace = true
|
|
settings.workspace = true
|
|
simplelog = "0.9"
|
|
story.workspace = true
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme.workspace = true
|
|
ui = { workspace = true, features = ["stories"] }
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|