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"
15clap = { version = "4.4", features = ["derive", "string"] }
16chrono = "0.4"
17gpui3 = { path = "../gpui3" }
18itertools = "0.11.0"
19log.workspace = true
20rust-embed.workspace = true
21serde.workspace = true
22settings = { path = "../settings" }
23simplelog = "0.9"
24smallvec.workspace = true
25strum = { version = "0.25.0", features = ["derive"] }
26theme = { path = "../theme" }
27ui = { package = "ui2", path = "../ui2", features = ["stories"] }
28util = { path = "../util" }
29
30[dev-dependencies]
31gpui3 = { path = "../gpui3", features = ["test"] }