zed/crates/storybook/Cargo.toml
2023-09-20 10:17:29 -06:00

28 lines
566 B
TOML

[package]
name = "storybook"
version = "0.1.0"
edition = "2021"
publish = false
[[bin]]
name = "storybook"
path = "src/storybook.rs"
[features]
test-support = []
[dependencies]
anyhow.workspace = true
derive_more.workspace = true
gpui2 = { path = "../gpui2" }
log.workspace = true
refineable = { path = "../refineable" }
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"] }