diff options
author | kjeremy <[email protected]> | 2021-01-21 14:31:06 +0000 |
---|---|---|
committer | kjeremy <[email protected]> | 2021-01-21 14:31:06 +0000 |
commit | f006517857cc5700335dbddfd851770d79ccf7d4 (patch) | |
tree | 0aad6bdc735687b9e6b3d53499d09e29de958425 | |
parent | 0045d7c6db0d9e1e5f88702249c90c096f1882d8 (diff) |
Up lexer
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | crates/syntax/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 6e25d4f86..71223218d 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1438,9 +1438,9 @@ dependencies = [ | |||
1438 | 1438 | ||
1439 | [[package]] | 1439 | [[package]] |
1440 | name = "rustc-ap-rustc_lexer" | 1440 | name = "rustc-ap-rustc_lexer" |
1441 | version = "697.0.0" | 1441 | version = "700.0.0" |
1442 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1442 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1443 | checksum = "67adbe260a0a11910624d6d28c0304fcf7b063e666682111005c83b09f73429d" | 1443 | checksum = "5ed36784376b69c941d7aa36e960a52ac712e2663960357121a4d9f2cc58e225" |
1444 | dependencies = [ | 1444 | dependencies = [ |
1445 | "unicode-xid", | 1445 | "unicode-xid", |
1446 | ] | 1446 | ] |
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index 55b437a3a..24298fbfa 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml | |||
@@ -13,7 +13,7 @@ doctest = false | |||
13 | [dependencies] | 13 | [dependencies] |
14 | itertools = "0.10.0" | 14 | itertools = "0.10.0" |
15 | rowan = "0.12" | 15 | rowan = "0.12" |
16 | rustc_lexer = { version = "697.0.0", package = "rustc-ap-rustc_lexer" } | 16 | rustc_lexer = { version = "700.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" |