zed/crates/storybook/Cargo.toml

28 lines
575 B
TOML
Raw Normal View History

[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-09-15 03:42:56 +00:00
itertools = "0.11.0"
log.workspace = true
2023-09-12 13:34:42 +00:00
refineable = { path = "../refineable" }
rust-embed.workspace = true
serde.workspace = true
settings = { path = "../settings" }
simplelog = "0.9"
2023-09-14 20:42:04 +00:00
slotmap = "1.0.6"
theme = { path = "../theme" }
util = { path = "../util" }
[dev-dependencies]
gpui2 = { path = "../gpui2", features = ["test-support"] }