Skip to content

Commit 8aa2898

Browse files
committed
Update chalk to 0.11.0
1 parent 4028c21 commit 8aa2898

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,9 @@ dependencies = [
428428

429429
[[package]]
430430
name = "chalk-derive"
431-
version = "0.10.1-dev"
432-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
431+
version = "0.11.0"
432+
source = "registry+https://github.com/rust-lang/crates.io-index"
433+
checksum = "5b9bd01eab87277d973183a1d2e56bace1c11f8242c52c20636fb7dddf343ac9"
433434
dependencies = [
434435
"proc-macro2 1.0.3",
435436
"quote 1.0.2",
@@ -439,8 +440,9 @@ dependencies = [
439440

440441
[[package]]
441442
name = "chalk-engine"
442-
version = "0.10.1-dev"
443-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
443+
version = "0.11.0"
444+
source = "registry+https://github.com/rust-lang/crates.io-index"
445+
checksum = "6c7a637c3d17ed555aef16e16952a5d1e127bd55178cc30be22afeb92da90c7d"
444446
dependencies = [
445447
"chalk-derive",
446448
"chalk-ir",
@@ -449,17 +451,19 @@ dependencies = [
449451

450452
[[package]]
451453
name = "chalk-ir"
452-
version = "0.10.1-dev"
453-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
454+
version = "0.11.0"
455+
source = "registry+https://github.com/rust-lang/crates.io-index"
456+
checksum = "595e5735ded16c3f3dc348f7b15bbb2521a0080b1863cac38ad5271589944670"
454457
dependencies = [
455458
"chalk-derive",
456459
"lazy_static",
457460
]
458461

459462
[[package]]
460463
name = "chalk-solve"
461-
version = "0.10.1-dev"
462-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
464+
version = "0.11.0"
465+
source = "registry+https://github.com/rust-lang/crates.io-index"
466+
checksum = "5d9d938139db425867a30cc0cfec0269406d8238d0571d829041eaa7a8455d11"
463467
dependencies = [
464468
"chalk-derive",
465469
"chalk-engine",

src/librustc_middle/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ rustc_serialize = { path = "../librustc_serialize" }
3030
rustc_ast = { path = "../librustc_ast" }
3131
rustc_span = { path = "../librustc_span" }
3232
byteorder = { version = "1.3" }
33-
chalk-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "ea1ca4ddc43abcfed77420f294a3713fac714e18" }
34-
#chalk-ir = "0.10.0"
33+
chalk-ir = "0.11.0"
3534
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3635
measureme = "0.7.1"
3736
rustc_session = { path = "../librustc_session" }

src/librustc_traits/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ rustc_hir = { path = "../librustc_hir" }
1616
rustc_index = { path = "../librustc_index" }
1717
rustc_ast = { path = "../librustc_ast" }
1818
rustc_span = { path = "../librustc_span" }
19-
#chalk-ir = "0.10.0"
20-
#chalk-rust-ir = "0.10.0"
21-
#chalk-solve = "0.10.0"
22-
chalk-solve = { git = "https://github.com/rust-lang/chalk.git", rev = "ea1ca4ddc43abcfed77420f294a3713fac714e18" }
23-
chalk-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "ea1ca4ddc43abcfed77420f294a3713fac714e18" }
19+
chalk-ir = "0.11.0"
20+
chalk-solve = "0.11.0"
2421
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
2522
rustc_infer = { path = "../librustc_infer" }
2623
rustc_trait_selection = { path = "../librustc_trait_selection" }

0 commit comments

Comments
 (0)