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