mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
f26ca0866c
This PR mainlines the current state of new GPUI2-based UI from the `gpui2-ui` branch. Release Notes: - N/A --------- Co-authored-by: Nate Butler <iamnbutler@gmail.com> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com> Co-authored-by: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com> Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Co-authored-by: Nate <nate@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
29 lines
641 B
TOML
29 lines
641 B
TOML
[package]
|
|
name = "storybook"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "storybook"
|
|
path = "src/storybook.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { version = "4.4", features = ["derive", "string"] }
|
|
chrono = "0.4"
|
|
gpui2 = { path = "../gpui2" }
|
|
itertools = "0.11.0"
|
|
log.workspace = true
|
|
rust-embed.workspace = true
|
|
serde.workspace = true
|
|
settings = { path = "../settings" }
|
|
simplelog = "0.9"
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme = { path = "../theme" }
|
|
ui = { path = "../ui" }
|
|
util = { path = "../util" }
|
|
|
|
[dev-dependencies]
|
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|