diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-10 18:59:19 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-10 18:59:19 +0000 |
commit | 6c32e2d8a045e4ba7d45ac9651572a226324cefa (patch) | |
tree | fbac29d3d6db5aa0ddc83b3163d3645fb986f10e | |
parent | 0b96f1a0475b0f9a9eb8cfddf129f7565d4bc2b8 (diff) | |
parent | 08e0e9976d3b89e81d55ac6c145e020d263c9670 (diff) |
Merge #7965
7965: cargo update and lexer r=kjeremy a=kjeremy
Co-authored-by: kjeremy <[email protected]>
-rw-r--r-- | Cargo.lock | 16 | ||||
-rw-r--r-- | crates/syntax/Cargo.toml | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8059a8809..8c28929ed 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -107,9 +107,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | |||
107 | 107 | ||
108 | [[package]] | 108 | [[package]] |
109 | name = "byteorder" | 109 | name = "byteorder" |
110 | version = "1.4.2" | 110 | version = "1.4.3" |
111 | source = "registry+https://github.com/rust-lang/crates.io-index" | 111 | source = "registry+https://github.com/rust-lang/crates.io-index" |
112 | checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b" | 112 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" |
113 | 113 | ||
114 | [[package]] | 114 | [[package]] |
115 | name = "camino" | 115 | name = "camino" |
@@ -1389,9 +1389,9 @@ dependencies = [ | |||
1389 | 1389 | ||
1390 | [[package]] | 1390 | [[package]] |
1391 | name = "rustc-ap-rustc_lexer" | 1391 | name = "rustc-ap-rustc_lexer" |
1392 | version = "709.0.0" | 1392 | version = "710.0.0" |
1393 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1393 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1394 | checksum = "f69f83314702aaccf29c7401cc63bb0d9fa7869a185a23b8379f08c91514b3f3" | 1394 | checksum = "b0bba1ca6787b6d4af505b7a940eae9ecb084dd03e07f03bf3ddbf78e738b617" |
1395 | dependencies = [ | 1395 | dependencies = [ |
1396 | "unicode-xid", | 1396 | "unicode-xid", |
1397 | ] | 1397 | ] |
@@ -1586,9 +1586,9 @@ dependencies = [ | |||
1586 | 1586 | ||
1587 | [[package]] | 1587 | [[package]] |
1588 | name = "syn" | 1588 | name = "syn" |
1589 | version = "1.0.62" | 1589 | version = "1.0.63" |
1590 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1590 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1591 | checksum = "123a78a3596b24fee53a6464ce52d8ecbf62241e6294c7e7fe12086cd161f512" | 1591 | checksum = "8fd9bc7ccc2688b3344c2f48b9b546648b25ce0b20fc717ee7fa7981a8ca9717" |
1592 | dependencies = [ | 1592 | dependencies = [ |
1593 | "proc-macro2", | 1593 | "proc-macro2", |
1594 | "quote", | 1594 | "quote", |
@@ -1781,9 +1781,9 @@ dependencies = [ | |||
1781 | 1781 | ||
1782 | [[package]] | 1782 | [[package]] |
1783 | name = "tracing-tree" | 1783 | name = "tracing-tree" |
1784 | version = "0.1.8" | 1784 | version = "0.1.9" |
1785 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1785 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1786 | checksum = "1a60657cfbf397c603257a8230b3f427e6a2a4e5911a59331b9bb4dffff5b608" | 1786 | checksum = "1712b40907f8d9bc2bc66763ab61dec914b7123d7149e59feb0d4e2a95fc4967" |
1787 | dependencies = [ | 1787 | dependencies = [ |
1788 | "ansi_term", | 1788 | "ansi_term", |
1789 | "atty", | 1789 | "atty", |
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index 33bde099b..05fca5dc4 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml | |||
@@ -14,7 +14,7 @@ doctest = false | |||
14 | cov-mark = "1.1" | 14 | cov-mark = "1.1" |
15 | itertools = "0.10.0" | 15 | itertools = "0.10.0" |
16 | rowan = "0.12.2" | 16 | rowan = "0.12.2" |
17 | rustc_lexer = { version = "709.0.0", package = "rustc-ap-rustc_lexer" } | 17 | rustc_lexer = { version = "710.0.0", package = "rustc-ap-rustc_lexer" } |
18 | rustc-hash = "1.1.0" | 18 | rustc-hash = "1.1.0" |
19 | arrayvec = "0.5.1" | 19 | arrayvec = "0.5.1" |
20 | once_cell = "1.3.1" | 20 | once_cell = "1.3.1" |