2023-08-30 22:12:14 +00:00
|
|
|
[package]
|
|
|
|
name = "storybook"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "storybook"
|
|
|
|
path = "src/storybook.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2023-09-22 02:41:53 +00:00
|
|
|
clap = { version = "3.1", features = ["derive"] }
|
|
|
|
gpui2 = { path = "../gpui2" }
|
2023-08-30 22:12:14 +00:00
|
|
|
log.workspace = true
|
|
|
|
rust-embed.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
simplelog = "0.9"
|
2023-09-22 18:06:09 +00:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2023-08-30 22:12:14 +00:00
|
|
|
theme = { path = "../theme" }
|
2023-09-21 23:25:35 +00:00
|
|
|
ui = { path = "../ui" }
|
2023-08-30 22:12:14 +00:00
|
|
|
util = { path = "../util" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|