diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-02 20:34:24 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-02 20:34:24 +0000 |
commit | 3b507aa90fca9618ddbe0667e245ef4766aa96b5 (patch) | |
tree | 157bd3a6b18efcae8153bd86f0913f9d910cc896 | |
parent | 0f8ee46edce94cbd3d915653359c230967168260 (diff) | |
parent | 41d1b4cd263ce48ca8f12f6fa7907262df98ea47 (diff) |
Merge #7853
7853: Update lexer r=kjeremy a=kjeremy
Co-authored-by: kjeremy <[email protected]>
-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 37a330523..799127891 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1370,9 +1370,9 @@ dependencies = [ | |||
1370 | 1370 | ||
1371 | [[package]] | 1371 | [[package]] |
1372 | name = "rustc-ap-rustc_lexer" | 1372 | name = "rustc-ap-rustc_lexer" |
1373 | version = "708.0.0" | 1373 | version = "709.0.0" |
1374 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1374 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1375 | checksum = "2706fc7106c75eaea49efe9f35f719a6fdfdb95212122ec2b543659406bae7ea" | 1375 | checksum = "f69f83314702aaccf29c7401cc63bb0d9fa7869a185a23b8379f08c91514b3f3" |
1376 | dependencies = [ | 1376 | dependencies = [ |
1377 | "unicode-xid", | 1377 | "unicode-xid", |
1378 | ] | 1378 | ] |
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index d836c5d1a..9ee3a8586 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.2" | 15 | rowan = "0.12.2" |
16 | rustc_lexer = { version = "708.0.0", package = "rustc-ap-rustc_lexer" } | 16 | rustc_lexer = { version = "709.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" |