Cargo.toml

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