Bump to 0.58.0

This commit is contained in:
Eric Huss 2021-09-10 09:47:06 -07:00
parent c7a1c09709
commit 0603dc0f20
2 changed files with 1 additions and 6 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "cargo"
version = "0.57.0"
version = "0.58.0"
edition = "2018"
authors = ["Yehuda Katz <wycats@gmail.com>",
"Carl Lerche <me@carllerche.com>",

View file

@ -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();