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