Skip to content

Commit 15d7556

Browse files
committed
Auto merge of #102928 - notriddle:notriddle/rustdoc-thin-vec, r=GuillaumeGomez
rustdoc: use ThinVec for cleaned generics Depends on Gankra/thin-vec#38
2 parents 6718ea1 + eb29696 commit 15d7556

File tree

15 files changed

+72
-75
lines changed

15 files changed

+72
-75
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4887,9 +4887,9 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
48874887

48884888
[[package]]
48894889
name = "thin-vec"
4890-
version = "0.2.8"
4890+
version = "0.2.9"
48914891
source = "registry+https://github.com/rust-lang/crates.io-index"
4892-
checksum = "104c2cb3180b6fb6d5b2278768e9b88b578d32ba751ea6e8d026688a40d7ed87"
4892+
checksum = "ceb05e71730d396f960f8f3901cdb41be2d339b303e9d7d3a07c5ff0536e671b"
48934893

48944894
[[package]]
48954895
name = "thiserror"

compiler/rustc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ rustc_macros = { path = "../rustc_macros" }
1414
rustc_serialize = { path = "../rustc_serialize" }
1515
rustc_span = { path = "../rustc_span" }
1616
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
17-
thin-vec = "0.2.8"
17+
thin-vec = "0.2.9"
1818
tracing = "0.1"

compiler/rustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ rustc_session = { path = "../rustc_session" }
2121
rustc_span = { path = "../rustc_span" }
2222
rustc_target = { path = "../rustc_target" }
2323
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
24-
thin-vec = "0.2.8"
24+
thin-vec = "0.2.9"
2525
tracing = "0.1"

compiler/rustc_builtin_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ rustc_session = { path = "../rustc_session" }
2323
rustc_span = { path = "../rustc_span" }
2424
rustc_target = { path = "../rustc_target" }
2525
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
26-
thin-vec = "0.2.8"
26+
thin-vec = "0.2.9"
2727
tracing = "0.1"

compiler/rustc_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dang
2525
stable_deref_trait = "1.0.0"
2626
stacker = "0.1.14"
2727
tempfile = "3.2"
28-
thin-vec = "0.2.8"
28+
thin-vec = "0.2.9"
2929
tracing = "0.1"
3030

3131
[dependencies.parking_lot]

compiler/rustc_middle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ rustc_span = { path = "../rustc_span" }
3232
rustc_target = { path = "../rustc_target" }
3333
rustc_type_ir = { path = "../rustc_type_ir" }
3434
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
35-
thin-vec = "0.2.8"
35+
thin-vec = "0.2.9"
3636
tracing = "0.1"
3737

3838
[features]

compiler/rustc_query_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rustc_serialize = { path = "../rustc_serialize" }
2121
rustc_session = { path = "../rustc_session" }
2222
rustc_span = { path = "../rustc_span" }
2323
rustc_target = { path = "../rustc_target" }
24-
thin-vec = "0.2.8"
24+
thin-vec = "0.2.9"
2525
tracing = "0.1"
2626

2727
[features]

compiler/rustc_query_system/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rustc_span = { path = "../rustc_span" }
2222
rustc_target = { path = "../rustc_target" }
2323
rustc_type_ir = { path = "../rustc_type_ir" }
2424
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
25-
thin-vec = "0.2.8"
25+
thin-vec = "0.2.9"
2626
tracing = "0.1"
2727

2828
[features]

compiler/rustc_serialize/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
indexmap = "1.9.1"
88
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
9-
thin-vec = "0.2.8"
9+
thin-vec = "0.2.9"
1010

1111
[dev-dependencies]
1212
rustc_macros = { path = "../rustc_macros" }

src/librustdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde_json = "1.0"
2020
serde = { version = "1.0", features = ["derive"] }
2121
smallvec = "1.8.1"
2222
tempfile = "3"
23-
thin-vec = "0.2.8"
23+
thin-vec = "0.2.9"
2424
tracing = "0.1"
2525
tracing-tree = "0.2.0"
2626

0 commit comments

Comments
 (0)