Skip to content

Commit 60be068

Browse files
ehussmatthiaskrgr
authored andcommitted
merge cargo changes done by #53935
(done by matthiaskrgr, but I authored ehuss)
1 parent 3387f80 commit 60be068

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
172172

173173
[[package]]
174174
name = "cargo"
175-
version = "0.30.0"
175+
version = "0.31.0"
176176
dependencies = [
177177
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
178178
"bufstream 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
179179
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
180180
"core-foundation 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
181-
"crates-io 0.18.0",
181+
"crates-io 0.19.0",
182182
"crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
183183
"crypto-hash 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
184184
"curl 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -452,7 +452,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
452452

453453
[[package]]
454454
name = "crates-io"
455-
version = "0.18.0"
455+
version = "0.19.0"
456456
dependencies = [
457457
"curl 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)",
458458
"failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1753,7 +1753,7 @@ dependencies = [
17531753
name = "rls"
17541754
version = "0.130.5"
17551755
dependencies = [
1756-
"cargo 0.30.0",
1756+
"cargo 0.31.0",
17571757
"cargo_metadata 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
17581758
"clippy_lints 0.0.212",
17591759
"crossbeam-channel 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",

src/bootstrap/test.rs

+2
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,8 @@ impl Step for Cargo {
237237
// Don't run cross-compile tests, we may not have cross-compiled libstd libs
238238
// available.
239239
cargo.env("CFG_DISABLE_CROSS_TESTS", "1");
240+
// Disable a test that has issues with mingw.
241+
cargo.env("CARGO_TEST_DISABLE_GIT_CLI", "1");
240242

241243
try_run(
242244
builder,

0 commit comments

Comments
 (0)