diff options
author | kjeremy <[email protected]> | 2020-05-26 19:35:09 +0100 |
---|---|---|
committer | kjeremy <[email protected]> | 2020-05-26 19:35:09 +0100 |
commit | 9a0353a81e9288bfa9f16393391bf4e160851c36 (patch) | |
tree | 1236db0b37a83f2fb60b758518e44fa74a79d20c | |
parent | 154e37684298d8775e7733b20d47eddaa04d883d (diff) |
Update lexer
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index b3748b724..6f3d1f564 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1401,9 +1401,9 @@ dependencies = [ | |||
1401 | 1401 | ||
1402 | [[package]] | 1402 | [[package]] |
1403 | name = "rustc-ap-rustc_lexer" | 1403 | name = "rustc-ap-rustc_lexer" |
1404 | version = "660.0.0" | 1404 | version = "661.0.0" |
1405 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1406 | checksum = "30760dbcc7667c9e0da561e980e24867ca7f4526ce060a3d7e6d9dcfeaae88d1" | 1406 | checksum = "a6d88abd7c634b52557e46fc7ba47644f0cbe45c358c33f51c532d60d1da239e" |
1407 | dependencies = [ | 1407 | dependencies = [ |
1408 | "unicode-xid", | 1408 | "unicode-xid", |
1409 | ] | 1409 | ] |
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index a9a5cc7bc..a8ff2e74f 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.10.0" | 15 | rowan = "0.10.0" |
16 | rustc_lexer = { version = "660.0.0", package = "rustc-ap-rustc_lexer" } | 16 | rustc_lexer = { version = "661.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" |