Skip to content

Commit 4e3eb52

Browse files
committed
Auto merge of #77265 - vandenheuvel:chalkup, r=Dylan-DPC
Update chalk to 0.29.0
2 parents 6369a98 + ef7377e commit 4e3eb52

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.28.0"
430+
version = "0.29.0"
431431
source = "registry+https://github.com/rust-lang/crates.io-index"
432-
checksum = "8c85b013e2dc1b46ac4a279f54e62e55556a8c4d859f7b7c4e340a9b1d013640"
432+
checksum = "3a7f257e3bcdc56d8877ae31c012bd69fba0be66929d588e603905f2632c0c59"
433433
dependencies = [
434434
"proc-macro2",
435435
"quote",
@@ -439,9 +439,9 @@ dependencies = [
439439

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

453453
[[package]]
454454
name = "chalk-ir"
455-
version = "0.28.0"
455+
version = "0.29.0"
456456
source = "registry+https://github.com/rust-lang/crates.io-index"
457-
checksum = "2135d844688dc920e3ece3012c5d3d4f06e26986fe38bc041bc98f0e7a9f4e2b"
457+
checksum = "03a4050029ecb2b5a1ff3bfc64c39279179b294821ec2e8891a4a5c6e3a08db0"
458458
dependencies = [
459459
"chalk-derive",
460460
"lazy_static",
461461
]
462462

463463
[[package]]
464464
name = "chalk-solve"
465-
version = "0.28.0"
465+
version = "0.29.0"
466466
source = "registry+https://github.com/rust-lang/crates.io-index"
467-
checksum = "bc69e4e94ffd4b39f1a865824b431bb82a7b4c8f14a0ba3d461cd86e56a590ac"
467+
checksum = "828c1f80d4eaf681027cce02050c54a3c97370f81988d31bf2a56df54048746c"
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.28.0"
29+
chalk-ir = "0.29.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.28.0"
16-
chalk-solve = "0.28.0"
17-
chalk-engine = "0.28.0"
15+
chalk-ir = "0.29.0"
16+
chalk-solve = "0.29.0"
17+
chalk-engine = "0.29.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)