From dda4019473c68b3a1cce803c106c1c8c39f2590e Mon Sep 17 00:00:00 2001 From: est31 Date: Sun, 27 Aug 2023 00:33:15 +0200 Subject: [PATCH] Update cargo to 0.73.1 Gives us the fix to https://github.com/rust-lang/cargo/issues/12562 --- Cargo.lock | 5 ++--- Cargo.toml | 14 +------------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db18fa5..e24997f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,9 +189,9 @@ checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" [[package]] name = "cargo" -version = "0.73.0" +version = "0.73.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34a16bd56ebd2e99fdb2a5fc4c520fb7dca5db914ef77d356bfe1257aef813e4" +checksum = "77a6fe1f5394d14b81d2f3f605832a3ce35ed0bf120bc7ef437ce27fd4929c6a" dependencies = [ "anyhow", "base64", @@ -278,7 +278,6 @@ dependencies = [ "serde", "serde_json", "tempfile", - "windows-sys 0.48.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 1ebb197..a03cd58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,25 +18,13 @@ vendored-libgit2 = ["cargo/vendored-libgit2"] [dependencies] nu-ansi-term = "0.49.0" -cargo = "0.73" +cargo = "0.73.1" cargo-util = "0.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" clap = { version = "4.0", features = ["derive"] } anyhow = "1.0" -# Needed for windows build support with cargo 0.73 -[target.'cfg(windows)'.dependencies.windows-sys] -version = "0.48" -features = [ - "Win32_System_IO", - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console", - "Win32_System_Threading", - "Win32_System_JobObjects", -] - [dev-dependencies] pretty_assertions = "1.0" tempfile = "3.1"