2023-09-20 20:32:55 +00:00
|
|
|
[package]
|
|
|
|
name = "storybook2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "storybook"
|
|
|
|
path = "src/storybook2.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2023-09-30 01:21:08 +00:00
|
|
|
# TODO: Remove after diagnosing stack overflow.
|
|
|
|
backtrace-on-stack-overflow = "0.3.0"
|
2023-09-20 20:32:55 +00:00
|
|
|
gpui3 = { path = "../gpui3" }
|
|
|
|
log.workspace = true
|
|
|
|
rust-embed.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
simplelog = "0.9"
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui3 = { path = "../gpui3", features = ["test"] }
|