Skip to content

Commit a64180f

Browse files
committed
Auto merge of #94673 - matthiaskrgr:rollup-2tnifg9, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #93412 (Improve rustdoc const bounds) - #94617 (Update `itertools`) - #94669 (Update -Z unpretty error message) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents d53e195 + b7ccab4 commit a64180f

File tree

14 files changed

+173
-110
lines changed

14 files changed

+173
-110
lines changed

Cargo.lock

+15-24
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ dependencies = [
337337
"humantime 2.0.1",
338338
"ignore",
339339
"im-rc",
340-
"itertools 0.10.1",
340+
"itertools",
341341
"jobserver",
342342
"lazy_static",
343343
"lazycell",
@@ -442,7 +442,7 @@ dependencies = [
442442
"flate2",
443443
"git2",
444444
"glob",
445-
"itertools 0.10.1",
445+
"itertools",
446446
"lazy_static",
447447
"remove_dir_all",
448448
"serde_json",
@@ -560,7 +560,7 @@ dependencies = [
560560
"chalk-ir",
561561
"ena",
562562
"indexmap",
563-
"itertools 0.10.1",
563+
"itertools",
564564
"petgraph",
565565
"rustc-hash",
566566
"tracing",
@@ -624,7 +624,7 @@ dependencies = [
624624
"filetime",
625625
"futures 0.3.19",
626626
"if_chain",
627-
"itertools 0.10.1",
627+
"itertools",
628628
"num_cpus",
629629
"parking_lot",
630630
"quote",
@@ -647,7 +647,7 @@ dependencies = [
647647
"cargo_metadata",
648648
"clap 2.34.0",
649649
"indoc",
650-
"itertools 0.10.1",
650+
"itertools",
651651
"opener",
652652
"regex",
653653
"shell-escape",
@@ -661,7 +661,7 @@ dependencies = [
661661
"cargo_metadata",
662662
"clippy_utils",
663663
"if_chain",
664-
"itertools 0.10.1",
664+
"itertools",
665665
"pulldown-cmark",
666666
"quine-mc_cluskey",
667667
"regex-syntax",
@@ -1783,15 +1783,6 @@ dependencies = [
17831783
"cfg-if 1.0.0",
17841784
]
17851785

1786-
[[package]]
1787-
name = "itertools"
1788-
version = "0.9.0"
1789-
source = "registry+https://github.com/rust-lang/crates.io-index"
1790-
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
1791-
dependencies = [
1792-
"either",
1793-
]
1794-
17951786
[[package]]
17961787
name = "itertools"
17971788
version = "0.10.1"
@@ -3138,7 +3129,7 @@ dependencies = [
31383129
"futures 0.3.19",
31393130
"heck",
31403131
"home",
3141-
"itertools 0.10.1",
3132+
"itertools",
31423133
"jsonrpc-core",
31433134
"lazy_static",
31443135
"log",
@@ -3180,7 +3171,7 @@ dependencies = [
31803171
"derive-new",
31813172
"env_logger 0.9.0",
31823173
"fst",
3183-
"itertools 0.10.1",
3174+
"itertools",
31843175
"json",
31853176
"lazy_static",
31863177
"log",
@@ -3411,7 +3402,7 @@ dependencies = [
34113402
name = "rustc_ast_passes"
34123403
version = "0.0.0"
34133404
dependencies = [
3414-
"itertools 0.10.1",
3405+
"itertools",
34153406
"rustc_ast",
34163407
"rustc_ast_pretty",
34173408
"rustc_attr",
@@ -3454,7 +3445,7 @@ name = "rustc_borrowck"
34543445
version = "0.0.0"
34553446
dependencies = [
34563447
"either",
3457-
"itertools 0.10.1",
3448+
"itertools",
34583449
"polonius-engine",
34593450
"rustc_const_eval",
34603451
"rustc_data_structures",
@@ -3536,7 +3527,7 @@ version = "0.0.0"
35363527
dependencies = [
35373528
"bitflags",
35383529
"cc",
3539-
"itertools 0.10.1",
3530+
"itertools",
35403531
"jobserver",
35413532
"libc",
35423533
"object 0.28.1",
@@ -4019,7 +4010,7 @@ name = "rustc_mir_transform"
40194010
version = "0.0.0"
40204011
dependencies = [
40214012
"coverage_test_macros",
4022-
"itertools 0.10.1",
4013+
"itertools",
40234014
"rustc_ast",
40244015
"rustc_attr",
40254016
"rustc_const_eval",
@@ -4419,7 +4410,7 @@ dependencies = [
44194410
"askama",
44204411
"atty",
44214412
"expect-test",
4422-
"itertools 0.10.1",
4413+
"itertools",
44234414
"minifier",
44244415
"pulldown-cmark",
44254416
"rayon",
@@ -4501,7 +4492,7 @@ dependencies = [
45014492
"env_logger 0.8.4",
45024493
"getopts",
45034494
"ignore",
4504-
"itertools 0.9.0",
4495+
"itertools",
45054496
"lazy_static",
45064497
"log",
45074498
"regex",
@@ -5181,7 +5172,7 @@ checksum = "744e9ed5b352340aa47ce033716991b5589e23781acb97cad37d4ea70560f55b"
51815172
dependencies = [
51825173
"combine",
51835174
"indexmap",
5184-
"itertools 0.10.1",
5175+
"itertools",
51855176
"kstring",
51865177
"serde",
51875178
]

compiler/rustc_ast_passes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
edition = "2021"
55

66
[dependencies]
7-
itertools = "0.10"
7+
itertools = "0.10.1"
88
tracing = "0.1"
99
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1010
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_borrowck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ doctest = false
88

99
[dependencies]
1010
either = "1.5.0"
11-
itertools = "0.10"
11+
itertools = "0.10.1"
1212
tracing = "0.1"
1313
polonius-engine = "0.13.0"
1414
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test = false
99
[dependencies]
1010
bitflags = "1.2.1"
1111
cc = "1.0.69"
12-
itertools = "0.10"
12+
itertools = "0.10.1"
1313
tracing = "0.1"
1414
libc = "0.2.50"
1515
jobserver = "0.1.22"

compiler/rustc_mir_transform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
doctest = false
88

99
[dependencies]
10-
itertools = "0.10"
10+
itertools = "0.10.1"
1111
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1212
tracing = "0.1"
1313
rustc_ast = { path = "../rustc_ast" }

compiler/rustc_session/src/config.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -2628,11 +2628,10 @@ fn parse_pretty(debugging_opts: &DebuggingOptions, efmt: ErrorOutputType) -> Opt
26282628
name => early_error(
26292629
efmt,
26302630
&format!(
2631-
"argument to `unpretty` must be one of `normal`, \
2632-
`expanded`, `identified`, `expanded,identified`, \
2633-
`expanded,hygiene`, `everybody_loops`, \
2631+
"argument to `unpretty` must be one of `normal`, `identified`, \
2632+
`expanded`, `expanded,identified`, `expanded,hygiene`, \
26342633
`ast-tree`, `ast-tree,expanded`, `hir`, `hir,identified`, \
2635-
`hir,typed`, `hir-tree`, `mir` or `mir-cfg`; got {}",
2634+
`hir,typed`, `hir-tree`, `thir-tree`, `mir` or `mir-cfg`; got {}",
26362635
name
26372636
),
26382637
),

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ serde = { version = "1.0", features = ["derive"] }
1717
serde_json = "1.0"
1818
smallvec = "1.6.1"
1919
tempfile = "3"
20-
itertools = "0.10"
20+
itertools = "0.10.1"
2121
regex = "1"
2222
rustdoc-json-types = { path = "../rustdoc-json-types" }
2323
tracing = "0.1"

0 commit comments

Comments
 (0)