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"] }
19strum = { version = "0.25.0", features = ["derive"] }
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
28rust-embed.workspace = true
29serde.workspace = true
30settings = { path = "../settings" }
31simplelog = "0.9"
32smallvec.workspace = true
33story = { path = "../story" }
34theme = { path = "../theme" }
35menu = { path = "../menu" }
36ui = { path = "../ui", features = ["stories"] }
37util = { path = "../util" }
38picker = { path = "../picker" }
39ctrlc = "3.4"
40
41[dev-dependencies]
42gpui = { path = "../gpui", features = ["test-support"] }