mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
83f493b387
Following-up on #8330 Invocation ```bash cargo-machete --with-metadata --skip-target-dir --fix ```` There is more stuff to fix, but it chokes on `async-lock`: ``` cargo-machete found the following unused dependencies in /x/Code/zed: rpc -- /x/Code/zed/crates/rpc/Cargo.toml: async_lock prost_build serde_derive Error: Dependency async_lock not found ``` Release Notes: - N/A
36 lines
882 B
TOML
36 lines
882 B
TOML
[package]
|
|
name = "storybook"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[[bin]]
|
|
name = "storybook"
|
|
path = "src/storybook.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { version = "4.4", 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
|
|
rust-embed.workspace = true
|
|
settings.workspace = true
|
|
simplelog = "0.9"
|
|
story.workspace = true
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme.workspace = true
|
|
ui = { workspace = true, features = ["stories"] }
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|