Skip to content

Commit 95089be

Browse files
committed
Auto merge of #12803 - epage:sort, r=weihanglo
chore: Sort dependency tables This will make `cargo add` put things in the right place. Verified by doing `cargo add arcstr && git diff && git reset --hard`
2 parents 8ba1c31 + 7846fe8 commit 95089be

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ bytesize = "1.3"
2424
cargo = { path = "" }
2525
cargo-credential = { version = "0.4.0", path = "credential/cargo-credential" }
2626
cargo-credential-libsecret = { version = "0.3.1", path = "credential/cargo-credential-libsecret" }
27-
cargo-credential-wincred = { version = "0.3.0", path = "credential/cargo-credential-wincred" }
2827
cargo-credential-macos-keychain = { version = "0.3.0", path = "credential/cargo-credential-macos-keychain" }
28+
cargo-credential-wincred = { version = "0.3.0", path = "credential/cargo-credential-wincred" }
2929
cargo-platform = { path = "crates/cargo-platform", version = "0.1.4" }
3030
cargo-test-macro = { path = "crates/cargo-test-macro" }
3131
cargo-test-support = { path = "crates/cargo-test-support" }
@@ -126,14 +126,14 @@ anstyle.workspace = true
126126
anyhow.workspace = true
127127
base64.workspace = true
128128
bytesize.workspace = true
129-
cargo-platform.workspace = true
130129
cargo-credential.workspace = true
131130
cargo-credential-libsecret.workspace = true
132131
cargo-credential-macos-keychain.workspace = true
133132
cargo-credential-wincred.workspace = true
133+
cargo-platform.workspace = true
134134
cargo-util.workspace = true
135-
color-print.workspace = true
136135
clap = { workspace = true, features = ["wrap_help"] }
136+
color-print.workspace = true
137137
crates-io.workspace = true
138138
curl = { workspace = true, features = ["http2"] }
139139
curl-sys.workspace = true

crates/cargo-util/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-util"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
rust-version.workspace = true
55
edition.workspace = true
66
license.workspace = true
@@ -10,12 +10,12 @@ description = "Miscellaneous support code used by Cargo."
1010

1111
[dependencies]
1212
anyhow.workspace = true
13-
sha2.workspace = true
1413
filetime.workspace = true
1514
hex.workspace = true
1615
jobserver.workspace = true
1716
libc.workspace = true
1817
same-file.workspace = true
18+
sha2.workspace = true
1919
shell-escape.workspace = true
2020
tempfile.workspace = true
2121
tracing.workspace = true

0 commit comments

Comments
 (0)