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