Cargo.toml
1[package]
2name = "storybook3"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[[bin]]
8name = "storybook"
9path = "src/storybook3.rs"
10
11[dependencies]
12anyhow.workspace = true
13
14gpui = { package = "gpui2", path = "../gpui2" }
15ui = { package = "ui2", path = "../ui2", features = ["stories"] }
16theme = { package = "theme2", path = "../theme2", features = ["stories"] }
17settings = { package = "settings2", path = "../settings2"}