Skip to content

Commit cb660c6

Browse files
committed
Update chalk to 0.24.0
1 parent 52eeff6 commit cb660c6

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -427,9 +427,9 @@ dependencies = [
427427

428428
[[package]]
429429
name = "chalk-derive"
430-
version = "0.23.0"
430+
version = "0.24.0"
431431
source = "registry+https://github.com/rust-lang/crates.io-index"
432-
checksum = "c3cb438e961fd7f1183dc5e0bdcfd09253bf9b90592cf665d1ce6787d8a4908f"
432+
checksum = "37f72751ba791492671e4cbc382c9cc0a1051e264e5c4f1cb5bba0ed58f8e65e"
433433
dependencies = [
434434
"proc-macro2",
435435
"quote",
@@ -439,9 +439,9 @@ dependencies = [
439439

440440
[[package]]
441441
name = "chalk-engine"
442-
version = "0.23.0"
442+
version = "0.24.0"
443443
source = "registry+https://github.com/rust-lang/crates.io-index"
444-
checksum = "fd715f39817e75c0f1616e1079880f2a90949af1c607033f922927780017a490"
444+
checksum = "196432c82e77fea69c9ef96070d66f76e91fb067caf7cf21c12878ea334358c7"
445445
dependencies = [
446446
"chalk-derive",
447447
"chalk-ir",
@@ -452,19 +452,19 @@ dependencies = [
452452

453453
[[package]]
454454
name = "chalk-ir"
455-
version = "0.23.0"
455+
version = "0.24.0"
456456
source = "registry+https://github.com/rust-lang/crates.io-index"
457-
checksum = "bb332abfcb015b148c6fbab39b1d13282745b0f7f312019dd8e138f5f3f0855d"
457+
checksum = "45e1d0a1980c632ba01074c44e4299257bb0227d19ac03f7f903127da788ea13"
458458
dependencies = [
459459
"chalk-derive",
460460
"lazy_static",
461461
]
462462

463463
[[package]]
464464
name = "chalk-solve"
465-
version = "0.23.0"
465+
version = "0.24.0"
466466
source = "registry+https://github.com/rust-lang/crates.io-index"
467-
checksum = "802de4eff72e5a5d2828e6c07224c74d66949dc6308aff025d0ae2871a11b4eb"
467+
checksum = "f892ee7c59419a18554fdc006e2fb4237a0af85a6ae59dcc22e0408c3538a093"
468468
dependencies = [
469469
"chalk-derive",
470470
"chalk-ir",

compiler/rustc_middle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rustc_index = { path = "../rustc_index" }
2626
rustc_serialize = { path = "../rustc_serialize" }
2727
rustc_ast = { path = "../rustc_ast" }
2828
rustc_span = { path = "../rustc_span" }
29-
chalk-ir = "0.23.0"
29+
chalk-ir = "0.24.0"
3030
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3131
measureme = "0.7.1"
3232
rustc_session = { path = "../rustc_session" }

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.23.0"
16-
chalk-solve = "0.23.0"
17-
chalk-engine = "0.23.0"
15+
chalk-ir = "0.24.0"
16+
chalk-solve = "0.24.0"
17+
chalk-engine = "0.24.0"
1818
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
1919
rustc_infer = { path = "../rustc_infer" }
2020
rustc_trait_selection = { path = "../rustc_trait_selection" }

0 commit comments

Comments
 (0)