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-22 22:16:16 +00:00
|
|
|
clap = { version = "4.4", features = ["derive", "string"] }
|
2023-09-28 23:36:21 +00:00
|
|
|
chrono = "0.4"
|
2023-10-02 22:20:47 +00:00
|
|
|
fs = { path = "../fs" }
|
|
|
|
futures.workspace = true
|
2023-09-22 02:41:53 +00:00
|
|
|
gpui2 = { path = "../gpui2" }
|
2023-09-28 23:36:21 +00:00
|
|
|
itertools = "0.11.0"
|
2023-08-30 22:12:14 +00:00
|
|
|
log.workspace = true
|
|
|
|
rust-embed.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
simplelog = "0.9"
|
2023-09-22 18:06:09 +00:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2023-08-30 22:12:14 +00:00
|
|
|
theme = { path = "../theme" }
|
2023-09-21 23:25:35 +00:00
|
|
|
ui = { path = "../ui" }
|
2023-08-30 22:12:14 +00:00
|
|
|
util = { path = "../util" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|