Skip to content

Commit b1a405d

Browse files
authored
Rollup merge of #93091 - pierwill:chalk-0.76, r=jackh726
⬆ chalk to 0.76.0 This update contains rust-lang/chalk#740, which is needed for work on #90317.
2 parents 894a867 + 8d27c28 commit b1a405d

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

Cargo.lock

+9-8
Original file line numberDiff line numberDiff line change
@@ -544,9 +544,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
544544

545545
[[package]]
546546
name = "chalk-derive"
547-
version = "0.75.0"
547+
version = "0.76.0"
548548
source = "registry+https://github.com/rust-lang/crates.io-index"
549-
checksum = "d54e3b5f9e3425e6b119ff07568d8d006bfa5a8d6f78a9cbc3530b1e962e316c"
549+
checksum = "58c24b8052ea1e3adbb6f9ab7ba5fcc18b9d12591c042de4c833f709ce81e0e0"
550550
dependencies = [
551551
"proc-macro2",
552552
"quote",
@@ -556,9 +556,9 @@ dependencies = [
556556

557557
[[package]]
558558
name = "chalk-engine"
559-
version = "0.75.0"
559+
version = "0.76.0"
560560
source = "registry+https://github.com/rust-lang/crates.io-index"
561-
checksum = "bdc891073396b167163db77123b0a3c00088edc00466cecc5531f33e3e989523"
561+
checksum = "0eca186b6ea9af798312f4b568fd094c82e7946ac08be5dc5fea22decc6d2ed8"
562562
dependencies = [
563563
"chalk-derive",
564564
"chalk-ir",
@@ -569,9 +569,9 @@ dependencies = [
569569

570570
[[package]]
571571
name = "chalk-ir"
572-
version = "0.75.0"
572+
version = "0.76.0"
573573
source = "registry+https://github.com/rust-lang/crates.io-index"
574-
checksum = "2b79e5a1d04b79311e90c69356a2c62027853906a7e33b3e070b93c055fc3e8a"
574+
checksum = "f3cad5c3f1edd4b4a2c9bda24ae558ceb4f88336f88f944c2e35d0bfeb13c818"
575575
dependencies = [
576576
"bitflags",
577577
"chalk-derive",
@@ -580,13 +580,14 @@ dependencies = [
580580

581581
[[package]]
582582
name = "chalk-solve"
583-
version = "0.75.0"
583+
version = "0.76.0"
584584
source = "registry+https://github.com/rust-lang/crates.io-index"
585-
checksum = "a5d2a1db6605aba70a58820bd80ac422b218913a510f1a40beef9efc5371ea1d"
585+
checksum = "94533188d3452bc72cbd5618d166f45fc7646b674ad3fe9667d557bc25236dee"
586586
dependencies = [
587587
"chalk-derive",
588588
"chalk-ir",
589589
"ena",
590+
"indexmap",
590591
"itertools 0.10.1",
591592
"petgraph",
592593
"rustc-hash",

compiler/rustc_middle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rustc_index = { path = "../rustc_index" }
2929
rustc_serialize = { path = "../rustc_serialize" }
3030
rustc_ast = { path = "../rustc_ast" }
3131
rustc_span = { path = "../rustc_span" }
32-
chalk-ir = "0.75.0"
32+
chalk-ir = "0.76.0"
3333
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
3434
rustc_session = { path = "../rustc_session" }
3535
rustc_type_ir = { path = "../rustc_type_ir" }

compiler/rustc_traits/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ rustc_hir = { path = "../rustc_hir" }
1212
rustc_index = { path = "../rustc_index" }
1313
rustc_ast = { path = "../rustc_ast" }
1414
rustc_span = { path = "../rustc_span" }
15-
chalk-ir = "0.75.0"
16-
chalk-engine = "0.75.0"
17-
chalk-solve = "0.75.0"
15+
chalk-ir = "0.76.0"
16+
chalk-engine = "0.76.0"
17+
chalk-solve = "0.76.0"
1818
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1919
rustc_infer = { path = "../rustc_infer" }
2020
rustc_trait_selection = { path = "../rustc_trait_selection" }

0 commit comments

Comments
 (0)