Skip to content

Commit f811f14

Browse files
committed
Auto merge of #83418 - ehuss:update-cargo, r=ehuss
Update cargo 12 commits in 90691f2bfe9a50291a98983b1ed2feab51d5ca55..1e8703890f285befb5e32627ad4e0a0454dde1fb 2021-03-16 21:36:55 +0000 to 2021-03-26 16:59:39 +0000 - tests: Tolerate "exit status" in error messages (rust-lang/cargo#9307) - Default macOS targets to `unpacked` debuginfo (rust-lang/cargo#9298) - Fix publication of packages with metadata and resolver (rust-lang/cargo#9300) - Fix config includes not working. (rust-lang/cargo#9299) - Emit note when `--future-incompat-report` had nothing to report (rust-lang/cargo#9263) - RFC 3052: Stop including authors field in manifests made by cargo new (rust-lang/cargo#9282) - Refactor feature handling, and improve error messages. (rust-lang/cargo#9290) - Split out cargo-util package for cargo-test-support. (rust-lang/cargo#9292) - Fix redundant_semicolons warning in resolver-tests. (rust-lang/cargo#9293) - Use serde's error message option to avoid implementing `Deserialize`. (rust-lang/cargo#9237) - Allow `cargo update` to operate with the --offline flag (rust-lang/cargo#9279) - Fix typo in faq.md (rust-lang/cargo#9285)
2 parents 5e65467 + ea194b8 commit f811f14

File tree

2 files changed

+34
-15
lines changed

2 files changed

+34
-15
lines changed

Cargo.lock

+33-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# This file is automatically @generated by Cargo.
22
# It is not intended for manual editing.
3+
version = 3
4+
35
[[package]]
46
name = "addr2line"
57
version = "0.14.0"
@@ -287,11 +289,10 @@ dependencies = [
287289
"cargo-platform",
288290
"cargo-test-macro",
289291
"cargo-test-support",
292+
"cargo-util",
290293
"clap",
291-
"core-foundation",
292294
"crates-io",
293295
"crossbeam-utils 0.8.0",
294-
"crypto-hash",
295296
"curl",
296297
"curl-sys",
297298
"env_logger 0.8.1",
@@ -313,7 +314,6 @@ dependencies = [
313314
"libgit2-sys",
314315
"log",
315316
"memchr",
316-
"miow 0.3.6",
317317
"num_cpus",
318318
"opener",
319319
"openssl",
@@ -322,12 +322,10 @@ dependencies = [
322322
"rand 0.8.3",
323323
"rustc-workspace-hack",
324324
"rustfix",
325-
"same-file",
326325
"semver 0.10.0",
327326
"serde",
328327
"serde_ignored",
329328
"serde_json",
330-
"shell-escape",
331329
"strip-ansi-escapes",
332330
"tar",
333331
"tempfile",
@@ -396,8 +394,9 @@ version = "0.1.0"
396394
name = "cargo-test-support"
397395
version = "0.1.0"
398396
dependencies = [
399-
"cargo",
397+
"anyhow",
400398
"cargo-test-macro",
399+
"cargo-util",
401400
"filetime",
402401
"flate2",
403402
"git2",
@@ -410,6 +409,26 @@ dependencies = [
410409
"url 2.1.1",
411410
]
412411

412+
[[package]]
413+
name = "cargo-util"
414+
version = "0.1.0"
415+
dependencies = [
416+
"anyhow",
417+
"core-foundation",
418+
"crypto-hash",
419+
"filetime",
420+
"hex 0.4.2",
421+
"jobserver",
422+
"libc",
423+
"log",
424+
"miow 0.3.6",
425+
"same-file",
426+
"shell-escape",
427+
"tempfile",
428+
"walkdir",
429+
"winapi 0.3.9",
430+
]
431+
413432
[[package]]
414433
name = "cargo_metadata"
415434
version = "0.8.2"
@@ -2769,9 +2788,9 @@ checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
27692788

27702789
[[package]]
27712790
name = "proc-macro2"
2772-
version = "1.0.19"
2791+
version = "1.0.24"
27732792
source = "registry+https://github.com/rust-lang/crates.io-index"
2774-
checksum = "04f5f085b5d71e2188cb8271e5da0161ad52c3f227a661a3c135fdf28e258b12"
2793+
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
27752794
dependencies = [
27762795
"unicode-xid",
27772796
]
@@ -4797,18 +4816,18 @@ dependencies = [
47974816

47984817
[[package]]
47994818
name = "serde"
4800-
version = "1.0.118"
4819+
version = "1.0.125"
48014820
source = "registry+https://github.com/rust-lang/crates.io-index"
4802-
checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800"
4821+
checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171"
48034822
dependencies = [
48044823
"serde_derive",
48054824
]
48064825

48074826
[[package]]
48084827
name = "serde_derive"
4809-
version = "1.0.118"
4828+
version = "1.0.125"
48104829
source = "registry+https://github.com/rust-lang/crates.io-index"
4811-
checksum = "c84d3526699cd55261af4b941e4e725444df67aa4f9e6a3564f18030d12672df"
4830+
checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d"
48124831
dependencies = [
48134832
"proc-macro2",
48144833
"quote",
@@ -5104,9 +5123,9 @@ dependencies = [
51045123

51055124
[[package]]
51065125
name = "syn"
5107-
version = "1.0.38"
5126+
version = "1.0.65"
51085127
source = "registry+https://github.com/rust-lang/crates.io-index"
5109-
checksum = "e69abc24912995b3038597a7a593be5053eb0fb44f3cc5beec0deb421790c1f4"
5128+
checksum = "f3a1d708c221c5a612956ef9f75b37e454e88d1f7b899fbd3a18d4252012d663"
51105129
dependencies = [
51115130
"proc-macro2",
51125131
"quote",

src/tools/cargo

Submodule cargo updated 131 files

0 commit comments

Comments
 (0)