Skip to content

Commit 9f0d58f

Browse files
committed
cargo lock
1 parent f0fce21 commit 9f0d58f

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

Cargo.lock

+9-8
Original file line numberDiff line numberDiff line change
@@ -542,9 +542,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
542542

543543
[[package]]
544544
name = "chalk-derive"
545-
version = "0.75.0"
545+
version = "0.76.0"
546546
source = "registry+https://github.com/rust-lang/crates.io-index"
547-
checksum = "d54e3b5f9e3425e6b119ff07568d8d006bfa5a8d6f78a9cbc3530b1e962e316c"
547+
checksum = "58c24b8052ea1e3adbb6f9ab7ba5fcc18b9d12591c042de4c833f709ce81e0e0"
548548
dependencies = [
549549
"proc-macro2",
550550
"quote",
@@ -554,9 +554,9 @@ dependencies = [
554554

555555
[[package]]
556556
name = "chalk-engine"
557-
version = "0.75.0"
557+
version = "0.76.0"
558558
source = "registry+https://github.com/rust-lang/crates.io-index"
559-
checksum = "bdc891073396b167163db77123b0a3c00088edc00466cecc5531f33e3e989523"
559+
checksum = "0eca186b6ea9af798312f4b568fd094c82e7946ac08be5dc5fea22decc6d2ed8"
560560
dependencies = [
561561
"chalk-derive",
562562
"chalk-ir",
@@ -567,9 +567,9 @@ dependencies = [
567567

568568
[[package]]
569569
name = "chalk-ir"
570-
version = "0.75.0"
570+
version = "0.76.0"
571571
source = "registry+https://github.com/rust-lang/crates.io-index"
572-
checksum = "2b79e5a1d04b79311e90c69356a2c62027853906a7e33b3e070b93c055fc3e8a"
572+
checksum = "f3cad5c3f1edd4b4a2c9bda24ae558ceb4f88336f88f944c2e35d0bfeb13c818"
573573
dependencies = [
574574
"bitflags",
575575
"chalk-derive",
@@ -578,13 +578,14 @@ dependencies = [
578578

579579
[[package]]
580580
name = "chalk-solve"
581-
version = "0.75.0"
581+
version = "0.76.0"
582582
source = "registry+https://github.com/rust-lang/crates.io-index"
583-
checksum = "a5d2a1db6605aba70a58820bd80ac422b218913a510f1a40beef9efc5371ea1d"
583+
checksum = "94533188d3452bc72cbd5618d166f45fc7646b674ad3fe9667d557bc25236dee"
584584
dependencies = [
585585
"chalk-derive",
586586
"chalk-ir",
587587
"ena",
588+
"indexmap",
588589
"itertools 0.10.1",
589590
"petgraph",
590591
"rustc-hash",

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)