Cargo.toml

 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"] }
17strum = { version = "0.25.0", features = ["derive"] }
18dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
19editor = { path = "../editor" }
20fuzzy = {  path = "../fuzzy" }
21gpui = { path = "../gpui" }
22indoc.workspace = true
23itertools = "0.11.0"
24language = { path = "../language" }
25log.workspace = true
26rust-embed.workspace = true
27serde.workspace = true
28settings = { path = "../settings" }
29simplelog = "0.9"
30smallvec.workspace = true
31story = { path = "../story" }
32theme = { path = "../theme" }
33menu = { path = "../menu" }
34ui = { path = "../ui", features = ["stories"] }
35util = { path = "../util" }
36picker = { path = "../picker" }
37
38[dev-dependencies]
39gpui = { path = "../gpui", features = ["test-support"] }