2023-09-20 20:32:55 +00:00
|
|
|
[package]
|
2024-01-03 20:33:51 +00:00
|
|
|
name = "storybook"
|
2023-09-20 20:32:55 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2023-09-20 20:32:55 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "storybook"
|
2024-01-03 20:33:51 +00:00
|
|
|
path = "src/storybook.rs"
|
2023-09-20 20:32:55 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-03-02 19:46:02 +00:00
|
|
|
clap = { workspace = true, features = ["derive", "string"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
collab_ui = { workspace = true, features = ["stories"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
ctrlc = "3.4"
|
2023-12-14 17:13:02 +00:00
|
|
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
editor.workspace = true
|
|
|
|
fuzzy.workspace = true
|
|
|
|
gpui.workspace = true
|
2023-12-14 20:55:17 +00:00
|
|
|
indoc.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
language.workspace = true
|
2023-09-20 20:32:55 +00:00
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
menu.workspace = true
|
|
|
|
picker.workspace = true
|
2023-09-20 20:32:55 +00:00
|
|
|
rust-embed.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2023-09-20 20:32:55 +00:00
|
|
|
simplelog = "0.9"
|
2024-02-06 19:41:36 +00:00
|
|
|
story.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
theme.workspace = true
|
|
|
|
ui = { workspace = true, features = ["stories"] }
|
2023-09-20 20:32:55 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|