Skip to content

Commit 1ab7391

Browse files
committed
all changes good
1 parent 81a8c69 commit 1ab7391

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

compiler/rustc_arena/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
8+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
99
# tidy-alphabetical-end

compiler/rustc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rustc_lexer = { path = "../rustc_lexer" }
1414
rustc_macros = { path = "../rustc_macros" }
1515
rustc_serialize = { path = "../rustc_serialize" }
1616
rustc_span = { path = "../rustc_span" }
17-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
17+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
1818
thin-vec = "0.2.12"
1919
tracing = "0.1"
2020
# tidy-alphabetical-end

compiler/rustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rustc_middle = { path = "../rustc_middle" }
2020
rustc_session = { path = "../rustc_session" }
2121
rustc_span = { path = "../rustc_span" }
2222
rustc_target = { path = "../rustc_target" }
23-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
23+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
2424
thin-vec = "0.2.12"
2525
tracing = "0.1"
2626
# tidy-alphabetical-end

compiler/rustc_borrowck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ rustc_session = { path = "../rustc_session" }
2424
rustc_span = { path = "../rustc_span" }
2525
rustc_trait_selection = { path = "../rustc_trait_selection" }
2626
rustc_traits = { path = "../rustc_traits" }
27-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
27+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
2828
tracing = "0.1"
2929
# tidy-alphabetical-end

compiler/rustc_builtin_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rustc_parse_format = { path = "../rustc_parse_format" }
2929
rustc_session = { path = "../rustc_session" }
3030
rustc_span = { path = "../rustc_span" }
3131
rustc_target = { path = "../rustc_target" }
32-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
32+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
3333
thin-vec = "0.2.12"
3434
tracing = "0.1"
3535
# tidy-alphabetical-end

compiler/rustc_codegen_llvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
3636
rustc_target = { path = "../rustc_target" }
3737
serde = { version = "1", features = [ "derive" ]}
3838
serde_json = "1"
39-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
39+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
4040
tracing = "0.1"
4141
# tidy-alphabetical-end

compiler/rustc_codegen_ssa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ rustc_target = { path = "../rustc_target" }
3838
rustc_trait_selection = { path = "../rustc_trait_selection" }
3939
rustc_type_ir = { path = "../rustc_type_ir" }
4040
serde_json = "1.0.59"
41-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
41+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
4242
tempfile = "3.2"
4343
thin-vec = "0.2.12"
4444
thorin-dwp = "0.8"

compiler/rustc_expand/Cargo.toml

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

compiler/rustc_hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ rustc_macros = { path = "../rustc_macros" }
1515
rustc_serialize = { path = "../rustc_serialize" }
1616
rustc_span = { path = "../rustc_span" }
1717
rustc_target = { path = "../rustc_target" }
18-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
18+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
1919
tracing = "0.1"
2020
# tidy-alphabetical-end

compiler/rustc_hir_analysis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ rustc_span = { path = "../rustc_span" }
2929
rustc_target = { path = "../rustc_target" }
3030
rustc_trait_selection = { path = "../rustc_trait_selection" }
3131
rustc_type_ir = { path = "../rustc_type_ir" }
32-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
32+
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
3333
tracing = "0.1"
3434
# tidy-alphabetical-end

0 commit comments

Comments
 (0)