diff options
-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 a58ab3b66..6e25d4f86 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -175,9 +175,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | |||
175 | 175 | ||
176 | [[package]] | 176 | [[package]] |
177 | name = "chalk-derive" | 177 | name = "chalk-derive" |
178 | version = "0.49.0" | 178 | version = "0.50.0" |
179 | source = "registry+https://github.com/rust-lang/crates.io-index" | 179 | source = "registry+https://github.com/rust-lang/crates.io-index" |
180 | checksum = "b2525908e120156de4bdcbaa82c01006a5d954a461f39cbce828e0a8121bc69d" | 180 | checksum = "ac605cf409013573e971d7292d4bec6f5495b19d5f98fc9d8b1a12270c3888e0" |
181 | dependencies = [ | 181 | dependencies = [ |
182 | "proc-macro2", | 182 | "proc-macro2", |
183 | "quote", | 183 | "quote", |
@@ -187,9 +187,9 @@ dependencies = [ | |||
187 | 187 | ||
188 | [[package]] | 188 | [[package]] |
189 | name = "chalk-ir" | 189 | name = "chalk-ir" |
190 | version = "0.49.0" | 190 | version = "0.50.0" |
191 | source = "registry+https://github.com/rust-lang/crates.io-index" | 191 | source = "registry+https://github.com/rust-lang/crates.io-index" |
192 | checksum = "ac9bd1702626513103ba6019bcc1dd97be24e3ef8545c30dd754827c56b11756" | 192 | checksum = "fa1dbfb3c2c8b67edb5cd981f720550e43579090574f786145731f90c5d401ff" |
193 | dependencies = [ | 193 | dependencies = [ |
194 | "bitflags", | 194 | "bitflags", |
195 | "chalk-derive", | 195 | "chalk-derive", |
@@ -198,9 +198,9 @@ dependencies = [ | |||
198 | 198 | ||
199 | [[package]] | 199 | [[package]] |
200 | name = "chalk-recursive" | 200 | name = "chalk-recursive" |
201 | version = "0.49.0" | 201 | version = "0.50.0" |
202 | source = "registry+https://github.com/rust-lang/crates.io-index" | 202 | source = "registry+https://github.com/rust-lang/crates.io-index" |
203 | checksum = "697f214b6131e822de23d17814264687b555b32c9e4d95ce2b1f9267d628aae7" | 203 | checksum = "0882e2a3ba66901717a64f8bb0655e809f800ac6abed05cb605e7a41d4bf8999" |
204 | dependencies = [ | 204 | dependencies = [ |
205 | "chalk-derive", | 205 | "chalk-derive", |
206 | "chalk-ir", | 206 | "chalk-ir", |
@@ -211,9 +211,9 @@ dependencies = [ | |||
211 | 211 | ||
212 | [[package]] | 212 | [[package]] |
213 | name = "chalk-solve" | 213 | name = "chalk-solve" |
214 | version = "0.49.0" | 214 | version = "0.50.0" |
215 | source = "registry+https://github.com/rust-lang/crates.io-index" | 215 | source = "registry+https://github.com/rust-lang/crates.io-index" |
216 | checksum = "a669c4e7eb3d10e3fabebffaf473513fcf0bb14d78feefe6d8cf3b500d5d1a45" | 216 | checksum = "0d43cce07150eac39771ff4b198537cefef744734b2218a89c682295b54cd8d0" |
217 | dependencies = [ | 217 | dependencies = [ |
218 | "chalk-derive", | 218 | "chalk-derive", |
219 | "chalk-ir", | 219 | "chalk-ir", |
diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index d0211c914..db42a00dc 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 = { version = "0.49", default-features = false } | 20 | chalk-solve = { version = "0.50", default-features = false } |
21 | chalk-ir = "0.49" | 21 | chalk-ir = "0.50" |
22 | chalk-recursive = "0.49" | 22 | chalk-recursive = "0.50" |
23 | la-arena = { version = "0.2.0", path = "../../lib/arena" } | 23 | la-arena = { version = "0.2.0", path = "../../lib/arena" } |
24 | 24 | ||
25 | stdx = { path = "../stdx", version = "0.0.0" } | 25 | stdx = { path = "../stdx", version = "0.0.0" } |