Cargo.toml

 1[package]
 2name = "storybook"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[[bin]]
 8name = "storybook"
 9path = "src/storybook.rs"
10
11[dependencies]
12gpui2 = { path = "../gpui2" }
13anyhow.workspace = true
14log.workspace = true
15rust-embed.workspace = true
16serde.workspace = true
17settings = { path = "../settings" }
18simplelog = "0.9"
19theme = { path = "../theme" }
20util = { path = "../util" }
21
22[dev-dependencies]
23gpui2 = { path = "../gpui2", features = ["test-support"] }