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
|
2023-09-30 01:21:08 +00:00
|
|
|
# TODO: Remove after diagnosing stack overflow.
|
|
|
|
backtrace-on-stack-overflow = "0.3.0"
|
2023-12-14 17:13:02 +00:00
|
|
|
chrono = "0.4"
|
2023-10-02 22:59:44 +00:00
|
|
|
clap = { version = "4.4", features = ["derive", "string"] }
|
2024-01-09 02:54:59 +00:00
|
|
|
collab_ui = { path = "../collab_ui", 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-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 19:58:02 +00:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2023-12-14 20:55:17 +00:00
|
|
|
indoc.workspace = true
|
2023-10-02 22:59:44 +00:00
|
|
|
itertools = "0.11.0"
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2023-09-20 20:32:55 +00:00
|
|
|
log.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
menu = { path = "../menu" }
|
|
|
|
picker = { path = "../picker" }
|
2023-09-20 20:32:55 +00:00
|
|
|
rust-embed.workspace = true
|
|
|
|
serde.workspace = true
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-09-20 20:32:55 +00:00
|
|
|
simplelog = "0.9"
|
2023-10-04 16:49:06 +00:00
|
|
|
smallvec.workspace = true
|
2023-11-21 18:42:00 +00:00
|
|
|
story = { path = "../story" }
|
2024-01-31 02:41:29 +00:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 21:12:21 +00:00
|
|
|
ui = { path = "../ui", features = ["stories"] }
|
2023-09-20 20:32:55 +00:00
|
|
|
util = { path = "../util" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|