Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 759ef86

Browse files
committedJul 10, 2019
2 parents c97c8d9 + c6a9e76 commit 759ef86

File tree

389 files changed

+3545
-1330
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+3545
-1330
lines changed
 

‎.azure-pipelines/steps/run.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ steps:
100100

101101
# Configure our CI_JOB_NAME variable which log analyzers can use for the main
102102
# step to see what's going on.
103-
- bash: echo "##vso[task.setvariable variable=CI_JOB_NAME]$SYSTEM_JOBNAME"
103+
- bash: |
104+
builder=$(echo $AGENT_JOBNAME | cut -d ' ' -f 2)
105+
echo "##vso[task.setvariable variable=CI_JOB_NAME]$builder"
104106
displayName: Configure Job Name
105107

106108
# As a quick smoke check on the otherwise very fast mingw-check linux builder

‎Cargo.lock

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -269,16 +269,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
269269

270270
[[package]]
271271
name = "cargo"
272-
version = "0.38.0"
272+
version = "0.39.0"
273273
dependencies = [
274274
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
275275
"bufstream 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
276-
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
277276
"bytesize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
278277
"cargo-test-macro 0.1.0",
279278
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
280279
"core-foundation 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
281-
"crates-io 0.26.0",
280+
"crates-io 0.27.0",
282281
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
283282
"crypto-hash 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
284283
"curl 0.4.21 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -578,7 +577,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
578577

579578
[[package]]
580579
name = "crates-io"
581-
version = "0.26.0"
580+
version = "0.27.0"
582581
dependencies = [
583582
"curl 0.4.21 (registry+https://github.com/rust-lang/crates.io-index)",
584583
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2563,7 +2562,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
25632562
name = "rls"
25642563
version = "1.37.0"
25652564
dependencies = [
2566-
"cargo 0.38.0",
2565+
"cargo 0.39.0",
25672566
"cargo_metadata 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
25682567
"clippy_lints 0.0.212",
25692568
"crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2985,7 +2984,6 @@ dependencies = [
29852984
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
29862985
"parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
29872986
"rustc 0.0.0",
2988-
"rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
29892987
"rustc_allocator 0.0.0",
29902988
"rustc_apfloat 0.0.0",
29912989
"rustc_codegen_utils 0.0.0",
@@ -3064,7 +3062,6 @@ dependencies = [
30643062
"rustc_target 0.0.0",
30653063
"rustc_traits 0.0.0",
30663064
"rustc_typeck 0.0.0",
3067-
"scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
30683065
"serialize 0.0.0",
30693066
"smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
30703067
"syntax 0.0.0",
@@ -3128,7 +3125,6 @@ dependencies = [
31283125
"rustc_resolve 0.0.0",
31293126
"rustc_traits 0.0.0",
31303127
"rustc_typeck 0.0.0",
3131-
"scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
31323128
"serialize 0.0.0",
31333129
"smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
31343130
"syntax 0.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.