Skip to content

Commit 8b1dbf7

Browse files
committed
Auto merge of #108330 - weihanglo:update-cargo, r=weihanglo
Update cargo 15 commits in 17b3d0de0897e1c6b8ca347bd39f850bb0a5b9f6..9d5b32f503fc099c4064298465add14d4bce11e6 2023-02-17 19:45:09 +0000 to 2023-02-22 23:04:16 +0000 - refactor(job_queue): docs and move types around (rust-lang/cargo#11758) - Scrub more of the test environment (rust-lang/cargo#11757) - Make more reads of environment variables go through the `Config` (rust-lang/cargo#11754) - Revert "Update curl-sys to use libcurl 7.88.1" (rust-lang/cargo#11755) - use consistent case (rust-lang/cargo#11748) - Switch some tests from `build` to `check` (rust-lang/cargo#11725) - Fix typo in sparse-registry warning message (rust-lang/cargo#11753) - reuse url encoding from `url` crate, don't use separate `percent-encoding` (rust-lang/cargo#11750) - Read environment variables through `Config` instead of `std::env::var(_os)` (rust-lang/cargo#11727) - Update curl-sys to use libcurl 7.88.1 (rust-lang/cargo#11749) - mdman: update pretty_assertions to reduce deps (rust-lang/cargo#11747) - Cleanup tests (rust-lang/cargo#11745) - Enhance help texts of position args (rust-lang/cargo#11740) - Fix typo (rust-lang/cargo#11741) - Update comment about cargo-ok (rust-lang/cargo#11724)
2 parents 0978711 + 80bea6c commit 8b1dbf7

File tree

2 files changed

+7
-23
lines changed

2 files changed

+7
-23
lines changed

Cargo.lock

+6-22
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,6 @@ dependencies = [
8888
"yansi-term",
8989
]
9090

91-
[[package]]
92-
name = "ansi_term"
93-
version = "0.11.0"
94-
source = "registry+https://github.com/rust-lang/crates.io-index"
95-
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
96-
dependencies = [
97-
"winapi",
98-
]
99-
10091
[[package]]
10192
name = "ansi_term"
10293
version = "0.12.1"
@@ -390,7 +381,6 @@ dependencies = [
390381
"os_info",
391382
"pasetors",
392383
"pathdiff",
393-
"percent-encoding",
394384
"pretty_env_logger",
395385
"rustc-workspace-hack",
396386
"rustfix",
@@ -1216,12 +1206,6 @@ version = "0.1.13"
12161206
source = "registry+https://github.com/rust-lang/crates.io-index"
12171207
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
12181208

1219-
[[package]]
1220-
name = "difference"
1221-
version = "2.0.0"
1222-
source = "registry+https://github.com/rust-lang/crates.io-index"
1223-
checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
1224-
12251209
[[package]]
12261210
name = "digest"
12271211
version = "0.10.6"
@@ -3193,14 +3177,14 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
31933177

31943178
[[package]]
31953179
name = "pretty_assertions"
3196-
version = "0.6.1"
3180+
version = "1.3.0"
31973181
source = "registry+https://github.com/rust-lang/crates.io-index"
3198-
checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
3182+
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
31993183
dependencies = [
3200-
"ansi_term 0.11.0",
32013184
"ctor",
3202-
"difference",
3185+
"diff",
32033186
"output_vt100",
3187+
"yansi",
32043188
]
32053189

32063190
[[package]]
@@ -5783,7 +5767,7 @@ version = "0.3.3"
57835767
source = "registry+https://github.com/rust-lang/crates.io-index"
57845768
checksum = "245da694cc7fc4729f3f418b304cb57789f1bed2a78c575407ab8a23f53cb4d3"
57855769
dependencies = [
5786-
"ansi_term 0.12.1",
5770+
"ansi_term",
57875771
"lazy_static",
57885772
"matchers",
57895773
"parking_lot 0.11.2",
@@ -5802,7 +5786,7 @@ version = "0.2.0"
58025786
source = "registry+https://github.com/rust-lang/crates.io-index"
58035787
checksum = "3ce989c9962c7f61fe084dd4a230eec784649dfc2392467c790007c3a6e134e7"
58045788
dependencies = [
5805-
"ansi_term 0.12.1",
5789+
"ansi_term",
58065790
"atty",
58075791
"tracing-core",
58085792
"tracing-log",

src/tools/cargo

Submodule cargo updated 241 files

0 commit comments

Comments
 (0)