mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
b87d1eabcc
This change pulls in https://github.com/kvark/blade/pull/135 and updates the simplelog dependency for compatibility with that. Release Notes: - linux: Show link to troubleshooting docs when we can't open a window
41 lines
1000 B
TOML
41 lines
1000 B
TOML
[package]
|
|
name = "storybook"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "storybook"
|
|
path = "src/storybook.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { workspace = true, features = ["derive", "string"] }
|
|
collab_ui = { workspace = true, features = ["stories"] }
|
|
ctrlc = "3.4"
|
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
|
editor.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
indoc.workspace = true
|
|
language.workspace = true
|
|
log.workspace = true
|
|
menu.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
rust-embed.workspace = true
|
|
settings.workspace = true
|
|
simplelog.workspace = true
|
|
story.workspace = true
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme.workspace = true
|
|
title_bar = { workspace = true, features = ["stories"] }
|
|
ui = { workspace = true, features = ["stories"] }
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|