diff options
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 2 |
2 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock index d277d6cfd..4ec50498c 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1132,8 +1132,8 @@ dependencies = [ | |||
1132 | "ra_parser", | 1132 | "ra_parser", |
1133 | "ra_text_edit", | 1133 | "ra_text_edit", |
1134 | "rowan", | 1134 | "rowan", |
1135 | "rustc-ap-rustc_lexer", | ||
1135 | "rustc-hash", | 1136 | "rustc-hash", |
1136 | "rustc_lexer", | ||
1137 | "serde", | 1137 | "serde", |
1138 | "smol_str", | 1138 | "smol_str", |
1139 | "stdx", | 1139 | "stdx", |
@@ -1336,6 +1336,15 @@ dependencies = [ | |||
1336 | ] | 1336 | ] |
1337 | 1337 | ||
1338 | [[package]] | 1338 | [[package]] |
1339 | name = "rustc-ap-rustc_lexer" | ||
1340 | version = "652.0.0" | ||
1341 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1342 | checksum = "3a6a43c4d0889218c5e2ae68ffea239f303fc05ab1078c73f74e63feb87f7889" | ||
1343 | dependencies = [ | ||
1344 | "unicode-xid", | ||
1345 | ] | ||
1346 | |||
1347 | [[package]] | ||
1339 | name = "rustc-demangle" | 1348 | name = "rustc-demangle" |
1340 | version = "0.1.16" | 1349 | version = "0.1.16" |
1341 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1350 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1348,15 +1357,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1348 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" | 1357 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" |
1349 | 1358 | ||
1350 | [[package]] | 1359 | [[package]] |
1351 | name = "rustc_lexer" | ||
1352 | version = "0.1.0" | ||
1353 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1354 | checksum = "c86aae0c77166108c01305ee1a36a1e77289d7dc6ca0a3cd91ff4992de2d16a5" | ||
1355 | dependencies = [ | ||
1356 | "unicode-xid", | ||
1357 | ] | ||
1358 | |||
1359 | [[package]] | ||
1360 | name = "ryu" | 1360 | name = "ryu" |
1361 | version = "1.0.3" | 1361 | version = "1.0.3" |
1362 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1362 | source = "registry+https://github.com/rust-lang/crates.io-index" |
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index 3c6ae77e4..75a2f696e 100644 --- a/crates/ra_syntax/Cargo.toml +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -13,7 +13,7 @@ doctest = false | |||
13 | [dependencies] | 13 | [dependencies] |
14 | itertools = "0.9.0" | 14 | itertools = "0.9.0" |
15 | rowan = "0.9.1" | 15 | rowan = "0.9.1" |
16 | rustc_lexer = "0.1.0" | 16 | rustc_lexer = { version = "652.0.0", package = "rustc-ap-rustc_lexer" } |
17 | rustc-hash = "1.1.0" | 17 | rustc-hash = "1.1.0" |
18 | arrayvec = "0.5.1" | 18 | arrayvec = "0.5.1" |
19 | once_cell = "1.3.1" | 19 | once_cell = "1.3.1" |