Cargo.toml

 1[package]
 2name = "storybook2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[[bin]]
 8name = "storybook"
 9path = "src/storybook2.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"] }
17dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
18editor = { package = "editor2", path = "../editor2" }
19fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
20gpui = { package = "gpui2", path = "../gpui2" }
21indoc.workspace = true
22itertools = "0.11.0"
23language = { package = "language2", path = "../language2" }
24log.workspace = true
25rust-embed.workspace = true
26serde.workspace = true
27settings2 = { path = "../settings2" }
28simplelog = "0.9"
29smallvec.workspace = true
30story = { path = "../story" }
31strum = { version = "0.25.0", features = ["derive"] }
32theme = { path = "../theme" }
33theme2 = { path = "../theme2" }
34menu = { package = "menu2", path = "../menu2" }
35ui = { package = "ui2", path = "../ui2", features = ["stories"] }
36util = { path = "../util" }
37picker = { package = "picker2", path = "../picker2" }
38
39[dev-dependencies]
40gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }