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-10-02 22:59:44 +00:00
|
|
|
clap = { version = "4.4", features = ["derive", "string"] }
|
2023-10-07 15:50:41 +00:00
|
|
|
chrono = "0.4"
|
2023-10-21 14:01:47 +00:00
|
|
|
gpui2 = { path = "../gpui2" }
|
2023-10-02 22:59:44 +00:00
|
|
|
itertools = "0.11.0"
|
2023-09-20 20:32:55 +00:00
|
|
|
log.workspace = true
|
|
|
|
rust-embed.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
simplelog = "0.9"
|
2023-10-04 16:49:06 +00:00
|
|
|
smallvec.workspace = true
|
2023-10-02 22:59:44 +00:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2023-09-20 20:32:55 +00:00
|
|
|
theme = { path = "../theme" }
|
2023-10-24 15:58:14 +00:00
|
|
|
theme2 = { path = "../theme2" }
|
2023-10-10 19:30:16 +00:00
|
|
|
ui = { package = "ui2", path = "../ui2", features = ["stories"] }
|
2023-09-20 20:32:55 +00:00
|
|
|
util = { path = "../util" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-21 15:52:47 +00:00
|
|
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|