diff options
| author | Michael Goulet <michael@errs.io> | 2022-03-22 23:39:11 -0700 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2022-03-23 00:01:20 -0700 |
| commit | cc5885552edc6fb8d59007dadb7b7d1d8dd8b173 (patch) | |
| tree | 77d753a4bf5a966693b74755e1e6165518504cee | |
| parent | a4a5e79814fb4d1568fb0ea5ca50f810b071ae12 (diff) | |
| download | rust-cc5885552edc6fb8d59007dadb7b7d1d8dd8b173.tar.gz rust-cc5885552edc6fb8d59007dadb7b7d1d8dd8b173.zip | |
upgrade chalk
| -rw-r--r-- | Cargo.lock | 16 | ||||
| -rw-r--r-- | compiler/rustc_middle/Cargo.toml | 2 | ||||
| -rw-r--r-- | compiler/rustc_traits/Cargo.toml | 6 |
3 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock index 48518008b7d..80f0a0b8b5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -515,9 +515,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chalk-derive" -version = "0.76.0" +version = "0.80.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58c24b8052ea1e3adbb6f9ab7ba5fcc18b9d12591c042de4c833f709ce81e0e0" +checksum = "d0001adf0cf12361e08b65e1898ea138f8f77d8f5177cbf29b6b3b3532252bd6" dependencies = [ "proc-macro2", "quote", @@ -527,9 +527,9 @@ dependencies = [ [[package]] name = "chalk-engine" -version = "0.76.0" +version = "0.80.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eca186b6ea9af798312f4b568fd094c82e7946ac08be5dc5fea22decc6d2ed8" +checksum = "c44ee96f2d67cb5193d1503f185db1abad9933a1c6e6b4169c176f90baecd393" dependencies = [ "chalk-derive", "chalk-ir", @@ -540,9 +540,9 @@ dependencies = [ [[package]] name = "chalk-ir" -version = "0.76.0" +version = "0.80.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cad5c3f1edd4b4a2c9bda24ae558ceb4f88336f88f944c2e35d0bfeb13c818" +checksum = "92d8a95548f23618fda86426e4304e563ec2bb7ba0216139f0748d63c107b5f1" dependencies = [ "bitflags", "chalk-derive", @@ -551,9 +551,9 @@ dependencies = [ [[package]] name = "chalk-solve" -version = "0.76.0" +version = "0.80.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94533188d3452bc72cbd5618d166f45fc7646b674ad3fe9667d557bc25236dee" +checksum = "f37f492dacfafe2e21319b80827da2779932909bb392f0cc86b2bd5c07c1b4e1" dependencies = [ "chalk-derive", "chalk-ir", diff --git a/compiler/rustc_middle/Cargo.toml b/compiler/rustc_middle/Cargo.toml index b1334410237..9cfc5f5b444 100644 --- a/compiler/rustc_middle/Cargo.toml +++ b/compiler/rustc_middle/Cargo.toml @@ -29,7 +29,7 @@ rustc_index = { path = "../rustc_index" } rustc_serialize = { path = "../rustc_serialize" } rustc_ast = { path = "../rustc_ast" } rustc_span = { path = "../rustc_span" } -chalk-ir = "0.76.0" +chalk-ir = "0.80.0" smallvec = { version = "1.6.1", features = ["union", "may_dangle"] } rustc_session = { path = "../rustc_session" } rustc_type_ir = { path = "../rustc_type_ir" } diff --git a/compiler/rustc_traits/Cargo.toml b/compiler/rustc_traits/Cargo.toml index 25f228c7890..67f878df31c 100644 --- a/compiler/rustc_traits/Cargo.toml +++ b/compiler/rustc_traits/Cargo.toml @@ -12,9 +12,9 @@ rustc_hir = { path = "../rustc_hir" } rustc_index = { path = "../rustc_index" } rustc_ast = { path = "../rustc_ast" } rustc_span = { path = "../rustc_span" } -chalk-ir = "0.76.0" -chalk-engine = "0.76.0" -chalk-solve = "0.76.0" +chalk-ir = "0.80.0" +chalk-engine = "0.80.0" +chalk-solve = "0.80.0" smallvec = { version = "1.6.1", features = ["union", "may_dangle"] } rustc_infer = { path = "../rustc_infer" } rustc_trait_selection = { path = "../rustc_trait_selection" } |
