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-12 18:43:08 +00:00
|
|
|
derive_more.workspace = true
|
|
|
|
gpui2 = { path = "../gpui2" }
|
2023-08-30 22:12:14 +00:00
|
|
|
log.workspace = true
|
2023-09-12 13:34:42 +00:00
|
|
|
refineable = { path = "../refineable" }
|
2023-08-30 22:12:14 +00:00
|
|
|
rust-embed.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
simplelog = "0.9"
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|