Skip to content

Commit bfce227

Browse files
committed
Update cargo
20 commits in 7e484fc1a766f56dbc95380f45719698e0c82749..9286a1beba5b28b115bad67de2ae91fb1c61eb0b 2022-10-27 15:20:57 +0000 to 2022-11-04 06:41:49 +0000 - chore: Upgrade dependencies (rust-lang/cargo#11328) - Clean more aggressively in CI (rust-lang/cargo#11335) - Remove remove_dir_all (rust-lang/cargo#11333) - test(publish): Cover more wait-for-publish cases (rust-lang/cargo#11327) - Revert rust-lang/cargo#11183 (rust-lang/cargo#11331) - fix(semver-check): adapt to a different error for variant not covered (rust-lang/cargo#11332) - Update curl-sys (rust-lang/cargo#11326) - Mention fix on build script deadlock (rust-lang/cargo#11325) - Make cargo forward pre-existing CARGO if set (rust-lang/cargo#11285) - Clean up workspace dependencies after cargo remove (rust-lang/cargo#11242) - Update the outdated link for rust-semverver (rust-lang/cargo#11322) - Fix broken link to compilation entry point (rust-lang/cargo#11317) - Only remove fingerprints and build script artifacts of the requested package (rust-lang/cargo#10621) - Newer anyhow features are required (rust-lang/cargo#11316) - Clean stale git temp files (rust-lang/cargo#11308) - Report crate size on package and publish (rust-lang/cargo#11270) - add a note that some warnings (and/or errors) can be auto-fixed (rust-lang/cargo#10989) - Update libcurl (rust-lang/cargo#11307) - artifact deps shoud works when target field specified coexists with `optional = true` (rust-lang/cargo#11183) - Fix singular verb in tests page (rust-lang/cargo#11300)
1 parent 0950848 commit bfce227

File tree

2 files changed

+72
-21
lines changed

2 files changed

+72
-21
lines changed

Diff for: Cargo.lock

+71-20
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,6 @@ dependencies = [
427427
"glob",
428428
"itertools",
429429
"lazy_static",
430-
"remove_dir_all",
431430
"serde_json",
432431
"snapbox",
433432
"tar",
@@ -449,7 +448,7 @@ dependencies = [
449448
"jobserver",
450449
"libc",
451450
"log",
452-
"miow",
451+
"miow 0.4.0",
453452
"same-file",
454453
"shell-escape",
455454
"tempfile",
@@ -815,7 +814,7 @@ dependencies = [
815814
"lazy_static",
816815
"lazycell",
817816
"libc",
818-
"miow",
817+
"miow 0.3.7",
819818
"miropt-test-tools",
820819
"regex",
821820
"rustfix",
@@ -840,7 +839,7 @@ dependencies = [
840839
"lazy_static",
841840
"libc",
842841
"log",
843-
"miow",
842+
"miow 0.3.7",
844843
"regex",
845844
"rustfix",
846845
"serde",
@@ -853,9 +852,9 @@ dependencies = [
853852

854853
[[package]]
855854
name = "concolor"
856-
version = "0.0.8"
855+
version = "0.0.9"
857856
source = "registry+https://github.com/rust-lang/crates.io-index"
858-
checksum = "015267563b1df20adccdd00cb05257b1dfbea70a04928e9cf88ffb850c1a40af"
857+
checksum = "b90f9dcd9490a97db91a85ccd79e38a87e14323f0bb824659ee3274e9143ba37"
859858
dependencies = [
860859
"atty",
861860
"bitflags",
@@ -864,9 +863,9 @@ dependencies = [
864863

865864
[[package]]
866865
name = "concolor-query"
867-
version = "0.0.5"
866+
version = "0.1.0"
868867
source = "registry+https://github.com/rust-lang/crates.io-index"
869-
checksum = "d6417fe6fc03a8b533fd2177742eeb39a90c7233eedec7bac96d4d6b69a09449"
868+
checksum = "82a90734b3d5dcf656e7624cca6bce9c3a90ee11f900e80141a7427ccfb3d317"
870869

871870
[[package]]
872871
name = "content_inspector"
@@ -1036,9 +1035,9 @@ dependencies = [
10361035

10371036
[[package]]
10381037
name = "curl"
1039-
version = "0.4.43"
1038+
version = "0.4.44"
10401039
source = "registry+https://github.com/rust-lang/crates.io-index"
1041-
checksum = "37d855aeef205b43f65a5001e0997d81f8efca7badad4fad7d897aa7f0d0651f"
1040+
checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
10421041
dependencies = [
10431042
"curl-sys",
10441043
"libc",
@@ -1051,9 +1050,9 @@ dependencies = [
10511050

10521051
[[package]]
10531052
name = "curl-sys"
1054-
version = "0.4.55+curl-7.83.1"
1053+
version = "0.4.59+curl-7.86.0"
10551054
source = "registry+https://github.com/rust-lang/crates.io-index"
1056-
checksum = "23734ec77368ec583c2e61dd3f0b0e5c98b93abe6d2a004ca06b91dd7e3e2762"
1055+
checksum = "6cfce34829f448b08f55b7db6d0009e23e2e86a34e8c2b366269bf5799b4a407"
10571056
dependencies = [
10581057
"cc",
10591058
"libc",
@@ -2257,6 +2256,15 @@ dependencies = [
22572256
"winapi",
22582257
]
22592258

2259+
[[package]]
2260+
name = "miow"
2261+
version = "0.4.0"
2262+
source = "registry+https://github.com/rust-lang/crates.io-index"
2263+
checksum = "a7377f7792b3afb6a3cba68daa54ca23c032137010460d667fda53a8d66be00e"
2264+
dependencies = [
2265+
"windows-sys 0.28.0",
2266+
]
2267+
22602268
[[package]]
22612269
name = "miri"
22622270
version = "0.1.0"
@@ -2541,7 +2549,7 @@ dependencies = [
25412549
"libc",
25422550
"redox_syscall",
25432551
"smallvec",
2544-
"windows-sys",
2552+
"windows-sys 0.36.1",
25452553
]
25462554

25472555
[[package]]
@@ -4628,9 +4636,9 @@ checksum = "da73c8f77aebc0e40c300b93f0a5f1bece7a248a36eee287d4e095f35c7b7d6e"
46284636

46294637
[[package]]
46304638
name = "snapbox"
4631-
version = "0.3.3"
4639+
version = "0.4.1"
46324640
source = "registry+https://github.com/rust-lang/crates.io-index"
4633-
checksum = "44d199ccf8f606592df2d145db26f2aa45344e23c64b074cc5a4047f1d99b0f7"
4641+
checksum = "827c00e91b15e2674d8a5270bae91f898693cbf9561cbb58d8eaa31974597293"
46344642
dependencies = [
46354643
"concolor",
46364644
"content_inspector",
@@ -5475,43 +5483,86 @@ version = "0.4.0"
54755483
source = "registry+https://github.com/rust-lang/crates.io-index"
54765484
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
54775485

5486+
[[package]]
5487+
name = "windows-sys"
5488+
version = "0.28.0"
5489+
source = "registry+https://github.com/rust-lang/crates.io-index"
5490+
checksum = "82ca39602d5cbfa692c4b67e3bcbb2751477355141c1ed434c94da4186836ff6"
5491+
dependencies = [
5492+
"windows_aarch64_msvc 0.28.0",
5493+
"windows_i686_gnu 0.28.0",
5494+
"windows_i686_msvc 0.28.0",
5495+
"windows_x86_64_gnu 0.28.0",
5496+
"windows_x86_64_msvc 0.28.0",
5497+
]
5498+
54785499
[[package]]
54795500
name = "windows-sys"
54805501
version = "0.36.1"
54815502
source = "registry+https://github.com/rust-lang/crates.io-index"
54825503
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
54835504
dependencies = [
5484-
"windows_aarch64_msvc",
5485-
"windows_i686_gnu",
5486-
"windows_i686_msvc",
5487-
"windows_x86_64_gnu",
5488-
"windows_x86_64_msvc",
5505+
"windows_aarch64_msvc 0.36.1",
5506+
"windows_i686_gnu 0.36.1",
5507+
"windows_i686_msvc 0.36.1",
5508+
"windows_x86_64_gnu 0.36.1",
5509+
"windows_x86_64_msvc 0.36.1",
54895510
]
54905511

5512+
[[package]]
5513+
name = "windows_aarch64_msvc"
5514+
version = "0.28.0"
5515+
source = "registry+https://github.com/rust-lang/crates.io-index"
5516+
checksum = "52695a41e536859d5308cc613b4a022261a274390b25bd29dfff4bf08505f3c2"
5517+
54915518
[[package]]
54925519
name = "windows_aarch64_msvc"
54935520
version = "0.36.1"
54945521
source = "registry+https://github.com/rust-lang/crates.io-index"
54955522
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
54965523

5524+
[[package]]
5525+
name = "windows_i686_gnu"
5526+
version = "0.28.0"
5527+
source = "registry+https://github.com/rust-lang/crates.io-index"
5528+
checksum = "f54725ac23affef038fecb177de6c9bf065787c2f432f79e3c373da92f3e1d8a"
5529+
54975530
[[package]]
54985531
name = "windows_i686_gnu"
54995532
version = "0.36.1"
55005533
source = "registry+https://github.com/rust-lang/crates.io-index"
55015534
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
55025535

5536+
[[package]]
5537+
name = "windows_i686_msvc"
5538+
version = "0.28.0"
5539+
source = "registry+https://github.com/rust-lang/crates.io-index"
5540+
checksum = "51d5158a43cc43623c0729d1ad6647e62fa384a3d135fd15108d37c683461f64"
5541+
55035542
[[package]]
55045543
name = "windows_i686_msvc"
55055544
version = "0.36.1"
55065545
source = "registry+https://github.com/rust-lang/crates.io-index"
55075546
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
55085547

5548+
[[package]]
5549+
name = "windows_x86_64_gnu"
5550+
version = "0.28.0"
5551+
source = "registry+https://github.com/rust-lang/crates.io-index"
5552+
checksum = "bc31f409f565611535130cfe7ee8e6655d3fa99c1c61013981e491921b5ce954"
5553+
55095554
[[package]]
55105555
name = "windows_x86_64_gnu"
55115556
version = "0.36.1"
55125557
source = "registry+https://github.com/rust-lang/crates.io-index"
55135558
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
55145559

5560+
[[package]]
5561+
name = "windows_x86_64_msvc"
5562+
version = "0.28.0"
5563+
source = "registry+https://github.com/rust-lang/crates.io-index"
5564+
checksum = "3f2b8c7cbd3bfdddd9ab98769f9746a7fad1bca236554cd032b78d768bc0e89f"
5565+
55155566
[[package]]
55165567
name = "windows_x86_64_msvc"
55175568
version = "0.36.1"

Diff for: src/tools/cargo

Submodule cargo updated 73 files

0 commit comments

Comments
 (0)