diff --git a/Cargo.lock b/Cargo.lock index 6a7498bbe..035ccfdec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ - "getrandom 0.2.3", + "getrandom 0.2.4", "once_cell", "version_check", ] @@ -114,7 +114,7 @@ dependencies = [ "inflections", "intl-memoizer", "num-format", - "phf 0.10.0", + "phf 0.10.1", "serde", "serde_json", "unic-langid", @@ -137,9 +137,9 @@ version = "0.0.0" [[package]] name = "anyhow" -version = "1.0.51" +version = "1.0.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203" +checksum = "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3" [[package]] name = "arc-swap" @@ -170,9 +170,9 @@ checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" [[package]] name = "async-trait" -version = "0.1.51" +version = "0.1.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e" +checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3" dependencies = [ "proc-macro2", "quote", @@ -210,9 +210,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "blake3" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "526c210b4520e416420759af363083471656e819a75e831b8d2c9d5a584f2413" +checksum = "882e99e4a0cb2ae6cb6e442102e8e6b7131718d94110e64c3e6a34ea9b106f37" dependencies = [ "arrayref", "arrayvec 0.7.2", @@ -222,6 +222,15 @@ dependencies = [ "digest", ] +[[package]] +name = "block-buffer" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1d36a02058e76b040de25a4464ba1c80935655595b661505c8b39b664828b95" +dependencies = [ + "generic-array", +] + [[package]] name = "bstr" version = "0.2.17" @@ -236,9 +245,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.8.0" +version = "3.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c" +checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" [[package]] name = "byteorder" @@ -405,9 +414,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" +checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa" dependencies = [ "cfg-if", "crossbeam-utils", @@ -426,9 +435,9 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.5" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" +checksum = "97242a70df9b89a65d0b6df3c4bf5b9ce03c5b7309019777fbde37e7537f8762" dependencies = [ "cfg-if", "crossbeam-utils", @@ -439,14 +448,23 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" +checksum = "cfcae03edb34f947e64acdb1c33ec169824e20657e9ecb61cef6c8c74dcb8120" dependencies = [ "cfg-if", "lazy_static", ] +[[package]] +name = "crypto-common" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d6b536309245c849479fba3da410962a43ed8e51c26b729208ec0ac2798d0" +dependencies = [ + "generic-array", +] + [[package]] name = "cssparser" version = "0.27.2" @@ -455,7 +473,7 @@ checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" dependencies = [ "cssparser-macros", "dtoa-short", - "itoa", + "itoa 0.4.8", "matches", "phf 0.8.0", "proc-macro2", @@ -482,7 +500,7 @@ checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" dependencies = [ "bstr", "csv-core", - "itoa", + "itoa 0.4.8", "ryu", "serde", ] @@ -496,17 +514,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "derivative" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "derive_more" version = "0.99.17" @@ -522,11 +529,14 @@ dependencies = [ [[package]] name = "digest" -version = "0.9.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +checksum = "b697d66081d42af4fba142d56918a3cb21dc8eb63372c6b85d14f44fb9c5979b" dependencies = [ + "block-buffer", + "crypto-common", "generic-array", + "subtle", ] [[package]] @@ -579,9 +589,9 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "encoding_rs" -version = "0.8.29" +version = "0.8.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746" +checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df" dependencies = [ "cfg-if", ] @@ -612,10 +622,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] -name = "fixedbitset" -version = "0.4.0" +name = "fastrand" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "398ea4fabe40b9b0d885340a2a991a44c8a645624075ad966d21f88688e2b69e" +checksum = "779d043b6a0b90cc4c0ed7ee380a6504394cee7efd7db050e3774eee387324b2" +dependencies = [ + "instant", +] + +[[package]] +name = "fixedbitset" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e" [[package]] name = "flate2" @@ -716,9 +735,9 @@ dependencies = [ [[package]] name = "futures" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cd0210d8c325c245ff06fd95a3b13689a1a276ac8cfa8e8720cb840bfb84b9e" +checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4" dependencies = [ "futures-channel", "futures-core", @@ -731,9 +750,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fc8cd39e3dbf865f7340dce6a2d401d24fd37c6fe6c4f0ee0de8bfca2252d27" +checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b" dependencies = [ "futures-core", "futures-sink", @@ -741,15 +760,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "629316e42fe7c2a0b9a65b47d159ceaa5453ab14e8f0a3c5eedbb8cd55b4a445" +checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7" [[package]] name = "futures-executor" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b808bf53348a36cab739d7e04755909b9fcaaa69b7d7e588b37b6ec62704c97" +checksum = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a" dependencies = [ "futures-core", "futures-task", @@ -758,15 +777,15 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e481354db6b5c353246ccf6a728b0c5511d752c08da7260546fc0933869daa11" +checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2" [[package]] name = "futures-macro" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a89f17b21645bc4ed773c69af9c9a0effd4a3f1a3876eadd453469f8854e7fdd" +checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c" dependencies = [ "proc-macro2", "quote", @@ -775,21 +794,21 @@ dependencies = [ [[package]] name = "futures-sink" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "996c6442437b62d21a32cd9906f9c41e7dc1e19a9579843fad948696769305af" +checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508" [[package]] name = "futures-task" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dabf1872aaab32c886832f2276d2f5399887e2bd613698a02359e4ea83f8de12" +checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72" [[package]] name = "futures-util" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d22213122356472061ac0f1ab2cee28d2bac8491410fd68c2af53d1cedb83e" +checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164" dependencies = [ "futures-channel", "futures-core", @@ -814,9 +833,9 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.14.4" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" +checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" dependencies = [ "typenum", "version_check", @@ -844,9 +863,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" +checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c" dependencies = [ "cfg-if", "libc", @@ -855,9 +874,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.7" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55" +checksum = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689" dependencies = [ "bytes", "fnv", @@ -942,13 +961,13 @@ checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" [[package]] name = "http" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b" +checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03" dependencies = [ "bytes", "fnv", - "itoa", + "itoa 1.0.1", ] [[package]] @@ -982,9 +1001,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.15" +version = "0.14.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436ec0091e4f20e655156a30a0df3770fe2900aa301e548e08446ec794b6953c" +checksum = "b7ec3e62bdc98a2f0393a5048e4c30ef659440ea6e0e572965103e72bd836f55" dependencies = [ "bytes", "futures-channel", @@ -995,7 +1014,7 @@ dependencies = [ "http-body", "httparse", "httpdate", - "itoa", + "itoa 0.4.8", "pin-project-lite", "socket2", "tokio", @@ -1056,9 +1075,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" +checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" dependencies = [ "autocfg", "hashbrown", @@ -1130,9 +1149,9 @@ checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9" [[package]] name = "itertools" -version = "0.10.1" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf" +checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" dependencies = [ "either", ] @@ -1143,6 +1162,12 @@ version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" +[[package]] +name = "itoa" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" + [[package]] name = "js-sys" version = "0.3.55" @@ -1172,15 +1197,15 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.108" +version = "0.2.112" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119" +checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" [[package]] name = "libsqlite3-sys" -version = "0.23.1" +version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abd5850c449b40bacb498b2bbdfaff648b1b055630073ba8db499caf2d0ea9f2" +checksum = "d2cafc7c74096c336d9d27145f7ebd4f4b6f95ba16aa5a282387267e6925cb58" dependencies = [ "cc", "pkg-config", @@ -1425,7 +1450,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bafe4179722c2894288ee77a9f044f02811c86af699344c498b0840c698a2465" dependencies = [ "arrayvec 0.4.12", - "itoa", + "itoa 0.4.8", ] [[package]] @@ -1449,9 +1474,9 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.13.0" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" dependencies = [ "hermit-abi", "libc", @@ -1459,19 +1484,18 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.5.4" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9bd055fb730c4f8f4f57d45d35cd6b3f0980535b056dc7ff119cee6a66ed6f" +checksum = "720d3ea1055e4e4574c0c0b0f8c3fd4f24c4cdaf465948206dea090b57b526ad" dependencies = [ - "derivative", "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.5.4" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "486ea01961c4a818096de679a8b740b26d9033146ac5291b1c98557658f8cdd9" +checksum = "0d992b768490d7fe0d8586d9b5745f6c49f557da6d81dc982b1d167ad4edbb21" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -1481,9 +1505,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" +checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5" [[package]] name = "oorandom" @@ -1507,15 +1531,15 @@ dependencies = [ [[package]] name = "openssl-probe" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.71" +version = "0.9.72" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7df13d165e607909b363a4757a6f133f8a818a74e9d3a98d09c6128e15fa4c73" +checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb" dependencies = [ "autocfg", "cc", @@ -1605,9 +1629,9 @@ dependencies = [ [[package]] name = "phf" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9fc3db1018c4b59d7d582a739436478b6035138b6aecbce989fc91c3e98409f" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" dependencies = [ "phf_macros 0.10.0", "phf_shared 0.10.0", @@ -1692,18 +1716,18 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.0.8" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08" +checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.8" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389" +checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" dependencies = [ "proc-macro2", "quote", @@ -1712,9 +1736,9 @@ dependencies = [ [[package]] name = "pin-project-lite" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" +checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c" [[package]] name = "pin-utils" @@ -1724,9 +1748,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pkg-config" -version = "0.3.22" +version = "0.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f" +checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe" [[package]] name = "plotters" @@ -1758,9 +1782,9 @@ dependencies = [ [[package]] name = "ppv-lite86" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba" +checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" [[package]] name = "precomputed-hash" @@ -1792,9 +1816,9 @@ checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" [[package]] name = "proc-macro2" -version = "1.0.32" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43" +checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" dependencies = [ "unicode-xid", ] @@ -1914,9 +1938,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.10" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" +checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d" dependencies = [ "proc-macro2", ] @@ -1982,7 +2006,7 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" dependencies = [ - "getrandom 0.2.3", + "getrandom 0.2.4", ] [[package]] @@ -2052,7 +2076,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" dependencies = [ - "getrandom 0.2.3", + "getrandom 0.2.4", "redox_syscall", ] @@ -2155,9 +2179,9 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.26.1" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a82b0b91fad72160c56bf8da7a549b25d7c31109f52cc1437eac4c0ad2550a7" +checksum = "4ba4d3462c8b2e4d7f4fcfcf2b296dc6b65404fbbc7b63daa37fd485c149daf7" dependencies = [ "bitflags", "fallible-iterator", @@ -2210,15 +2234,15 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088" +checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" [[package]] name = "ryu" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c9613b5a66ab9ba26415184cfc41156594925a9cf3a2057e57f31ff145f6568" +checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" [[package]] name = "same-file" @@ -2312,9 +2336,9 @@ checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012" [[package]] name = "serde" -version = "1.0.130" +version = "1.0.133" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" +checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a" dependencies = [ "serde_derive", ] @@ -2342,9 +2366,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.130" +version = "1.0.133" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b" +checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537" dependencies = [ "proc-macro2", "quote", @@ -2353,11 +2377,11 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.72" +version = "1.0.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0ffa0837f2dfa6fb90868c2b5468cad482e175f7dad97e7421951e663f2b527" +checksum = "ee2bb9cd061c5865d345bb02ca49fcef1391741b672b54a0bf7b679badec3142" dependencies = [ - "itoa", + "itoa 1.0.1", "ryu", "serde", ] @@ -2401,7 +2425,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" dependencies = [ "form_urlencoded", - "itoa", + "itoa 0.4.8", "ryu", "serde", ] @@ -2513,9 +2537,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309" +checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" [[package]] name = "socket2" @@ -2588,10 +2612,16 @@ dependencies = [ ] [[package]] -name = "syn" -version = "1.0.82" +name = "subtle" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59" +checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" + +[[package]] +name = "syn" +version = "1.0.85" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a684ac3dcd8913827e18cd09a68384ee66c1de24157e3c556c9ab16d85695fb7" dependencies = [ "proc-macro2", "quote", @@ -2606,13 +2636,13 @@ checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" [[package]] name = "tempfile" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" dependencies = [ "cfg-if", + "fastrand", "libc", - "rand 0.8.4", "redox_syscall", "remove_dir_all", "winapi", @@ -2737,11 +2767,10 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.14.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70e992e41e0d2fb9f755b37446f20900f64446ef54874f40a60c78f021ac6144" +checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838" dependencies = [ - "autocfg", "bytes", "libc", "memchr", @@ -2766,9 +2795,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9efc1aba077437943f7515666aa2b882dfabfbfdf89c819ea75a8d6e9eaba5e" +checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7" dependencies = [ "proc-macro2", "quote", @@ -2874,9 +2903,9 @@ dependencies = [ [[package]] name = "typenum" -version = "1.14.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec" +checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "unic-char-property" @@ -3060,9 +3089,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "walkdir" diff --git a/cargo/BUILD.bazel b/cargo/BUILD.bazel index 169be2bbf..82d31b3f0 100644 --- a/cargo/BUILD.bazel +++ b/cargo/BUILD.bazel @@ -23,7 +23,7 @@ alias( alias( name = "async_trait", - actual = "@raze__async_trait__0_1_51//:async_trait", + actual = "@raze__async_trait__0_1_52//:async_trait", tags = [ "cargo-raze", "manual", @@ -32,7 +32,7 @@ alias( alias( name = "blake3", - actual = "@raze__blake3__1_2_0//:blake3", + actual = "@raze__blake3__1_3_0//:blake3", tags = [ "cargo-raze", "manual", @@ -122,7 +122,7 @@ alias( alias( name = "futures", - actual = "@raze__futures__0_3_18//:futures", + actual = "@raze__futures__0_3_19//:futures", tags = [ "cargo-raze", "manual", @@ -167,7 +167,7 @@ alias( alias( name = "itertools", - actual = "@raze__itertools__0_10_1//:itertools", + actual = "@raze__itertools__0_10_3//:itertools", tags = [ "cargo-raze", "manual", @@ -203,7 +203,7 @@ alias( alias( name = "num_enum", - actual = "@raze__num_enum__0_5_4//:num_enum", + actual = "@raze__num_enum__0_5_6//:num_enum", tags = [ "cargo-raze", "manual", @@ -230,7 +230,7 @@ alias( alias( name = "once_cell", - actual = "@raze__once_cell__1_8_0//:once_cell", + actual = "@raze__once_cell__1_9_0//:once_cell", tags = [ "cargo-raze", "manual", @@ -248,7 +248,7 @@ alias( alias( name = "phf", - actual = "@raze__phf__0_10_0//:phf", + actual = "@raze__phf__0_10_1//:phf", tags = [ "cargo-raze", "manual", @@ -257,7 +257,7 @@ alias( alias( name = "pin_project", - actual = "@raze__pin_project__1_0_8//:pin_project", + actual = "@raze__pin_project__1_0_10//:pin_project", tags = [ "cargo-raze", "manual", @@ -338,7 +338,7 @@ alias( alias( name = "rusqlite", - actual = "@raze__rusqlite__0_26_1//:rusqlite", + actual = "@raze__rusqlite__0_26_3//:rusqlite", tags = [ "cargo-raze", "manual", @@ -356,7 +356,7 @@ alias( alias( name = "serde", - actual = "@raze__serde__1_0_130//:serde", + actual = "@raze__serde__1_0_133//:serde", tags = [ "cargo-raze", "manual", @@ -374,7 +374,7 @@ alias( alias( name = "serde_derive", - actual = "@raze__serde_derive__1_0_130//:serde_derive", + actual = "@raze__serde_derive__1_0_133//:serde_derive", tags = [ "cargo-raze", "manual", @@ -383,7 +383,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_72//:serde_json", + actual = "@raze__serde_json__1_0_74//:serde_json", tags = [ "cargo-raze", "manual", @@ -464,7 +464,7 @@ alias( alias( name = "tempfile", - actual = "@raze__tempfile__3_2_0//:tempfile", + actual = "@raze__tempfile__3_3_0//:tempfile", tags = [ "cargo-raze", "manual", @@ -473,7 +473,7 @@ alias( alias( name = "tokio", - actual = "@raze__tokio__1_14_0//:tokio", + actual = "@raze__tokio__1_15_0//:tokio", tags = [ "cargo-raze", "manual", diff --git a/cargo/BUILD.reqwest.native.bazel b/cargo/BUILD.reqwest.native.bazel index 93f74e702..696b2881c 100644 --- a/cargo/BUILD.reqwest.native.bazel +++ b/cargo/BUILD.reqwest.native.bazel @@ -77,11 +77,11 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__http__0_2_5//:http", + "@raze__http__0_2_6//:http", "@raze__hyper_timeout__0_4_1//:hyper_timeout", "@raze__mime_guess__2_0_3//:mime_guess", - "@raze__serde__1_0_130//:serde", - "@raze__serde_json__1_0_72//:serde_json", + "@raze__serde__1_0_133//:serde", + "@raze__serde_json__1_0_74//:serde_json", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded", "@raze__url__2_2_2//:url", ] + selects.with_or({ @@ -96,11 +96,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ "@raze__base64__0_13_0//:base64", - "@raze__encoding_rs__0_8_29//:encoding_rs", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_util__0_3_18//:futures_util", + "@raze__encoding_rs__0_8_30//:encoding_rs", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_util__0_3_19//:futures_util", "@raze__http_body__0_4_4//:http_body", - "@raze__hyper__0_14_15//:hyper", + "@raze__hyper__0_14_16//:hyper", "@raze__hyper_tls__0_5_0//:hyper_tls", "@raze__ipnet__2_3_1//:ipnet", "@raze__lazy_static__1_4_0//:lazy_static", @@ -108,8 +108,8 @@ rust_library( "@raze__mime__0_3_16//:mime", "@raze__native_tls__0_2_8//:native_tls", "@raze__percent_encoding__2_1_0//:percent_encoding", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", - "@raze__tokio__1_14_0//:tokio", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_native_tls__0_3_0//:tokio_native_tls", "@raze__tokio_socks__0_5_1//:tokio_socks", ], diff --git a/cargo/BUILD.reqwest.rustls.bazel b/cargo/BUILD.reqwest.rustls.bazel index 9f1da5c7b..741099606 100644 --- a/cargo/BUILD.reqwest.rustls.bazel +++ b/cargo/BUILD.reqwest.rustls.bazel @@ -80,11 +80,11 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__http__0_2_5//:http", + "@raze__http__0_2_6//:http", "@raze__hyper_timeout__0_4_1//:hyper_timeout", "@raze__mime_guess__2_0_3//:mime_guess", - "@raze__serde__1_0_130//:serde", - "@raze__serde_json__1_0_72//:serde_json", + "@raze__serde__1_0_133//:serde", + "@raze__serde_json__1_0_74//:serde_json", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded", "@raze__url__2_2_2//:url", ] + selects.with_or({ @@ -98,21 +98,21 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ "@raze__base64__0_13_0//:base64", - "@raze__encoding_rs__0_8_29//:encoding_rs", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_util__0_3_18//:futures_util", + "@raze__encoding_rs__0_8_30//:encoding_rs", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_util__0_3_19//:futures_util", "@raze__http_body__0_4_4//:http_body", - "@raze__hyper__0_14_15//:hyper", + "@raze__hyper__0_14_16//:hyper", "@raze__hyper_rustls__0_22_1//:hyper_rustls", "@raze__ipnet__2_3_1//:ipnet", "@raze__lazy_static__1_4_0//:lazy_static", "@raze__log__0_4_14//:log", "@raze__mime__0_3_16//:mime", "@raze__percent_encoding__2_1_0//:percent_encoding", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", "@raze__rustls__0_19_1//:rustls", "@raze__rustls_native_certs__0_5_0//:rustls_native_certs", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_rustls__0_22_0//:tokio_rustls", "@raze__tokio_socks__0_5_1//:tokio_socks", "@raze__webpki_roots__0_21_1//:webpki_roots", diff --git a/cargo/BUILD.term-0.7.0.bazel b/cargo/BUILD.term-0.7.0.bazel index 33ea1a39f..579fa06ef 100644 --- a/cargo/BUILD.term-0.7.0.bazel +++ b/cargo/BUILD.term-0.7.0.bazel @@ -13,6 +13,7 @@ load( "@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", + "rust_proc_macro", "rust_test", ) @@ -46,11 +47,12 @@ rust_library( ], tags = [ "cargo-raze", + "crate-name=term", "manual", ], version = "0.7.0", proc_macro_deps = [ - "@raze__rustversion__1_0_5//:rustversion", + "@raze__rustversion__1_0_6//:rustversion", ], # buildifier: leave-alone deps = [ diff --git a/cargo/crates.bzl b/cargo/crates.bzl index 503311de0..2f16686bd 100644 --- a/cargo/crates.bzl +++ b/cargo/crates.bzl @@ -53,12 +53,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__anyhow__1_0_51", - url = "https://crates.io/api/v1/crates/anyhow/1.0.51/download", + name = "raze__anyhow__1_0_52", + url = "https://crates.io/api/v1/crates/anyhow/1.0.52/download", type = "tar.gz", - sha256 = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203", - strip_prefix = "anyhow-1.0.51", - build_file = Label("//cargo/remote:BUILD.anyhow-1.0.51.bazel"), + sha256 = "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3", + strip_prefix = "anyhow-1.0.52", + build_file = Label("//cargo/remote:BUILD.anyhow-1.0.52.bazel"), ) maybe( @@ -103,12 +103,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__async_trait__0_1_51", - url = "https://crates.io/api/v1/crates/async-trait/0.1.51/download", + name = "raze__async_trait__0_1_52", + url = "https://crates.io/api/v1/crates/async-trait/0.1.52/download", type = "tar.gz", - sha256 = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e", - strip_prefix = "async-trait-0.1.51", - build_file = Label("//cargo/remote:BUILD.async-trait-0.1.51.bazel"), + sha256 = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3", + strip_prefix = "async-trait-0.1.52", + build_file = Label("//cargo/remote:BUILD.async-trait-0.1.52.bazel"), ) maybe( @@ -153,22 +153,32 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__blake3__1_2_0", - url = "https://crates.io/api/v1/crates/blake3/1.2.0/download", + name = "raze__blake3__1_3_0", + url = "https://crates.io/api/v1/crates/blake3/1.3.0/download", type = "tar.gz", - sha256 = "526c210b4520e416420759af363083471656e819a75e831b8d2c9d5a584f2413", - strip_prefix = "blake3-1.2.0", - build_file = Label("//cargo/remote:BUILD.blake3-1.2.0.bazel"), + sha256 = "882e99e4a0cb2ae6cb6e442102e8e6b7131718d94110e64c3e6a34ea9b106f37", + strip_prefix = "blake3-1.3.0", + build_file = Label("//cargo/remote:BUILD.blake3-1.3.0.bazel"), ) maybe( http_archive, - name = "raze__bumpalo__3_8_0", - url = "https://crates.io/api/v1/crates/bumpalo/3.8.0/download", + name = "raze__block_buffer__0_10_0", + url = "https://crates.io/api/v1/crates/block-buffer/0.10.0/download", type = "tar.gz", - sha256 = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c", - strip_prefix = "bumpalo-3.8.0", - build_file = Label("//cargo/remote:BUILD.bumpalo-3.8.0.bazel"), + sha256 = "f1d36a02058e76b040de25a4464ba1c80935655595b661505c8b39b664828b95", + strip_prefix = "block-buffer-0.10.0", + build_file = Label("//cargo/remote:BUILD.block-buffer-0.10.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__bumpalo__3_9_1", + url = "https://crates.io/api/v1/crates/bumpalo/3.9.1/download", + type = "tar.gz", + sha256 = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899", + strip_prefix = "bumpalo-3.9.1", + build_file = Label("//cargo/remote:BUILD.bumpalo-3.9.1.bazel"), ) maybe( @@ -303,22 +313,32 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__crossbeam_channel__0_5_1", - url = "https://crates.io/api/v1/crates/crossbeam-channel/0.5.1/download", + name = "raze__crossbeam_channel__0_5_2", + url = "https://crates.io/api/v1/crates/crossbeam-channel/0.5.2/download", type = "tar.gz", - sha256 = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4", - strip_prefix = "crossbeam-channel-0.5.1", - build_file = Label("//cargo/remote:BUILD.crossbeam-channel-0.5.1.bazel"), + sha256 = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa", + strip_prefix = "crossbeam-channel-0.5.2", + build_file = Label("//cargo/remote:BUILD.crossbeam-channel-0.5.2.bazel"), ) maybe( http_archive, - name = "raze__crossbeam_utils__0_8_5", - url = "https://crates.io/api/v1/crates/crossbeam-utils/0.8.5/download", + name = "raze__crossbeam_utils__0_8_6", + url = "https://crates.io/api/v1/crates/crossbeam-utils/0.8.6/download", type = "tar.gz", - sha256 = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db", - strip_prefix = "crossbeam-utils-0.8.5", - build_file = Label("//cargo/remote:BUILD.crossbeam-utils-0.8.5.bazel"), + sha256 = "cfcae03edb34f947e64acdb1c33ec169824e20657e9ecb61cef6c8c74dcb8120", + strip_prefix = "crossbeam-utils-0.8.6", + build_file = Label("//cargo/remote:BUILD.crossbeam-utils-0.8.6.bazel"), + ) + + maybe( + http_archive, + name = "raze__crypto_common__0_1_1", + url = "https://crates.io/api/v1/crates/crypto-common/0.1.1/download", + type = "tar.gz", + sha256 = "683d6b536309245c849479fba3da410962a43ed8e51c26b729208ec0ac2798d0", + strip_prefix = "crypto-common-0.1.1", + build_file = Label("//cargo/remote:BUILD.crypto-common-0.1.1.bazel"), ) maybe( @@ -341,16 +361,6 @@ def raze_fetch_remote_crates(): build_file = Label("//cargo/remote:BUILD.cssparser-macros-0.6.0.bazel"), ) - maybe( - http_archive, - name = "raze__derivative__2_2_0", - url = "https://crates.io/api/v1/crates/derivative/2.2.0/download", - type = "tar.gz", - sha256 = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b", - strip_prefix = "derivative-2.2.0", - build_file = Label("//cargo/remote:BUILD.derivative-2.2.0.bazel"), - ) - maybe( http_archive, name = "raze__derive_more__0_99_17", @@ -363,12 +373,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__digest__0_9_0", - url = "https://crates.io/api/v1/crates/digest/0.9.0/download", + name = "raze__digest__0_10_1", + url = "https://crates.io/api/v1/crates/digest/0.10.1/download", type = "tar.gz", - sha256 = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066", - strip_prefix = "digest-0.9.0", - build_file = Label("//cargo/remote:BUILD.digest-0.9.0.bazel"), + sha256 = "b697d66081d42af4fba142d56918a3cb21dc8eb63372c6b85d14f44fb9c5979b", + strip_prefix = "digest-0.10.1", + build_file = Label("//cargo/remote:BUILD.digest-0.10.1.bazel"), ) maybe( @@ -433,12 +443,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__encoding_rs__0_8_29", - url = "https://crates.io/api/v1/crates/encoding_rs/0.8.29/download", + name = "raze__encoding_rs__0_8_30", + url = "https://crates.io/api/v1/crates/encoding_rs/0.8.30/download", type = "tar.gz", - sha256 = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746", - strip_prefix = "encoding_rs-0.8.29", - build_file = Label("//cargo/remote:BUILD.encoding_rs-0.8.29.bazel"), + sha256 = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df", + strip_prefix = "encoding_rs-0.8.30", + build_file = Label("//cargo/remote:BUILD.encoding_rs-0.8.30.bazel"), ) maybe( @@ -473,12 +483,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__fixedbitset__0_4_0", - url = "https://crates.io/api/v1/crates/fixedbitset/0.4.0/download", + name = "raze__fastrand__1_6_0", + url = "https://crates.io/api/v1/crates/fastrand/1.6.0/download", type = "tar.gz", - sha256 = "398ea4fabe40b9b0d885340a2a991a44c8a645624075ad966d21f88688e2b69e", - strip_prefix = "fixedbitset-0.4.0", - build_file = Label("//cargo/remote:BUILD.fixedbitset-0.4.0.bazel"), + sha256 = "779d043b6a0b90cc4c0ed7ee380a6504394cee7efd7db050e3774eee387324b2", + strip_prefix = "fastrand-1.6.0", + build_file = Label("//cargo/remote:BUILD.fastrand-1.6.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__fixedbitset__0_4_1", + url = "https://crates.io/api/v1/crates/fixedbitset/0.4.1/download", + type = "tar.gz", + sha256 = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e", + strip_prefix = "fixedbitset-0.4.1", + build_file = Label("//cargo/remote:BUILD.fixedbitset-0.4.1.bazel"), ) maybe( @@ -583,92 +603,92 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__futures__0_3_18", - url = "https://crates.io/api/v1/crates/futures/0.3.18/download", + name = "raze__futures__0_3_19", + url = "https://crates.io/api/v1/crates/futures/0.3.19/download", type = "tar.gz", - sha256 = "8cd0210d8c325c245ff06fd95a3b13689a1a276ac8cfa8e8720cb840bfb84b9e", - strip_prefix = "futures-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-0.3.18.bazel"), + sha256 = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4", + strip_prefix = "futures-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_channel__0_3_18", - url = "https://crates.io/api/v1/crates/futures-channel/0.3.18/download", + name = "raze__futures_channel__0_3_19", + url = "https://crates.io/api/v1/crates/futures-channel/0.3.19/download", type = "tar.gz", - sha256 = "7fc8cd39e3dbf865f7340dce6a2d401d24fd37c6fe6c4f0ee0de8bfca2252d27", - strip_prefix = "futures-channel-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-channel-0.3.18.bazel"), + sha256 = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b", + strip_prefix = "futures-channel-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-channel-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_core__0_3_18", - url = "https://crates.io/api/v1/crates/futures-core/0.3.18/download", + name = "raze__futures_core__0_3_19", + url = "https://crates.io/api/v1/crates/futures-core/0.3.19/download", type = "tar.gz", - sha256 = "629316e42fe7c2a0b9a65b47d159ceaa5453ab14e8f0a3c5eedbb8cd55b4a445", - strip_prefix = "futures-core-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-core-0.3.18.bazel"), + sha256 = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7", + strip_prefix = "futures-core-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-core-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_executor__0_3_18", - url = "https://crates.io/api/v1/crates/futures-executor/0.3.18/download", + name = "raze__futures_executor__0_3_19", + url = "https://crates.io/api/v1/crates/futures-executor/0.3.19/download", type = "tar.gz", - sha256 = "7b808bf53348a36cab739d7e04755909b9fcaaa69b7d7e588b37b6ec62704c97", - strip_prefix = "futures-executor-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-executor-0.3.18.bazel"), + sha256 = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a", + strip_prefix = "futures-executor-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-executor-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_io__0_3_18", - url = "https://crates.io/api/v1/crates/futures-io/0.3.18/download", + name = "raze__futures_io__0_3_19", + url = "https://crates.io/api/v1/crates/futures-io/0.3.19/download", type = "tar.gz", - sha256 = "e481354db6b5c353246ccf6a728b0c5511d752c08da7260546fc0933869daa11", - strip_prefix = "futures-io-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-io-0.3.18.bazel"), + sha256 = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2", + strip_prefix = "futures-io-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-io-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_macro__0_3_18", - url = "https://crates.io/api/v1/crates/futures-macro/0.3.18/download", + name = "raze__futures_macro__0_3_19", + url = "https://crates.io/api/v1/crates/futures-macro/0.3.19/download", type = "tar.gz", - sha256 = "a89f17b21645bc4ed773c69af9c9a0effd4a3f1a3876eadd453469f8854e7fdd", - strip_prefix = "futures-macro-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-macro-0.3.18.bazel"), + sha256 = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c", + strip_prefix = "futures-macro-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-macro-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_sink__0_3_18", - url = "https://crates.io/api/v1/crates/futures-sink/0.3.18/download", + name = "raze__futures_sink__0_3_19", + url = "https://crates.io/api/v1/crates/futures-sink/0.3.19/download", type = "tar.gz", - sha256 = "996c6442437b62d21a32cd9906f9c41e7dc1e19a9579843fad948696769305af", - strip_prefix = "futures-sink-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-sink-0.3.18.bazel"), + sha256 = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508", + strip_prefix = "futures-sink-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-sink-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_task__0_3_18", - url = "https://crates.io/api/v1/crates/futures-task/0.3.18/download", + name = "raze__futures_task__0_3_19", + url = "https://crates.io/api/v1/crates/futures-task/0.3.19/download", type = "tar.gz", - sha256 = "dabf1872aaab32c886832f2276d2f5399887e2bd613698a02359e4ea83f8de12", - strip_prefix = "futures-task-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-task-0.3.18.bazel"), + sha256 = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72", + strip_prefix = "futures-task-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-task-0.3.19.bazel"), ) maybe( http_archive, - name = "raze__futures_util__0_3_18", - url = "https://crates.io/api/v1/crates/futures-util/0.3.18/download", + name = "raze__futures_util__0_3_19", + url = "https://crates.io/api/v1/crates/futures-util/0.3.19/download", type = "tar.gz", - sha256 = "41d22213122356472061ac0f1ab2cee28d2bac8491410fd68c2af53d1cedb83e", - strip_prefix = "futures-util-0.3.18", - build_file = Label("//cargo/remote:BUILD.futures-util-0.3.18.bazel"), + sha256 = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164", + strip_prefix = "futures-util-0.3.19", + build_file = Label("//cargo/remote:BUILD.futures-util-0.3.19.bazel"), ) maybe( @@ -683,12 +703,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__generic_array__0_14_4", - url = "https://crates.io/api/v1/crates/generic-array/0.14.4/download", + name = "raze__generic_array__0_14_5", + url = "https://crates.io/api/v1/crates/generic-array/0.14.5/download", type = "tar.gz", - sha256 = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817", - strip_prefix = "generic-array-0.14.4", - build_file = Label("//cargo/remote:BUILD.generic-array-0.14.4.bazel"), + sha256 = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803", + strip_prefix = "generic-array-0.14.5", + build_file = Label("//cargo/remote:BUILD.generic-array-0.14.5.bazel"), ) maybe( @@ -713,22 +733,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__getrandom__0_2_3", - url = "https://crates.io/api/v1/crates/getrandom/0.2.3/download", + name = "raze__getrandom__0_2_4", + url = "https://crates.io/api/v1/crates/getrandom/0.2.4/download", type = "tar.gz", - sha256 = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753", - strip_prefix = "getrandom-0.2.3", - build_file = Label("//cargo/remote:BUILD.getrandom-0.2.3.bazel"), + sha256 = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c", + strip_prefix = "getrandom-0.2.4", + build_file = Label("//cargo/remote:BUILD.getrandom-0.2.4.bazel"), ) maybe( http_archive, - name = "raze__h2__0_3_7", - url = "https://crates.io/api/v1/crates/h2/0.3.7/download", + name = "raze__h2__0_3_10", + url = "https://crates.io/api/v1/crates/h2/0.3.10/download", type = "tar.gz", - sha256 = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55", - strip_prefix = "h2-0.3.7", - build_file = Label("//cargo/remote:BUILD.h2-0.3.7.bazel"), + sha256 = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689", + strip_prefix = "h2-0.3.10", + build_file = Label("//cargo/remote:BUILD.h2-0.3.10.bazel"), ) maybe( @@ -803,12 +823,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__http__0_2_5", - url = "https://crates.io/api/v1/crates/http/0.2.5/download", + name = "raze__http__0_2_6", + url = "https://crates.io/api/v1/crates/http/0.2.6/download", type = "tar.gz", - sha256 = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b", - strip_prefix = "http-0.2.5", - build_file = Label("//cargo/remote:BUILD.http-0.2.5.bazel"), + sha256 = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03", + strip_prefix = "http-0.2.6", + build_file = Label("//cargo/remote:BUILD.http-0.2.6.bazel"), ) maybe( @@ -853,12 +873,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__hyper__0_14_15", - url = "https://crates.io/api/v1/crates/hyper/0.14.15/download", + name = "raze__hyper__0_14_16", + url = "https://crates.io/api/v1/crates/hyper/0.14.16/download", type = "tar.gz", - sha256 = "436ec0091e4f20e655156a30a0df3770fe2900aa301e548e08446ec794b6953c", - strip_prefix = "hyper-0.14.15", - build_file = Label("//cargo/remote:BUILD.hyper-0.14.15.bazel"), + sha256 = "b7ec3e62bdc98a2f0393a5048e4c30ef659440ea6e0e572965103e72bd836f55", + strip_prefix = "hyper-0.14.16", + build_file = Label("//cargo/remote:BUILD.hyper-0.14.16.bazel"), ) maybe( @@ -903,12 +923,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__indexmap__1_7_0", - url = "https://crates.io/api/v1/crates/indexmap/1.7.0/download", + name = "raze__indexmap__1_8_0", + url = "https://crates.io/api/v1/crates/indexmap/1.8.0/download", type = "tar.gz", - sha256 = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5", - strip_prefix = "indexmap-1.7.0", - build_file = Label("//cargo/remote:BUILD.indexmap-1.7.0.bazel"), + sha256 = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223", + strip_prefix = "indexmap-1.8.0", + build_file = Label("//cargo/remote:BUILD.indexmap-1.8.0.bazel"), ) maybe( @@ -983,12 +1003,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__itertools__0_10_1", - url = "https://crates.io/api/v1/crates/itertools/0.10.1/download", + name = "raze__itertools__0_10_3", + url = "https://crates.io/api/v1/crates/itertools/0.10.3/download", type = "tar.gz", - sha256 = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf", - strip_prefix = "itertools-0.10.1", - build_file = Label("//cargo/remote:BUILD.itertools-0.10.1.bazel"), + sha256 = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3", + strip_prefix = "itertools-0.10.3", + build_file = Label("//cargo/remote:BUILD.itertools-0.10.3.bazel"), ) maybe( @@ -1001,6 +1021,16 @@ def raze_fetch_remote_crates(): build_file = Label("//cargo/remote:BUILD.itoa-0.4.8.bazel"), ) + maybe( + http_archive, + name = "raze__itoa__1_0_1", + url = "https://crates.io/api/v1/crates/itoa/1.0.1/download", + type = "tar.gz", + sha256 = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35", + strip_prefix = "itoa-1.0.1", + build_file = Label("//cargo/remote:BUILD.itoa-1.0.1.bazel"), + ) + maybe( http_archive, name = "raze__js_sys__0_3_55", @@ -1033,22 +1063,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__libc__0_2_108", - url = "https://crates.io/api/v1/crates/libc/0.2.108/download", + name = "raze__libc__0_2_112", + url = "https://crates.io/api/v1/crates/libc/0.2.112/download", type = "tar.gz", - sha256 = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119", - strip_prefix = "libc-0.2.108", - build_file = Label("//cargo/remote:BUILD.libc-0.2.108.bazel"), + sha256 = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125", + strip_prefix = "libc-0.2.112", + build_file = Label("//cargo/remote:BUILD.libc-0.2.112.bazel"), ) maybe( http_archive, - name = "raze__libsqlite3_sys__0_23_1", - url = "https://crates.io/api/v1/crates/libsqlite3-sys/0.23.1/download", + name = "raze__libsqlite3_sys__0_23_2", + url = "https://crates.io/api/v1/crates/libsqlite3-sys/0.23.2/download", type = "tar.gz", - sha256 = "abd5850c449b40bacb498b2bbdfaff648b1b055630073ba8db499caf2d0ea9f2", - strip_prefix = "libsqlite3-sys-0.23.1", - build_file = Label("//cargo/remote:BUILD.libsqlite3-sys-0.23.1.bazel"), + sha256 = "d2cafc7c74096c336d9d27145f7ebd4f4b6f95ba16aa5a282387267e6925cb58", + strip_prefix = "libsqlite3-sys-0.23.2", + build_file = Label("//cargo/remote:BUILD.libsqlite3-sys-0.23.2.bazel"), ) maybe( @@ -1303,42 +1333,42 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__num_cpus__1_13_0", - url = "https://crates.io/api/v1/crates/num_cpus/1.13.0/download", + name = "raze__num_cpus__1_13_1", + url = "https://crates.io/api/v1/crates/num_cpus/1.13.1/download", type = "tar.gz", - sha256 = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3", - strip_prefix = "num_cpus-1.13.0", - build_file = Label("//cargo/remote:BUILD.num_cpus-1.13.0.bazel"), + sha256 = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1", + strip_prefix = "num_cpus-1.13.1", + build_file = Label("//cargo/remote:BUILD.num_cpus-1.13.1.bazel"), ) maybe( http_archive, - name = "raze__num_enum__0_5_4", - url = "https://crates.io/api/v1/crates/num_enum/0.5.4/download", + name = "raze__num_enum__0_5_6", + url = "https://crates.io/api/v1/crates/num_enum/0.5.6/download", type = "tar.gz", - sha256 = "3f9bd055fb730c4f8f4f57d45d35cd6b3f0980535b056dc7ff119cee6a66ed6f", - strip_prefix = "num_enum-0.5.4", - build_file = Label("//cargo/remote:BUILD.num_enum-0.5.4.bazel"), + sha256 = "720d3ea1055e4e4574c0c0b0f8c3fd4f24c4cdaf465948206dea090b57b526ad", + strip_prefix = "num_enum-0.5.6", + build_file = Label("//cargo/remote:BUILD.num_enum-0.5.6.bazel"), ) maybe( http_archive, - name = "raze__num_enum_derive__0_5_4", - url = "https://crates.io/api/v1/crates/num_enum_derive/0.5.4/download", + name = "raze__num_enum_derive__0_5_6", + url = "https://crates.io/api/v1/crates/num_enum_derive/0.5.6/download", type = "tar.gz", - sha256 = "486ea01961c4a818096de679a8b740b26d9033146ac5291b1c98557658f8cdd9", - strip_prefix = "num_enum_derive-0.5.4", - build_file = Label("//cargo/remote:BUILD.num_enum_derive-0.5.4.bazel"), + sha256 = "0d992b768490d7fe0d8586d9b5745f6c49f557da6d81dc982b1d167ad4edbb21", + strip_prefix = "num_enum_derive-0.5.6", + build_file = Label("//cargo/remote:BUILD.num_enum_derive-0.5.6.bazel"), ) maybe( http_archive, - name = "raze__once_cell__1_8_0", - url = "https://crates.io/api/v1/crates/once_cell/1.8.0/download", + name = "raze__once_cell__1_9_0", + url = "https://crates.io/api/v1/crates/once_cell/1.9.0/download", type = "tar.gz", - sha256 = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56", - strip_prefix = "once_cell-1.8.0", - build_file = Label("//cargo/remote:BUILD.once_cell-1.8.0.bazel"), + sha256 = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5", + strip_prefix = "once_cell-1.9.0", + build_file = Label("//cargo/remote:BUILD.once_cell-1.9.0.bazel"), ) maybe( @@ -1353,22 +1383,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__openssl_probe__0_1_4", - url = "https://crates.io/api/v1/crates/openssl-probe/0.1.4/download", + name = "raze__openssl_probe__0_1_5", + url = "https://crates.io/api/v1/crates/openssl-probe/0.1.5/download", type = "tar.gz", - sha256 = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a", - strip_prefix = "openssl-probe-0.1.4", - build_file = Label("//cargo/remote:BUILD.openssl-probe-0.1.4.bazel"), + sha256 = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf", + strip_prefix = "openssl-probe-0.1.5", + build_file = Label("//cargo/remote:BUILD.openssl-probe-0.1.5.bazel"), ) maybe( http_archive, - name = "raze__openssl_sys__0_9_71", - url = "https://crates.io/api/v1/crates/openssl-sys/0.9.71/download", + name = "raze__openssl_sys__0_9_72", + url = "https://crates.io/api/v1/crates/openssl-sys/0.9.72/download", type = "tar.gz", - sha256 = "7df13d165e607909b363a4757a6f133f8a818a74e9d3a98d09c6128e15fa4c73", - strip_prefix = "openssl-sys-0.9.71", - build_file = Label("//cargo/remote:BUILD.openssl-sys-0.9.71.bazel"), + sha256 = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb", + strip_prefix = "openssl-sys-0.9.72", + build_file = Label("//cargo/remote:BUILD.openssl-sys-0.9.72.bazel"), ) maybe( @@ -1443,12 +1473,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__phf__0_10_0", - url = "https://crates.io/api/v1/crates/phf/0.10.0/download", + name = "raze__phf__0_10_1", + url = "https://crates.io/api/v1/crates/phf/0.10.1/download", type = "tar.gz", - sha256 = "b9fc3db1018c4b59d7d582a739436478b6035138b6aecbce989fc91c3e98409f", - strip_prefix = "phf-0.10.0", - build_file = Label("//cargo/remote:BUILD.phf-0.10.0.bazel"), + sha256 = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259", + strip_prefix = "phf-0.10.1", + build_file = Label("//cargo/remote:BUILD.phf-0.10.1.bazel"), ) maybe( @@ -1533,32 +1563,32 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__pin_project__1_0_8", - url = "https://crates.io/api/v1/crates/pin-project/1.0.8/download", + name = "raze__pin_project__1_0_10", + url = "https://crates.io/api/v1/crates/pin-project/1.0.10/download", type = "tar.gz", - sha256 = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08", - strip_prefix = "pin-project-1.0.8", - build_file = Label("//cargo/remote:BUILD.pin-project-1.0.8.bazel"), + sha256 = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e", + strip_prefix = "pin-project-1.0.10", + build_file = Label("//cargo/remote:BUILD.pin-project-1.0.10.bazel"), ) maybe( http_archive, - name = "raze__pin_project_internal__1_0_8", - url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.8/download", + name = "raze__pin_project_internal__1_0_10", + url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.10/download", type = "tar.gz", - sha256 = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389", - strip_prefix = "pin-project-internal-1.0.8", - build_file = Label("//cargo/remote:BUILD.pin-project-internal-1.0.8.bazel"), + sha256 = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb", + strip_prefix = "pin-project-internal-1.0.10", + build_file = Label("//cargo/remote:BUILD.pin-project-internal-1.0.10.bazel"), ) maybe( http_archive, - name = "raze__pin_project_lite__0_2_7", - url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download", + name = "raze__pin_project_lite__0_2_8", + url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.8/download", type = "tar.gz", - sha256 = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443", - strip_prefix = "pin-project-lite-0.2.7", - build_file = Label("//cargo/remote:BUILD.pin-project-lite-0.2.7.bazel"), + sha256 = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c", + strip_prefix = "pin-project-lite-0.2.8", + build_file = Label("//cargo/remote:BUILD.pin-project-lite-0.2.8.bazel"), ) maybe( @@ -1573,22 +1603,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__pkg_config__0_3_22", - url = "https://crates.io/api/v1/crates/pkg-config/0.3.22/download", + name = "raze__pkg_config__0_3_24", + url = "https://crates.io/api/v1/crates/pkg-config/0.3.24/download", type = "tar.gz", - sha256 = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f", - strip_prefix = "pkg-config-0.3.22", - build_file = Label("//cargo/remote:BUILD.pkg-config-0.3.22.bazel"), + sha256 = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe", + strip_prefix = "pkg-config-0.3.24", + build_file = Label("//cargo/remote:BUILD.pkg-config-0.3.24.bazel"), ) maybe( http_archive, - name = "raze__ppv_lite86__0_2_15", - url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.15/download", + name = "raze__ppv_lite86__0_2_16", + url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.16/download", type = "tar.gz", - sha256 = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba", - strip_prefix = "ppv-lite86-0.2.15", - build_file = Label("//cargo/remote:BUILD.ppv-lite86-0.2.15.bazel"), + sha256 = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872", + strip_prefix = "ppv-lite86-0.2.16", + build_file = Label("//cargo/remote:BUILD.ppv-lite86-0.2.16.bazel"), ) maybe( @@ -1633,12 +1663,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__proc_macro2__1_0_32", - url = "https://crates.io/api/v1/crates/proc-macro2/1.0.32/download", + name = "raze__proc_macro2__1_0_36", + url = "https://crates.io/api/v1/crates/proc-macro2/1.0.36/download", type = "tar.gz", - sha256 = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43", - strip_prefix = "proc-macro2-1.0.32", - build_file = Label("//cargo/remote:BUILD.proc-macro2-1.0.32.bazel"), + sha256 = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029", + strip_prefix = "proc-macro2-1.0.36", + build_file = Label("//cargo/remote:BUILD.proc-macro2-1.0.36.bazel"), ) maybe( @@ -1733,12 +1763,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__quote__1_0_10", - url = "https://crates.io/api/v1/crates/quote/1.0.10/download", + name = "raze__quote__1_0_14", + url = "https://crates.io/api/v1/crates/quote/1.0.14/download", type = "tar.gz", - sha256 = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05", - strip_prefix = "quote-1.0.10", - build_file = Label("//cargo/remote:BUILD.quote-1.0.10.bazel"), + sha256 = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d", + strip_prefix = "quote-1.0.14", + build_file = Label("//cargo/remote:BUILD.quote-1.0.14.bazel"), ) maybe( @@ -1903,12 +1933,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__rusqlite__0_26_1", - url = "https://crates.io/api/v1/crates/rusqlite/0.26.1/download", + name = "raze__rusqlite__0_26_3", + url = "https://crates.io/api/v1/crates/rusqlite/0.26.3/download", type = "tar.gz", - sha256 = "8a82b0b91fad72160c56bf8da7a549b25d7c31109f52cc1437eac4c0ad2550a7", - strip_prefix = "rusqlite-0.26.1", - build_file = Label("//cargo/remote:BUILD.rusqlite-0.26.1.bazel"), + sha256 = "4ba4d3462c8b2e4d7f4fcfcf2b296dc6b65404fbbc7b63daa37fd485c149daf7", + strip_prefix = "rusqlite-0.26.3", + build_file = Label("//cargo/remote:BUILD.rusqlite-0.26.3.bazel"), ) maybe( @@ -1953,22 +1983,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__rustversion__1_0_5", - url = "https://crates.io/api/v1/crates/rustversion/1.0.5/download", + name = "raze__rustversion__1_0_6", + url = "https://crates.io/api/v1/crates/rustversion/1.0.6/download", type = "tar.gz", - sha256 = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088", - strip_prefix = "rustversion-1.0.5", - build_file = Label("//cargo/remote:BUILD.rustversion-1.0.5.bazel"), + sha256 = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f", + strip_prefix = "rustversion-1.0.6", + build_file = Label("//cargo/remote:BUILD.rustversion-1.0.6.bazel"), ) maybe( http_archive, - name = "raze__ryu__1_0_6", - url = "https://crates.io/api/v1/crates/ryu/1.0.6/download", + name = "raze__ryu__1_0_9", + url = "https://crates.io/api/v1/crates/ryu/1.0.9/download", type = "tar.gz", - sha256 = "3c9613b5a66ab9ba26415184cfc41156594925a9cf3a2057e57f31ff145f6568", - strip_prefix = "ryu-1.0.6", - build_file = Label("//cargo/remote:BUILD.ryu-1.0.6.bazel"), + sha256 = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f", + strip_prefix = "ryu-1.0.9", + build_file = Label("//cargo/remote:BUILD.ryu-1.0.9.bazel"), ) maybe( @@ -2063,12 +2093,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__serde__1_0_130", - url = "https://crates.io/api/v1/crates/serde/1.0.130/download", + name = "raze__serde__1_0_133", + url = "https://crates.io/api/v1/crates/serde/1.0.133/download", type = "tar.gz", - sha256 = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913", - strip_prefix = "serde-1.0.130", - build_file = Label("//cargo/remote:BUILD.serde-1.0.130.bazel"), + sha256 = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a", + strip_prefix = "serde-1.0.133", + build_file = Label("//cargo/remote:BUILD.serde-1.0.133.bazel"), ) maybe( @@ -2083,22 +2113,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__serde_derive__1_0_130", - url = "https://crates.io/api/v1/crates/serde_derive/1.0.130/download", + name = "raze__serde_derive__1_0_133", + url = "https://crates.io/api/v1/crates/serde_derive/1.0.133/download", type = "tar.gz", - sha256 = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b", - strip_prefix = "serde_derive-1.0.130", - build_file = Label("//cargo/remote:BUILD.serde_derive-1.0.130.bazel"), + sha256 = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537", + strip_prefix = "serde_derive-1.0.133", + build_file = Label("//cargo/remote:BUILD.serde_derive-1.0.133.bazel"), ) maybe( http_archive, - name = "raze__serde_json__1_0_72", - url = "https://crates.io/api/v1/crates/serde_json/1.0.72/download", + name = "raze__serde_json__1_0_74", + url = "https://crates.io/api/v1/crates/serde_json/1.0.74/download", type = "tar.gz", - sha256 = "d0ffa0837f2dfa6fb90868c2b5468cad482e175f7dad97e7421951e663f2b527", - strip_prefix = "serde_json-1.0.72", - build_file = Label("//cargo/remote:BUILD.serde_json-1.0.72.bazel"), + sha256 = "ee2bb9cd061c5865d345bb02ca49fcef1391741b672b54a0bf7b679badec3142", + strip_prefix = "serde_json-1.0.74", + build_file = Label("//cargo/remote:BUILD.serde_json-1.0.74.bazel"), ) maybe( @@ -2253,12 +2283,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__smallvec__1_7_0", - url = "https://crates.io/api/v1/crates/smallvec/1.7.0/download", + name = "raze__smallvec__1_8_0", + url = "https://crates.io/api/v1/crates/smallvec/1.8.0/download", type = "tar.gz", - sha256 = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309", - strip_prefix = "smallvec-1.7.0", - build_file = Label("//cargo/remote:BUILD.smallvec-1.7.0.bazel"), + sha256 = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83", + strip_prefix = "smallvec-1.8.0", + build_file = Label("//cargo/remote:BUILD.smallvec-1.8.0.bazel"), ) maybe( @@ -2333,12 +2363,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__syn__1_0_82", - url = "https://crates.io/api/v1/crates/syn/1.0.82/download", + name = "raze__subtle__2_4_1", + url = "https://crates.io/api/v1/crates/subtle/2.4.1/download", type = "tar.gz", - sha256 = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59", - strip_prefix = "syn-1.0.82", - build_file = Label("//cargo/remote:BUILD.syn-1.0.82.bazel"), + sha256 = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601", + strip_prefix = "subtle-2.4.1", + build_file = Label("//cargo/remote:BUILD.subtle-2.4.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__syn__1_0_85", + url = "https://crates.io/api/v1/crates/syn/1.0.85/download", + type = "tar.gz", + sha256 = "a684ac3dcd8913827e18cd09a68384ee66c1de24157e3c556c9ab16d85695fb7", + strip_prefix = "syn-1.0.85", + build_file = Label("//cargo/remote:BUILD.syn-1.0.85.bazel"), ) maybe( @@ -2353,12 +2393,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__tempfile__3_2_0", - url = "https://crates.io/api/v1/crates/tempfile/3.2.0/download", + name = "raze__tempfile__3_3_0", + url = "https://crates.io/api/v1/crates/tempfile/3.3.0/download", type = "tar.gz", - sha256 = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22", - strip_prefix = "tempfile-3.2.0", - build_file = Label("//cargo/remote:BUILD.tempfile-3.2.0.bazel"), + sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4", + strip_prefix = "tempfile-3.3.0", + build_file = Label("//cargo/remote:BUILD.tempfile-3.3.0.bazel"), ) maybe( @@ -2473,12 +2513,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__tokio__1_14_0", - url = "https://crates.io/api/v1/crates/tokio/1.14.0/download", + name = "raze__tokio__1_15_0", + url = "https://crates.io/api/v1/crates/tokio/1.15.0/download", type = "tar.gz", - sha256 = "70e992e41e0d2fb9f755b37446f20900f64446ef54874f40a60c78f021ac6144", - strip_prefix = "tokio-1.14.0", - build_file = Label("//cargo/remote:BUILD.tokio-1.14.0.bazel"), + sha256 = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838", + strip_prefix = "tokio-1.15.0", + build_file = Label("//cargo/remote:BUILD.tokio-1.15.0.bazel"), ) maybe( @@ -2493,12 +2533,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__tokio_macros__1_6_0", - url = "https://crates.io/api/v1/crates/tokio-macros/1.6.0/download", + name = "raze__tokio_macros__1_7_0", + url = "https://crates.io/api/v1/crates/tokio-macros/1.7.0/download", type = "tar.gz", - sha256 = "c9efc1aba077437943f7515666aa2b882dfabfbfdf89c819ea75a8d6e9eaba5e", - strip_prefix = "tokio-macros-1.6.0", - build_file = Label("//cargo/remote:BUILD.tokio-macros-1.6.0.bazel"), + sha256 = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7", + strip_prefix = "tokio-macros-1.7.0", + build_file = Label("//cargo/remote:BUILD.tokio-macros-1.7.0.bazel"), ) maybe( @@ -2603,12 +2643,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__typenum__1_14_0", - url = "https://crates.io/api/v1/crates/typenum/1.14.0/download", + name = "raze__typenum__1_15_0", + url = "https://crates.io/api/v1/crates/typenum/1.15.0/download", type = "tar.gz", - sha256 = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec", - strip_prefix = "typenum-1.14.0", - build_file = Label("//cargo/remote:BUILD.typenum-1.14.0.bazel"), + sha256 = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987", + strip_prefix = "typenum-1.15.0", + build_file = Label("//cargo/remote:BUILD.typenum-1.15.0.bazel"), ) maybe( @@ -2833,12 +2873,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__version_check__0_9_3", - url = "https://crates.io/api/v1/crates/version_check/0.9.3/download", + name = "raze__version_check__0_9_4", + url = "https://crates.io/api/v1/crates/version_check/0.9.4/download", type = "tar.gz", - sha256 = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe", - strip_prefix = "version_check-0.9.3", - build_file = Label("//cargo/remote:BUILD.version_check-0.9.3.bazel"), + sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", + strip_prefix = "version_check-0.9.4", + build_file = Label("//cargo/remote:BUILD.version_check-0.9.4.bazel"), ) maybe( diff --git a/cargo/licenses.json b/cargo/licenses.json index ee0ad5437..2bb975424 100644 --- a/cargo/licenses.json +++ b/cargo/licenses.json @@ -55,7 +55,7 @@ }, { "name": "anyhow", - "version": "1.0.51", + "version": "1.0.52", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/anyhow", "license": "Apache-2.0 OR MIT", @@ -100,7 +100,7 @@ }, { "name": "async-trait", - "version": "0.1.51", + "version": "0.1.52", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/async-trait", "license": "Apache-2.0 OR MIT", @@ -145,16 +145,25 @@ }, { "name": "blake3", - "version": "1.2.0", - "authors": "Jack O'Connor ", + "version": "1.3.0", + "authors": "Jack O'Connor |Samuel Neves", "repository": "https://github.com/BLAKE3-team/BLAKE3", "license": "Apache-2.0 OR CC0-1.0", "license_file": null, "description": "the BLAKE3 hash function" }, + { + "name": "block-buffer", + "version": "0.10.0", + "authors": "RustCrypto Developers", + "repository": "https://github.com/RustCrypto/utils", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Buffer type for block processing of data" + }, { "name": "bumpalo", - "version": "3.8.0", + "version": "3.9.1", "authors": "Nick Fitzgerald ", "repository": "https://github.com/fitzgen/bumpalo", "license": "Apache-2.0 OR MIT", @@ -253,8 +262,8 @@ }, { "name": "crossbeam-channel", - "version": "0.5.1", - "authors": "The Crossbeam Project Developers", + "version": "0.5.2", + "authors": null, "repository": "https://github.com/crossbeam-rs/crossbeam", "license": "Apache-2.0 OR MIT", "license_file": null, @@ -262,25 +271,25 @@ }, { "name": "crossbeam-utils", - "version": "0.8.5", - "authors": "The Crossbeam Project Developers", + "version": "0.8.6", + "authors": null, "repository": "https://github.com/crossbeam-rs/crossbeam", "license": "Apache-2.0 OR MIT", "license_file": null, "description": "Utilities for concurrent programming" }, { - "name": "derivative", - "version": "2.2.0", - "authors": "mcarton ", - "repository": "https://github.com/mcarton/rust-derivative", + "name": "crypto-common", + "version": "0.1.1", + "authors": "RustCrypto Developers", + "repository": "https://github.com/RustCrypto/traits", "license": "Apache-2.0 OR MIT", "license_file": null, - "description": "A set of alternative `derive` attributes for Rust" + "description": "Common cryptographic traits" }, { "name": "digest", - "version": "0.9.0", + "version": "0.10.1", "authors": "RustCrypto Developers", "repository": "https://github.com/RustCrypto/traits", "license": "Apache-2.0 OR MIT", @@ -316,11 +325,11 @@ }, { "name": "encoding_rs", - "version": "0.8.29", + "version": "0.8.30", "authors": "Henri Sivonen ", "repository": "https://github.com/hsivonen/encoding_rs", - "license": "Apache-2.0 OR MIT", - "license_file": null, + "license": null, + "license_file": "COPYRIGHT", "description": "A Gecko-oriented implementation of the Encoding Standard" }, { @@ -350,11 +359,20 @@ "license_file": null, "description": "Fallible streaming iteration" }, + { + "name": "fastrand", + "version": "1.6.0", + "authors": "Stjepan Glavina ", + "repository": "https://github.com/smol-rs/fastrand", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple and fast random number generator" + }, { "name": "fixedbitset", - "version": "0.4.0", + "version": "0.4.1", "authors": "bluss", - "repository": "https://github.com/bluss/fixedbitset", + "repository": "https://github.com/petgraph/fixedbitset", "license": "Apache-2.0 OR MIT", "license_file": null, "description": "FixedBitSet is a simple bitset collection" @@ -451,7 +469,7 @@ }, { "name": "futures", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -460,7 +478,7 @@ }, { "name": "futures-channel", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -469,7 +487,7 @@ }, { "name": "futures-core", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -478,7 +496,7 @@ }, { "name": "futures-executor", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -487,7 +505,7 @@ }, { "name": "futures-io", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -496,7 +514,7 @@ }, { "name": "futures-macro", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -505,7 +523,7 @@ }, { "name": "futures-sink", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -514,7 +532,7 @@ }, { "name": "futures-task", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -523,7 +541,7 @@ }, { "name": "futures-util", - "version": "0.3.18", + "version": "0.3.19", "authors": null, "repository": "https://github.com/rust-lang/futures-rs", "license": "Apache-2.0 OR MIT", @@ -532,7 +550,7 @@ }, { "name": "generic-array", - "version": "0.14.4", + "version": "0.14.5", "authors": "Bartłomiej Kamiński |Aaron Trent ", "repository": "https://github.com/fizyk20/generic-array.git", "license": "MIT", @@ -559,7 +577,7 @@ }, { "name": "getrandom", - "version": "0.2.3", + "version": "0.2.4", "authors": "The Rand Project Developers", "repository": "https://github.com/rust-random/getrandom", "license": "Apache-2.0 OR MIT", @@ -568,7 +586,7 @@ }, { "name": "h2", - "version": "0.3.7", + "version": "0.3.10", "authors": "Carl Lerche |Sean McArthur ", "repository": "https://github.com/hyperium/h2", "license": "MIT", @@ -640,7 +658,7 @@ }, { "name": "http", - "version": "0.2.5", + "version": "0.2.6", "authors": "Alex Crichton |Carl Lerche |Sean McArthur ", "repository": "https://github.com/hyperium/http", "license": "Apache-2.0 OR MIT", @@ -685,7 +703,7 @@ }, { "name": "hyper", - "version": "0.14.15", + "version": "0.14.16", "authors": "Sean McArthur ", "repository": "https://github.com/hyperium/hyper", "license": "MIT", @@ -730,7 +748,7 @@ }, { "name": "indexmap", - "version": "1.7.0", + "version": "1.8.0", "authors": "bluss|Josh Stone ", "repository": "https://github.com/bluss/indexmap", "license": "Apache-2.0 OR MIT", @@ -784,7 +802,7 @@ }, { "name": "itertools", - "version": "0.10.1", + "version": "0.10.3", "authors": "bluss", "repository": "https://github.com/rust-itertools/itertools", "license": "Apache-2.0 OR MIT", @@ -800,6 +818,15 @@ "license_file": null, "description": "Fast functions for printing integer primitives to an io::Write" }, + { + "name": "itoa", + "version": "1.0.1", + "authors": "David Tolnay ", + "repository": "https://github.com/dtolnay/itoa", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Fast integer primitive to string conversion" + }, { "name": "js-sys", "version": "0.3.55", @@ -820,7 +847,7 @@ }, { "name": "libc", - "version": "0.2.108", + "version": "0.2.112", "authors": "The Rust Project Developers", "repository": "https://github.com/rust-lang/libc", "license": "Apache-2.0 OR MIT", @@ -829,7 +856,7 @@ }, { "name": "libsqlite3-sys", - "version": "0.23.1", + "version": "0.23.2", "authors": "The rusqlite developers", "repository": "https://github.com/rusqlite/rusqlite", "license": "MIT", @@ -1045,7 +1072,7 @@ }, { "name": "num_cpus", - "version": "1.13.0", + "version": "1.13.1", "authors": "Sean McArthur ", "repository": "https://github.com/seanmonstar/num_cpus", "license": "Apache-2.0 OR MIT", @@ -1054,25 +1081,25 @@ }, { "name": "num_enum", - "version": "0.5.4", + "version": "0.5.6", "authors": "Daniel Wagner-Hall |Daniel Henry-Mantilla |Vincent Esche ", "repository": "https://github.com/illicitonion/num_enum", - "license": "BSD-3-Clause", + "license": "Apache-2.0 OR BSD-3-Clause OR MIT", "license_file": null, "description": "Procedural macros to make inter-operation between primitives and enums easier." }, { "name": "num_enum_derive", - "version": "0.5.4", + "version": "0.5.6", "authors": "Daniel Wagner-Hall |Daniel Henry-Mantilla |Vincent Esche ", "repository": "https://github.com/illicitonion/num_enum", - "license": "BSD-3-Clause", + "license": "Apache-2.0 OR BSD-3-Clause OR MIT", "license_file": null, "description": "Internal implementation details for ::num_enum (Procedural macros to make inter-operation between primitives and enums easier)" }, { "name": "once_cell", - "version": "1.8.0", + "version": "1.9.0", "authors": "Aleksey Kladov ", "repository": "https://github.com/matklad/once_cell", "license": "Apache-2.0 OR MIT", @@ -1090,7 +1117,7 @@ }, { "name": "openssl-probe", - "version": "0.1.4", + "version": "0.1.5", "authors": "Alex Crichton ", "repository": "https://github.com/alexcrichton/openssl-probe", "license": "Apache-2.0 OR MIT", @@ -1099,7 +1126,7 @@ }, { "name": "openssl-sys", - "version": "0.9.71", + "version": "0.9.72", "authors": "Alex Crichton |Steven Fackler ", "repository": "https://github.com/sfackler/rust-openssl", "license": "MIT", @@ -1162,7 +1189,7 @@ }, { "name": "phf", - "version": "0.10.0", + "version": "0.10.1", "authors": "Steven Fackler ", "repository": "https://github.com/sfackler/rust-phf", "license": "MIT", @@ -1234,8 +1261,8 @@ }, { "name": "pin-project", - "version": "1.0.8", - "authors": "Taiki Endo ", + "version": "1.0.10", + "authors": null, "repository": "https://github.com/taiki-e/pin-project", "license": "Apache-2.0 OR MIT", "license_file": null, @@ -1243,8 +1270,8 @@ }, { "name": "pin-project-internal", - "version": "1.0.8", - "authors": "Taiki Endo ", + "version": "1.0.10", + "authors": null, "repository": "https://github.com/taiki-e/pin-project", "license": "Apache-2.0 OR MIT", "license_file": null, @@ -1252,8 +1279,8 @@ }, { "name": "pin-project-lite", - "version": "0.2.7", - "authors": "Taiki Endo ", + "version": "0.2.8", + "authors": null, "repository": "https://github.com/taiki-e/pin-project-lite", "license": "Apache-2.0 OR MIT", "license_file": null, @@ -1270,7 +1297,7 @@ }, { "name": "pkg-config", - "version": "0.3.22", + "version": "0.3.24", "authors": "Alex Crichton ", "repository": "https://github.com/rust-lang/pkg-config-rs", "license": "Apache-2.0 OR MIT", @@ -1279,7 +1306,7 @@ }, { "name": "ppv-lite86", - "version": "0.2.15", + "version": "0.2.16", "authors": "The CryptoCorrosion Contributors", "repository": "https://github.com/cryptocorrosion/cryptocorrosion", "license": "Apache-2.0 OR MIT", @@ -1324,7 +1351,7 @@ }, { "name": "proc-macro2", - "version": "1.0.32", + "version": "1.0.36", "authors": "David Tolnay |Alex Crichton ", "repository": "https://github.com/dtolnay/proc-macro2", "license": "Apache-2.0 OR MIT", @@ -1378,7 +1405,7 @@ }, { "name": "quote", - "version": "1.0.10", + "version": "1.0.14", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/quote", "license": "Apache-2.0 OR MIT", @@ -1531,7 +1558,7 @@ }, { "name": "rusqlite", - "version": "0.26.1", + "version": "0.26.3", "authors": "The rusqlite developers", "repository": "https://github.com/rusqlite/rusqlite", "license": "MIT", @@ -1567,7 +1594,7 @@ }, { "name": "rustversion", - "version": "1.0.5", + "version": "1.0.6", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/rustversion", "license": "Apache-2.0 OR MIT", @@ -1576,7 +1603,7 @@ }, { "name": "ryu", - "version": "1.0.6", + "version": "1.0.9", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/ryu", "license": "Apache-2.0 OR BSL-1.0", @@ -1639,7 +1666,7 @@ }, { "name": "serde", - "version": "1.0.130", + "version": "1.0.133", "authors": "Erick Tryzelaar |David Tolnay ", "repository": "https://github.com/serde-rs/serde", "license": "Apache-2.0 OR MIT", @@ -1657,7 +1684,7 @@ }, { "name": "serde_derive", - "version": "1.0.130", + "version": "1.0.133", "authors": "Erick Tryzelaar |David Tolnay ", "repository": "https://github.com/serde-rs/serde", "license": "Apache-2.0 OR MIT", @@ -1666,7 +1693,7 @@ }, { "name": "serde_json", - "version": "1.0.72", + "version": "1.0.74", "authors": "Erick Tryzelaar |David Tolnay ", "repository": "https://github.com/serde-rs/json", "license": "Apache-2.0 OR MIT", @@ -1801,7 +1828,7 @@ }, { "name": "smallvec", - "version": "1.7.0", + "version": "1.8.0", "authors": "The Servo Project Developers", "repository": "https://github.com/servo/rust-smallvec", "license": "Apache-2.0 OR MIT", @@ -1862,9 +1889,18 @@ "license_file": null, "description": "Helpful macros for working with enums and strings" }, + { + "name": "subtle", + "version": "2.4.1", + "authors": "Isis Lovecruft |Henry de Valence ", + "repository": "https://github.com/dalek-cryptography/subtle", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations." + }, { "name": "syn", - "version": "1.0.82", + "version": "1.0.85", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/syn", "license": "Apache-2.0 OR MIT", @@ -1882,7 +1918,7 @@ }, { "name": "tempfile", - "version": "3.2.0", + "version": "3.3.0", "authors": "Steven Allen |The Rust Project Developers|Ashley Mannix |Jason White ", "repository": "https://github.com/Stebalien/tempfile", "license": "Apache-2.0 OR MIT", @@ -1981,7 +2017,7 @@ }, { "name": "tokio", - "version": "1.14.0", + "version": "1.15.0", "authors": "Tokio Contributors ", "repository": "https://github.com/tokio-rs/tokio", "license": "MIT", @@ -1999,7 +2035,7 @@ }, { "name": "tokio-macros", - "version": "1.6.0", + "version": "1.7.0", "authors": "Tokio Contributors ", "repository": "https://github.com/tokio-rs/tokio", "license": "MIT", @@ -2098,7 +2134,7 @@ }, { "name": "typenum", - "version": "1.14.0", + "version": "1.15.0", "authors": "Paho Lurie-Gregg |Andre Bogus ", "repository": "https://github.com/paholg/typenum", "license": "Apache-2.0 OR MIT", @@ -2296,7 +2332,7 @@ }, { "name": "version_check", - "version": "0.9.3", + "version": "0.9.4", "authors": "Sergio Benitez ", "repository": "https://github.com/SergioBenitez/version_check", "license": "Apache-2.0 OR MIT", diff --git a/cargo/remote/BUILD.ahash-0.7.6.bazel b/cargo/remote/BUILD.ahash-0.7.6.bazel index def39a8fb..8c0d47509 100644 --- a/cargo/remote/BUILD.ahash-0.7.6.bazel +++ b/cargo/remote/BUILD.ahash-0.7.6.bazel @@ -57,7 +57,7 @@ cargo_build_script( version = "0.7.6", visibility = ["//visibility:private"], deps = [ - "@raze__version_check__0_9_3//:version_check", + "@raze__version_check__0_9_4//:version_check", ] + selects.with_or({ # cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi")) ( @@ -124,7 +124,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__getrandom__0_2_3//:getrandom", + "@raze__getrandom__0_2_4//:getrandom", ], "//conditions:default": [], }) + selects.with_or({ @@ -138,7 +138,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__once_cell__1_8_0//:once_cell", + "@raze__once_cell__1_9_0//:once_cell", ], "//conditions:default": [], }), diff --git a/cargo/remote/BUILD.anyhow-1.0.51.bazel b/cargo/remote/BUILD.anyhow-1.0.52.bazel similarity index 98% rename from cargo/remote/BUILD.anyhow-1.0.51.bazel rename to cargo/remote/BUILD.anyhow-1.0.52.bazel index 7cb7169d0..473c89608 100644 --- a/cargo/remote/BUILD.anyhow-1.0.51.bazel +++ b/cargo/remote/BUILD.anyhow-1.0.52.bazel @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.51", + version = "1.0.52", visibility = ["//visibility:private"], deps = [ ], @@ -80,7 +80,7 @@ rust_library( "crate-name=anyhow", "manual", ], - version = "1.0.51", + version = "1.0.52", # buildifier: leave-alone deps = [ ":anyhow_build_script", diff --git a/cargo/remote/BUILD.async-trait-0.1.51.bazel b/cargo/remote/BUILD.async-trait-0.1.52.bazel similarity index 90% rename from cargo/remote/BUILD.async-trait-0.1.51.bazel rename to cargo/remote/BUILD.async-trait-0.1.52.bazel index 0b218f3f1..559fb093d 100644 --- a/cargo/remote/BUILD.async-trait-0.1.51.bazel +++ b/cargo/remote/BUILD.async-trait-0.1.52.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.1.51", + version = "0.1.52", visibility = ["//visibility:private"], deps = [ ], @@ -76,13 +76,13 @@ rust_proc_macro( "crate-name=async-trait", "manual", ], - version = "0.1.51", + version = "0.1.52", # buildifier: leave-alone deps = [ ":async_trait_build_script", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.atty-0.2.14.bazel b/cargo/remote/BUILD.atty-0.2.14.bazel index 693a456e5..156b90551 100644 --- a/cargo/remote/BUILD.atty-0.2.14.bazel +++ b/cargo/remote/BUILD.atty-0.2.14.bazel @@ -64,7 +64,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.blake3-1.2.0.bazel b/cargo/remote/BUILD.blake3-1.3.0.bazel similarity index 95% rename from cargo/remote/BUILD.blake3-1.2.0.bazel rename to cargo/remote/BUILD.blake3-1.3.0.bazel index d79165268..13d960726 100644 --- a/cargo/remote/BUILD.blake3-1.2.0.bazel +++ b/cargo/remote/BUILD.blake3-1.3.0.bazel @@ -57,7 +57,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.2.0", + version = "1.3.0", visibility = ["//visibility:private"], deps = [ "@raze__cc__1_0_72//:cc", @@ -85,7 +85,7 @@ rust_library( "crate-name=blake3", "manual", ], - version = "1.2.0", + version = "1.3.0", # buildifier: leave-alone deps = [ ":blake3_build_script", @@ -93,6 +93,6 @@ rust_library( "@raze__arrayvec__0_7_2//:arrayvec", "@raze__cfg_if__1_0_0//:cfg_if", "@raze__constant_time_eq__0_1_5//:constant_time_eq", - "@raze__digest__0_9_0//:digest", + "@raze__digest__0_10_1//:digest", ], ) diff --git a/cargo/remote/BUILD.block-buffer-0.10.0.bazel b/cargo/remote/BUILD.block-buffer-0.10.0.bazel new file mode 100644 index 000000000..3242db217 --- /dev/null +++ b/cargo/remote/BUILD.block-buffer-0.10.0.bazel @@ -0,0 +1,57 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "block_buffer", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=block-buffer", + "manual", + ], + version = "0.10.0", + # buildifier: leave-alone + deps = [ + "@raze__generic_array__0_14_5//:generic_array", + ], +) + +# Unsupported target "mod" with type "test" omitted diff --git a/cargo/remote/BUILD.bumpalo-3.8.0.bazel b/cargo/remote/BUILD.bumpalo-3.9.1.bazel similarity index 98% rename from cargo/remote/BUILD.bumpalo-3.8.0.bazel rename to cargo/remote/BUILD.bumpalo-3.9.1.bazel index d7910970e..fb406f4bc 100644 --- a/cargo/remote/BUILD.bumpalo-3.8.0.bazel +++ b/cargo/remote/BUILD.bumpalo-3.9.1.bazel @@ -50,7 +50,7 @@ rust_library( "crate-name=bumpalo", "manual", ], - version = "3.8.0", + version = "3.9.1", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.chrono-0.4.19.bazel b/cargo/remote/BUILD.chrono-0.4.19.bazel index 2c0f59dfc..6187da43c 100644 --- a/cargo/remote/BUILD.chrono-0.4.19.bazel +++ b/cargo/remote/BUILD.chrono-0.4.19.bazel @@ -64,7 +64,7 @@ rust_library( version = "0.4.19", # buildifier: leave-alone deps = [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", "@raze__num_integer__0_1_44//:num_integer", "@raze__num_traits__0_2_14//:num_traits", "@raze__time__0_1_44//:time", diff --git a/cargo/remote/BUILD.coarsetime-0.1.20.bazel b/cargo/remote/BUILD.coarsetime-0.1.20.bazel index 62651e7ae..7f4efb5e8 100644 --- a/cargo/remote/BUILD.coarsetime-0.1.20.bazel +++ b/cargo/remote/BUILD.coarsetime-0.1.20.bazel @@ -52,7 +52,7 @@ rust_library( version = "0.1.20", # buildifier: leave-alone deps = [ - "@raze__once_cell__1_8_0//:once_cell", + "@raze__once_cell__1_9_0//:once_cell", ] + selects.with_or({ # cfg(not(target_os = "wasi")) ( @@ -64,7 +64,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }), diff --git a/cargo/remote/BUILD.codespan-0.11.1.bazel b/cargo/remote/BUILD.codespan-0.11.1.bazel index 25b365653..259156558 100644 --- a/cargo/remote/BUILD.codespan-0.11.1.bazel +++ b/cargo/remote/BUILD.codespan-0.11.1.bazel @@ -53,6 +53,6 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__codespan_reporting__0_11_1//:codespan_reporting", - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel b/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel index 225a0749c..1cb9ee9b5 100644 --- a/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel +++ b/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel @@ -62,7 +62,7 @@ rust_library( version = "0.11.1", # buildifier: leave-alone deps = [ - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", "@raze__termcolor__1_1_2//:termcolor", "@raze__unicode_width__0_1_9//:unicode_width", ], diff --git a/cargo/remote/BUILD.core-foundation-0.9.2.bazel b/cargo/remote/BUILD.core-foundation-0.9.2.bazel index 36c2988f2..0744646cb 100644 --- a/cargo/remote/BUILD.core-foundation-0.9.2.bazel +++ b/cargo/remote/BUILD.core-foundation-0.9.2.bazel @@ -51,7 +51,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__core_foundation_sys__0_8_3//:core_foundation_sys", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], ) diff --git a/cargo/remote/BUILD.crossbeam-channel-0.5.1.bazel b/cargo/remote/BUILD.crossbeam-channel-0.5.2.bazel similarity index 96% rename from cargo/remote/BUILD.crossbeam-channel-0.5.1.bazel rename to cargo/remote/BUILD.crossbeam-channel-0.5.2.bazel index 48fe66fc0..e96dcc53c 100644 --- a/cargo/remote/BUILD.crossbeam-channel-0.5.1.bazel +++ b/cargo/remote/BUILD.crossbeam-channel-0.5.2.bazel @@ -58,11 +58,11 @@ rust_library( "crate-name=crossbeam-channel", "manual", ], - version = "0.5.1", + version = "0.5.2", # buildifier: leave-alone deps = [ "@raze__cfg_if__1_0_0//:cfg_if", - "@raze__crossbeam_utils__0_8_5//:crossbeam_utils", + "@raze__crossbeam_utils__0_8_6//:crossbeam_utils", ], ) diff --git a/cargo/remote/BUILD.crossbeam-utils-0.8.5.bazel b/cargo/remote/BUILD.crossbeam-utils-0.8.6.bazel similarity index 97% rename from cargo/remote/BUILD.crossbeam-utils-0.8.5.bazel rename to cargo/remote/BUILD.crossbeam-utils-0.8.6.bazel index e72bc311d..f605fc850 100644 --- a/cargo/remote/BUILD.crossbeam-utils-0.8.5.bazel +++ b/cargo/remote/BUILD.crossbeam-utils-0.8.6.bazel @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.8.5", + version = "0.8.6", visibility = ["//visibility:private"], deps = [ ], @@ -82,7 +82,7 @@ rust_library( "crate-name=crossbeam-utils", "manual", ], - version = "0.8.5", + version = "0.8.6", # buildifier: leave-alone deps = [ ":crossbeam_utils_build_script", diff --git a/cargo/remote/BUILD.digest-0.9.0.bazel b/cargo/remote/BUILD.crypto-common-0.1.1.bazel similarity index 87% rename from cargo/remote/BUILD.digest-0.9.0.bazel rename to cargo/remote/BUILD.crypto-common-0.1.1.bazel index 6d3ab7f9c..2d2622203 100644 --- a/cargo/remote/BUILD.digest-0.9.0.bazel +++ b/cargo/remote/BUILD.crypto-common-0.1.1.bazel @@ -32,10 +32,9 @@ licenses([ # Generated Targets rust_library( - name = "digest", + name = "crypto_common", srcs = glob(["**/*.rs"]), crate_features = [ - "alloc", "std", ], crate_root = "src/lib.rs", @@ -46,12 +45,12 @@ rust_library( ], tags = [ "cargo-raze", - "crate-name=digest", + "crate-name=crypto-common", "manual", ], - version = "0.9.0", + version = "0.1.1", # buildifier: leave-alone deps = [ - "@raze__generic_array__0_14_4//:generic_array", + "@raze__generic_array__0_14_5//:generic_array", ], ) diff --git a/cargo/remote/BUILD.cssparser-0.27.2.bazel b/cargo/remote/BUILD.cssparser-0.27.2.bazel index b582c60bc..4a0a368bc 100644 --- a/cargo/remote/BUILD.cssparser-0.27.2.bazel +++ b/cargo/remote/BUILD.cssparser-0.27.2.bazel @@ -57,9 +57,9 @@ cargo_build_script( version = "0.27.2", visibility = ["//visibility:private"], deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) @@ -90,6 +90,6 @@ rust_library( "@raze__itoa__0_4_8//:itoa", "@raze__matches__0_1_9//:matches", "@raze__phf__0_8_0//:phf", - "@raze__smallvec__1_7_0//:smallvec", + "@raze__smallvec__1_8_0//:smallvec", ], ) diff --git a/cargo/remote/BUILD.cssparser-macros-0.6.0.bazel b/cargo/remote/BUILD.cssparser-macros-0.6.0.bazel index 118f75c83..fbcb56b6a 100644 --- a/cargo/remote/BUILD.cssparser-macros-0.6.0.bazel +++ b/cargo/remote/BUILD.cssparser-macros-0.6.0.bazel @@ -50,7 +50,7 @@ rust_proc_macro( version = "0.6.0", # buildifier: leave-alone deps = [ - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.derivative-2.2.0.bazel b/cargo/remote/BUILD.derivative-2.2.0.bazel deleted file mode 100644 index 9441d8e14..000000000 --- a/cargo/remote/BUILD.derivative-2.2.0.bazel +++ /dev/null @@ -1,202 +0,0 @@ -""" -@generated -cargo-raze crate build file. - -DO NOT EDIT! Replaced on runs of cargo-raze -""" - -# buildifier: disable=load -load("@bazel_skylib//lib:selects.bzl", "selects") - -# buildifier: disable=load -load( - "@rules_rust//rust:defs.bzl", - "rust_binary", - "rust_library", - "rust_proc_macro", - "rust_test", -) - -package(default_visibility = [ - # Public for visibility by "@raze__crate__version//" targets. - # - # Prefer access through "//cargo", which limits external - # visibility to explicit Cargo.toml dependencies. - "//visibility:public", -]) - -licenses([ - "notice", # MIT from expression "MIT OR Apache-2.0" -]) - -# Generated Targets - -rust_proc_macro( - name = "derivative", - srcs = glob(["**/*.rs"]), - crate_features = [ - "use_core", - ], - crate_root = "src/lib.rs", - data = [], - edition = "2015", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-raze", - "crate-name=derivative", - "manual", - ], - version = "2.2.0", - # buildifier: leave-alone - deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", - ], -) - -# Unsupported target "clippy-warning-clone-from" with type "test" omitted - -# Unsupported target "compile-test" with type "test" omitted - -# Unsupported target "derive-clone" with type "test" omitted - -# Unsupported target "derive-clone-generics" with type "test" omitted - -# Unsupported target "derive-debug" with type "test" omitted - -# Unsupported target "derive-debug-bounds" with type "test" omitted - -# Unsupported target "derive-debug-generics" with type "test" omitted - -# Unsupported target "derive-debug-packed" with type "test" omitted - -# Unsupported target "derive-debug-transparent" with type "test" omitted - -# Unsupported target "derive-default" with type "test" omitted - -# Unsupported target "derive-default-bounds" with type "test" omitted - -# Unsupported target "derive-eq" with type "test" omitted - -# Unsupported target "derive-eq-packed" with type "test" omitted - -# Unsupported target "derive-hash" with type "test" omitted - -# Unsupported target "derive-ord" with type "test" omitted - -# Unsupported target "derive-ord-packed" with type "test" omitted - -# Unsupported target "derive-partial-eq" with type "test" omitted - -# Unsupported target "derive-partial-eq-packed" with type "test" omitted - -# Unsupported target "issue-37-turbofish" with type "test" omitted - -# Unsupported target "issue-55" with type "test" omitted - -# Unsupported target "issue-57" with type "test" omitted - -# Unsupported target "issue-58" with type "test" omitted - -# Unsupported target "issue-67" with type "test" omitted - -# Unsupported target "issue-82" with type "test" omitted - -# Unsupported target "rustc-class-implement-traits" with type "test" omitted - -# Unsupported target "rustc-deriving-bounds" with type "test" omitted - -# Unsupported target "rustc-deriving-clone-array" with type "test" omitted - -# Unsupported target "rustc-deriving-clone-enum" with type "test" omitted - -# Unsupported target "rustc-deriving-clone-generic-enum" with type "test" omitted - -# Unsupported target "rustc-deriving-clone-generic-tuple-struct" with type "test" omitted - -# Unsupported target "rustc-deriving-clone-struct" with type "test" omitted - -# Unsupported target "rustc-deriving-clone-tuple-struct" with type "test" omitted - -# Unsupported target "rustc-deriving-cmp-generic-enum" with type "test" omitted - -# Unsupported target "rustc-deriving-cmp-generic-struct" with type "test" omitted - -# Unsupported target "rustc-deriving-cmp-generic-struct-enum" with type "test" omitted - -# Unsupported target "rustc-deriving-cmp-generic-tuple-struct" with type "test" omitted - -# Unsupported target "rustc-deriving-copyclone" with type "test" omitted - -# Unsupported target "rustc-deriving-default-box" with type "test" omitted - -# Unsupported target "rustc-deriving-enum-single-variant" with type "test" omitted - -# Unsupported target "rustc-deriving-hash" with type "test" omitted - -# Unsupported target "rustc-deriving-in-fn" with type "test" omitted - -# Unsupported target "rustc-deriving-meta" with type "test" omitted - -# Unsupported target "rustc-deriving-meta-multiple" with type "test" omitted - -# Unsupported target "rustc-deriving-show" with type "test" omitted - -# Unsupported target "rustc-deriving-show-2" with type "test" omitted - -# Unsupported target "rustc-deriving-via-extension-hash-enum" with type "test" omitted - -# Unsupported target "rustc-deriving-via-extension-hash-struct" with type "test" omitted - -# Unsupported target "rustc-deriving-via-extension-type-params" with type "test" omitted - -# Unsupported target "rustc-expr-copy" with type "test" omitted - -# Unsupported target "rustc-exterior" with type "test" omitted - -# Unsupported target "rustc-issue-12860" with type "test" omitted - -# Unsupported target "rustc-issue-13434" with type "test" omitted - -# Unsupported target "rustc-issue-16530" with type "test" omitted - -# Unsupported target "rustc-issue-19037" with type "test" omitted - -# Unsupported target "rustc-issue-19102" with type "test" omitted - -# Unsupported target "rustc-issue-19135" with type "test" omitted - -# Unsupported target "rustc-issue-19358" with type "test" omitted - -# Unsupported target "rustc-issue-21402" with type "test" omitted - -# Unsupported target "rustc-issue-23649-3" with type "test" omitted - -# Unsupported target "rustc-issue-24085" with type "test" omitted - -# Unsupported target "rustc-issue-25394" with type "test" omitted - -# Unsupported target "rustc-issue-28561" with type "test" omitted - -# Unsupported target "rustc-issue-29030" with type "test" omitted - -# Unsupported target "rustc-issue-29540" with type "test" omitted - -# Unsupported target "rustc-issue-29710" with type "test" omitted - -# Unsupported target "rustc-issue-32292" with type "test" omitted - -# Unsupported target "rustc-issue-3935" with type "test" omitted - -# Unsupported target "rustc-issue-42453" with type "test" omitted - -# Unsupported target "rustc-issue-58319" with type "test" omitted - -# Unsupported target "rustc-issue-6341" with type "test" omitted - -# Unsupported target "rustc-typeclasses-eq-example" with type "test" omitted - -# Unsupported target "rustc-zero-sized-btreemap-insert" with type "test" omitted diff --git a/cargo/remote/BUILD.derive_more-0.99.17.bazel b/cargo/remote/BUILD.derive_more-0.99.17.bazel index fb3683bcb..86c7f6c46 100644 --- a/cargo/remote/BUILD.derive_more-0.99.17.bazel +++ b/cargo/remote/BUILD.derive_more-0.99.17.bazel @@ -79,9 +79,9 @@ rust_proc_macro( # buildifier: leave-alone deps = [ "@raze__convert_case__0_4_0//:convert_case", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.digest-0.10.1.bazel b/cargo/remote/BUILD.digest-0.10.1.bazel new file mode 100644 index 000000000..ba911c784 --- /dev/null +++ b/cargo/remote/BUILD.digest-0.10.1.bazel @@ -0,0 +1,65 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "digest", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + "block-buffer", + "core-api", + "default", + "mac", + "std", + "subtle", + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=digest", + "manual", + ], + version = "0.10.1", + # buildifier: leave-alone + deps = [ + "@raze__block_buffer__0_10_0//:block_buffer", + "@raze__crypto_common__0_1_1//:crypto_common", + "@raze__generic_array__0_14_5//:generic_array", + "@raze__subtle__2_4_1//:subtle", + ], +) diff --git a/cargo/remote/BUILD.dirs-sys-next-0.1.2.bazel b/cargo/remote/BUILD.dirs-sys-next-0.1.2.bazel index dd26118b7..fbcd9dd24 100644 --- a/cargo/remote/BUILD.dirs-sys-next-0.1.2.bazel +++ b/cargo/remote/BUILD.dirs-sys-next-0.1.2.bazel @@ -62,7 +62,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.encoding_rs-0.8.29.bazel b/cargo/remote/BUILD.encoding_rs-0.8.30.bazel similarity index 93% rename from cargo/remote/BUILD.encoding_rs-0.8.29.bazel rename to cargo/remote/BUILD.encoding_rs-0.8.30.bazel index cd3b6c92a..be1b8d42a 100644 --- a/cargo/remote/BUILD.encoding_rs-0.8.29.bazel +++ b/cargo/remote/BUILD.encoding_rs-0.8.30.bazel @@ -26,7 +26,7 @@ package(default_visibility = [ ]) licenses([ - "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" + "restricted", # no license ]) # Generated Targets @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.8.29", + version = "0.8.30", visibility = ["//visibility:private"], deps = [ ], @@ -80,7 +80,7 @@ rust_library( "crate-name=encoding_rs", "manual", ], - version = "0.8.29", + version = "0.8.30", # buildifier: leave-alone deps = [ ":encoding_rs_build_script", diff --git a/cargo/remote/BUILD.fastrand-1.6.0.bazel b/cargo/remote/BUILD.fastrand-1.6.0.bazel new file mode 100644 index 000000000..0bba6848e --- /dev/null +++ b/cargo/remote/BUILD.fastrand-1.6.0.bazel @@ -0,0 +1,58 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +# Unsupported target "bench" with type "bench" omitted + +rust_library( + name = "fastrand", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=fastrand", + "manual", + ], + version = "1.6.0", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "smoke" with type "test" omitted diff --git a/cargo/remote/BUILD.fixedbitset-0.4.0.bazel b/cargo/remote/BUILD.fixedbitset-0.4.1.bazel similarity index 97% rename from cargo/remote/BUILD.fixedbitset-0.4.0.bazel rename to cargo/remote/BUILD.fixedbitset-0.4.1.bazel index f66ad03b1..7b2975456 100644 --- a/cargo/remote/BUILD.fixedbitset-0.4.0.bazel +++ b/cargo/remote/BUILD.fixedbitset-0.4.1.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=fixedbitset", "manual", ], - version = "0.4.0", + version = "0.4.1", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.flate2-1.0.22.bazel b/cargo/remote/BUILD.flate2-1.0.22.bazel index a1ad42c23..e8300fd28 100644 --- a/cargo/remote/BUILD.flate2-1.0.22.bazel +++ b/cargo/remote/BUILD.flate2-1.0.22.bazel @@ -99,7 +99,7 @@ rust_library( deps = [ "@raze__cfg_if__1_0_0//:cfg_if", "@raze__crc32fast__1_3_0//:crc32fast", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", "@raze__miniz_oxide__0_4_4//:miniz_oxide", ], ) diff --git a/cargo/remote/BUILD.fluent-bundle-0.15.2.bazel b/cargo/remote/BUILD.fluent-bundle-0.15.2.bazel index f00b57dbd..41a279cb2 100644 --- a/cargo/remote/BUILD.fluent-bundle-0.15.2.bazel +++ b/cargo/remote/BUILD.fluent-bundle-0.15.2.bazel @@ -61,7 +61,7 @@ rust_library( "@raze__intl_pluralrules__7_0_1//:intl_pluralrules", "@raze__rustc_hash__1_1_0//:rustc_hash", "@raze__self_cell__0_10_2//:self_cell", - "@raze__smallvec__1_7_0//:smallvec", + "@raze__smallvec__1_8_0//:smallvec", "@raze__unic_langid__0_9_0//:unic_langid", ], ) diff --git a/cargo/remote/BUILD.futures-0.3.18.bazel b/cargo/remote/BUILD.futures-0.3.19.bazel similarity index 91% rename from cargo/remote/BUILD.futures-0.3.18.bazel rename to cargo/remote/BUILD.futures-0.3.19.bazel index e3c7254e4..c34b900ea 100644 --- a/cargo/remote/BUILD.futures-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-0.3.19.bazel @@ -53,16 +53,16 @@ rust_library( "crate-name=futures", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ - "@raze__futures_channel__0_3_18//:futures_channel", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_executor__0_3_18//:futures_executor", - "@raze__futures_io__0_3_18//:futures_io", - "@raze__futures_sink__0_3_18//:futures_sink", - "@raze__futures_task__0_3_18//:futures_task", - "@raze__futures_util__0_3_18//:futures_util", + "@raze__futures_channel__0_3_19//:futures_channel", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_executor__0_3_19//:futures_executor", + "@raze__futures_io__0_3_19//:futures_io", + "@raze__futures_sink__0_3_19//:futures_sink", + "@raze__futures_task__0_3_19//:futures_task", + "@raze__futures_util__0_3_19//:futures_util", ], ) diff --git a/cargo/remote/BUILD.futures-channel-0.3.18.bazel b/cargo/remote/BUILD.futures-channel-0.3.19.bazel similarity index 93% rename from cargo/remote/BUILD.futures-channel-0.3.18.bazel rename to cargo/remote/BUILD.futures-channel-0.3.19.bazel index 0112540d8..87339119b 100644 --- a/cargo/remote/BUILD.futures-channel-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-channel-0.3.19.bazel @@ -59,7 +59,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.3.18", + version = "0.3.19", visibility = ["//visibility:private"], deps = [ ], @@ -88,12 +88,12 @@ rust_library( "crate-name=futures-channel", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ":futures_channel_build_script", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_sink__0_3_18//:futures_sink", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_sink__0_3_19//:futures_sink", ], ) diff --git a/cargo/remote/BUILD.futures-core-0.3.18.bazel b/cargo/remote/BUILD.futures-core-0.3.19.bazel similarity index 97% rename from cargo/remote/BUILD.futures-core-0.3.18.bazel rename to cargo/remote/BUILD.futures-core-0.3.19.bazel index 931f6469c..029243786 100644 --- a/cargo/remote/BUILD.futures-core-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-core-0.3.19.bazel @@ -57,7 +57,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.3.18", + version = "0.3.19", visibility = ["//visibility:private"], deps = [ ], @@ -82,7 +82,7 @@ rust_library( "crate-name=futures-core", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ":futures_core_build_script", diff --git a/cargo/remote/BUILD.futures-executor-0.3.18.bazel b/cargo/remote/BUILD.futures-executor-0.3.19.bazel similarity index 86% rename from cargo/remote/BUILD.futures-executor-0.3.18.bazel rename to cargo/remote/BUILD.futures-executor-0.3.19.bazel index 5efbbe95e..7476ef2fe 100644 --- a/cargo/remote/BUILD.futures-executor-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-executor-0.3.19.bazel @@ -50,12 +50,12 @@ rust_library( "crate-name=futures-executor", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_task__0_3_18//:futures_task", - "@raze__futures_util__0_3_18//:futures_util", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_task__0_3_19//:futures_task", + "@raze__futures_util__0_3_19//:futures_util", ], ) diff --git a/cargo/remote/BUILD.futures-io-0.3.18.bazel b/cargo/remote/BUILD.futures-io-0.3.19.bazel similarity index 97% rename from cargo/remote/BUILD.futures-io-0.3.18.bazel rename to cargo/remote/BUILD.futures-io-0.3.19.bazel index 71d0ebad2..8223b29e4 100644 --- a/cargo/remote/BUILD.futures-io-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-io-0.3.19.bazel @@ -48,7 +48,7 @@ rust_library( "crate-name=futures-io", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.futures-macro-0.3.18.bazel b/cargo/remote/BUILD.futures-macro-0.3.19.bazel similarity index 87% rename from cargo/remote/BUILD.futures-macro-0.3.18.bazel rename to cargo/remote/BUILD.futures-macro-0.3.19.bazel index 3790d21e3..e2131838b 100644 --- a/cargo/remote/BUILD.futures-macro-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-macro-0.3.19.bazel @@ -47,11 +47,11 @@ rust_proc_macro( "crate-name=futures-macro", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.futures-sink-0.3.18.bazel b/cargo/remote/BUILD.futures-sink-0.3.19.bazel similarity index 97% rename from cargo/remote/BUILD.futures-sink-0.3.18.bazel rename to cargo/remote/BUILD.futures-sink-0.3.19.bazel index 9a7853b1a..7b6fe776c 100644 --- a/cargo/remote/BUILD.futures-sink-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-sink-0.3.19.bazel @@ -50,7 +50,7 @@ rust_library( "crate-name=futures-sink", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.futures-task-0.3.18.bazel b/cargo/remote/BUILD.futures-task-0.3.19.bazel similarity index 97% rename from cargo/remote/BUILD.futures-task-0.3.18.bazel rename to cargo/remote/BUILD.futures-task-0.3.19.bazel index 06b2e1679..8bd680224 100644 --- a/cargo/remote/BUILD.futures-task-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-task-0.3.19.bazel @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.3.18", + version = "0.3.19", visibility = ["//visibility:private"], deps = [ ], @@ -80,7 +80,7 @@ rust_library( "crate-name=futures-task", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ":futures_task_build_script", diff --git a/cargo/remote/BUILD.futures-util-0.3.18.bazel b/cargo/remote/BUILD.futures-util-0.3.19.bazel similarity index 84% rename from cargo/remote/BUILD.futures-util-0.3.18.bazel rename to cargo/remote/BUILD.futures-util-0.3.19.bazel index 54adab9c3..4369bad86 100644 --- a/cargo/remote/BUILD.futures-util-0.3.18.bazel +++ b/cargo/remote/BUILD.futures-util-0.3.19.bazel @@ -68,7 +68,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.3.18", + version = "0.3.19", visibility = ["//visibility:private"], deps = [ ], @@ -99,7 +99,7 @@ rust_library( data = [], edition = "2018", proc_macro_deps = [ - "@raze__futures_macro__0_3_18//:futures_macro", + "@raze__futures_macro__0_3_19//:futures_macro", ], rustc_flags = [ "--cap-lints=allow", @@ -109,17 +109,17 @@ rust_library( "crate-name=futures-util", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ":futures_util_build_script", - "@raze__futures_channel__0_3_18//:futures_channel", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_io__0_3_18//:futures_io", - "@raze__futures_sink__0_3_18//:futures_sink", - "@raze__futures_task__0_3_18//:futures_task", + "@raze__futures_channel__0_3_19//:futures_channel", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_io__0_3_19//:futures_io", + "@raze__futures_sink__0_3_19//:futures_sink", + "@raze__futures_task__0_3_19//:futures_task", "@raze__memchr__2_4_1//:memchr", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", "@raze__pin_utils__0_1_0//:pin_utils", "@raze__slab__0_4_5//:slab", ], diff --git a/cargo/remote/BUILD.generic-array-0.14.4.bazel b/cargo/remote/BUILD.generic-array-0.14.5.bazel similarity index 93% rename from cargo/remote/BUILD.generic-array-0.14.4.bazel rename to cargo/remote/BUILD.generic-array-0.14.5.bazel index 72f334550..3c55a0a2a 100644 --- a/cargo/remote/BUILD.generic-array-0.14.4.bazel +++ b/cargo/remote/BUILD.generic-array-0.14.5.bazel @@ -54,10 +54,10 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.14.4", + version = "0.14.5", visibility = ["//visibility:private"], deps = [ - "@raze__version_check__0_9_3//:version_check", + "@raze__version_check__0_9_4//:version_check", ], ) @@ -77,11 +77,11 @@ rust_library( "crate-name=generic_array", "manual", ], - version = "0.14.4", + version = "0.14.5", # buildifier: leave-alone deps = [ ":generic_array_build_script", - "@raze__typenum__1_14_0//:typenum", + "@raze__typenum__1_15_0//:typenum", ], ) diff --git a/cargo/remote/BUILD.getrandom-0.1.16.bazel b/cargo/remote/BUILD.getrandom-0.1.16.bazel index 1a6d9711a..5a5403dfe 100644 --- a/cargo/remote/BUILD.getrandom-0.1.16.bazel +++ b/cargo/remote/BUILD.getrandom-0.1.16.bazel @@ -109,7 +109,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }), diff --git a/cargo/remote/BUILD.getrandom-0.2.3.bazel b/cargo/remote/BUILD.getrandom-0.2.4.bazel similarity index 96% rename from cargo/remote/BUILD.getrandom-0.2.3.bazel rename to cargo/remote/BUILD.getrandom-0.2.4.bazel index c1eb5c4c9..550c5769b 100644 --- a/cargo/remote/BUILD.getrandom-0.2.3.bazel +++ b/cargo/remote/BUILD.getrandom-0.2.4.bazel @@ -52,7 +52,7 @@ rust_library( "crate-name=getrandom", "manual", ], - version = "0.2.3", + version = "0.2.4", # buildifier: leave-alone deps = [ "@raze__cfg_if__1_0_0//:cfg_if", @@ -66,7 +66,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }), diff --git a/cargo/remote/BUILD.h2-0.3.7.bazel b/cargo/remote/BUILD.h2-0.3.10.bazel similarity index 81% rename from cargo/remote/BUILD.h2-0.3.7.bazel rename to cargo/remote/BUILD.h2-0.3.10.bazel index 5d7909cec..447e86fcc 100644 --- a/cargo/remote/BUILD.h2-0.3.7.bazel +++ b/cargo/remote/BUILD.h2-0.3.10.bazel @@ -53,18 +53,18 @@ rust_library( "crate-name=h2", "manual", ], - version = "0.3.7", + version = "0.3.10", # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", "@raze__fnv__1_0_7//:fnv", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_sink__0_3_18//:futures_sink", - "@raze__futures_util__0_3_18//:futures_util", - "@raze__http__0_2_5//:http", - "@raze__indexmap__1_7_0//:indexmap", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_sink__0_3_19//:futures_sink", + "@raze__futures_util__0_3_19//:futures_util", + "@raze__http__0_2_6//:http", + "@raze__indexmap__1_8_0//:indexmap", "@raze__slab__0_4_5//:slab", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_util__0_6_9//:tokio_util", "@raze__tracing__0_1_29//:tracing", ], diff --git a/cargo/remote/BUILD.hermit-abi-0.1.19.bazel b/cargo/remote/BUILD.hermit-abi-0.1.19.bazel index 9969abb94..9b7a79623 100644 --- a/cargo/remote/BUILD.hermit-abi-0.1.19.bazel +++ b/cargo/remote/BUILD.hermit-abi-0.1.19.bazel @@ -51,6 +51,6 @@ rust_library( version = "0.1.19", # buildifier: leave-alone deps = [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], ) diff --git a/cargo/remote/BUILD.html5ever-0.25.1.bazel b/cargo/remote/BUILD.html5ever-0.25.1.bazel index 7113ce263..92e52d116 100644 --- a/cargo/remote/BUILD.html5ever-0.25.1.bazel +++ b/cargo/remote/BUILD.html5ever-0.25.1.bazel @@ -57,9 +57,9 @@ cargo_build_script( version = "0.25.1", visibility = ["//visibility:private"], deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.http-0.2.5.bazel b/cargo/remote/BUILD.http-0.2.6.bazel similarity index 96% rename from cargo/remote/BUILD.http-0.2.5.bazel rename to cargo/remote/BUILD.http-0.2.6.bazel index 575275f43..f1d7bb659 100644 --- a/cargo/remote/BUILD.http-0.2.5.bazel +++ b/cargo/remote/BUILD.http-0.2.6.bazel @@ -57,12 +57,12 @@ rust_library( "crate-name=http", "manual", ], - version = "0.2.5", + version = "0.2.6", # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", "@raze__fnv__1_0_7//:fnv", - "@raze__itoa__0_4_8//:itoa", + "@raze__itoa__1_0_1//:itoa", ], ) diff --git a/cargo/remote/BUILD.http-body-0.4.4.bazel b/cargo/remote/BUILD.http-body-0.4.4.bazel index 0d78e0465..7d6a34d2e 100644 --- a/cargo/remote/BUILD.http-body-0.4.4.bazel +++ b/cargo/remote/BUILD.http-body-0.4.4.bazel @@ -51,8 +51,8 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__http__0_2_5//:http", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__http__0_2_6//:http", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", ], ) diff --git a/cargo/remote/BUILD.hyper-0.14.15.bazel b/cargo/remote/BUILD.hyper-0.14.16.bazel similarity index 89% rename from cargo/remote/BUILD.hyper-0.14.15.bazel rename to cargo/remote/BUILD.hyper-0.14.16.bazel index 46c3693ff..f21577f5e 100644 --- a/cargo/remote/BUILD.hyper-0.14.15.bazel +++ b/cargo/remote/BUILD.hyper-0.14.16.bazel @@ -99,22 +99,22 @@ rust_library( "crate-name=hyper", "manual", ], - version = "0.14.15", + version = "0.14.16", # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__futures_channel__0_3_18//:futures_channel", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_util__0_3_18//:futures_util", - "@raze__h2__0_3_7//:h2", - "@raze__http__0_2_5//:http", + "@raze__futures_channel__0_3_19//:futures_channel", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_util__0_3_19//:futures_util", + "@raze__h2__0_3_10//:h2", + "@raze__http__0_2_6//:http", "@raze__http_body__0_4_4//:http_body", "@raze__httparse__1_5_1//:httparse", "@raze__httpdate__1_0_2//:httpdate", "@raze__itoa__0_4_8//:itoa", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", "@raze__socket2__0_4_2//:socket2", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__tower_service__0_3_1//:tower_service", "@raze__tracing__0_1_29//:tracing", "@raze__want__0_3_0//:want", diff --git a/cargo/remote/BUILD.hyper-rustls-0.22.1.bazel b/cargo/remote/BUILD.hyper-rustls-0.22.1.bazel index f761b599a..2738a96e4 100644 --- a/cargo/remote/BUILD.hyper-rustls-0.22.1.bazel +++ b/cargo/remote/BUILD.hyper-rustls-0.22.1.bazel @@ -54,11 +54,11 @@ rust_library( version = "0.22.1", # buildifier: leave-alone deps = [ - "@raze__futures_util__0_3_18//:futures_util", - "@raze__hyper__0_14_15//:hyper", + "@raze__futures_util__0_3_19//:futures_util", + "@raze__hyper__0_14_16//:hyper", "@raze__log__0_4_14//:log", "@raze__rustls__0_19_1//:rustls", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_rustls__0_22_0//:tokio_rustls", "@raze__webpki__0_21_4//:webpki", ], diff --git a/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel b/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel index 6c4c2103d..19a358102 100644 --- a/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel +++ b/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel @@ -52,9 +52,9 @@ rust_library( version = "0.4.1", # buildifier: leave-alone deps = [ - "@raze__hyper__0_14_15//:hyper", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", - "@raze__tokio__1_14_0//:tokio", + "@raze__hyper__0_14_16//:hyper", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_io_timeout__1_1_1//:tokio_io_timeout", ], ) diff --git a/cargo/remote/BUILD.hyper-tls-0.5.0.bazel b/cargo/remote/BUILD.hyper-tls-0.5.0.bazel index fe9653824..58507ae49 100644 --- a/cargo/remote/BUILD.hyper-tls-0.5.0.bazel +++ b/cargo/remote/BUILD.hyper-tls-0.5.0.bazel @@ -53,9 +53,9 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__hyper__0_14_15//:hyper", + "@raze__hyper__0_14_16//:hyper", "@raze__native_tls__0_2_8//:native_tls", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_native_tls__0_3_0//:tokio_native_tls", ], ) diff --git a/cargo/remote/BUILD.indexmap-1.7.0.bazel b/cargo/remote/BUILD.indexmap-1.8.0.bazel similarity index 97% rename from cargo/remote/BUILD.indexmap-1.7.0.bazel rename to cargo/remote/BUILD.indexmap-1.8.0.bazel index 48b300426..10d044460 100644 --- a/cargo/remote/BUILD.indexmap-1.7.0.bazel +++ b/cargo/remote/BUILD.indexmap-1.8.0.bazel @@ -55,7 +55,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.7.0", + version = "1.8.0", visibility = ["//visibility:private"], deps = [ "@raze__autocfg__1_0_1//:autocfg", @@ -83,7 +83,7 @@ rust_library( "crate-name=indexmap", "manual", ], - version = "1.7.0", + version = "1.8.0", # buildifier: leave-alone deps = [ ":indexmap_build_script", diff --git a/cargo/remote/BUILD.indoc-impl-0.3.6.bazel b/cargo/remote/BUILD.indoc-impl-0.3.6.bazel index 9496c821b..391107419 100644 --- a/cargo/remote/BUILD.indoc-impl-0.3.6.bazel +++ b/cargo/remote/BUILD.indoc-impl-0.3.6.bazel @@ -53,9 +53,9 @@ rust_proc_macro( version = "0.3.6", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", "@raze__unindent__0_1_7//:unindent", ], ) diff --git a/cargo/remote/BUILD.itertools-0.10.1.bazel b/cargo/remote/BUILD.itertools-0.10.3.bazel similarity index 96% rename from cargo/remote/BUILD.itertools-0.10.1.bazel rename to cargo/remote/BUILD.itertools-0.10.3.bazel index 3c15536cd..061670af0 100644 --- a/cargo/remote/BUILD.itertools-0.10.1.bazel +++ b/cargo/remote/BUILD.itertools-0.10.3.bazel @@ -68,7 +68,7 @@ rust_library( "crate-name=itertools", "manual", ], - version = "0.10.1", + version = "0.10.3", # buildifier: leave-alone deps = [ "@raze__either__1_6_1//:either", @@ -79,8 +79,6 @@ rust_library( # Unsupported target "flatten_ok" with type "test" omitted -# Unsupported target "fold_specialization" with type "test" omitted - # Unsupported target "macros_hygiene" with type "test" omitted # Unsupported target "merge_join" with type "test" omitted diff --git a/cargo/remote/BUILD.itoa-1.0.1.bazel b/cargo/remote/BUILD.itoa-1.0.1.bazel new file mode 100644 index 000000000..b1ca090c1 --- /dev/null +++ b/cargo/remote/BUILD.itoa-1.0.1.bazel @@ -0,0 +1,58 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "bench" with type "bench" omitted + +rust_library( + name = "itoa", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=itoa", + "manual", + ], + version = "1.0.1", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "test" with type "test" omitted diff --git a/cargo/remote/BUILD.libc-0.2.108.bazel b/cargo/remote/BUILD.libc-0.2.112.bazel similarity index 97% rename from cargo/remote/BUILD.libc-0.2.108.bazel rename to cargo/remote/BUILD.libc-0.2.112.bazel index 03db74a7b..52e47ca4e 100644 --- a/cargo/remote/BUILD.libc-0.2.108.bazel +++ b/cargo/remote/BUILD.libc-0.2.112.bazel @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.2.108", + version = "0.2.112", visibility = ["//visibility:private"], deps = [ ], @@ -80,7 +80,7 @@ rust_library( "crate-name=libc", "manual", ], - version = "0.2.108", + version = "0.2.112", # buildifier: leave-alone deps = [ ":libc_build_script", diff --git a/cargo/remote/BUILD.libsqlite3-sys-0.23.1.bazel b/cargo/remote/BUILD.libsqlite3-sys-0.23.2.bazel similarity index 95% rename from cargo/remote/BUILD.libsqlite3-sys-0.23.1.bazel rename to cargo/remote/BUILD.libsqlite3-sys-0.23.2.bazel index 02f119ba2..9d89d9d48 100644 --- a/cargo/remote/BUILD.libsqlite3-sys-0.23.1.bazel +++ b/cargo/remote/BUILD.libsqlite3-sys-0.23.2.bazel @@ -64,11 +64,11 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.23.1", + version = "0.23.2", visibility = ["//visibility:private"], deps = [ "@raze__cc__1_0_72//:cc", - "@raze__pkg_config__0_3_22//:pkg_config", + "@raze__pkg_config__0_3_24//:pkg_config", "@raze__vcpkg__0_2_15//:vcpkg", ], ) @@ -98,7 +98,7 @@ rust_library( "crate-name=libsqlite3-sys", "manual", ], - version = "0.23.1", + version = "0.23.2", # buildifier: leave-alone deps = [ ":libsqlite3_sys_build_script", diff --git a/cargo/remote/BUILD.linkcheck-0.4.1-alpha.0.bazel b/cargo/remote/BUILD.linkcheck-0.4.1-alpha.0.bazel index a876856fe..ab952a71a 100644 --- a/cargo/remote/BUILD.linkcheck-0.4.1-alpha.0.bazel +++ b/cargo/remote/BUILD.linkcheck-0.4.1-alpha.0.bazel @@ -56,8 +56,8 @@ rust_library( "@raze__bytes__1_1_0//:bytes", "@raze__codespan__0_11_1//:codespan", "@raze__dunce__1_0_2//:dunce", - "@raze__futures__0_3_18//:futures", - "@raze__http__0_2_5//:http", + "@raze__futures__0_3_19//:futures", + "@raze__http__0_2_6//:http", "@raze__kuchiki__0_8_1//:kuchiki", "@raze__lazy_static__1_4_0//:lazy_static", "@raze__linkify__0_5_0//:linkify", @@ -65,7 +65,7 @@ rust_library( "@raze__pulldown_cmark__0_8_0//:pulldown_cmark", "@raze__regex__1_5_4//:regex", "@raze__reqwest__0_11_3//:reqwest", - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", "@raze__thiserror__1_0_30//:thiserror", "@raze__url__2_2_2//:url", ], diff --git a/cargo/remote/BUILD.mio-0.7.14.bazel b/cargo/remote/BUILD.mio-0.7.14.bazel index 84c2ef78b..43634cb56 100644 --- a/cargo/remote/BUILD.mio-0.7.14.bazel +++ b/cargo/remote/BUILD.mio-0.7.14.bazel @@ -75,7 +75,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.native-tls-0.2.8.bazel b/cargo/remote/BUILD.native-tls-0.2.8.bazel index 9524ed8f0..6fde72601 100644 --- a/cargo/remote/BUILD.native-tls-0.2.8.bazel +++ b/cargo/remote/BUILD.native-tls-0.2.8.bazel @@ -74,7 +74,7 @@ cargo_build_script( "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", ): [ - "@raze__openssl_sys__0_9_71//:openssl_sys", + "@raze__openssl_sys__0_9_72//:openssl_sys", ], "//conditions:default": [], }) + selects.with_or({ @@ -122,10 +122,10 @@ rust_library( "@rules_rust//rust/platform:x86_64-apple-ios", ): [ "@raze__lazy_static__1_4_0//:lazy_static", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", "@raze__security_framework__2_4_2//:security_framework", "@raze__security_framework_sys__2_4_2//:security_framework_sys", - "@raze__tempfile__3_2_0//:tempfile", + "@raze__tempfile__3_3_0//:tempfile", ], "//conditions:default": [], }) + selects.with_or({ @@ -136,8 +136,8 @@ rust_library( ): [ "@raze__log__0_4_14//:log", "@raze__openssl__0_10_38//:openssl", - "@raze__openssl_probe__0_1_4//:openssl_probe", - "@raze__openssl_sys__0_9_71//:openssl_sys", + "@raze__openssl_probe__0_1_5//:openssl_probe", + "@raze__openssl_sys__0_9_72//:openssl_sys", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.nom-7.1.0.bazel b/cargo/remote/BUILD.nom-7.1.0.bazel index 237519e4c..d4fd66d18 100644 --- a/cargo/remote/BUILD.nom-7.1.0.bazel +++ b/cargo/remote/BUILD.nom-7.1.0.bazel @@ -60,7 +60,7 @@ cargo_build_script( version = "7.1.0", visibility = ["//visibility:private"], deps = [ - "@raze__version_check__0_9_3//:version_check", + "@raze__version_check__0_9_4//:version_check", ], ) diff --git a/cargo/remote/BUILD.num_cpus-1.13.0.bazel b/cargo/remote/BUILD.num_cpus-1.13.1.bazel similarity index 64% rename from cargo/remote/BUILD.num_cpus-1.13.0.bazel rename to cargo/remote/BUILD.num_cpus-1.13.1.bazel index 727431142..2095a1a70 100644 --- a/cargo/remote/BUILD.num_cpus-1.13.0.bazel +++ b/cargo/remote/BUILD.num_cpus-1.13.1.bazel @@ -36,6 +36,8 @@ licenses([ rust_library( name = "num_cpus", srcs = glob(["**/*.rs"]), + aliases = { + }, crate_features = [ ], crate_root = "src/lib.rs", @@ -49,9 +51,21 @@ rust_library( "crate-name=num_cpus", "manual", ], - version = "1.13.0", + version = "1.13.1", # buildifier: leave-alone deps = [ - "@raze__libc__0_2_108//:libc", - ], + ] + selects.with_or({ + # cfg(not(windows)) + ( + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-ios", + ): [ + "@raze__libc__0_2_112//:libc", + ], + "//conditions:default": [], + }), ) diff --git a/cargo/remote/BUILD.num_enum-0.5.4.bazel b/cargo/remote/BUILD.num_enum-0.5.6.bazel similarity index 88% rename from cargo/remote/BUILD.num_enum-0.5.4.bazel rename to cargo/remote/BUILD.num_enum-0.5.6.bazel index c1bc152ea..ab41a43ca 100644 --- a/cargo/remote/BUILD.num_enum-0.5.4.bazel +++ b/cargo/remote/BUILD.num_enum-0.5.6.bazel @@ -26,7 +26,7 @@ package(default_visibility = [ ]) licenses([ - "notice", # BSD-3-Clause from expression "BSD-3-Clause" + "notice", # BSD-3-Clause from expression "BSD-3-Clause OR (MIT OR Apache-2.0)" ]) # Generated Targets @@ -42,8 +42,7 @@ rust_library( data = [], edition = "2018", proc_macro_deps = [ - "@raze__derivative__2_2_0//:derivative", - "@raze__num_enum_derive__0_5_4//:num_enum_derive", + "@raze__num_enum_derive__0_5_6//:num_enum_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -53,7 +52,7 @@ rust_library( "crate-name=num_enum", "manual", ], - version = "0.5.4", + version = "0.5.6", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.num_enum_derive-0.5.4.bazel b/cargo/remote/BUILD.num_enum_derive-0.5.6.bazel similarity index 82% rename from cargo/remote/BUILD.num_enum_derive-0.5.4.bazel rename to cargo/remote/BUILD.num_enum_derive-0.5.6.bazel index 1384a947a..63d9ddfed 100644 --- a/cargo/remote/BUILD.num_enum_derive-0.5.4.bazel +++ b/cargo/remote/BUILD.num_enum_derive-0.5.6.bazel @@ -26,7 +26,7 @@ package(default_visibility = [ ]) licenses([ - "notice", # BSD-3-Clause from expression "BSD-3-Clause" + "notice", # BSD-3-Clause from expression "BSD-3-Clause OR (MIT OR Apache-2.0)" ]) # Generated Targets @@ -49,12 +49,12 @@ rust_proc_macro( "crate-name=num_enum_derive", "manual", ], - version = "0.5.4", + version = "0.5.6", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", + "@raze__proc_macro2__1_0_36//:proc_macro2", "@raze__proc_macro_crate__1_1_0//:proc_macro_crate", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.once_cell-1.8.0.bazel b/cargo/remote/BUILD.once_cell-1.9.0.bazel similarity index 98% rename from cargo/remote/BUILD.once_cell-1.8.0.bazel rename to cargo/remote/BUILD.once_cell-1.9.0.bazel index 52b9dccfc..a3269185a 100644 --- a/cargo/remote/BUILD.once_cell-1.8.0.bazel +++ b/cargo/remote/BUILD.once_cell-1.9.0.bazel @@ -65,7 +65,7 @@ rust_library( "crate-name=once_cell", "manual", ], - version = "1.8.0", + version = "1.9.0", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.openssl-0.10.38.bazel b/cargo/remote/BUILD.openssl-0.10.38.bazel index f0f1dd363..c49071a95 100644 --- a/cargo/remote/BUILD.openssl-0.10.38.bazel +++ b/cargo/remote/BUILD.openssl-0.10.38.bazel @@ -57,7 +57,7 @@ cargo_build_script( version = "0.10.38", visibility = ["//visibility:private"], deps = [ - "@raze__openssl_sys__0_9_71//:openssl_sys", + "@raze__openssl_sys__0_9_72//:openssl_sys", ], ) @@ -67,7 +67,7 @@ rust_library( name = "openssl", srcs = glob(["**/*.rs"]), aliases = { - "@raze__openssl_sys__0_9_71//:openssl_sys": "ffi", + "@raze__openssl_sys__0_9_72//:openssl_sys": "ffi", }, crate_features = [ ], @@ -89,8 +89,8 @@ rust_library( "@raze__bitflags__1_3_2//:bitflags", "@raze__cfg_if__1_0_0//:cfg_if", "@raze__foreign_types__0_3_2//:foreign_types", - "@raze__libc__0_2_108//:libc", - "@raze__once_cell__1_8_0//:once_cell", - "@raze__openssl_sys__0_9_71//:openssl_sys", + "@raze__libc__0_2_112//:libc", + "@raze__once_cell__1_9_0//:once_cell", + "@raze__openssl_sys__0_9_72//:openssl_sys", ], ) diff --git a/cargo/remote/BUILD.openssl-probe-0.1.4.bazel b/cargo/remote/BUILD.openssl-probe-0.1.5.bazel similarity index 92% rename from cargo/remote/BUILD.openssl-probe-0.1.4.bazel rename to cargo/remote/BUILD.openssl-probe-0.1.5.bazel index f7e0bc9f2..c26bbdf04 100644 --- a/cargo/remote/BUILD.openssl-probe-0.1.4.bazel +++ b/cargo/remote/BUILD.openssl-probe-0.1.5.bazel @@ -31,6 +31,8 @@ licenses([ # Generated Targets +# Unsupported target "probe" with type "example" omitted + rust_library( name = "openssl_probe", srcs = glob(["**/*.rs"]), @@ -47,7 +49,7 @@ rust_library( "crate-name=openssl-probe", "manual", ], - version = "0.1.4", + version = "0.1.5", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.openssl-sys-0.9.71.bazel b/cargo/remote/BUILD.openssl-sys-0.9.72.bazel similarity index 94% rename from cargo/remote/BUILD.openssl-sys-0.9.71.bazel rename to cargo/remote/BUILD.openssl-sys-0.9.72.bazel index 4886bd5db..e9b376f63 100644 --- a/cargo/remote/BUILD.openssl-sys-0.9.71.bazel +++ b/cargo/remote/BUILD.openssl-sys-0.9.72.bazel @@ -55,12 +55,12 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.9.71", + version = "0.9.72", visibility = ["//visibility:private"], deps = [ "@raze__autocfg__1_0_1//:autocfg", "@raze__cc__1_0_72//:cc", - "@raze__pkg_config__0_3_22//:pkg_config", + "@raze__pkg_config__0_3_24//:pkg_config", ] + selects.with_or({ # cfg(target_env = "msvc") ( @@ -90,11 +90,11 @@ rust_library( "crate-name=openssl-sys", "manual", ], - version = "0.9.71", + version = "0.9.72", # buildifier: leave-alone deps = [ ":openssl_sys_build_script", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ] + selects.with_or({ # cfg(target_env = "msvc") ( diff --git a/cargo/remote/BUILD.parking_lot_core-0.8.5.bazel b/cargo/remote/BUILD.parking_lot_core-0.8.5.bazel index c7d632b29..fbe6061b4 100644 --- a/cargo/remote/BUILD.parking_lot_core-0.8.5.bazel +++ b/cargo/remote/BUILD.parking_lot_core-0.8.5.bazel @@ -103,7 +103,7 @@ rust_library( ":parking_lot_core_build_script", "@raze__cfg_if__1_0_0//:cfg_if", "@raze__instant__0_1_12//:instant", - "@raze__smallvec__1_7_0//:smallvec", + "@raze__smallvec__1_8_0//:smallvec", ] + selects.with_or({ # cfg(unix) ( @@ -114,7 +114,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.petgraph-0.6.0.bazel b/cargo/remote/BUILD.petgraph-0.6.0.bazel index ecf6a51a0..f2582442d 100644 --- a/cargo/remote/BUILD.petgraph-0.6.0.bazel +++ b/cargo/remote/BUILD.petgraph-0.6.0.bazel @@ -74,8 +74,8 @@ rust_library( version = "0.6.0", # buildifier: leave-alone deps = [ - "@raze__fixedbitset__0_4_0//:fixedbitset", - "@raze__indexmap__1_7_0//:indexmap", + "@raze__fixedbitset__0_4_1//:fixedbitset", + "@raze__indexmap__1_8_0//:indexmap", ], ) diff --git a/cargo/remote/BUILD.phf-0.10.0.bazel b/cargo/remote/BUILD.phf-0.10.1.bazel similarity index 98% rename from cargo/remote/BUILD.phf-0.10.0.bazel rename to cargo/remote/BUILD.phf-0.10.1.bazel index 693c9fc99..027ac8a95 100644 --- a/cargo/remote/BUILD.phf-0.10.0.bazel +++ b/cargo/remote/BUILD.phf-0.10.1.bazel @@ -56,7 +56,7 @@ rust_library( "crate-name=phf", "manual", ], - version = "0.10.0", + version = "0.10.1", # buildifier: leave-alone deps = [ "@raze__phf_shared__0_10_0//:phf_shared", diff --git a/cargo/remote/BUILD.phf_macros-0.10.0.bazel b/cargo/remote/BUILD.phf_macros-0.10.0.bazel index 6e1a7cfe8..eddb882d7 100644 --- a/cargo/remote/BUILD.phf_macros-0.10.0.bazel +++ b/cargo/remote/BUILD.phf_macros-0.10.0.bazel @@ -55,8 +55,8 @@ rust_proc_macro( deps = [ "@raze__phf_generator__0_10_0//:phf_generator", "@raze__phf_shared__0_10_0//:phf_shared", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.phf_macros-0.8.0.bazel b/cargo/remote/BUILD.phf_macros-0.8.0.bazel index 3da8c0c11..a6b52fca5 100644 --- a/cargo/remote/BUILD.phf_macros-0.8.0.bazel +++ b/cargo/remote/BUILD.phf_macros-0.8.0.bazel @@ -57,9 +57,9 @@ rust_proc_macro( deps = [ "@raze__phf_generator__0_8_0//:phf_generator", "@raze__phf_shared__0_8_0//:phf_shared", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.pin-project-1.0.8.bazel b/cargo/remote/BUILD.pin-project-1.0.10.bazel similarity index 96% rename from cargo/remote/BUILD.pin-project-1.0.8.bazel rename to cargo/remote/BUILD.pin-project-1.0.10.bazel index 1c2fe7a23..cf6a7b614 100644 --- a/cargo/remote/BUILD.pin-project-1.0.8.bazel +++ b/cargo/remote/BUILD.pin-project-1.0.10.bazel @@ -64,7 +64,7 @@ rust_library( data = [], edition = "2018", proc_macro_deps = [ - "@raze__pin_project_internal__1_0_8//:pin_project_internal", + "@raze__pin_project_internal__1_0_10//:pin_project_internal", ], rustc_flags = [ "--cap-lints=allow", @@ -74,7 +74,7 @@ rust_library( "crate-name=pin-project", "manual", ], - version = "1.0.8", + version = "1.0.10", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.pin-project-internal-1.0.8.bazel b/cargo/remote/BUILD.pin-project-internal-1.0.10.bazel similarity index 87% rename from cargo/remote/BUILD.pin-project-internal-1.0.8.bazel rename to cargo/remote/BUILD.pin-project-internal-1.0.10.bazel index 8ee06b12e..b376b7e29 100644 --- a/cargo/remote/BUILD.pin-project-internal-1.0.8.bazel +++ b/cargo/remote/BUILD.pin-project-internal-1.0.10.bazel @@ -47,11 +47,11 @@ rust_proc_macro( "crate-name=pin-project-internal", "manual", ], - version = "1.0.8", + version = "1.0.10", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel b/cargo/remote/BUILD.pin-project-lite-0.2.8.bazel similarity index 98% rename from cargo/remote/BUILD.pin-project-lite-0.2.7.bazel rename to cargo/remote/BUILD.pin-project-lite-0.2.8.bazel index 6b2657b04..7695bcdf2 100644 --- a/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel +++ b/cargo/remote/BUILD.pin-project-lite-0.2.8.bazel @@ -47,7 +47,7 @@ rust_library( "crate-name=pin-project-lite", "manual", ], - version = "0.2.7", + version = "0.2.8", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.pkg-config-0.3.22.bazel b/cargo/remote/BUILD.pkg-config-0.3.24.bazel similarity index 97% rename from cargo/remote/BUILD.pkg-config-0.3.22.bazel rename to cargo/remote/BUILD.pkg-config-0.3.24.bazel index 9662fdf64..e6812758b 100644 --- a/cargo/remote/BUILD.pkg-config-0.3.22.bazel +++ b/cargo/remote/BUILD.pkg-config-0.3.24.bazel @@ -47,7 +47,7 @@ rust_library( "crate-name=pkg-config", "manual", ], - version = "0.3.22", + version = "0.3.24", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.ppv-lite86-0.2.15.bazel b/cargo/remote/BUILD.ppv-lite86-0.2.16.bazel similarity index 97% rename from cargo/remote/BUILD.ppv-lite86-0.2.15.bazel rename to cargo/remote/BUILD.ppv-lite86-0.2.16.bazel index f5e709b78..aaada0e58 100644 --- a/cargo/remote/BUILD.ppv-lite86-0.2.15.bazel +++ b/cargo/remote/BUILD.ppv-lite86-0.2.16.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=ppv-lite86", "manual", ], - version = "0.2.15", + version = "0.2.16", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.proc-macro2-1.0.32.bazel b/cargo/remote/BUILD.proc-macro2-1.0.36.bazel similarity index 97% rename from cargo/remote/BUILD.proc-macro2-1.0.32.bazel rename to cargo/remote/BUILD.proc-macro2-1.0.36.bazel index 4c571eaec..a4e475fb1 100644 --- a/cargo/remote/BUILD.proc-macro2-1.0.32.bazel +++ b/cargo/remote/BUILD.proc-macro2-1.0.36.bazel @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.32", + version = "1.0.36", visibility = ["//visibility:private"], deps = [ ], @@ -80,7 +80,7 @@ rust_library( "crate-name=proc-macro2", "manual", ], - version = "1.0.32", + version = "1.0.36", # buildifier: leave-alone deps = [ ":proc_macro2_build_script", diff --git a/cargo/remote/BUILD.prost-build-0.9.0.bazel b/cargo/remote/BUILD.prost-build-0.9.0.bazel index 7f0c7c48f..7aad12d70 100644 --- a/cargo/remote/BUILD.prost-build-0.9.0.bazel +++ b/cargo/remote/BUILD.prost-build-0.9.0.bazel @@ -83,7 +83,7 @@ rust_library( ":prost_build_build_script", "@raze__bytes__1_1_0//:bytes", "@raze__heck__0_3_3//:heck", - "@raze__itertools__0_10_1//:itertools", + "@raze__itertools__0_10_3//:itertools", "@raze__lazy_static__1_4_0//:lazy_static", "@raze__log__0_4_14//:log", "@raze__multimap__0_8_3//:multimap", @@ -91,6 +91,6 @@ rust_library( "@raze__prost__0_9_0//:prost", "@raze__prost_types__0_9_0//:prost_types", "@raze__regex__1_5_4//:regex", - "@raze__tempfile__3_2_0//:tempfile", + "@raze__tempfile__3_3_0//:tempfile", ], ) diff --git a/cargo/remote/BUILD.prost-derive-0.9.0.bazel b/cargo/remote/BUILD.prost-derive-0.9.0.bazel index 84fd81d5f..27423f345 100644 --- a/cargo/remote/BUILD.prost-derive-0.9.0.bazel +++ b/cargo/remote/BUILD.prost-derive-0.9.0.bazel @@ -50,10 +50,10 @@ rust_proc_macro( version = "0.9.0", # buildifier: leave-alone deps = [ - "@raze__anyhow__1_0_51//:anyhow", - "@raze__itertools__0_10_1//:itertools", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__anyhow__1_0_52//:anyhow", + "@raze__itertools__0_10_3//:itertools", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.pyo3-0.15.1.bazel b/cargo/remote/BUILD.pyo3-0.15.1.bazel index e3f9982ca..5b8c4d8f1 100644 --- a/cargo/remote/BUILD.pyo3-0.15.1.bazel +++ b/cargo/remote/BUILD.pyo3-0.15.1.bazel @@ -126,7 +126,7 @@ rust_library( ":pyo3_build_script", "@raze__cfg_if__1_0_0//:cfg_if", "@raze__indoc__0_3_6//:indoc", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", "@raze__parking_lot__0_11_2//:parking_lot", "@raze__paste__0_1_18//:paste", "@raze__unindent__0_1_7//:unindent", diff --git a/cargo/remote/BUILD.pyo3-build-config-0.15.1.bazel b/cargo/remote/BUILD.pyo3-build-config-0.15.1.bazel index a6d168473..f0b86f8bf 100644 --- a/cargo/remote/BUILD.pyo3-build-config-0.15.1.bazel +++ b/cargo/remote/BUILD.pyo3-build-config-0.15.1.bazel @@ -91,6 +91,6 @@ rust_library( # buildifier: leave-alone deps = [ ":pyo3_build_config_build_script", - "@raze__once_cell__1_8_0//:once_cell", + "@raze__once_cell__1_9_0//:once_cell", ], ) diff --git a/cargo/remote/BUILD.pyo3-macros-0.15.1.bazel b/cargo/remote/BUILD.pyo3-macros-0.15.1.bazel index 2d54f4174..678e05793 100644 --- a/cargo/remote/BUILD.pyo3-macros-0.15.1.bazel +++ b/cargo/remote/BUILD.pyo3-macros-0.15.1.bazel @@ -51,7 +51,7 @@ rust_proc_macro( # buildifier: leave-alone deps = [ "@raze__pyo3_macros_backend__0_15_1//:pyo3_macros_backend", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.pyo3-macros-backend-0.15.1.bazel b/cargo/remote/BUILD.pyo3-macros-backend-0.15.1.bazel index e76509602..a3153473e 100644 --- a/cargo/remote/BUILD.pyo3-macros-backend-0.15.1.bazel +++ b/cargo/remote/BUILD.pyo3-macros-backend-0.15.1.bazel @@ -50,9 +50,9 @@ rust_library( version = "0.15.1", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", + "@raze__proc_macro2__1_0_36//:proc_macro2", "@raze__pyo3_build_config__0_15_1//:pyo3_build_config", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.quote-1.0.10.bazel b/cargo/remote/BUILD.quote-1.0.14.bazel similarity index 89% rename from cargo/remote/BUILD.quote-1.0.10.bazel rename to cargo/remote/BUILD.quote-1.0.14.bazel index e500cffdb..ff69ea7a3 100644 --- a/cargo/remote/BUILD.quote-1.0.10.bazel +++ b/cargo/remote/BUILD.quote-1.0.14.bazel @@ -31,8 +31,6 @@ licenses([ # Generated Targets -# Unsupported target "bench" with type "bench" omitted - rust_library( name = "quote", srcs = glob(["**/*.rs"]), @@ -51,10 +49,10 @@ rust_library( "crate-name=quote", "manual", ], - version = "1.0.10", + version = "1.0.14", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", + "@raze__proc_macro2__1_0_36//:proc_macro2", ], ) diff --git a/cargo/remote/BUILD.rand-0.7.3.bazel b/cargo/remote/BUILD.rand-0.7.3.bazel index 5a58f0767..12130847c 100644 --- a/cargo/remote/BUILD.rand-0.7.3.bazel +++ b/cargo/remote/BUILD.rand-0.7.3.bazel @@ -100,7 +100,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }), diff --git a/cargo/remote/BUILD.rand-0.8.4.bazel b/cargo/remote/BUILD.rand-0.8.4.bazel index f80004aa6..2ad283a65 100644 --- a/cargo/remote/BUILD.rand-0.8.4.bazel +++ b/cargo/remote/BUILD.rand-0.8.4.bazel @@ -86,7 +86,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }), diff --git a/cargo/remote/BUILD.rand_chacha-0.2.2.bazel b/cargo/remote/BUILD.rand_chacha-0.2.2.bazel index 2e9d76aa3..96059368b 100644 --- a/cargo/remote/BUILD.rand_chacha-0.2.2.bazel +++ b/cargo/remote/BUILD.rand_chacha-0.2.2.bazel @@ -51,7 +51,7 @@ rust_library( version = "0.2.2", # buildifier: leave-alone deps = [ - "@raze__ppv_lite86__0_2_15//:ppv_lite86", + "@raze__ppv_lite86__0_2_16//:ppv_lite86", "@raze__rand_core__0_5_1//:rand_core", ], ) diff --git a/cargo/remote/BUILD.rand_chacha-0.3.1.bazel b/cargo/remote/BUILD.rand_chacha-0.3.1.bazel index c88d9f5b2..d9920cda3 100644 --- a/cargo/remote/BUILD.rand_chacha-0.3.1.bazel +++ b/cargo/remote/BUILD.rand_chacha-0.3.1.bazel @@ -51,7 +51,7 @@ rust_library( version = "0.3.1", # buildifier: leave-alone deps = [ - "@raze__ppv_lite86__0_2_15//:ppv_lite86", + "@raze__ppv_lite86__0_2_16//:ppv_lite86", "@raze__rand_core__0_6_3//:rand_core", ], ) diff --git a/cargo/remote/BUILD.rand_core-0.6.3.bazel b/cargo/remote/BUILD.rand_core-0.6.3.bazel index 1796612a4..96b5b139e 100644 --- a/cargo/remote/BUILD.rand_core-0.6.3.bazel +++ b/cargo/remote/BUILD.rand_core-0.6.3.bazel @@ -53,6 +53,6 @@ rust_library( version = "0.6.3", # buildifier: leave-alone deps = [ - "@raze__getrandom__0_2_3//:getrandom", + "@raze__getrandom__0_2_4//:getrandom", ], ) diff --git a/cargo/remote/BUILD.redox_users-0.4.0.bazel b/cargo/remote/BUILD.redox_users-0.4.0.bazel index 258d4f61b..a4d94e23c 100644 --- a/cargo/remote/BUILD.redox_users-0.4.0.bazel +++ b/cargo/remote/BUILD.redox_users-0.4.0.bazel @@ -50,7 +50,7 @@ rust_library( version = "0.4.0", # buildifier: leave-alone deps = [ - "@raze__getrandom__0_2_3//:getrandom", + "@raze__getrandom__0_2_4//:getrandom", "@raze__redox_syscall__0_2_10//:redox_syscall", ], ) diff --git a/cargo/remote/BUILD.reqwest-0.11.3.bazel b/cargo/remote/BUILD.reqwest-0.11.3.bazel index d649b5b30..4c7bbcb54 100644 --- a/cargo/remote/BUILD.reqwest-0.11.3.bazel +++ b/cargo/remote/BUILD.reqwest-0.11.3.bazel @@ -89,11 +89,11 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__http__0_2_5//:http", + "@raze__http__0_2_6//:http", "@raze__hyper_timeout__0_4_1//:hyper_timeout", "@raze__mime_guess__2_0_3//:mime_guess", - "@raze__serde__1_0_130//:serde", - "@raze__serde_json__1_0_72//:serde_json", + "@raze__serde__1_0_133//:serde", + "@raze__serde_json__1_0_74//:serde_json", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded", "@raze__url__2_2_2//:url", ] + selects.with_or({ @@ -108,11 +108,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-apple-ios", ): [ "@raze__base64__0_13_0//:base64", - "@raze__encoding_rs__0_8_29//:encoding_rs", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_util__0_3_18//:futures_util", + "@raze__encoding_rs__0_8_30//:encoding_rs", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_util__0_3_19//:futures_util", "@raze__http_body__0_4_4//:http_body", - "@raze__hyper__0_14_15//:hyper", + "@raze__hyper__0_14_16//:hyper", "@raze__hyper_rustls__0_22_1//:hyper_rustls", "@raze__hyper_tls__0_5_0//:hyper_tls", "@raze__ipnet__2_3_1//:ipnet", @@ -121,10 +121,10 @@ rust_library( "@raze__mime__0_3_16//:mime", "@raze__native_tls__0_2_8//:native_tls", "@raze__percent_encoding__2_1_0//:percent_encoding", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", "@raze__rustls__0_19_1//:rustls", "@raze__rustls_native_certs__0_5_0//:rustls_native_certs", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__tokio_native_tls__0_3_0//:tokio_native_tls", "@raze__tokio_rustls__0_22_0//:tokio_rustls", "@raze__tokio_socks__0_5_1//:tokio_socks", diff --git a/cargo/remote/BUILD.ring-0.16.20.bazel b/cargo/remote/BUILD.ring-0.16.20.bazel index 579d1684f..3e2249a63 100644 --- a/cargo/remote/BUILD.ring-0.16.20.bazel +++ b/cargo/remote/BUILD.ring-0.16.20.bazel @@ -138,8 +138,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", ): [ - "@raze__libc__0_2_108//:libc", - "@raze__once_cell__1_8_0//:once_cell", + "@raze__libc__0_2_112//:libc", + "@raze__once_cell__1_9_0//:once_cell", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.rusqlite-0.26.1.bazel b/cargo/remote/BUILD.rusqlite-0.26.3.bazel similarity index 93% rename from cargo/remote/BUILD.rusqlite-0.26.1.bazel rename to cargo/remote/BUILD.rusqlite-0.26.3.bazel index f17411ce6..8011a19e2 100644 --- a/cargo/remote/BUILD.rusqlite-0.26.1.bazel +++ b/cargo/remote/BUILD.rusqlite-0.26.3.bazel @@ -56,16 +56,16 @@ rust_library( "crate-name=rusqlite", "manual", ], - version = "0.26.1", + version = "0.26.3", # buildifier: leave-alone deps = [ "@raze__bitflags__1_3_2//:bitflags", "@raze__fallible_iterator__0_2_0//:fallible_iterator", "@raze__fallible_streaming_iterator__0_1_9//:fallible_streaming_iterator", "@raze__hashlink__0_7_0//:hashlink", - "@raze__libsqlite3_sys__0_23_1//:libsqlite3_sys", + "@raze__libsqlite3_sys__0_23_2//:libsqlite3_sys", "@raze__memchr__2_4_1//:memchr", - "@raze__smallvec__1_7_0//:smallvec", + "@raze__smallvec__1_8_0//:smallvec", ], ) diff --git a/cargo/remote/BUILD.rustls-native-certs-0.5.0.bazel b/cargo/remote/BUILD.rustls-native-certs-0.5.0.bazel index 933326369..6e9cffff1 100644 --- a/cargo/remote/BUILD.rustls-native-certs-0.5.0.bazel +++ b/cargo/remote/BUILD.rustls-native-certs-0.5.0.bazel @@ -65,7 +65,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__openssl_probe__0_1_4//:openssl_probe", + "@raze__openssl_probe__0_1_5//:openssl_probe", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.rustversion-1.0.5.bazel b/cargo/remote/BUILD.rustversion-1.0.6.bazel similarity index 97% rename from cargo/remote/BUILD.rustversion-1.0.5.bazel rename to cargo/remote/BUILD.rustversion-1.0.6.bazel index 1b2f8c213..d9aec95ef 100644 --- a/cargo/remote/BUILD.rustversion-1.0.5.bazel +++ b/cargo/remote/BUILD.rustversion-1.0.6.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.5", + version = "1.0.6", visibility = ["//visibility:private"], deps = [ ], @@ -76,7 +76,7 @@ rust_proc_macro( "crate-name=rustversion", "manual", ], - version = "1.0.5", + version = "1.0.6", # buildifier: leave-alone deps = [ ":rustversion_build_script", diff --git a/cargo/remote/BUILD.ryu-1.0.6.bazel b/cargo/remote/BUILD.ryu-1.0.9.bazel similarity index 71% rename from cargo/remote/BUILD.ryu-1.0.6.bazel rename to cargo/remote/BUILD.ryu-1.0.9.bazel index 5fcad4cbf..58730642b 100644 --- a/cargo/remote/BUILD.ryu-1.0.6.bazel +++ b/cargo/remote/BUILD.ryu-1.0.9.bazel @@ -30,35 +30,6 @@ licenses([ ]) # Generated Targets -# buildifier: disable=out-of-order-load -# buildifier: disable=load-on-top -load( - "@rules_rust//cargo:cargo_build_script.bzl", - "cargo_build_script", -) - -cargo_build_script( - name = "ryu_build_script", - srcs = glob(["**/*.rs"]), - build_script_env = { - }, - crate_features = [ - ], - crate_root = "build.rs", - data = glob(["**"]), - edition = "2018", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-raze", - "manual", - ], - version = "1.0.6", - visibility = ["//visibility:private"], - deps = [ - ], -) # Unsupported target "bench" with type "bench" omitted @@ -80,10 +51,9 @@ rust_library( "crate-name=ryu", "manual", ], - version = "1.0.6", + version = "1.0.9", # buildifier: leave-alone deps = [ - ":ryu_build_script", ], ) diff --git a/cargo/remote/BUILD.security-framework-2.4.2.bazel b/cargo/remote/BUILD.security-framework-2.4.2.bazel index fe651f702..67a3d3be0 100644 --- a/cargo/remote/BUILD.security-framework-2.4.2.bazel +++ b/cargo/remote/BUILD.security-framework-2.4.2.bazel @@ -61,7 +61,7 @@ rust_library( "@raze__bitflags__1_3_2//:bitflags", "@raze__core_foundation__0_9_2//:core_foundation", "@raze__core_foundation_sys__0_8_3//:core_foundation_sys", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", "@raze__security_framework_sys__2_4_2//:security_framework_sys", ], ) diff --git a/cargo/remote/BUILD.security-framework-sys-2.4.2.bazel b/cargo/remote/BUILD.security-framework-sys-2.4.2.bazel index 8f2ab30e8..04d415f4c 100644 --- a/cargo/remote/BUILD.security-framework-sys-2.4.2.bazel +++ b/cargo/remote/BUILD.security-framework-sys-2.4.2.bazel @@ -53,6 +53,6 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__core_foundation_sys__0_8_3//:core_foundation_sys", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], ) diff --git a/cargo/remote/BUILD.selectors-0.22.0.bazel b/cargo/remote/BUILD.selectors-0.22.0.bazel index b921d7d92..7312455b9 100644 --- a/cargo/remote/BUILD.selectors-0.22.0.bazel +++ b/cargo/remote/BUILD.selectors-0.22.0.bazel @@ -92,7 +92,7 @@ rust_library( "@raze__phf__0_8_0//:phf", "@raze__precomputed_hash__0_1_1//:precomputed_hash", "@raze__servo_arc__0_1_1//:servo_arc", - "@raze__smallvec__1_7_0//:smallvec", + "@raze__smallvec__1_8_0//:smallvec", "@raze__thin_slice__0_1_1//:thin_slice", ], ) diff --git a/cargo/remote/BUILD.serde-1.0.130.bazel b/cargo/remote/BUILD.serde-1.0.133.bazel similarity index 94% rename from cargo/remote/BUILD.serde-1.0.130.bazel rename to cargo/remote/BUILD.serde-1.0.133.bazel index dc5dda03f..3a476f246 100644 --- a/cargo/remote/BUILD.serde-1.0.130.bazel +++ b/cargo/remote/BUILD.serde-1.0.133.bazel @@ -59,7 +59,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.130", + version = "1.0.133", visibility = ["//visibility:private"], deps = [ ], @@ -79,7 +79,7 @@ rust_library( data = [], edition = "2015", proc_macro_deps = [ - "@raze__serde_derive__1_0_130//:serde_derive", + "@raze__serde_derive__1_0_133//:serde_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -89,7 +89,7 @@ rust_library( "crate-name=serde", "manual", ], - version = "1.0.130", + version = "1.0.133", # buildifier: leave-alone deps = [ ":serde_build_script", diff --git a/cargo/remote/BUILD.serde-aux-3.0.1.bazel b/cargo/remote/BUILD.serde-aux-3.0.1.bazel index 1217467c4..0c1dbd0f5 100644 --- a/cargo/remote/BUILD.serde-aux-3.0.1.bazel +++ b/cargo/remote/BUILD.serde-aux-3.0.1.bazel @@ -53,7 +53,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__chrono__0_4_19//:chrono", - "@raze__serde__1_0_130//:serde", - "@raze__serde_json__1_0_72//:serde_json", + "@raze__serde__1_0_133//:serde", + "@raze__serde_json__1_0_74//:serde_json", ], ) diff --git a/cargo/remote/BUILD.serde_derive-1.0.130.bazel b/cargo/remote/BUILD.serde_derive-1.0.133.bazel similarity index 90% rename from cargo/remote/BUILD.serde_derive-1.0.130.bazel rename to cargo/remote/BUILD.serde_derive-1.0.133.bazel index 095c64152..7e26d39da 100644 --- a/cargo/remote/BUILD.serde_derive-1.0.130.bazel +++ b/cargo/remote/BUILD.serde_derive-1.0.133.bazel @@ -55,7 +55,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.130", + version = "1.0.133", visibility = ["//visibility:private"], deps = [ ], @@ -78,12 +78,12 @@ rust_proc_macro( "crate-name=serde_derive", "manual", ], - version = "1.0.130", + version = "1.0.133", # buildifier: leave-alone deps = [ ":serde_derive_build_script", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.serde_json-1.0.72.bazel b/cargo/remote/BUILD.serde_json-1.0.74.bazel similarity index 91% rename from cargo/remote/BUILD.serde_json-1.0.72.bazel rename to cargo/remote/BUILD.serde_json-1.0.74.bazel index dedbc90d3..ecd7ff1ff 100644 --- a/cargo/remote/BUILD.serde_json-1.0.72.bazel +++ b/cargo/remote/BUILD.serde_json-1.0.74.bazel @@ -56,7 +56,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.72", + version = "1.0.74", visibility = ["//visibility:private"], deps = [ ], @@ -80,12 +80,12 @@ rust_library( "crate-name=serde_json", "manual", ], - version = "1.0.72", + version = "1.0.74", # buildifier: leave-alone deps = [ ":serde_json_build_script", - "@raze__itoa__0_4_8//:itoa", - "@raze__ryu__1_0_6//:ryu", - "@raze__serde__1_0_130//:serde", + "@raze__itoa__1_0_1//:itoa", + "@raze__ryu__1_0_9//:ryu", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.serde_repr-0.1.7.bazel b/cargo/remote/BUILD.serde_repr-0.1.7.bazel index 10b1bf90c..42156ce5b 100644 --- a/cargo/remote/BUILD.serde_repr-0.1.7.bazel +++ b/cargo/remote/BUILD.serde_repr-0.1.7.bazel @@ -50,9 +50,9 @@ rust_proc_macro( version = "0.1.7", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.serde_tuple-0.5.0.bazel b/cargo/remote/BUILD.serde_tuple-0.5.0.bazel index 79888a439..0ffe1887b 100644 --- a/cargo/remote/BUILD.serde_tuple-0.5.0.bazel +++ b/cargo/remote/BUILD.serde_tuple-0.5.0.bazel @@ -55,6 +55,6 @@ rust_library( version = "0.5.0", # buildifier: leave-alone deps = [ - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel b/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel index 85c7fb227..5c64b741b 100644 --- a/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel +++ b/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel @@ -50,8 +50,8 @@ rust_proc_macro( version = "0.5.0", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.serde_urlencoded-0.7.0.bazel b/cargo/remote/BUILD.serde_urlencoded-0.7.0.bazel index 6761e98fc..ee4031cc1 100644 --- a/cargo/remote/BUILD.serde_urlencoded-0.7.0.bazel +++ b/cargo/remote/BUILD.serde_urlencoded-0.7.0.bazel @@ -52,8 +52,8 @@ rust_library( deps = [ "@raze__form_urlencoded__1_0_1//:form_urlencoded", "@raze__itoa__0_4_8//:itoa", - "@raze__ryu__1_0_6//:ryu", - "@raze__serde__1_0_130//:serde", + "@raze__ryu__1_0_9//:ryu", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.signal-hook-registry-1.4.0.bazel b/cargo/remote/BUILD.signal-hook-registry-1.4.0.bazel index 13eaa71a0..a20f424b1 100644 --- a/cargo/remote/BUILD.signal-hook-registry-1.4.0.bazel +++ b/cargo/remote/BUILD.signal-hook-registry-1.4.0.bazel @@ -50,7 +50,7 @@ rust_library( version = "1.4.0", # buildifier: leave-alone deps = [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], ) diff --git a/cargo/remote/BUILD.slog-async-2.7.0.bazel b/cargo/remote/BUILD.slog-async-2.7.0.bazel index 83127cb3a..40902158b 100644 --- a/cargo/remote/BUILD.slog-async-2.7.0.bazel +++ b/cargo/remote/BUILD.slog-async-2.7.0.bazel @@ -82,7 +82,7 @@ rust_library( # buildifier: leave-alone deps = [ ":slog_async_build_script", - "@raze__crossbeam_channel__0_5_1//:crossbeam_channel", + "@raze__crossbeam_channel__0_5_2//:crossbeam_channel", "@raze__slog__2_7_0//:slog", "@raze__take_mut__0_2_2//:take_mut", "@raze__thread_local__1_1_3//:thread_local", diff --git a/cargo/remote/BUILD.smallvec-1.7.0.bazel b/cargo/remote/BUILD.smallvec-1.8.0.bazel similarity index 98% rename from cargo/remote/BUILD.smallvec-1.7.0.bazel rename to cargo/remote/BUILD.smallvec-1.8.0.bazel index 851c0eee4..be052dac9 100644 --- a/cargo/remote/BUILD.smallvec-1.7.0.bazel +++ b/cargo/remote/BUILD.smallvec-1.8.0.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=smallvec", "manual", ], - version = "1.7.0", + version = "1.8.0", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.socket2-0.4.2.bazel b/cargo/remote/BUILD.socket2-0.4.2.bazel index 23217fac6..e6bc0ac24 100644 --- a/cargo/remote/BUILD.socket2-0.4.2.bazel +++ b/cargo/remote/BUILD.socket2-0.4.2.bazel @@ -62,7 +62,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.string_cache-0.8.2.bazel b/cargo/remote/BUILD.string_cache-0.8.2.bazel index 08454974b..bb5bb984f 100644 --- a/cargo/remote/BUILD.string_cache-0.8.2.bazel +++ b/cargo/remote/BUILD.string_cache-0.8.2.bazel @@ -60,7 +60,7 @@ rust_library( "@raze__parking_lot__0_11_2//:parking_lot", "@raze__phf_shared__0_8_0//:phf_shared", "@raze__precomputed_hash__0_1_1//:precomputed_hash", - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel b/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel index de5226b1e..2c96d92b8 100644 --- a/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel +++ b/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel @@ -52,7 +52,7 @@ rust_library( deps = [ "@raze__phf_generator__0_8_0//:phf_generator", "@raze__phf_shared__0_8_0//:phf_shared", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", ], ) diff --git a/cargo/remote/BUILD.strum_macros-0.23.1.bazel b/cargo/remote/BUILD.strum_macros-0.23.1.bazel index 3cddb66fe..0008db49a 100644 --- a/cargo/remote/BUILD.strum_macros-0.23.1.bazel +++ b/cargo/remote/BUILD.strum_macros-0.23.1.bazel @@ -40,7 +40,7 @@ rust_proc_macro( data = [], edition = "2018", proc_macro_deps = [ - "@raze__rustversion__1_0_5//:rustversion", + "@raze__rustversion__1_0_6//:rustversion", ], rustc_flags = [ "--cap-lints=allow", @@ -54,8 +54,8 @@ rust_proc_macro( # buildifier: leave-alone deps = [ "@raze__heck__0_3_3//:heck", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.subtle-2.4.1.bazel b/cargo/remote/BUILD.subtle-2.4.1.bazel new file mode 100644 index 000000000..0d969f04c --- /dev/null +++ b/cargo/remote/BUILD.subtle-2.4.1.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # BSD-3-Clause from expression "BSD-3-Clause" +]) + +# Generated Targets + +rust_library( + name = "subtle", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=subtle", + "manual", + ], + version = "2.4.1", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "mod" with type "test" omitted diff --git a/cargo/remote/BUILD.syn-1.0.82.bazel b/cargo/remote/BUILD.syn-1.0.85.bazel similarity index 95% rename from cargo/remote/BUILD.syn-1.0.82.bazel rename to cargo/remote/BUILD.syn-1.0.85.bazel index 7997ffade..88b6bf0aa 100644 --- a/cargo/remote/BUILD.syn-1.0.82.bazel +++ b/cargo/remote/BUILD.syn-1.0.85.bazel @@ -66,7 +66,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.82", + version = "1.0.85", visibility = ["//visibility:private"], deps = [ ], @@ -104,16 +104,18 @@ rust_library( "crate-name=syn", "manual", ], - version = "1.0.82", + version = "1.0.85", # buildifier: leave-alone deps = [ ":syn_build_script", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", "@raze__unicode_xid__0_2_2//:unicode_xid", ], ) +# Unsupported target "regression" with type "test" omitted + # Unsupported target "test_asyncness" with type "test" omitted # Unsupported target "test_attribute" with type "test" omitted diff --git a/cargo/remote/BUILD.tempfile-3.2.0.bazel b/cargo/remote/BUILD.tempfile-3.3.0.bazel similarity index 93% rename from cargo/remote/BUILD.tempfile-3.2.0.bazel rename to cargo/remote/BUILD.tempfile-3.3.0.bazel index 6e4be7bbd..a515ffdd5 100644 --- a/cargo/remote/BUILD.tempfile-3.2.0.bazel +++ b/cargo/remote/BUILD.tempfile-3.3.0.bazel @@ -49,14 +49,14 @@ rust_library( "crate-name=tempfile", "manual", ], - version = "3.2.0", + version = "3.3.0", # buildifier: leave-alone deps = [ "@raze__cfg_if__1_0_0//:cfg_if", - "@raze__rand__0_8_4//:rand", + "@raze__fastrand__1_6_0//:fastrand", "@raze__remove_dir_all__0_5_3//:remove_dir_all", ] + selects.with_or({ - # cfg(unix) + # cfg(any(unix, target_os = "wasi")) ( "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", @@ -65,7 +65,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.term-0.7.0.bazel b/cargo/remote/BUILD.term-0.7.0.bazel index 33ea1a39f..579fa06ef 100644 --- a/cargo/remote/BUILD.term-0.7.0.bazel +++ b/cargo/remote/BUILD.term-0.7.0.bazel @@ -13,6 +13,7 @@ load( "@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", + "rust_proc_macro", "rust_test", ) @@ -46,11 +47,12 @@ rust_library( ], tags = [ "cargo-raze", + "crate-name=term", "manual", ], version = "0.7.0", proc_macro_deps = [ - "@raze__rustversion__1_0_5//:rustversion", + "@raze__rustversion__1_0_6//:rustversion", ], # buildifier: leave-alone deps = [ diff --git a/cargo/remote/BUILD.thiserror-impl-1.0.30.bazel b/cargo/remote/BUILD.thiserror-impl-1.0.30.bazel index 734426741..11b986e70 100644 --- a/cargo/remote/BUILD.thiserror-impl-1.0.30.bazel +++ b/cargo/remote/BUILD.thiserror-impl-1.0.30.bazel @@ -50,8 +50,8 @@ rust_proc_macro( version = "1.0.30", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.thread_local-1.1.3.bazel b/cargo/remote/BUILD.thread_local-1.1.3.bazel index 0468ad056..462d5a2ee 100644 --- a/cargo/remote/BUILD.thread_local-1.1.3.bazel +++ b/cargo/remote/BUILD.thread_local-1.1.3.bazel @@ -52,6 +52,6 @@ rust_library( version = "1.1.3", # buildifier: leave-alone deps = [ - "@raze__once_cell__1_8_0//:once_cell", + "@raze__once_cell__1_9_0//:once_cell", ], ) diff --git a/cargo/remote/BUILD.time-0.1.44.bazel b/cargo/remote/BUILD.time-0.1.44.bazel index 4ecf02c84..97ef5adb4 100644 --- a/cargo/remote/BUILD.time-0.1.44.bazel +++ b/cargo/remote/BUILD.time-0.1.44.bazel @@ -52,7 +52,7 @@ rust_library( version = "0.1.44", # buildifier: leave-alone deps = [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ] + selects.with_or({ # cfg(windows) ( diff --git a/cargo/remote/BUILD.tokio-1.14.0.bazel b/cargo/remote/BUILD.tokio-1.15.0.bazel similarity index 81% rename from cargo/remote/BUILD.tokio-1.14.0.bazel rename to cargo/remote/BUILD.tokio-1.15.0.bazel index 622c7b7a7..a8678d215 100644 --- a/cargo/remote/BUILD.tokio-1.14.0.bazel +++ b/cargo/remote/BUILD.tokio-1.15.0.bazel @@ -30,78 +30,6 @@ licenses([ ]) # Generated Targets -# buildifier: disable=out-of-order-load -# buildifier: disable=load-on-top -load( - "@rules_rust//cargo:cargo_build_script.bzl", - "cargo_build_script", -) - -cargo_build_script( - name = "tokio_build_script", - srcs = glob(["**/*.rs"]), - build_script_env = { - }, - crate_features = [ - "bytes", - "default", - "fs", - "full", - "io-std", - "io-util", - "libc", - "macros", - "memchr", - "mio", - "net", - "num_cpus", - "once_cell", - "parking_lot", - "process", - "rt", - "rt-multi-thread", - "signal", - "signal-hook-registry", - "sync", - "time", - "tokio-macros", - "winapi", - ], - crate_root = "build.rs", - data = glob(["**"]), - edition = "2018", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-raze", - "manual", - ], - version = "1.14.0", - visibility = ["//visibility:private"], - deps = [ - "@raze__autocfg__1_0_1//:autocfg", - ] + selects.with_or({ - # cfg(unix) - ( - "@rules_rust//rust/platform:x86_64-apple-darwin", - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", - "@rules_rust//rust/platform:aarch64-apple-darwin", - "@rules_rust//rust/platform:aarch64-apple-ios", - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", - "@rules_rust//rust/platform:x86_64-apple-ios", - ): [ - ], - "//conditions:default": [], - }) + selects.with_or({ - # cfg(windows) - ( - "@rules_rust//rust/platform:x86_64-pc-windows-msvc", - ): [ - ], - "//conditions:default": [], - }), -) rust_library( name = "tokio", @@ -137,7 +65,7 @@ rust_library( data = [], edition = "2018", proc_macro_deps = [ - "@raze__tokio_macros__1_6_0//:tokio_macros", + "@raze__tokio_macros__1_7_0//:tokio_macros", ], rustc_flags = [ "--cap-lints=allow", @@ -147,17 +75,16 @@ rust_library( "crate-name=tokio", "manual", ], - version = "1.14.0", + version = "1.15.0", # buildifier: leave-alone deps = [ - ":tokio_build_script", "@raze__bytes__1_1_0//:bytes", "@raze__memchr__2_4_1//:memchr", "@raze__mio__0_7_14//:mio", - "@raze__num_cpus__1_13_0//:num_cpus", - "@raze__once_cell__1_8_0//:once_cell", + "@raze__num_cpus__1_13_1//:num_cpus", + "@raze__once_cell__1_9_0//:once_cell", "@raze__parking_lot__0_11_2//:parking_lot", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", ] + selects.with_or({ # cfg(unix) ( @@ -168,7 +95,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", "@raze__signal_hook_registry__1_4_0//:signal_hook_registry", ], "//conditions:default": [], @@ -243,6 +170,8 @@ rust_library( # Unsupported target "io_take" with type "test" omitted +# Unsupported target "io_util_empty" with type "test" omitted + # Unsupported target "io_write" with type "test" omitted # Unsupported target "io_write_all" with type "test" omitted diff --git a/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel b/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel index e893f36f6..512a4dcb4 100644 --- a/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel +++ b/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel @@ -50,7 +50,7 @@ rust_library( version = "1.1.1", # buildifier: leave-alone deps = [ - "@raze__pin_project_lite__0_2_7//:pin_project_lite", - "@raze__tokio__1_14_0//:tokio", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", + "@raze__tokio__1_15_0//:tokio", ], ) diff --git a/cargo/remote/BUILD.tokio-macros-1.6.0.bazel b/cargo/remote/BUILD.tokio-macros-1.7.0.bazel similarity index 87% rename from cargo/remote/BUILD.tokio-macros-1.6.0.bazel rename to cargo/remote/BUILD.tokio-macros-1.7.0.bazel index 2509bb691..16a17ed5b 100644 --- a/cargo/remote/BUILD.tokio-macros-1.6.0.bazel +++ b/cargo/remote/BUILD.tokio-macros-1.7.0.bazel @@ -47,11 +47,11 @@ rust_proc_macro( "crate-name=tokio-macros", "manual", ], - version = "1.6.0", + version = "1.7.0", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", ], ) diff --git a/cargo/remote/BUILD.tokio-native-tls-0.3.0.bazel b/cargo/remote/BUILD.tokio-native-tls-0.3.0.bazel index 109c36923..2e6359442 100644 --- a/cargo/remote/BUILD.tokio-native-tls-0.3.0.bazel +++ b/cargo/remote/BUILD.tokio-native-tls-0.3.0.bazel @@ -55,7 +55,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__native_tls__0_2_8//:native_tls", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", ], ) diff --git a/cargo/remote/BUILD.tokio-rustls-0.22.0.bazel b/cargo/remote/BUILD.tokio-rustls-0.22.0.bazel index 64b8daf3a..72f1e7458 100644 --- a/cargo/remote/BUILD.tokio-rustls-0.22.0.bazel +++ b/cargo/remote/BUILD.tokio-rustls-0.22.0.bazel @@ -51,7 +51,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__rustls__0_19_1//:rustls", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", "@raze__webpki__0_21_4//:webpki", ], ) diff --git a/cargo/remote/BUILD.tokio-socks-0.5.1.bazel b/cargo/remote/BUILD.tokio-socks-0.5.1.bazel index dc5507b08..ec194a6a6 100644 --- a/cargo/remote/BUILD.tokio-socks-0.5.1.bazel +++ b/cargo/remote/BUILD.tokio-socks-0.5.1.bazel @@ -57,9 +57,9 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__either__1_6_1//:either", - "@raze__futures_util__0_3_18//:futures_util", + "@raze__futures_util__0_3_19//:futures_util", "@raze__thiserror__1_0_30//:thiserror", - "@raze__tokio__1_14_0//:tokio", + "@raze__tokio__1_15_0//:tokio", ], ) diff --git a/cargo/remote/BUILD.tokio-util-0.6.9.bazel b/cargo/remote/BUILD.tokio-util-0.6.9.bazel index c50461ad0..8098a6304 100644 --- a/cargo/remote/BUILD.tokio-util-0.6.9.bazel +++ b/cargo/remote/BUILD.tokio-util-0.6.9.bazel @@ -54,11 +54,11 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__bytes__1_1_0//:bytes", - "@raze__futures_core__0_3_18//:futures_core", - "@raze__futures_sink__0_3_18//:futures_sink", + "@raze__futures_core__0_3_19//:futures_core", + "@raze__futures_sink__0_3_19//:futures_sink", "@raze__log__0_4_14//:log", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", - "@raze__tokio__1_14_0//:tokio", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", + "@raze__tokio__1_15_0//:tokio", ], ) diff --git a/cargo/remote/BUILD.toml-0.5.8.bazel b/cargo/remote/BUILD.toml-0.5.8.bazel index adc8227ff..37b8c6cde 100644 --- a/cargo/remote/BUILD.toml-0.5.8.bazel +++ b/cargo/remote/BUILD.toml-0.5.8.bazel @@ -57,7 +57,7 @@ rust_library( version = "0.5.8", # buildifier: leave-alone deps = [ - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.tracing-0.1.29.bazel b/cargo/remote/BUILD.tracing-0.1.29.bazel index bb2386dcb..85aa945ee 100644 --- a/cargo/remote/BUILD.tracing-0.1.29.bazel +++ b/cargo/remote/BUILD.tracing-0.1.29.bazel @@ -56,7 +56,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__cfg_if__1_0_0//:cfg_if", - "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_project_lite__0_2_8//:pin_project_lite", "@raze__tracing_core__0_1_21//:tracing_core", ], ) diff --git a/cargo/remote/BUILD.typenum-1.14.0.bazel b/cargo/remote/BUILD.typenum-1.15.0.bazel similarity index 97% rename from cargo/remote/BUILD.typenum-1.14.0.bazel rename to cargo/remote/BUILD.typenum-1.15.0.bazel index fb40a5e88..e7a14030e 100644 --- a/cargo/remote/BUILD.typenum-1.14.0.bazel +++ b/cargo/remote/BUILD.typenum-1.15.0.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.14.0", + version = "1.15.0", visibility = ["//visibility:private"], deps = [ ], @@ -76,7 +76,7 @@ rust_library( "crate-name=typenum", "manual", ], - version = "1.14.0", + version = "1.15.0", # buildifier: leave-alone deps = [ ":typenum_build_script", diff --git a/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel b/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel index 41c991062..e35388751 100644 --- a/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel +++ b/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel @@ -53,8 +53,8 @@ rust_proc_macro( version = "0.9.0", # buildifier: leave-alone deps = [ - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", "@raze__unic_langid_impl__0_9_0//:unic_langid_impl", ], ) diff --git a/cargo/remote/BUILD.unicase-2.6.0.bazel b/cargo/remote/BUILD.unicase-2.6.0.bazel index 4b8e7f143..8c1847897 100644 --- a/cargo/remote/BUILD.unicase-2.6.0.bazel +++ b/cargo/remote/BUILD.unicase-2.6.0.bazel @@ -57,7 +57,7 @@ cargo_build_script( version = "2.6.0", visibility = ["//visibility:private"], deps = [ - "@raze__version_check__0_9_3//:version_check", + "@raze__version_check__0_9_4//:version_check", ], ) diff --git a/cargo/remote/BUILD.url-2.2.2.bazel b/cargo/remote/BUILD.url-2.2.2.bazel index d2a3e1246..f6bafbf0d 100644 --- a/cargo/remote/BUILD.url-2.2.2.bazel +++ b/cargo/remote/BUILD.url-2.2.2.bazel @@ -57,7 +57,7 @@ rust_library( "@raze__idna__0_2_3//:idna", "@raze__matches__0_1_9//:matches", "@raze__percent_encoding__2_1_0//:percent_encoding", - "@raze__serde__1_0_130//:serde", + "@raze__serde__1_0_133//:serde", ], ) diff --git a/cargo/remote/BUILD.utime-0.3.1.bazel b/cargo/remote/BUILD.utime-0.3.1.bazel index b92356238..fa5b780ce 100644 --- a/cargo/remote/BUILD.utime-0.3.1.bazel +++ b/cargo/remote/BUILD.utime-0.3.1.bazel @@ -62,7 +62,7 @@ rust_library( "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", ): [ - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ], "//conditions:default": [], }) + selects.with_or({ diff --git a/cargo/remote/BUILD.version_check-0.9.3.bazel b/cargo/remote/BUILD.version_check-0.9.4.bazel similarity index 97% rename from cargo/remote/BUILD.version_check-0.9.3.bazel rename to cargo/remote/BUILD.version_check-0.9.4.bazel index 8987df0c4..8eee132be 100644 --- a/cargo/remote/BUILD.version_check-0.9.3.bazel +++ b/cargo/remote/BUILD.version_check-0.9.4.bazel @@ -47,7 +47,7 @@ rust_library( "crate-name=version_check", "manual", ], - version = "0.9.3", + version = "0.9.4", # buildifier: leave-alone deps = [ ], diff --git a/cargo/remote/BUILD.wasm-bindgen-0.2.78.bazel b/cargo/remote/BUILD.wasm-bindgen-0.2.78.bazel index fcd41e430..003378922 100644 --- a/cargo/remote/BUILD.wasm-bindgen-0.2.78.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-0.2.78.bazel @@ -96,8 +96,8 @@ rust_library( deps = [ ":wasm_bindgen_build_script", "@raze__cfg_if__1_0_0//:cfg_if", - "@raze__serde__1_0_130//:serde", - "@raze__serde_json__1_0_72//:serde_json", + "@raze__serde__1_0_133//:serde", + "@raze__serde_json__1_0_74//:serde_json", ], ) diff --git a/cargo/remote/BUILD.wasm-bindgen-backend-0.2.78.bazel b/cargo/remote/BUILD.wasm-bindgen-backend-0.2.78.bazel index 9a4bbaa8e..80ff58fbb 100644 --- a/cargo/remote/BUILD.wasm-bindgen-backend-0.2.78.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-backend-0.2.78.bazel @@ -51,12 +51,12 @@ rust_library( version = "0.2.78", # buildifier: leave-alone deps = [ - "@raze__bumpalo__3_8_0//:bumpalo", + "@raze__bumpalo__3_9_1//:bumpalo", "@raze__lazy_static__1_4_0//:lazy_static", "@raze__log__0_4_14//:log", - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", "@raze__wasm_bindgen_shared__0_2_78//:wasm_bindgen_shared", ], ) diff --git a/cargo/remote/BUILD.wasm-bindgen-macro-0.2.78.bazel b/cargo/remote/BUILD.wasm-bindgen-macro-0.2.78.bazel index bf3503383..fc4b6aa9f 100644 --- a/cargo/remote/BUILD.wasm-bindgen-macro-0.2.78.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-macro-0.2.78.bazel @@ -51,7 +51,7 @@ rust_proc_macro( version = "0.2.78", # buildifier: leave-alone deps = [ - "@raze__quote__1_0_10//:quote", + "@raze__quote__1_0_14//:quote", "@raze__wasm_bindgen_macro_support__0_2_78//:wasm_bindgen_macro_support", ], ) diff --git a/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.78.bazel b/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.78.bazel index 2623e419e..ba56de035 100644 --- a/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.78.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.78.bazel @@ -51,9 +51,9 @@ rust_library( version = "0.2.78", # buildifier: leave-alone deps = [ - "@raze__proc_macro2__1_0_32//:proc_macro2", - "@raze__quote__1_0_10//:quote", - "@raze__syn__1_0_82//:syn", + "@raze__proc_macro2__1_0_36//:proc_macro2", + "@raze__quote__1_0_14//:quote", + "@raze__syn__1_0_85//:syn", "@raze__wasm_bindgen_backend__0_2_78//:wasm_bindgen_backend", "@raze__wasm_bindgen_shared__0_2_78//:wasm_bindgen_shared", ], diff --git a/cargo/remote/BUILD.which-4.2.2.bazel b/cargo/remote/BUILD.which-4.2.2.bazel index 345acebfa..65a504795 100644 --- a/cargo/remote/BUILD.which-4.2.2.bazel +++ b/cargo/remote/BUILD.which-4.2.2.bazel @@ -53,7 +53,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__either__1_6_1//:either", - "@raze__libc__0_2_108//:libc", + "@raze__libc__0_2_112//:libc", ] + selects.with_or({ # cfg(windows) ( diff --git a/pylib/rsbridge/cargo/BUILD.bazel b/pylib/rsbridge/cargo/BUILD.bazel index 83a4f9356..408302a7a 100644 --- a/pylib/rsbridge/cargo/BUILD.bazel +++ b/pylib/rsbridge/cargo/BUILD.bazel @@ -23,7 +23,7 @@ alias( alias( name = "async_trait", - actual = "@raze__async_trait__0_1_51//:async_trait", + actual = "@raze__async_trait__0_1_52//:async_trait", tags = [ "cargo-raze", "manual", @@ -32,7 +32,7 @@ alias( alias( name = "blake3", - actual = "@raze__blake3__1_2_0//:blake3", + actual = "@raze__blake3__1_3_0//:blake3", tags = [ "cargo-raze", "manual", @@ -122,7 +122,7 @@ alias( alias( name = "futures", - actual = "@raze__futures__0_3_18//:futures", + actual = "@raze__futures__0_3_19//:futures", tags = [ "cargo-raze", "manual", @@ -167,7 +167,7 @@ alias( alias( name = "itertools", - actual = "@raze__itertools__0_10_1//:itertools", + actual = "@raze__itertools__0_10_3//:itertools", tags = [ "cargo-raze", "manual", @@ -203,7 +203,7 @@ alias( alias( name = "num_enum", - actual = "@raze__num_enum__0_5_4//:num_enum", + actual = "@raze__num_enum__0_5_6//:num_enum", tags = [ "cargo-raze", "manual", @@ -230,7 +230,7 @@ alias( alias( name = "once_cell", - actual = "@raze__once_cell__1_8_0//:once_cell", + actual = "@raze__once_cell__1_9_0//:once_cell", tags = [ "cargo-raze", "manual", @@ -248,7 +248,7 @@ alias( alias( name = "phf", - actual = "@raze__phf__0_10_0//:phf", + actual = "@raze__phf__0_10_1//:phf", tags = [ "cargo-raze", "manual", @@ -257,7 +257,7 @@ alias( alias( name = "pin_project", - actual = "@raze__pin_project__1_0_8//:pin_project", + actual = "@raze__pin_project__1_0_10//:pin_project", tags = [ "cargo-raze", "manual", @@ -338,7 +338,7 @@ alias( alias( name = "rusqlite", - actual = "@raze__rusqlite__0_26_1//:rusqlite", + actual = "@raze__rusqlite__0_26_3//:rusqlite", tags = [ "cargo-raze", "manual", @@ -356,7 +356,7 @@ alias( alias( name = "serde", - actual = "@raze__serde__1_0_130//:serde", + actual = "@raze__serde__1_0_133//:serde", tags = [ "cargo-raze", "manual", @@ -374,7 +374,7 @@ alias( alias( name = "serde_derive", - actual = "@raze__serde_derive__1_0_130//:serde_derive", + actual = "@raze__serde_derive__1_0_133//:serde_derive", tags = [ "cargo-raze", "manual", @@ -383,7 +383,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_72//:serde_json", + actual = "@raze__serde_json__1_0_74//:serde_json", tags = [ "cargo-raze", "manual", @@ -464,7 +464,7 @@ alias( alias( name = "tempfile", - actual = "@raze__tempfile__3_2_0//:tempfile", + actual = "@raze__tempfile__3_3_0//:tempfile", tags = [ "cargo-raze", "manual", @@ -473,7 +473,7 @@ alias( alias( name = "tokio", - actual = "@raze__tokio__1_14_0//:tokio", + actual = "@raze__tokio__1_15_0//:tokio", tags = [ "cargo-raze", "manual", diff --git a/rslib/cargo/BUILD.bazel b/rslib/cargo/BUILD.bazel index 83a4f9356..408302a7a 100644 --- a/rslib/cargo/BUILD.bazel +++ b/rslib/cargo/BUILD.bazel @@ -23,7 +23,7 @@ alias( alias( name = "async_trait", - actual = "@raze__async_trait__0_1_51//:async_trait", + actual = "@raze__async_trait__0_1_52//:async_trait", tags = [ "cargo-raze", "manual", @@ -32,7 +32,7 @@ alias( alias( name = "blake3", - actual = "@raze__blake3__1_2_0//:blake3", + actual = "@raze__blake3__1_3_0//:blake3", tags = [ "cargo-raze", "manual", @@ -122,7 +122,7 @@ alias( alias( name = "futures", - actual = "@raze__futures__0_3_18//:futures", + actual = "@raze__futures__0_3_19//:futures", tags = [ "cargo-raze", "manual", @@ -167,7 +167,7 @@ alias( alias( name = "itertools", - actual = "@raze__itertools__0_10_1//:itertools", + actual = "@raze__itertools__0_10_3//:itertools", tags = [ "cargo-raze", "manual", @@ -203,7 +203,7 @@ alias( alias( name = "num_enum", - actual = "@raze__num_enum__0_5_4//:num_enum", + actual = "@raze__num_enum__0_5_6//:num_enum", tags = [ "cargo-raze", "manual", @@ -230,7 +230,7 @@ alias( alias( name = "once_cell", - actual = "@raze__once_cell__1_8_0//:once_cell", + actual = "@raze__once_cell__1_9_0//:once_cell", tags = [ "cargo-raze", "manual", @@ -248,7 +248,7 @@ alias( alias( name = "phf", - actual = "@raze__phf__0_10_0//:phf", + actual = "@raze__phf__0_10_1//:phf", tags = [ "cargo-raze", "manual", @@ -257,7 +257,7 @@ alias( alias( name = "pin_project", - actual = "@raze__pin_project__1_0_8//:pin_project", + actual = "@raze__pin_project__1_0_10//:pin_project", tags = [ "cargo-raze", "manual", @@ -338,7 +338,7 @@ alias( alias( name = "rusqlite", - actual = "@raze__rusqlite__0_26_1//:rusqlite", + actual = "@raze__rusqlite__0_26_3//:rusqlite", tags = [ "cargo-raze", "manual", @@ -356,7 +356,7 @@ alias( alias( name = "serde", - actual = "@raze__serde__1_0_130//:serde", + actual = "@raze__serde__1_0_133//:serde", tags = [ "cargo-raze", "manual", @@ -374,7 +374,7 @@ alias( alias( name = "serde_derive", - actual = "@raze__serde_derive__1_0_130//:serde_derive", + actual = "@raze__serde_derive__1_0_133//:serde_derive", tags = [ "cargo-raze", "manual", @@ -383,7 +383,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_72//:serde_json", + actual = "@raze__serde_json__1_0_74//:serde_json", tags = [ "cargo-raze", "manual", @@ -464,7 +464,7 @@ alias( alias( name = "tempfile", - actual = "@raze__tempfile__3_2_0//:tempfile", + actual = "@raze__tempfile__3_3_0//:tempfile", tags = [ "cargo-raze", "manual", @@ -473,7 +473,7 @@ alias( alias( name = "tokio", - actual = "@raze__tokio__1_14_0//:tokio", + actual = "@raze__tokio__1_15_0//:tokio", tags = [ "cargo-raze", "manual", diff --git a/rslib/i18n/cargo/BUILD.bazel b/rslib/i18n/cargo/BUILD.bazel index 83a4f9356..408302a7a 100644 --- a/rslib/i18n/cargo/BUILD.bazel +++ b/rslib/i18n/cargo/BUILD.bazel @@ -23,7 +23,7 @@ alias( alias( name = "async_trait", - actual = "@raze__async_trait__0_1_51//:async_trait", + actual = "@raze__async_trait__0_1_52//:async_trait", tags = [ "cargo-raze", "manual", @@ -32,7 +32,7 @@ alias( alias( name = "blake3", - actual = "@raze__blake3__1_2_0//:blake3", + actual = "@raze__blake3__1_3_0//:blake3", tags = [ "cargo-raze", "manual", @@ -122,7 +122,7 @@ alias( alias( name = "futures", - actual = "@raze__futures__0_3_18//:futures", + actual = "@raze__futures__0_3_19//:futures", tags = [ "cargo-raze", "manual", @@ -167,7 +167,7 @@ alias( alias( name = "itertools", - actual = "@raze__itertools__0_10_1//:itertools", + actual = "@raze__itertools__0_10_3//:itertools", tags = [ "cargo-raze", "manual", @@ -203,7 +203,7 @@ alias( alias( name = "num_enum", - actual = "@raze__num_enum__0_5_4//:num_enum", + actual = "@raze__num_enum__0_5_6//:num_enum", tags = [ "cargo-raze", "manual", @@ -230,7 +230,7 @@ alias( alias( name = "once_cell", - actual = "@raze__once_cell__1_8_0//:once_cell", + actual = "@raze__once_cell__1_9_0//:once_cell", tags = [ "cargo-raze", "manual", @@ -248,7 +248,7 @@ alias( alias( name = "phf", - actual = "@raze__phf__0_10_0//:phf", + actual = "@raze__phf__0_10_1//:phf", tags = [ "cargo-raze", "manual", @@ -257,7 +257,7 @@ alias( alias( name = "pin_project", - actual = "@raze__pin_project__1_0_8//:pin_project", + actual = "@raze__pin_project__1_0_10//:pin_project", tags = [ "cargo-raze", "manual", @@ -338,7 +338,7 @@ alias( alias( name = "rusqlite", - actual = "@raze__rusqlite__0_26_1//:rusqlite", + actual = "@raze__rusqlite__0_26_3//:rusqlite", tags = [ "cargo-raze", "manual", @@ -356,7 +356,7 @@ alias( alias( name = "serde", - actual = "@raze__serde__1_0_130//:serde", + actual = "@raze__serde__1_0_133//:serde", tags = [ "cargo-raze", "manual", @@ -374,7 +374,7 @@ alias( alias( name = "serde_derive", - actual = "@raze__serde_derive__1_0_130//:serde_derive", + actual = "@raze__serde_derive__1_0_133//:serde_derive", tags = [ "cargo-raze", "manual", @@ -383,7 +383,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_72//:serde_json", + actual = "@raze__serde_json__1_0_74//:serde_json", tags = [ "cargo-raze", "manual", @@ -464,7 +464,7 @@ alias( alias( name = "tempfile", - actual = "@raze__tempfile__3_2_0//:tempfile", + actual = "@raze__tempfile__3_3_0//:tempfile", tags = [ "cargo-raze", "manual", @@ -473,7 +473,7 @@ alias( alias( name = "tokio", - actual = "@raze__tokio__1_14_0//:tokio", + actual = "@raze__tokio__1_15_0//:tokio", tags = [ "cargo-raze", "manual", diff --git a/rslib/i18n_helpers/cargo/BUILD.bazel b/rslib/i18n_helpers/cargo/BUILD.bazel index 83a4f9356..408302a7a 100644 --- a/rslib/i18n_helpers/cargo/BUILD.bazel +++ b/rslib/i18n_helpers/cargo/BUILD.bazel @@ -23,7 +23,7 @@ alias( alias( name = "async_trait", - actual = "@raze__async_trait__0_1_51//:async_trait", + actual = "@raze__async_trait__0_1_52//:async_trait", tags = [ "cargo-raze", "manual", @@ -32,7 +32,7 @@ alias( alias( name = "blake3", - actual = "@raze__blake3__1_2_0//:blake3", + actual = "@raze__blake3__1_3_0//:blake3", tags = [ "cargo-raze", "manual", @@ -122,7 +122,7 @@ alias( alias( name = "futures", - actual = "@raze__futures__0_3_18//:futures", + actual = "@raze__futures__0_3_19//:futures", tags = [ "cargo-raze", "manual", @@ -167,7 +167,7 @@ alias( alias( name = "itertools", - actual = "@raze__itertools__0_10_1//:itertools", + actual = "@raze__itertools__0_10_3//:itertools", tags = [ "cargo-raze", "manual", @@ -203,7 +203,7 @@ alias( alias( name = "num_enum", - actual = "@raze__num_enum__0_5_4//:num_enum", + actual = "@raze__num_enum__0_5_6//:num_enum", tags = [ "cargo-raze", "manual", @@ -230,7 +230,7 @@ alias( alias( name = "once_cell", - actual = "@raze__once_cell__1_8_0//:once_cell", + actual = "@raze__once_cell__1_9_0//:once_cell", tags = [ "cargo-raze", "manual", @@ -248,7 +248,7 @@ alias( alias( name = "phf", - actual = "@raze__phf__0_10_0//:phf", + actual = "@raze__phf__0_10_1//:phf", tags = [ "cargo-raze", "manual", @@ -257,7 +257,7 @@ alias( alias( name = "pin_project", - actual = "@raze__pin_project__1_0_8//:pin_project", + actual = "@raze__pin_project__1_0_10//:pin_project", tags = [ "cargo-raze", "manual", @@ -338,7 +338,7 @@ alias( alias( name = "rusqlite", - actual = "@raze__rusqlite__0_26_1//:rusqlite", + actual = "@raze__rusqlite__0_26_3//:rusqlite", tags = [ "cargo-raze", "manual", @@ -356,7 +356,7 @@ alias( alias( name = "serde", - actual = "@raze__serde__1_0_130//:serde", + actual = "@raze__serde__1_0_133//:serde", tags = [ "cargo-raze", "manual", @@ -374,7 +374,7 @@ alias( alias( name = "serde_derive", - actual = "@raze__serde_derive__1_0_130//:serde_derive", + actual = "@raze__serde_derive__1_0_133//:serde_derive", tags = [ "cargo-raze", "manual", @@ -383,7 +383,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_72//:serde_json", + actual = "@raze__serde_json__1_0_74//:serde_json", tags = [ "cargo-raze", "manual", @@ -464,7 +464,7 @@ alias( alias( name = "tempfile", - actual = "@raze__tempfile__3_2_0//:tempfile", + actual = "@raze__tempfile__3_3_0//:tempfile", tags = [ "cargo-raze", "manual", @@ -473,7 +473,7 @@ alias( alias( name = "tokio", - actual = "@raze__tokio__1_14_0//:tokio", + actual = "@raze__tokio__1_15_0//:tokio", tags = [ "cargo-raze", "manual", diff --git a/rslib/linkchecker/cargo/BUILD.bazel b/rslib/linkchecker/cargo/BUILD.bazel index 83a4f9356..408302a7a 100644 --- a/rslib/linkchecker/cargo/BUILD.bazel +++ b/rslib/linkchecker/cargo/BUILD.bazel @@ -23,7 +23,7 @@ alias( alias( name = "async_trait", - actual = "@raze__async_trait__0_1_51//:async_trait", + actual = "@raze__async_trait__0_1_52//:async_trait", tags = [ "cargo-raze", "manual", @@ -32,7 +32,7 @@ alias( alias( name = "blake3", - actual = "@raze__blake3__1_2_0//:blake3", + actual = "@raze__blake3__1_3_0//:blake3", tags = [ "cargo-raze", "manual", @@ -122,7 +122,7 @@ alias( alias( name = "futures", - actual = "@raze__futures__0_3_18//:futures", + actual = "@raze__futures__0_3_19//:futures", tags = [ "cargo-raze", "manual", @@ -167,7 +167,7 @@ alias( alias( name = "itertools", - actual = "@raze__itertools__0_10_1//:itertools", + actual = "@raze__itertools__0_10_3//:itertools", tags = [ "cargo-raze", "manual", @@ -203,7 +203,7 @@ alias( alias( name = "num_enum", - actual = "@raze__num_enum__0_5_4//:num_enum", + actual = "@raze__num_enum__0_5_6//:num_enum", tags = [ "cargo-raze", "manual", @@ -230,7 +230,7 @@ alias( alias( name = "once_cell", - actual = "@raze__once_cell__1_8_0//:once_cell", + actual = "@raze__once_cell__1_9_0//:once_cell", tags = [ "cargo-raze", "manual", @@ -248,7 +248,7 @@ alias( alias( name = "phf", - actual = "@raze__phf__0_10_0//:phf", + actual = "@raze__phf__0_10_1//:phf", tags = [ "cargo-raze", "manual", @@ -257,7 +257,7 @@ alias( alias( name = "pin_project", - actual = "@raze__pin_project__1_0_8//:pin_project", + actual = "@raze__pin_project__1_0_10//:pin_project", tags = [ "cargo-raze", "manual", @@ -338,7 +338,7 @@ alias( alias( name = "rusqlite", - actual = "@raze__rusqlite__0_26_1//:rusqlite", + actual = "@raze__rusqlite__0_26_3//:rusqlite", tags = [ "cargo-raze", "manual", @@ -356,7 +356,7 @@ alias( alias( name = "serde", - actual = "@raze__serde__1_0_130//:serde", + actual = "@raze__serde__1_0_133//:serde", tags = [ "cargo-raze", "manual", @@ -374,7 +374,7 @@ alias( alias( name = "serde_derive", - actual = "@raze__serde_derive__1_0_130//:serde_derive", + actual = "@raze__serde_derive__1_0_133//:serde_derive", tags = [ "cargo-raze", "manual", @@ -383,7 +383,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_72//:serde_json", + actual = "@raze__serde_json__1_0_74//:serde_json", tags = [ "cargo-raze", "manual", @@ -464,7 +464,7 @@ alias( alias( name = "tempfile", - actual = "@raze__tempfile__3_2_0//:tempfile", + actual = "@raze__tempfile__3_3_0//:tempfile", tags = [ "cargo-raze", "manual", @@ -473,7 +473,7 @@ alias( alias( name = "tokio", - actual = "@raze__tokio__1_14_0//:tokio", + actual = "@raze__tokio__1_15_0//:tokio", tags = [ "cargo-raze", "manual",