From 0603dc0f2033036d6b5080fc8868d41d17219446 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 10 Sep 2021 09:47:06 -0700 Subject: [PATCH] Bump to 0.58.0 --- Cargo.toml | 2 +- tests/testsuite/tool_paths.rs | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 60306f61a..af1946dd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo" -version = "0.57.0" +version = "0.58.0" edition = "2018" authors = ["Yehuda Katz ", "Carl Lerche ", diff --git a/tests/testsuite/tool_paths.rs b/tests/testsuite/tool_paths.rs index ca0694b84..0cdf5db6a 100644 --- a/tests/testsuite/tool_paths.rs +++ b/tests/testsuite/tool_paths.rs @@ -342,11 +342,6 @@ fn custom_linker_env() { #[cargo_test] fn target_in_environment_contains_lower_case() { - if cfg!(windows) && !cargo_test_support::is_nightly() { - // Remove this check when 1.55 is stabilized. - // https://github.com/rust-lang/rust/pull/85270 - return; - } let p = project().file("src/main.rs", "fn main() {}").build(); let target = rustc_host();