diff options
author | Laurențiu Nicola <[email protected]> | 2020-10-24 15:14:05 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2020-10-24 15:14:05 +0100 |
commit | c81d044622197a45878f3d015c181154dd12ed14 (patch) | |
tree | fe9762bc637c4654af96b25484db7b9193568560 | |
parent | 4834015fd1353f2f138ed45ec95fde28860778a6 (diff) |
Bump chalk
-rw-r--r-- | Cargo.lock | 16 | ||||
-rw-r--r-- | crates/hir_ty/Cargo.toml | 6 |
2 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock index f287504b5..7d9b2f9c1 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -183,9 +183,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | |||
183 | 183 | ||
184 | [[package]] | 184 | [[package]] |
185 | name = "chalk-derive" | 185 | name = "chalk-derive" |
186 | version = "0.33.0" | 186 | version = "0.34.0" |
187 | source = "registry+https://github.com/rust-lang/crates.io-index" | 187 | source = "registry+https://github.com/rust-lang/crates.io-index" |
188 | checksum = "569014cab9084a6b826fe2507cc6d08f7897ba144fb1bc74e71b593dc8a0b952" | 188 | checksum = "0e9f986750ecb4df889d0a95d4586bd921889497b33908cc75bb80eadb4c600a" |
189 | dependencies = [ | 189 | dependencies = [ |
190 | "proc-macro2", | 190 | "proc-macro2", |
191 | "quote", | 191 | "quote", |
@@ -195,9 +195,9 @@ dependencies = [ | |||
195 | 195 | ||
196 | [[package]] | 196 | [[package]] |
197 | name = "chalk-ir" | 197 | name = "chalk-ir" |
198 | version = "0.33.0" | 198 | version = "0.34.0" |
199 | source = "registry+https://github.com/rust-lang/crates.io-index" | 199 | source = "registry+https://github.com/rust-lang/crates.io-index" |
200 | checksum = "8d9eab2a6590b696419f89c9ca3616fe8e8266ef676e6a6da8818c94963c9541" | 200 | checksum = "5c352c4649f1408bb3de5d86a248fda78d3d9cd1cbbd9502e7eca1be1e7ac368" |
201 | dependencies = [ | 201 | dependencies = [ |
202 | "chalk-derive", | 202 | "chalk-derive", |
203 | "lazy_static", | 203 | "lazy_static", |
@@ -205,9 +205,9 @@ dependencies = [ | |||
205 | 205 | ||
206 | [[package]] | 206 | [[package]] |
207 | name = "chalk-recursive" | 207 | name = "chalk-recursive" |
208 | version = "0.33.0" | 208 | version = "0.34.0" |
209 | source = "registry+https://github.com/rust-lang/crates.io-index" | 209 | source = "registry+https://github.com/rust-lang/crates.io-index" |
210 | checksum = "4a4671bcc70aa2d7e12ff4fe03f91d0c3c9ce387de915915e57fdf0c91dc5abd" | 210 | checksum = "7294bb2ac5446fcb83ec9524b9113f59a8913f174a9c1dea6db60532f17a1579" |
211 | dependencies = [ | 211 | dependencies = [ |
212 | "chalk-derive", | 212 | "chalk-derive", |
213 | "chalk-ir", | 213 | "chalk-ir", |
@@ -218,9 +218,9 @@ dependencies = [ | |||
218 | 218 | ||
219 | [[package]] | 219 | [[package]] |
220 | name = "chalk-solve" | 220 | name = "chalk-solve" |
221 | version = "0.33.0" | 221 | version = "0.34.0" |
222 | source = "registry+https://github.com/rust-lang/crates.io-index" | 222 | source = "registry+https://github.com/rust-lang/crates.io-index" |
223 | checksum = "45f75cc603f2fd302576c8b2976437f334e159e26d0afbb108a565b96c52184e" | 223 | checksum = "ffbca06963ed6f3d22faed840847a685f02feefa3825c0b94f9b791d03a0ac6f" |
224 | dependencies = [ | 224 | dependencies = [ |
225 | "chalk-derive", | 225 | "chalk-derive", |
226 | "chalk-ir", | 226 | "chalk-ir", |
diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index e9c62c6aa..be7c812cb 100644 --- a/crates/hir_ty/Cargo.toml +++ b/crates/hir_ty/Cargo.toml | |||
@@ -17,9 +17,9 @@ ena = "0.14.0" | |||
17 | log = "0.4.8" | 17 | log = "0.4.8" |
18 | rustc-hash = "1.1.0" | 18 | rustc-hash = "1.1.0" |
19 | scoped-tls = "1" | 19 | scoped-tls = "1" |
20 | chalk-solve = "0.33" | 20 | chalk-solve = "0.34" |
21 | chalk-ir = "0.33" | 21 | chalk-ir = "0.34" |
22 | chalk-recursive = "0.33" | 22 | chalk-recursive = "0.34" |
23 | 23 | ||
24 | stdx = { path = "../stdx", version = "0.0.0" } | 24 | stdx = { path = "../stdx", version = "0.0.0" } |
25 | hir_def = { path = "../hir_def", version = "0.0.0" } | 25 | hir_def = { path = "../hir_def", version = "0.0.0" } |