Sort dependencies in Cargo.toml
files (#7126)
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
This commit is contained in:
parent
d97e780135
commit
e338f34097
73 changed files with 773 additions and 838 deletions
|
@ -16,7 +16,7 @@ backtrace-on-stack-overflow = "0.3.0"
|
|||
chrono = "0.4"
|
||||
clap = { version = "4.4", features = ["derive", "string"] }
|
||||
collab_ui = { path = "../collab_ui", features = ["stories"] }
|
||||
strum = { version = "0.25.0", features = ["derive"] }
|
||||
ctrlc = "3.4"
|
||||
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
||||
editor = { path = "../editor" }
|
||||
fuzzy = { path = "../fuzzy" }
|
||||
|
@ -25,18 +25,18 @@ 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" }
|
||||
menu = { path = "../menu" }
|
||||
ui = { path = "../ui", features = ["stories"] }
|
||||
util = { path = "../util" }
|
||||
picker = { path = "../picker" }
|
||||
ctrlc = "3.4"
|
||||
|
||||
[dev-dependencies]
|
||||
gpui = { path = "../gpui", features = ["test-support"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue