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