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 504db0c72..152c1d307 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1123,8 +1123,8 @@ dependencies = [ | |||
1123 | "ra_parser", | 1123 | "ra_parser", |
1124 | "ra_text_edit", | 1124 | "ra_text_edit", |
1125 | "rowan", | 1125 | "rowan", |
1126 | "rustc-ap-rustc_lexer", | ||
1126 | "rustc-hash", | 1127 | "rustc-hash", |
1127 | "rustc_lexer", | ||
1128 | "serde", | 1128 | "serde", |
1129 | "smol_str", | 1129 | "smol_str", |
1130 | "stdx", | 1130 | "stdx", |
@@ -1327,6 +1327,15 @@ dependencies = [ | |||
1327 | ] | 1327 | ] |
1328 | 1328 | ||
1329 | [[package]] | 1329 | [[package]] |
1330 | name = "rustc-ap-rustc_lexer" | ||
1331 | version = "652.0.0" | ||
1332 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1333 | checksum = "3a6a43c4d0889218c5e2ae68ffea239f303fc05ab1078c73f74e63feb87f7889" | ||
1334 | dependencies = [ | ||
1335 | "unicode-xid", | ||
1336 | ] | ||
1337 | |||
1338 | [[package]] | ||
1330 | name = "rustc-demangle" | 1339 | name = "rustc-demangle" |
1331 | version = "0.1.16" | 1340 | version = "0.1.16" |
1332 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1341 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1339,15 +1348,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1339 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" | 1348 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" |
1340 | 1349 | ||
1341 | [[package]] | 1350 | [[package]] |
1342 | name = "rustc_lexer" | ||
1343 | version = "0.1.0" | ||
1344 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1345 | checksum = "c86aae0c77166108c01305ee1a36a1e77289d7dc6ca0a3cd91ff4992de2d16a5" | ||
1346 | dependencies = [ | ||
1347 | "unicode-xid", | ||
1348 | ] | ||
1349 | |||
1350 | [[package]] | ||
1351 | name = "ryu" | 1351 | name = "ryu" |
1352 | version = "1.0.3" | 1352 | version = "1.0.3" |
1353 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1353 | 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" |