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"] }
14gpui2 = { path = "../gpui2" }
15log.workspace = true
16rust-embed.workspace = true
17serde.workspace = true
18settings = { path = "../settings" }
19simplelog = "0.9"
20strum = { version = "0.25.0", features = ["derive"] }
21theme = { path = "../theme" }
22ui = { path = "../ui" }
23util = { path = "../util" }
24
25[dev-dependencies]
26gpui2 = { path = "../gpui2", features = ["test-support"] }