Skip to content

Commit b5d5994

Browse files
committed
Update chalk to 0.11.0
1 parent a1c769b commit b5d5994

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Cargo.lock

+12-8
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,9 @@ dependencies = [
434434

435435
[[package]]
436436
name = "chalk-derive"
437-
version = "0.10.1-dev"
438-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
437+
version = "0.11.0"
438+
source = "registry+https://github.com/rust-lang/crates.io-index"
439+
checksum = "5b9bd01eab87277d973183a1d2e56bace1c11f8242c52c20636fb7dddf343ac9"
439440
dependencies = [
440441
"proc-macro2 1.0.3",
441442
"quote 1.0.2",
@@ -445,8 +446,9 @@ dependencies = [
445446

446447
[[package]]
447448
name = "chalk-engine"
448-
version = "0.10.1-dev"
449-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
449+
version = "0.11.0"
450+
source = "registry+https://github.com/rust-lang/crates.io-index"
451+
checksum = "6c7a637c3d17ed555aef16e16952a5d1e127bd55178cc30be22afeb92da90c7d"
450452
dependencies = [
451453
"chalk-derive",
452454
"chalk-ir",
@@ -455,17 +457,19 @@ dependencies = [
455457

456458
[[package]]
457459
name = "chalk-ir"
458-
version = "0.10.1-dev"
459-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
460+
version = "0.11.0"
461+
source = "registry+https://github.com/rust-lang/crates.io-index"
462+
checksum = "595e5735ded16c3f3dc348f7b15bbb2521a0080b1863cac38ad5271589944670"
460463
dependencies = [
461464
"chalk-derive",
462465
"lazy_static",
463466
]
464467

465468
[[package]]
466469
name = "chalk-solve"
467-
version = "0.10.1-dev"
468-
source = "git+https://github.com/rust-lang/chalk.git?rev=ea1ca4ddc43abcfed77420f294a3713fac714e18#ea1ca4ddc43abcfed77420f294a3713fac714e18"
470+
version = "0.11.0"
471+
source = "registry+https://github.com/rust-lang/crates.io-index"
472+
checksum = "5d9d938139db425867a30cc0cfec0269406d8238d0571d829041eaa7a8455d11"
469473
dependencies = [
470474
"chalk-derive",
471475
"chalk-engine",

src/librustc_middle/Cargo.toml

+1-2
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

+2-5
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)