1[package]
2name = "storybook"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[[bin]]
8name = "storybook"
9path = "src/storybook.rs"
10
11[dependencies]
12anyhow.workspace = true
13# TODO: Remove after diagnosing stack overflow.
14backtrace-on-stack-overflow = "0.3.0"
15chrono = "0.4"
16clap = { version = "4.4", features = ["derive", "string"] }
17collab_ui = { path = "../collab_ui", features = ["stories"] }
18strum = { version = "0.25.0", features = ["derive"] }
19dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
20editor = { path = "../editor" }
21fuzzy = { path = "../fuzzy" }
22gpui = { path = "../gpui" }
23indoc.workspace = true
24itertools = "0.11.0"
25language = { path = "../language" }
26log.workspace = true
27rust-embed.workspace = true
28serde.workspace = true
29settings = { path = "../settings" }
30simplelog = "0.9"
31smallvec.workspace = true
32story = { path = "../story" }
33theme = { path = "../theme" }
34menu = { path = "../menu" }
35ui = { path = "../ui", features = ["stories"] }
36util = { path = "../util" }
37picker = { path = "../picker" }
38
39[dev-dependencies]
40gpui = { path = "../gpui", features = ["test-support"] }