mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
e338f34097
This PR sorts the dependency lists in our `Cargo.toml` files so that
they are in alphabetical order.
This should make them easier to visually scan when looking for a
dependency.
Apologies in advance for any merge conflicts 🙈
Release Notes:
- N/A
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
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
|
|
# TODO: Remove after diagnosing stack overflow.
|
|
backtrace-on-stack-overflow = "0.3.0"
|
|
chrono = "0.4"
|
|
clap = { version = "4.4", features = ["derive", "string"] }
|
|
collab_ui = { path = "../collab_ui", features = ["stories"] }
|
|
ctrlc = "3.4"
|
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
|
editor = { path = "../editor" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
gpui = { path = "../gpui" }
|
|
indoc.workspace = true
|
|
itertools = "0.11.0"
|
|
language = { path = "../language" }
|
|
log.workspace = true
|
|
menu = { path = "../menu" }
|
|
picker = { path = "../picker" }
|
|
rust-embed.workspace = true
|
|
serde.workspace = true
|
|
settings = { path = "../settings" }
|
|
simplelog = "0.9"
|
|
smallvec.workspace = true
|
|
story = { path = "../story" }
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme = { path = "../theme" }
|
|
ui = { path = "../ui", features = ["stories"] }
|
|
util = { path = "../util" }
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|