Skip to content

Commit 84c7c1d

Browse files
Update dependencies in compiler folder
1 parent 5ac7e08 commit 84c7c1d

File tree

52 files changed

+953
-591
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+953
-591
lines changed

Cargo.lock

Lines changed: 824 additions & 462 deletions
Large diffs are not rendered by default.

compiler/rustc_abi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = "0.0.0"
44
edition = "2021"
55

66
[dependencies]
7-
bitflags = "1.2.1"
7+
bitflags = "1.3.1"
88
tracing = "0.1"
9-
rand = { version = "0.8.4", default-features = false, optional = true }
9+
rand = { version = "0.8.5", default-features = false, optional = true }
1010
rand_xoshiro = { version = "0.6.0", optional = true }
1111
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
1212
rustc_index = { path = "../rustc_index", default-features = false }

compiler/rustc_apfloat/Cargo.toml

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

66
[dependencies]
7-
bitflags = "1.2.1"
8-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
7+
bitflags = "1.3.2"
8+
smallvec = { version = "1.10.0", features = ["union", "may_dangle"] }

compiler/rustc_arena/Cargo.toml

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

66
[dependencies]
7-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
7+
smallvec = { version = "1.10.0", features = ["union", "may_dangle"] }

compiler/rustc_ast/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
bitflags = "1.2.1"
9+
bitflags = "1.3.2"
1010
rustc_data_structures = { path = "../rustc_data_structures" }
1111
rustc_index = { path = "../rustc_index" }
1212
rustc_lexer = { path = "../rustc_lexer" }
1313
rustc_macros = { path = "../rustc_macros" }
1414
rustc_serialize = { path = "../rustc_serialize" }
1515
rustc_span = { path = "../rustc_span" }
16-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
16+
smallvec = { version = "1.10.0", features = ["union", "may_dangle"] }
1717
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
@@ -20,6 +20,6 @@ rustc_query_system = { path = "../rustc_query_system" }
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.10.0", features = ["union", "may_dangle"] }
2424
thin-vec = "0.2.9"
2525
tracing = "0.1"

compiler/rustc_ast_passes/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1"
7+
itertools = "0.10.5"
88
tracing = "0.1"
99
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1010
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_baked_icu_data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ icu_locid = "1.0.0"
99
icu_provider = "1.0.1"
1010
icu_provider_adapters = "1.0.0"
1111
litemap = "0.6.0"
12-
zerovec = "0.9.0"
12+
zerovec = "0.9.1"
1313

1414
[features]
1515
rustc_use_parallel_compiler = ['icu_provider/sync']

compiler/rustc_borrowck/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
either = "1.5.0"
10-
itertools = "0.10.1"
11-
tracing = "0.1"
9+
either = "1.8.0"
10+
itertools = "0.10.5"
11+
tracing = "0.1.37"
1212
polonius-engine = "0.13.0"
13-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
13+
smallvec = { version = "1.10.0", features = ["union", "may_dangle"] }
1414
rustc_data_structures = { path = "../rustc_data_structures" }
1515
rustc_errors = { path = "../rustc_errors" }
1616
rustc_graphviz = { path = "../rustc_graphviz" }

compiler/rustc_builtin_macros/Cargo.toml

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

0 commit comments

Comments
 (0)