From f97e60d78534df01c609378df85e1a9a49511a6c Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 10 Oct 2023 15:03:22 -0500 Subject: [PATCH] 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` --- Cargo.toml | 6 +++--- crates/cargo-util/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1af7cce75ca8..5f2ca15e2194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,8 +24,8 @@ bytesize = "1.3" cargo = { path = "" } cargo-credential = { version = "0.4.0", path = "credential/cargo-credential" } cargo-credential-libsecret = { version = "0.3.1", path = "credential/cargo-credential-libsecret" } -cargo-credential-wincred = { version = "0.3.0", path = "credential/cargo-credential-wincred" } cargo-credential-macos-keychain = { version = "0.3.0", path = "credential/cargo-credential-macos-keychain" } +cargo-credential-wincred = { version = "0.3.0", path = "credential/cargo-credential-wincred" } cargo-platform = { path = "crates/cargo-platform", version = "0.1.4" } cargo-test-macro = { path = "crates/cargo-test-macro" } cargo-test-support = { path = "crates/cargo-test-support" } @@ -126,14 +126,14 @@ anstyle.workspace = true anyhow.workspace = true base64.workspace = true bytesize.workspace = true -cargo-platform.workspace = true cargo-credential.workspace = true cargo-credential-libsecret.workspace = true cargo-credential-macos-keychain.workspace = true cargo-credential-wincred.workspace = true +cargo-platform.workspace = true cargo-util.workspace = true -color-print.workspace = true clap = { workspace = true, features = ["wrap_help"] } +color-print.workspace = true crates-io.workspace = true curl = { workspace = true, features = ["http2"] } curl-sys.workspace = true diff --git a/crates/cargo-util/Cargo.toml b/crates/cargo-util/Cargo.toml index cba00f91701f..b1f3406771bd 100644 --- a/crates/cargo-util/Cargo.toml +++ b/crates/cargo-util/Cargo.toml @@ -10,12 +10,12 @@ description = "Miscellaneous support code used by Cargo." [dependencies] anyhow.workspace = true -sha2.workspace = true filetime.workspace = true hex.workspace = true jobserver.workspace = true libc.workspace = true same-file.workspace = true +sha2.workspace = true shell-escape.workspace = true tempfile.workspace = true tracing.workspace = true