aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-08-27 18:06:33 +0100
committerGitHub <[email protected]>2020-08-27 18:06:33 +0100
commitc9c0050fff45ebee56e5be8ae0add849fddfc85a (patch)
treeb898e6f9cf8c89d9f48afaa051fe2735f867240c
parentdddc4c6370ab8e7684352302a5ff282673c6e8ec (diff)
parent07da02fc370b08f5818919045b9ab24ef1cae5cf (diff)
Merge #5900
5900: :arrow_up: crates r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r--Cargo.lock57
-rw-r--r--crates/syntax/src/ast/generated/nodes.rs2
-rw-r--r--xtask/tests/tidy.rs2
3 files changed, 29 insertions, 32 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f1a17fa90..f406a5ef9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -287,17 +287,6 @@ dependencies = [
287] 287]
288 288
289[[package]] 289[[package]]
290name = "crossbeam-queue"
291version = "0.2.3"
292source = "registry+https://github.com/rust-lang/crates.io-index"
293checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
294dependencies = [
295 "cfg-if",
296 "crossbeam-utils",
297 "maybe-uninit",
298]
299
300[[package]]
301name = "crossbeam-utils" 290name = "crossbeam-utils"
302version = "0.7.2" 291version = "0.7.2"
303source = "registry+https://github.com/rust-lang/crates.io-index" 292source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -734,10 +723,11 @@ checksum = "755456fae044e6fa1ebbbd1b3e902ae19e73097ed4ed87bb79934a867c007bc3"
734 723
735[[package]] 724[[package]]
736name = "libloading" 725name = "libloading"
737version = "0.6.2" 726version = "0.6.3"
738source = "registry+https://github.com/rust-lang/crates.io-index" 727source = "registry+https://github.com/rust-lang/crates.io-index"
739checksum = "2cadb8e769f070c45df05c78c7520eb4cd17061d4ab262e43cfc68b4d00ac71c" 728checksum = "2443d8f0478b16759158b2f66d525991a05491138bc05814ef52a250148ef4f9"
740dependencies = [ 729dependencies = [
730 "cfg-if",
741 "winapi 0.3.9", 731 "winapi 0.3.9",
742] 732]
743 733
@@ -864,9 +854,9 @@ dependencies = [
864 854
865[[package]] 855[[package]]
866name = "miniz_oxide" 856name = "miniz_oxide"
867version = "0.4.0" 857version = "0.4.1"
868source = "registry+https://github.com/rust-lang/crates.io-index" 858source = "registry+https://github.com/rust-lang/crates.io-index"
869checksum = "be0f75932c1f6cfae3c04000e40114adf955636e19040f9c0a2c380702aa1c7f" 859checksum = "4d7559a8a40d0f97e1edea3220f698f78b1c5ab67532e49f68fde3910323b722"
870dependencies = [ 860dependencies = [
871 "adler", 861 "adler",
872] 862]
@@ -1047,9 +1037,9 @@ dependencies = [
1047 1037
1048[[package]] 1038[[package]]
1049name = "perf-event-open-sys" 1039name = "perf-event-open-sys"
1050version = "1.0.0" 1040version = "1.0.1"
1051source = "registry+https://github.com/rust-lang/crates.io-index" 1041source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "66f37842e29d92d05872a3c0271ba6717842695ecb896cb2e147a825c804b207" 1042checksum = "ce9bedf5da2c234fdf2391ede2b90fabf585355f33100689bc364a3ea558561a"
1053dependencies = [ 1043dependencies = [
1054 "libc", 1044 "libc",
1055] 1045]
@@ -1181,9 +1171,9 @@ dependencies = [
1181 1171
1182[[package]] 1172[[package]]
1183name = "rayon" 1173name = "rayon"
1184version = "1.3.1" 1174version = "1.4.0"
1185source = "registry+https://github.com/rust-lang/crates.io-index" 1175source = "registry+https://github.com/rust-lang/crates.io-index"
1186checksum = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080" 1176checksum = "cfd016f0c045ad38b5251be2c9c0ab806917f82da4d36b2a327e5166adad9270"
1187dependencies = [ 1177dependencies = [
1188 "autocfg", 1178 "autocfg",
1189 "crossbeam-deque", 1179 "crossbeam-deque",
@@ -1193,12 +1183,12 @@ dependencies = [
1193 1183
1194[[package]] 1184[[package]]
1195name = "rayon-core" 1185name = "rayon-core"
1196version = "1.7.1" 1186version = "1.8.0"
1197source = "registry+https://github.com/rust-lang/crates.io-index" 1187source = "registry+https://github.com/rust-lang/crates.io-index"
1198checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280" 1188checksum = "91739a34c4355b5434ce54c9086c5895604a9c278586d1f1aa95e04f66b525a0"
1199dependencies = [ 1189dependencies = [
1190 "crossbeam-channel",
1200 "crossbeam-deque", 1191 "crossbeam-deque",
1201 "crossbeam-queue",
1202 "crossbeam-utils", 1192 "crossbeam-utils",
1203 "lazy_static", 1193 "lazy_static",
1204 "num_cpus", 1194 "num_cpus",
@@ -1499,9 +1489,9 @@ version = "0.0.0"
1499 1489
1500[[package]] 1490[[package]]
1501name = "syn" 1491name = "syn"
1502version = "1.0.38" 1492version = "1.0.39"
1503source = "registry+https://github.com/rust-lang/crates.io-index" 1493source = "registry+https://github.com/rust-lang/crates.io-index"
1504checksum = "e69abc24912995b3038597a7a593be5053eb0fb44f3cc5beec0deb421790c1f4" 1494checksum = "891d8d6567fe7c7f8835a3a98af4208f3846fba258c1bc3c31d6e506239f11f9"
1505dependencies = [ 1495dependencies = [
1506 "proc-macro2", 1496 "proc-macro2",
1507 "quote", 1497 "quote",
@@ -1600,11 +1590,12 @@ dependencies = [
1600 1590
1601[[package]] 1591[[package]]
1602name = "time" 1592name = "time"
1603version = "0.1.43" 1593version = "0.1.44"
1604source = "registry+https://github.com/rust-lang/crates.io-index" 1594source = "registry+https://github.com/rust-lang/crates.io-index"
1605checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" 1595checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1606dependencies = [ 1596dependencies = [
1607 "libc", 1597 "libc",
1598 "wasi",
1608 "winapi 0.3.9", 1599 "winapi 0.3.9",
1609] 1600]
1610 1601
@@ -1645,9 +1636,9 @@ dependencies = [
1645 1636
1646[[package]] 1637[[package]]
1647name = "tracing-core" 1638name = "tracing-core"
1648version = "0.1.14" 1639version = "0.1.15"
1649source = "registry+https://github.com/rust-lang/crates.io-index" 1640source = "registry+https://github.com/rust-lang/crates.io-index"
1650checksum = "db63662723c316b43ca36d833707cc93dff82a02ba3d7e354f342682cc8b3545" 1641checksum = "4f0e00789804e99b20f12bc7003ca416309d28a6f495d6af58d1e2c2842461b5"
1651dependencies = [ 1642dependencies = [
1652 "lazy_static", 1643 "lazy_static",
1653] 1644]
@@ -1718,9 +1709,9 @@ dependencies = [
1718 1709
1719[[package]] 1710[[package]]
1720name = "ungrammar" 1711name = "ungrammar"
1721version = "1.1.3" 1712version = "1.1.4"
1722source = "registry+https://github.com/rust-lang/crates.io-index" 1713source = "registry+https://github.com/rust-lang/crates.io-index"
1723checksum = "ca4d39065b45f658d33013f7cc93ee050708cd543f6e07dd15b4293fcf217e12" 1714checksum = "df0cd89993af555540e2436fc6adb8479b0dbe386339a136397952e9c89e17a9"
1724 1715
1725[[package]] 1716[[package]]
1726name = "unicase" 1717name = "unicase"
@@ -1814,6 +1805,12 @@ dependencies = [
1814] 1805]
1815 1806
1816[[package]] 1807[[package]]
1808name = "wasi"
1809version = "0.10.0+wasi-snapshot-preview1"
1810source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
1812
1813[[package]]
1817name = "winapi" 1814name = "winapi"
1818version = "0.2.8" 1815version = "0.2.8"
1819source = "registry+https://github.com/rust-lang/crates.io-index" 1816source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/crates/syntax/src/ast/generated/nodes.rs b/crates/syntax/src/ast/generated/nodes.rs
index d6af5755c..30d11b146 100644
--- a/crates/syntax/src/ast/generated/nodes.rs
+++ b/crates/syntax/src/ast/generated/nodes.rs
@@ -246,8 +246,8 @@ impl ast::VisibilityOwner for Fn {}
246impl ast::GenericParamsOwner for Fn {} 246impl ast::GenericParamsOwner for Fn {}
247impl Fn { 247impl Fn {
248 pub fn default_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![default]) } 248 pub fn default_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![default]) }
249 pub fn async_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![async]) }
250 pub fn const_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![const]) } 249 pub fn const_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![const]) }
250 pub fn async_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![async]) }
251 pub fn unsafe_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![unsafe]) } 251 pub fn unsafe_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![unsafe]) }
252 pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } 252 pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) }
253 pub fn fn_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![fn]) } 253 pub fn fn_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![fn]) }
diff --git a/xtask/tests/tidy.rs b/xtask/tests/tidy.rs
index 3b1408222..fd9645c23 100644
--- a/xtask/tests/tidy.rs
+++ b/xtask/tests/tidy.rs
@@ -71,6 +71,7 @@ fn check_licenses() {
71Apache-2.0 71Apache-2.0
72Apache-2.0 OR BSL-1.0 72Apache-2.0 OR BSL-1.0
73Apache-2.0 OR MIT 73Apache-2.0 OR MIT
74Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
74Apache-2.0/MIT 75Apache-2.0/MIT
75BSD-2-Clause 76BSD-2-Clause
76BSD-3-Clause 77BSD-3-Clause
@@ -80,7 +81,6 @@ MIT
80MIT / Apache-2.0 81MIT / Apache-2.0
81MIT OR Apache-2.0 82MIT OR Apache-2.0
82MIT/Apache-2.0 83MIT/Apache-2.0
83MIT/Apache-2.0 AND BSD-2-Clause
84Unlicense OR MIT 84Unlicense OR MIT
85Unlicense/MIT 85Unlicense/MIT
86Zlib OR Apache-2.0 OR MIT 86Zlib OR Apache-2.0 OR MIT