Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 06228d6

Browse files
committed
Upgrade thin-vec from 0.2.9 to 0.2.12.
Because 0.2.10 added supports for `ThinVec::splice`, and 0.2.12 is the latest release.
1 parent 5243ea5 commit 06228d6

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

Cargo.lock

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

55025502
[[package]]
55035503
name = "thin-vec"
5504-
version = "0.2.9"
5504+
version = "0.2.12"
55055505
source = "registry+https://github.com/rust-lang/crates.io-index"
5506-
checksum = "ceb05e71730d396f960f8f3901cdb41be2d339b303e9d7d3a07c5ff0536e671b"
5506+
checksum = "aac81b6fd6beb5884b0cf3321b8117e6e5d47ecb6fc89f414cfdcca8b2fe2dd8"
55075507

55085508
[[package]]
55095509
name = "thiserror"

compiler/rustc_ast/Cargo.toml

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

compiler/rustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ rustc_session = { path = "../rustc_session" }
1919
rustc_span = { path = "../rustc_span" }
2020
rustc_target = { path = "../rustc_target" }
2121
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
22-
thin-vec = "0.2.9"
22+
thin-vec = "0.2.12"
2323
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.9"
26+
thin-vec = "0.2.12"
2727
tracing = "0.1"

compiler/rustc_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ smallvec = { version = "1.8.1", features = [
2929
stable_deref_trait = "1.0.0"
3030
stacker = "0.1.15"
3131
tempfile = "3.2"
32-
thin-vec = "0.2.9"
32+
thin-vec = "0.2.12"
3333
tracing = "0.1"
3434

3535
[dependencies.parking_lot]

compiler/rustc_expand/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ rustc_serialize = { path = "../rustc_serialize" }
2424
rustc_session = { path = "../rustc_session" }
2525
rustc_span = { path = "../rustc_span" }
2626
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
27-
thin-vec = "0.2.8"
27+
thin-vec = "0.2.12"
2828
tracing = "0.1"

compiler/rustc_middle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ rustc_span = { path = "../rustc_span" }
3434
rustc_target = { path = "../rustc_target" }
3535
rustc_type_ir = { path = "../rustc_type_ir" }
3636
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
37-
thin-vec = "0.2.9"
37+
thin-vec = "0.2.12"
3838
tracing = "0.1"
3939

4040
[features]

compiler/rustc_parse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rustc_lexer = { path = "../rustc_lexer" }
1616
rustc_macros = { path = "../rustc_macros" }
1717
rustc_session = { path = "../rustc_session" }
1818
rustc_span = { path = "../rustc_span" }
19-
thin-vec = "0.2.8"
19+
thin-vec = "0.2.12"
2020
tracing = "0.1"
2121
unicode-normalization = "0.1.11"
2222
unicode-width = "0.1.4"

compiler/rustc_query_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rustc-rayon-core = { version = "0.4.0", optional = true }
2020
rustc_serialize = { path = "../rustc_serialize" }
2121
rustc_session = { path = "../rustc_session" }
2222
rustc_span = { path = "../rustc_span" }
23-
thin-vec = "0.2.9"
23+
thin-vec = "0.2.12"
2424
tracing = "0.1"
2525

2626
[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.9"
25+
thin-vec = "0.2.12"
2626
tracing = "0.1"
2727

2828
[features]

compiler/rustc_resolve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ rustc_query_system = { path = "../rustc_query_system" }
2525
rustc_session = { path = "../rustc_session" }
2626
rustc_span = { path = "../rustc_span" }
2727
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
28-
thin-vec = "0.2.8"
28+
thin-vec = "0.2.12"
2929
tracing = "0.1"

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.9"
9+
thin-vec = "0.2.12"
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
@@ -18,7 +18,7 @@ serde_json = "1.0"
1818
serde = { version = "1.0", features = ["derive"] }
1919
smallvec = "1.8.1"
2020
tempfile = "3"
21-
thin-vec = "0.2.9"
21+
thin-vec = "0.2.12"
2222
tracing = "0.1"
2323
tracing-tree = "0.2.0"
2424

0 commit comments

Comments
 (0)