Skip to content

Commit e971f31

Browse files
committed
done with updating the versions of the dependencies
1 parent 1ab7391 commit e971f31

File tree

24 files changed

+28
-28
lines changed

24 files changed

+28
-28
lines changed

compiler/rustc_ast/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
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
18-
thin-vec = "0.2.12"
18+
thin-vec = "0.2.13"
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
@@ -21,6 +21,6 @@ rustc_session = { path = "../rustc_session" }
2121
rustc_span = { path = "../rustc_span" }
2222
rustc_target = { path = "../rustc_target" }
2323
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
24-
thin-vec = "0.2.12"
24+
thin-vec = "0.2.13"
2525
tracing = "0.1"
2626
# tidy-alphabetical-end

compiler/rustc_ast_passes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ rustc_parse = { path = "../rustc_parse" }
1818
rustc_session = { path = "../rustc_session" }
1919
rustc_span = { path = "../rustc_span" }
2020
rustc_target = { path = "../rustc_target" }
21-
thin-vec = "0.2.12"
21+
thin-vec = "0.2.13"
2222
# tidy-alphabetical-end

compiler/rustc_ast_pretty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ rustc_ast = { path = "../rustc_ast" }
1010
rustc_data_structures = { path = "../rustc_data_structures" }
1111
rustc_lexer = { path = "../rustc_lexer" }
1212
rustc_span = { path = "../rustc_span" }
13-
thin-vec = "0.2.12"
13+
thin-vec = "0.2.13"
1414
# tidy-alphabetical-end

compiler/rustc_builtin_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ rustc_session = { path = "../rustc_session" }
3030
rustc_span = { path = "../rustc_span" }
3131
rustc_target = { path = "../rustc_target" }
3232
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
33-
thin-vec = "0.2.12"
33+
thin-vec = "0.2.13"
3434
tracing = "0.1"
3535
# tidy-alphabetical-end

compiler/rustc_codegen_cranelift/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ object = { version = "0.36", default-features = false, features = ["std", "read_
2020

2121
indexmap = "2.0.0"
2222
libloading = { version = "0.8.0", optional = true }
23-
smallvec = "1.8.1"
23+
smallvec = "1.13.2"
2424

2525
[patch.crates-io]
2626
# Uncomment to use local checkout of cranelift

compiler/rustc_codegen_ssa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ rustc_type_ir = { path = "../rustc_type_ir" }
4040
serde_json = "1.0.59"
4141
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
4242
tempfile = "3.2"
43-
thin-vec = "0.2.12"
43+
thin-vec = "0.2.13"
4444
thorin-dwp = "0.8"
4545
tracing = "0.1"
4646
wasm-encoder = "0.219"

compiler/rustc_data_structures/Cargo.toml

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

compiler/rustc_expand/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ rustc_serialize = { path = "../rustc_serialize" }
2525
rustc_session = { path = "../rustc_session" }
2626
rustc_span = { path = "../rustc_span" }
2727
smallvec = { version = "1.13.2", features = ["union", "may_dangle"] }
28-
thin-vec = "0.2.12"
28+
thin-vec = "0.2.13"
2929
tracing = "0.1"
3030
# tidy-alphabetical-end

compiler/rustc_incremental/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
rand = "0.8.4"
8+
rand = "0.8.5"
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_data_structures = { path = "../rustc_data_structures" }
1111
rustc_errors = { path = "../rustc_errors" }
@@ -18,6 +18,6 @@ rustc_middle = { path = "../rustc_middle" }
1818
rustc_serialize = { path = "../rustc_serialize" }
1919
rustc_session = { path = "../rustc_session" }
2020
rustc_span = { path = "../rustc_span" }
21-
thin-vec = "0.2.12"
21+
thin-vec = "0.2.13"
2222
tracing = "0.1"
2323
# tidy-alphabetical-end

0 commit comments

Comments
 (0)