rayonパッケージ
Revisión | 7a396f5da6ce5709ccaef8944eb5da85eb1e08d7 (tree) |
---|---|
Tiempo | 2019-12-20 02:10:05 |
Autor | Wolfgang Silbermayr <wolfgang@silb...> |
Commiter | Josh Stone |
Update ci/compat-Cargo.lock for rand 0.7 and rand_xorshift 0.2 updates
@@ -81,6 +81,14 @@ version = "1.3.2" | ||
81 | 81 | source = "registry+https://github.com/rust-lang/crates.io-index" |
82 | 82 | |
83 | 83 | [[package]] |
84 | +name = "c2-chacha" | |
85 | +version = "0.2.3" | |
86 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
87 | +dependencies = [ | |
88 | + "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | |
89 | +] | |
90 | + | |
91 | +[[package]] | |
84 | 92 | name = "cc" |
85 | 93 | version = "1.0.47" |
86 | 94 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -274,6 +282,16 @@ version = "0.1.29" | ||
274 | 282 | source = "registry+https://github.com/rust-lang/crates.io-index" |
275 | 283 | |
276 | 284 | [[package]] |
285 | +name = "getrandom" | |
286 | +version = "0.1.13" | |
287 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
288 | +dependencies = [ | |
289 | + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | |
290 | + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | |
291 | + "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
292 | +] | |
293 | + | |
294 | +[[package]] | |
277 | 295 | name = "gl_generator" |
278 | 296 | version = "0.11.0" |
279 | 297 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -637,6 +655,11 @@ version = "0.3.17" | ||
637 | 655 | source = "registry+https://github.com/rust-lang/crates.io-index" |
638 | 656 | |
639 | 657 | [[package]] |
658 | +name = "ppv-lite86" | |
659 | +version = "0.2.6" | |
660 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
661 | + | |
662 | +[[package]] | |
640 | 663 | name = "proc-macro2" |
641 | 664 | version = "0.4.30" |
642 | 665 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -687,6 +710,18 @@ dependencies = [ | ||
687 | 710 | ] |
688 | 711 | |
689 | 712 | [[package]] |
713 | +name = "rand" | |
714 | +version = "0.7.2" | |
715 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
716 | +dependencies = [ | |
717 | + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | |
718 | + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | |
719 | + "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
720 | + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
721 | + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
722 | +] | |
723 | + | |
724 | +[[package]] | |
690 | 725 | name = "rand_chacha" |
691 | 726 | version = "0.1.1" |
692 | 727 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -696,6 +731,15 @@ dependencies = [ | ||
696 | 731 | ] |
697 | 732 | |
698 | 733 | [[package]] |
734 | +name = "rand_chacha" | |
735 | +version = "0.2.1" | |
736 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
737 | +dependencies = [ | |
738 | + "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
739 | + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
740 | +] | |
741 | + | |
742 | +[[package]] | |
699 | 743 | name = "rand_core" |
700 | 744 | version = "0.3.1" |
701 | 745 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -709,6 +753,14 @@ version = "0.4.2" | ||
709 | 753 | source = "registry+https://github.com/rust-lang/crates.io-index" |
710 | 754 | |
711 | 755 | [[package]] |
756 | +name = "rand_core" | |
757 | +version = "0.5.1" | |
758 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
759 | +dependencies = [ | |
760 | + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | |
761 | +] | |
762 | + | |
763 | +[[package]] | |
712 | 764 | name = "rand_hc" |
713 | 765 | version = "0.1.0" |
714 | 766 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -717,6 +769,14 @@ dependencies = [ | ||
717 | 769 | ] |
718 | 770 | |
719 | 771 | [[package]] |
772 | +name = "rand_hc" | |
773 | +version = "0.2.0" | |
774 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
775 | +dependencies = [ | |
776 | + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
777 | +] | |
778 | + | |
779 | +[[package]] | |
720 | 780 | name = "rand_isaac" |
721 | 781 | version = "0.1.1" |
722 | 782 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -765,6 +825,14 @@ dependencies = [ | ||
765 | 825 | ] |
766 | 826 | |
767 | 827 | [[package]] |
828 | +name = "rand_xorshift" | |
829 | +version = "0.2.0" | |
830 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
831 | +dependencies = [ | |
832 | + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
833 | +] | |
834 | + | |
835 | +[[package]] | |
768 | 836 | name = "raw-window-handle" |
769 | 837 | version = "0.3.1" |
770 | 838 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -794,8 +862,8 @@ dependencies = [ | ||
794 | 862 | "docopt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
795 | 863 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", |
796 | 864 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
797 | - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
798 | - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
865 | + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
866 | + "rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
799 | 867 | "rayon-core 1.6.1", |
800 | 868 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", |
801 | 869 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -811,8 +879,8 @@ dependencies = [ | ||
811 | 879 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
812 | 880 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", |
813 | 881 | "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", |
814 | - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
815 | - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
882 | + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
883 | + "rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
816 | 884 | "scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
817 | 885 | ] |
818 | 886 |
@@ -828,8 +896,8 @@ dependencies = [ | ||
828 | 896 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", |
829 | 897 | "num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
830 | 898 | "odds 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
831 | - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
832 | - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
899 | + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
900 | + "rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
833 | 901 | "rayon 1.2.1", |
834 | 902 | "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
835 | 903 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -896,7 +964,7 @@ dependencies = [ | ||
896 | 964 | "approx 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", |
897 | 965 | "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", |
898 | 966 | "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
899 | - "stb_truetype 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", | |
967 | + "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
900 | 968 | ] |
901 | 969 | |
902 | 970 | [[package]] |
@@ -983,7 +1051,15 @@ dependencies = [ | ||
983 | 1051 | |
984 | 1052 | [[package]] |
985 | 1053 | name = "stb_truetype" |
986 | -version = "0.2.7" | |
1054 | +version = "0.2.8" | |
1055 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
1056 | +dependencies = [ | |
1057 | + "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
1058 | +] | |
1059 | + | |
1060 | +[[package]] | |
1061 | +name = "stb_truetype" | |
1062 | +version = "0.3.1" | |
987 | 1063 | source = "registry+https://github.com/rust-lang/crates.io-index" |
988 | 1064 | dependencies = [ |
989 | 1065 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1068,6 +1144,11 @@ dependencies = [ | ||
1068 | 1144 | ] |
1069 | 1145 | |
1070 | 1146 | [[package]] |
1147 | +name = "wasi" | |
1148 | +version = "0.7.0" | |
1149 | +source = "registry+https://github.com/rust-lang/crates.io-index" | |
1150 | + | |
1151 | +[[package]] | |
1071 | 1152 | name = "wayland-client" |
1072 | 1153 | version = "0.21.13" |
1073 | 1154 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1205,6 +1286,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1205 | 1286 | "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" |
1206 | 1287 | "checksum block 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" |
1207 | 1288 | "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" |
1289 | +"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" | |
1208 | 1290 | "checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8" |
1209 | 1291 | "checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" |
1210 | 1292 | "checksum cgl 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "55e7ec0b74fe5897894cbc207092c577e87c52f8a59e8ca8d97ef37551f60a49" |
@@ -1230,6 +1312,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1230 | 1312 | "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" |
1231 | 1313 | "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" |
1232 | 1314 | "checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" |
1315 | +"checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" | |
1233 | 1316 | "checksum gl_generator 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39a23d5e872a275135d66895d954269cf5e8661d234eb1c2480f4ce0d586acbd" |
1234 | 1317 | "checksum gl_generator 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ca98bbde17256e02d17336a6bdb5a50f7d0ccacee502e191d3e3d0ec2f96f84a" |
1235 | 1318 | "checksum gleam 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "cae10d7c99d0e77b4766e850a60898a17c1abaf01075531f1066f03dc7dc5fc5" |
@@ -1271,20 +1354,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1271 | 1354 | "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" |
1272 | 1355 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" |
1273 | 1356 | "checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" |
1357 | +"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" | |
1274 | 1358 | "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" |
1275 | 1359 | "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" |
1276 | 1360 | "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" |
1277 | 1361 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" |
1278 | 1362 | "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" |
1363 | +"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" | |
1279 | 1364 | "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" |
1365 | +"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" | |
1280 | 1366 | "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" |
1281 | 1367 | "checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" |
1368 | +"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" | |
1282 | 1369 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" |
1370 | +"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | |
1283 | 1371 | "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" |
1284 | 1372 | "checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" |
1285 | 1373 | "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" |
1286 | 1374 | "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" |
1287 | 1375 | "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" |
1376 | +"checksum rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8" | |
1288 | 1377 | "checksum raw-window-handle 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9db80d08d3ed847ce4fb3def46de0af4bfb6155bd09bd6eaf28b5ac72541c1f1" |
1289 | 1378 | "checksum rawpointer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebac11a9d2e11f2af219b8b8d833b76b1ea0e054aa0e8d8e9e4cbde353bdf019" |
1290 | 1379 | "checksum rawslice 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "22b23b9f57ea250c6db4b21e2897b43ff08209217ca8260469fae6c0f9ad7e25" |
@@ -1305,7 +1394,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1305 | 1394 | "checksum shared_library 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11" |
1306 | 1395 | "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" |
1307 | 1396 | "checksum smithay-client-toolkit 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2ccb8c57049b2a34d2cc2b203fa785020ba0129d31920ef0d317430adaf748fa" |
1308 | -"checksum stb_truetype 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "35109f618b50514bfc7e586a6fec41f72e7b408307bcd0ce9b227e0e47d7e096" | |
1397 | +"checksum stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "9d1bec4382294c5a680fcebd29f8451e8d8c04479a026f6909004e2ab1cb425d" | |
1398 | +"checksum stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f77b6b07e862c66a9f3e62a07588fee67cd90a9135a2b942409f195507b4fb51" | |
1309 | 1399 | "checksum strsim 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "032c03039aae92b350aad2e3779c352e104d919cb192ba2fabbd7b831ce4f0f6" |
1310 | 1400 | "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" |
1311 | 1401 | "checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" |
@@ -1317,6 +1407,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1317 | 1407 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" |
1318 | 1408 | "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" |
1319 | 1409 | "checksum walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9658c94fa8b940eab2250bd5a457f9c48b748420d71293b165c8cdbe2f55f71e" |
1410 | +"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" | |
1320 | 1411 | "checksum wayland-client 0.21.13 (registry+https://github.com/rust-lang/crates.io-index)" = "49963e5f9eeaf637bfcd1b9f0701c99fd5cd05225eb51035550d4272806f2713" |
1321 | 1412 | "checksum wayland-commons 0.21.13 (registry+https://github.com/rust-lang/crates.io-index)" = "40c08896768b667e1df195d88a62a53a2d1351a1ed96188be79c196b35bb32ec" |
1322 | 1413 | "checksum wayland-protocols 0.21.13 (registry+https://github.com/rust-lang/crates.io-index)" = "4afde2ea2a428eee6d7d2c8584fdbe8b82eee8b6c353e129a434cd6e07f42145" |