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:
Marshall Bowers 2024-01-30 21:41:29 -05:00 committed by GitHub
parent d97e780135
commit e338f34097
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
73 changed files with 773 additions and 838 deletions

View file

@ -15,22 +15,22 @@ path = "src/gpui.rs"
doctest = false
[dependencies]
collections = { path = "../collections" }
gpui_macros = { path = "../gpui_macros" }
util = { path = "../util" }
sum_tree = { path = "../sum_tree" }
anyhow.workspace = true
async-task = "4.7"
backtrace = { version = "0.3", optional = true }
bitflags = "2.4.0"
collections = { path = "../collections" }
ctor.workspace = true
linkme = "0.3"
derive_more.workspace = true
dhat = { version = "0.3", optional = true }
env_logger = { version = "0.9", optional = true }
etagere = "0.2"
futures.workspace = true
gpui_macros = { path = "../gpui_macros" }
image = "0.23"
itertools = "0.10"
lazy_static.workspace = true
linkme = "0.3"
log.workspace = true
num_cpus = "1.13"
ordered-float.workspace = true
@ -39,26 +39,26 @@ parking_lot.workspace = true
pathfinder_geometry = "0.5"
postage.workspace = true
rand.workspace = true
raw-window-handle = "0.6.0"
refineable.workspace = true
resvg = "0.14"
schemars.workspace = true
seahash = "4.1"
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
slotmap = "1.0.6"
smallvec.workspace = true
smol.workspace = true
sum_tree = { path = "../sum_tree" }
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "1876f72bee5e376023eaa518aa7b8a34c769bd1b" }
thiserror.workspace = true
time.workspace = true
tiny-skia = "0.5"
usvg = { version = "0.14", features = [] }
util = { path = "../util" }
uuid = { version = "1.1.2", features = ["v4"] }
waker-fn = "1.1.0"
slotmap = "1.0.6"
schemars.workspace = true
bitflags = "2.4.0"
anyhow.workspace = true
raw-window-handle = "0.6.0"
[dev-dependencies]
backtrace = "0.3"
@ -74,7 +74,6 @@ bindgen = "0.65.1"
cbindgen = "0.26.0"
[target.'cfg(target_os = "macos")'.dependencies]
media = { path = "../media" }
block = "0.1"
cocoa = "0.25"
core-foundation = { version = "0.9.3", features = ["with-uuid"] }
@ -83,5 +82,6 @@ core-text = "19.2"
font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "d97147f" }
foreign-types = "0.3"
log.workspace = true
media = { path = "../media" }
metal = "0.21.0"
objc = "0.2"