Skip to content

Commit 18a4c38

Browse files
committed
Auto merge of #53367 - ehuss:update-cargo, r=alexcrichton
Update cargo - Update transitioning url (rust-lang/cargo#5889) - Resolve some clippy lint warnings (rust-lang/cargo#5884) - Don't kill child processes on normal exit on Windows (rust-lang/cargo#5887) - fix a bunch of clippy warnings (rust-lang/cargo#5876) - Add support for rustc's --error-format short (rust-lang/cargo#5879) - Support JSON with rustdoc. (rust-lang/cargo#5878) - Fix rustfmt instructions in CONTRIBUTING.md (rust-lang/cargo#5880) - Allow `cargo run` in workspaces. (rust-lang/cargo#5877) - Change target filters in workspaces. (rust-lang/cargo#5873) - Improve verbose console and log for finding git repo in package check (rust-lang/cargo#5858) - Meta rename (rust-lang/cargo#5871) - fetch: skip target tests when cross_compile is disabled (rust-lang/cargo#5870) - Fully capture rustc and rustdoc output when -Zcompile-progress is passed (rust-lang/cargo#5862) - Fix test --example docs. (rust-lang/cargo#5867) - Add a feature to build a vendored OpenSSL (rust-lang/cargo#5865)
2 parents 81cfaad + 9730871 commit 18a4c38

File tree

2 files changed

+44
-22
lines changed

2 files changed

+44
-22
lines changed

src/Cargo.lock

+43-21
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ dependencies = [
187187
"filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
188188
"flate2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
189189
"fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
190-
"git2 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
190+
"git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
191191
"git2-curl 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
192192
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
193193
"hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -197,7 +197,7 @@ dependencies = [
197197
"lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
198198
"lazycell 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
199199
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
200-
"libgit2-sys 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
200+
"libgit2-sys 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)",
201201
"log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
202202
"miow 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
203203
"num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -234,7 +234,8 @@ dependencies = [
234234
"filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
235235
"flate2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
236236
"fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
237-
"git2 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
237+
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
238+
"git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
238239
"git2-curl 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
239240
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
240241
"hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -244,10 +245,11 @@ dependencies = [
244245
"lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
245246
"lazycell 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
246247
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
247-
"libgit2-sys 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
248+
"libgit2-sys 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)",
248249
"log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
249250
"miow 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
250251
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
252+
"openssl 0.10.11 (registry+https://github.com/rust-lang/crates.io-index)",
251253
"rustc-workspace-hack 1.0.0",
252254
"rustfix 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
253255
"same-file 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -616,7 +618,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
616618
dependencies = [
617619
"commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
618620
"hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
619-
"openssl 0.10.10 (registry+https://github.com/rust-lang/crates.io-index)",
621+
"openssl 0.10.11 (registry+https://github.com/rust-lang/crates.io-index)",
620622
"winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
621623
]
622624

@@ -629,7 +631,7 @@ dependencies = [
629631
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
630632
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
631633
"openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
632-
"openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)",
634+
"openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)",
633635
"schannel 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
634636
"socket2 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
635637
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -643,7 +645,7 @@ dependencies = [
643645
"cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
644646
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
645647
"libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
646-
"openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)",
648+
"openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)",
647649
"pkg-config 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
648650
"vcpkg 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
649651
"winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -876,22 +878,31 @@ name = "futures"
876878
version = "0.1.21"
877879
source = "registry+https://github.com/rust-lang/crates.io-index"
878880

881+
[[package]]
882+
name = "fwdansi"
883+
version = "1.0.1"
884+
source = "registry+https://github.com/rust-lang/crates.io-index"
885+
dependencies = [
886+
"memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
887+
"termcolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
888+
]
889+
879890
[[package]]
880891
name = "getopts"
881892
version = "0.2.17"
882893
source = "registry+https://github.com/rust-lang/crates.io-index"
883894

884895
[[package]]
885896
name = "git2"
886-
version = "0.7.3"
897+
version = "0.7.5"
887898
source = "registry+https://github.com/rust-lang/crates.io-index"
888899
dependencies = [
889900
"bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
890901
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
891-
"libgit2-sys 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
902+
"libgit2-sys 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)",
892903
"log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
893904
"openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
894-
"openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)",
905+
"openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)",
895906
"url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
896907
]
897908

@@ -901,7 +912,7 @@ version = "0.8.1"
901912
source = "registry+https://github.com/rust-lang/crates.io-index"
902913
dependencies = [
903914
"curl 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)",
904-
"git2 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
915+
"git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
905916
"log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
906917
"url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
907918
]
@@ -1134,7 +1145,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
11341145

11351146
[[package]]
11361147
name = "libgit2-sys"
1137-
version = "0.7.6"
1148+
version = "0.7.7"
11381149
source = "registry+https://github.com/rust-lang/crates.io-index"
11391150
dependencies = [
11401151
"cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1143,7 +1154,7 @@ dependencies = [
11431154
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
11441155
"libssh2-sys 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
11451156
"libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
1146-
"openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)",
1157+
"openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)",
11471158
"pkg-config 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
11481159
]
11491160

@@ -1155,7 +1166,7 @@ dependencies = [
11551166
"cmake 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)",
11561167
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
11571168
"libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
1158-
"openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)",
1169+
"openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)",
11591170
"pkg-config 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
11601171
"vcpkg 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
11611172
]
@@ -1382,29 +1393,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
13821393

13831394
[[package]]
13841395
name = "openssl"
1385-
version = "0.10.10"
1396+
version = "0.10.11"
13861397
source = "registry+https://github.com/rust-lang/crates.io-index"
13871398
dependencies = [
13881399
"bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
13891400
"cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
13901401
"foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
13911402
"lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
13921403
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1393-
"openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)",
1404+
"openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)",
13941405
]
13951406

13961407
[[package]]
13971408
name = "openssl-probe"
13981409
version = "0.1.2"
13991410
source = "registry+https://github.com/rust-lang/crates.io-index"
14001411

1412+
[[package]]
1413+
name = "openssl-src"
1414+
version = "110.0.6+1.1.0h"
1415+
source = "registry+https://github.com/rust-lang/crates.io-index"
1416+
dependencies = [
1417+
"cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
1418+
]
1419+
14011420
[[package]]
14021421
name = "openssl-sys"
1403-
version = "0.9.33"
1422+
version = "0.9.35"
14041423
source = "registry+https://github.com/rust-lang/crates.io-index"
14051424
dependencies = [
14061425
"cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
14071426
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1427+
"openssl-src 110.0.6+1.1.0h (registry+https://github.com/rust-lang/crates.io-index)",
14081428
"pkg-config 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
14091429
"vcpkg 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
14101430
]
@@ -3163,8 +3183,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
31633183
"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
31643184
"checksum futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
31653185
"checksum futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "1a70b146671de62ec8c8ed572219ca5d594d9b06c0b364d5e67b722fc559b48c"
3186+
"checksum fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34dd4c507af68d37ffef962063dfa1944ce0dd4d5b82043dbab1dabe088610c3"
31663187
"checksum getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "b900c08c1939860ce8b54dc6a89e26e00c04c380fd0e09796799bd7f12861e05"
3167-
"checksum git2 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b87cffac882c99f9654ca5eb4c6c61527b47bc1e113304f8c57333567cd31f2"
3188+
"checksum git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "591f8be1674b421644b6c030969520bc3fa12114d2eb467471982ed3e9584e71"
31683189
"checksum git2-curl 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b502f6b1b467957403d168f0039e0c46fa6a1220efa2adaef25d5b267b5fe024"
31693190
"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
31703191
"checksum globset 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "142754da2c9b3722affd909f9e27f2a6700a7a303f362971e0a74c652005a43d"
@@ -3189,7 +3210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
31893210
"checksum lazycell 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a6f08839bc70ef4a3fe1d566d5350f519c5912ea86be0df1740a7d247c7fc0ef"
31903211
"checksum lazycell 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d33a48d0365c96081958cc663eef834975cb1e8d8bea3378513fc72bdbf11e50"
31913212
"checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"
3192-
"checksum libgit2-sys 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c9051a4b288ba6f8728e9e52bb2510816946b8bcb2e20259e4d4cdc93b9ecafd"
3213+
"checksum libgit2-sys 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6ab62b46003ba97701554631fa570d9f7e7947e2480ae3d941e555a54a2c0f05"
31933214
"checksum libssh2-sys 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c628b499e8d1a4f4bd09a95d6cb1f8aeb231b46a9d40959bbd0408f14dd63adf"
31943215
"checksum libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "87f737ad6cc6fd6eefe3d9dc5412f1573865bded441300904d2f42269e140f16"
31953216
"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
@@ -3214,9 +3235,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
32143235
"checksum num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "630de1ef5cc79d0cdd78b7e33b81f083cbfe90de0f4b2b2f07f905867c70e9fe"
32153236
"checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
32163237
"checksum open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c281318d992e4432cfa799969467003d05921582a7489a8325e37f8a450d5113"
3217-
"checksum openssl 0.10.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ed18a0f40ec4e9a8a81f8865033d823b7195d16a0a5721e10963ee1b0c2980ca"
3238+
"checksum openssl 0.10.11 (registry+https://github.com/rust-lang/crates.io-index)" = "6c24d3508b4fb6da175c10baac54c578b33f09c89ae90c6fe9788b3b4768efdc"
32183239
"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
3219-
"checksum openssl-sys 0.9.33 (registry+https://github.com/rust-lang/crates.io-index)" = "d8abc04833dcedef24221a91852931df2f63e3369ae003134e70aff3645775cc"
3240+
"checksum openssl-src 110.0.6+1.1.0h (registry+https://github.com/rust-lang/crates.io-index)" = "2011250f011d9c0f2e982f36721c9cbf451a9b04f425ea43a6a3f1bfa889a3b4"
3241+
"checksum openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)" = "912f301a749394e1025d9dcddef6106ddee9252620e6d0a0e5f8d0681de9b129"
32203242
"checksum ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063"
32213243
"checksum ordslice 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd20eec3dbe4376829cb7d80ae6ac45e0a766831dca50202ff2d40db46a8a024"
32223244
"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"

src/tools/cargo

Submodule cargo updated 47 files

0 commit comments

Comments
 (0)