1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746
|
Source: rust-web-sys
Section: rust
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-sequence-cargo
Build-Depends-Arch: cargo:native <!nocheck>,
rustc:native (>= 1.71) <!nocheck>,
libstd-rust-dev <!nocheck>,
librust-js-sys-0.3+std-dev (<< 0.3.86-~~) <!nocheck>,
librust-js-sys-0.3+std-dev (>= 0.3.85-~~) <!nocheck>,
librust-js-sys-0.3-dev (<< 0.3.86-~~) <!nocheck>,
librust-js-sys-0.3-dev (>= 0.3.85-~~) <!nocheck>,
librust-wasm-bindgen-0.2+std-dev (<< 0.2.109-~~) <!nocheck>,
librust-wasm-bindgen-0.2+std-dev (>= 0.2.108-~~) <!nocheck>,
librust-wasm-bindgen-0.2-dev (<< 0.2.109-~~) <!nocheck>,
librust-wasm-bindgen-0.2-dev (>= 0.2.108-~~) <!nocheck>
Maintainer: Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
Uploaders:
kpcyrd <git@rxv.cc>,
Nicolas Braud-Santoni <nicoo@debian.org>,
Wolfgang Silbermayr <wolfgang@silbermayr.at>
Standards-Version: 4.7.2
Vcs-Git: https://salsa.debian.org/rust-team/debcargo-conf.git [src/web-sys]
Vcs-Browser: https://salsa.debian.org/rust-team/debcargo-conf/tree/master/src/web-sys
Homepage: https://wasm-bindgen.github.io/wasm-bindgen/web-sys/index.html
X-Cargo-Crate: web-sys
Package: librust-web-sys-dev
Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
librust-js-sys-0.3+std-dev (<< 0.3.86-~~),
librust-js-sys-0.3+std-dev (>= 0.3.85-~~),
librust-js-sys-0.3-dev (<< 0.3.86-~~),
librust-js-sys-0.3-dev (>= 0.3.85-~~),
librust-wasm-bindgen-0.2+std-dev (<< 0.2.109-~~),
librust-wasm-bindgen-0.2+std-dev (>= 0.2.108-~~),
librust-wasm-bindgen-0.2-dev (<< 0.2.109-~~),
librust-wasm-bindgen-0.2-dev (>= 0.2.108-~~)
Provides:
librust-web-sys+abortcontroller-dev (= ${binary:Version}),
librust-web-sys+abortsignal-dev (= ${binary:Version}),
librust-web-sys+addeventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys+aescbcparams-dev (= ${binary:Version}),
librust-web-sys+aesctrparams-dev (= ${binary:Version}),
librust-web-sys+aesderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys+aesgcmparams-dev (= ${binary:Version}),
librust-web-sys+aeskeyalgorithm-dev (= ${binary:Version}),
librust-web-sys+aeskeygenparams-dev (= ${binary:Version}),
librust-web-sys+algorithm-dev (= ${binary:Version}),
librust-web-sys+alignsetting-dev (= ${binary:Version}),
librust-web-sys+allowedbluetoothdevice-dev (= ${binary:Version}),
librust-web-sys+allowedusbdevice-dev (= ${binary:Version}),
librust-web-sys+alphaoption-dev (= ${binary:Version}),
librust-web-sys+analysernode-dev (= ${binary:Version}),
librust-web-sys+analyseroptions-dev (= ${binary:Version}),
librust-web-sys+angleinstancedarrays-dev (= ${binary:Version}),
librust-web-sys+animation-dev (= ${binary:Version}),
librust-web-sys+animationeffect-dev (= ${binary:Version}),
librust-web-sys+animationevent-dev (= ${binary:Version}),
librust-web-sys+animationeventinit-dev (= ${binary:Version}),
librust-web-sys+animationplaystate-dev (= ${binary:Version}),
librust-web-sys+animationplaybackevent-dev (= ${binary:Version}),
librust-web-sys+animationplaybackeventinit-dev (= ${binary:Version}),
librust-web-sys+animationpropertydetails-dev (= ${binary:Version}),
librust-web-sys+animationpropertyvaluedetails-dev (= ${binary:Version}),
librust-web-sys+animationtimeline-dev (= ${binary:Version}),
librust-web-sys+assignednodesoptions-dev (= ${binary:Version}),
librust-web-sys+attestationconveyancepreference-dev (= ${binary:Version}),
librust-web-sys+attr-dev (= ${binary:Version}),
librust-web-sys+attributenamevalue-dev (= ${binary:Version}),
librust-web-sys+audiobuffer-dev (= ${binary:Version}),
librust-web-sys+audiobufferoptions-dev (= ${binary:Version}),
librust-web-sys+audiobuffersourcenode-dev (= ${binary:Version}),
librust-web-sys+audiobuffersourceoptions-dev (= ${binary:Version}),
librust-web-sys+audioconfiguration-dev (= ${binary:Version}),
librust-web-sys+audiocontext-dev (= ${binary:Version}),
librust-web-sys+audiocontextlatencycategory-dev (= ${binary:Version}),
librust-web-sys+audiocontextoptions-dev (= ${binary:Version}),
librust-web-sys+audiocontextstate-dev (= ${binary:Version}),
librust-web-sys+audiodata-dev (= ${binary:Version}),
librust-web-sys+audiodatacopytooptions-dev (= ${binary:Version}),
librust-web-sys+audiodatainit-dev (= ${binary:Version}),
librust-web-sys+audiodecoder-dev (= ${binary:Version}),
librust-web-sys+audiodecoderconfig-dev (= ${binary:Version}),
librust-web-sys+audiodecoderinit-dev (= ${binary:Version}),
librust-web-sys+audiodecodersupport-dev (= ${binary:Version}),
librust-web-sys+audiodestinationnode-dev (= ${binary:Version}),
librust-web-sys+audioencoder-dev (= ${binary:Version}),
librust-web-sys+audioencoderconfig-dev (= ${binary:Version}),
librust-web-sys+audioencoderinit-dev (= ${binary:Version}),
librust-web-sys+audioencodersupport-dev (= ${binary:Version}),
librust-web-sys+audiolistener-dev (= ${binary:Version}),
librust-web-sys+audionode-dev (= ${binary:Version}),
librust-web-sys+audionodeoptions-dev (= ${binary:Version}),
librust-web-sys+audioparam-dev (= ${binary:Version}),
librust-web-sys+audioparammap-dev (= ${binary:Version}),
librust-web-sys+audioprocessingevent-dev (= ${binary:Version}),
librust-web-sys+audiosampleformat-dev (= ${binary:Version}),
librust-web-sys+audioscheduledsourcenode-dev (= ${binary:Version}),
librust-web-sys+audiosinkinfo-dev (= ${binary:Version}),
librust-web-sys+audiosinkoptions-dev (= ${binary:Version}),
librust-web-sys+audiosinktype-dev (= ${binary:Version}),
librust-web-sys+audiostreamtrack-dev (= ${binary:Version}),
librust-web-sys+audiotrack-dev (= ${binary:Version}),
librust-web-sys+audiotracklist-dev (= ${binary:Version}),
librust-web-sys+audioworklet-dev (= ${binary:Version}),
librust-web-sys+audioworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys+audioworkletnode-dev (= ${binary:Version}),
librust-web-sys+audioworkletnodeoptions-dev (= ${binary:Version}),
librust-web-sys+audioworkletprocessor-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsclientinputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsclientinputsjson-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsclientoutputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsclientoutputsjson-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsdevicepublickeyinputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsdevicepublickeyoutputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionslargeblobinputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionslargebloboutputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsprfinputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsprfoutputs-dev (= ${binary:Version}),
librust-web-sys+authenticationextensionsprfvalues-dev (= ${binary:Version}),
librust-web-sys+authenticationresponsejson-dev (= ${binary:Version}),
librust-web-sys+authenticatorassertionresponse-dev (= ${binary:Version}),
librust-web-sys+authenticatorassertionresponsejson-dev (= ${binary:Version}),
librust-web-sys+authenticatorattachment-dev (= ${binary:Version}),
librust-web-sys+authenticatorattestationresponse-dev (= ${binary:Version}),
librust-web-sys+authenticatorattestationresponsejson-dev (= ${binary:Version}),
librust-web-sys+authenticatorresponse-dev (= ${binary:Version}),
librust-web-sys+authenticatorselectioncriteria-dev (= ${binary:Version}),
librust-web-sys+authenticatortransport-dev (= ${binary:Version}),
librust-web-sys+autokeyword-dev (= ${binary:Version}),
librust-web-sys+autocompleteinfo-dev (= ${binary:Version}),
librust-web-sys+barprop-dev (= ${binary:Version}),
librust-web-sys+baseaudiocontext-dev (= ${binary:Version}),
librust-web-sys+basecomputedkeyframe-dev (= ${binary:Version}),
librust-web-sys+basekeyframe-dev (= ${binary:Version}),
librust-web-sys+basepropertyindexedkeyframe-dev (= ${binary:Version}),
librust-web-sys+basiccardrequest-dev (= ${binary:Version}),
librust-web-sys+basiccardresponse-dev (= ${binary:Version}),
librust-web-sys+basiccardtype-dev (= ${binary:Version}),
librust-web-sys+batterymanager-dev (= ${binary:Version}),
librust-web-sys+beforeunloadevent-dev (= ${binary:Version}),
librust-web-sys+binarytype-dev (= ${binary:Version}),
librust-web-sys+biquadfilternode-dev (= ${binary:Version}),
librust-web-sys+biquadfilteroptions-dev (= ${binary:Version}),
librust-web-sys+biquadfiltertype-dev (= ${binary:Version}),
librust-web-sys+blob-dev (= ${binary:Version}),
librust-web-sys+blobevent-dev (= ${binary:Version}),
librust-web-sys+blobeventinit-dev (= ${binary:Version}),
librust-web-sys+blobpropertybag-dev (= ${binary:Version}),
librust-web-sys+blockparsingoptions-dev (= ${binary:Version}),
librust-web-sys+bluetooth-dev (= ${binary:Version}),
librust-web-sys+bluetoothadvertisingevent-dev (= ${binary:Version}),
librust-web-sys+bluetoothadvertisingeventinit-dev (= ${binary:Version}),
librust-web-sys+bluetoothcharacteristicproperties-dev (= ${binary:Version}),
librust-web-sys+bluetoothdatafilterinit-dev (= ${binary:Version}),
librust-web-sys+bluetoothdevice-dev (= ${binary:Version}),
librust-web-sys+bluetoothlescanfilterinit-dev (= ${binary:Version}),
librust-web-sys+bluetoothmanufacturerdatamap-dev (= ${binary:Version}),
librust-web-sys+bluetoothpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+bluetoothpermissionresult-dev (= ${binary:Version}),
librust-web-sys+bluetoothpermissionstorage-dev (= ${binary:Version}),
librust-web-sys+bluetoothremotegattcharacteristic-dev (= ${binary:Version}),
librust-web-sys+bluetoothremotegattdescriptor-dev (= ${binary:Version}),
librust-web-sys+bluetoothremotegattserver-dev (= ${binary:Version}),
librust-web-sys+bluetoothremotegattservice-dev (= ${binary:Version}),
librust-web-sys+bluetoothservicedatamap-dev (= ${binary:Version}),
librust-web-sys+bluetoothuuid-dev (= ${binary:Version}),
librust-web-sys+boxquadoptions-dev (= ${binary:Version}),
librust-web-sys+broadcastchannel-dev (= ${binary:Version}),
librust-web-sys+browserelementdownloadoptions-dev (= ${binary:Version}),
librust-web-sys+browserelementexecutescriptoptions-dev (= ${binary:Version}),
librust-web-sys+browserfeedwriter-dev (= ${binary:Version}),
librust-web-sys+browserfindcasesensitivity-dev (= ${binary:Version}),
librust-web-sys+browserfinddirection-dev (= ${binary:Version}),
librust-web-sys+bytelengthqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys+cache-dev (= ${binary:Version}),
librust-web-sys+cachebatchoperation-dev (= ${binary:Version}),
librust-web-sys+cachequeryoptions-dev (= ${binary:Version}),
librust-web-sys+cachestorage-dev (= ${binary:Version}),
librust-web-sys+cachestoragenamespace-dev (= ${binary:Version}),
librust-web-sys+canvascapturemediastream-dev (= ${binary:Version}),
librust-web-sys+canvascapturemediastreamtrack-dev (= ${binary:Version}),
librust-web-sys+canvasgradient-dev (= ${binary:Version}),
librust-web-sys+canvaspattern-dev (= ${binary:Version}),
librust-web-sys+canvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys+canvaswindingrule-dev (= ${binary:Version}),
librust-web-sys+caretchangedreason-dev (= ${binary:Version}),
librust-web-sys+caretposition-dev (= ${binary:Version}),
librust-web-sys+caretstatechangedeventinit-dev (= ${binary:Version}),
librust-web-sys+cdatasection-dev (= ${binary:Version}),
librust-web-sys+channelcountmode-dev (= ${binary:Version}),
librust-web-sys+channelinterpretation-dev (= ${binary:Version}),
librust-web-sys+channelmergernode-dev (= ${binary:Version}),
librust-web-sys+channelmergeroptions-dev (= ${binary:Version}),
librust-web-sys+channelsplitternode-dev (= ${binary:Version}),
librust-web-sys+channelsplitteroptions-dev (= ${binary:Version}),
librust-web-sys+characterdata-dev (= ${binary:Version}),
librust-web-sys+checkerboardreason-dev (= ${binary:Version}),
librust-web-sys+checkerboardreport-dev (= ${binary:Version}),
librust-web-sys+checkerboardreportservice-dev (= ${binary:Version}),
librust-web-sys+chromefilepropertybag-dev (= ${binary:Version}),
librust-web-sys+chromeworker-dev (= ${binary:Version}),
librust-web-sys+client-dev (= ${binary:Version}),
librust-web-sys+clientqueryoptions-dev (= ${binary:Version}),
librust-web-sys+clientrectsandtexts-dev (= ${binary:Version}),
librust-web-sys+clienttype-dev (= ${binary:Version}),
librust-web-sys+clients-dev (= ${binary:Version}),
librust-web-sys+clipboard-dev (= ${binary:Version}),
librust-web-sys+clipboardevent-dev (= ${binary:Version}),
librust-web-sys+clipboardeventinit-dev (= ${binary:Version}),
librust-web-sys+clipboarditem-dev (= ${binary:Version}),
librust-web-sys+clipboarditemoptions-dev (= ${binary:Version}),
librust-web-sys+clipboardpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+clipboardunsanitizedformats-dev (= ${binary:Version}),
librust-web-sys+closeevent-dev (= ${binary:Version}),
librust-web-sys+closeeventinit-dev (= ${binary:Version}),
librust-web-sys+codecstate-dev (= ${binary:Version}),
librust-web-sys+collectedclientdata-dev (= ${binary:Version}),
librust-web-sys+colorspaceconversion-dev (= ${binary:Version}),
librust-web-sys+comment-dev (= ${binary:Version}),
librust-web-sys+compositeoperation-dev (= ${binary:Version}),
librust-web-sys+compositionevent-dev (= ${binary:Version}),
librust-web-sys+compositioneventinit-dev (= ${binary:Version}),
librust-web-sys+compressionformat-dev (= ${binary:Version}),
librust-web-sys+compressionstream-dev (= ${binary:Version}),
librust-web-sys+computedeffecttiming-dev (= ${binary:Version}),
librust-web-sys+connstatusdict-dev (= ${binary:Version}),
librust-web-sys+connectiontype-dev (= ${binary:Version}),
librust-web-sys+consolecounter-dev (= ${binary:Version}),
librust-web-sys+consolecountererror-dev (= ${binary:Version}),
librust-web-sys+consoleevent-dev (= ${binary:Version}),
librust-web-sys+consoleinstance-dev (= ${binary:Version}),
librust-web-sys+consoleinstanceoptions-dev (= ${binary:Version}),
librust-web-sys+consolelevel-dev (= ${binary:Version}),
librust-web-sys+consoleloglevel-dev (= ${binary:Version}),
librust-web-sys+consoleprofileevent-dev (= ${binary:Version}),
librust-web-sys+consolestackentry-dev (= ${binary:Version}),
librust-web-sys+consoletimererror-dev (= ${binary:Version}),
librust-web-sys+consoletimerlogorend-dev (= ${binary:Version}),
librust-web-sys+consoletimerstart-dev (= ${binary:Version}),
librust-web-sys+constantsourcenode-dev (= ${binary:Version}),
librust-web-sys+constantsourceoptions-dev (= ${binary:Version}),
librust-web-sys+constrainbooleanparameters-dev (= ${binary:Version}),
librust-web-sys+constraindomstringparameters-dev (= ${binary:Version}),
librust-web-sys+constraindoublerange-dev (= ${binary:Version}),
librust-web-sys+constrainlongrange-dev (= ${binary:Version}),
librust-web-sys+contextattributes2d-dev (= ${binary:Version}),
librust-web-sys+convertcoordinateoptions-dev (= ${binary:Version}),
librust-web-sys+convolvernode-dev (= ${binary:Version}),
librust-web-sys+convolveroptions-dev (= ${binary:Version}),
librust-web-sys+cookiechangeevent-dev (= ${binary:Version}),
librust-web-sys+cookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys+cookieinit-dev (= ${binary:Version}),
librust-web-sys+cookielistitem-dev (= ${binary:Version}),
librust-web-sys+cookiesamesite-dev (= ${binary:Version}),
librust-web-sys+cookiestore-dev (= ${binary:Version}),
librust-web-sys+cookiestoredeleteoptions-dev (= ${binary:Version}),
librust-web-sys+cookiestoregetoptions-dev (= ${binary:Version}),
librust-web-sys+cookiestoremanager-dev (= ${binary:Version}),
librust-web-sys+coordinates-dev (= ${binary:Version}),
librust-web-sys+countqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys+credential-dev (= ${binary:Version}),
librust-web-sys+credentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys+credentialpropertiesoutput-dev (= ${binary:Version}),
librust-web-sys+credentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys+credentialscontainer-dev (= ${binary:Version}),
librust-web-sys+crypto-dev (= ${binary:Version}),
librust-web-sys+cryptokey-dev (= ${binary:Version}),
librust-web-sys+cryptokeypair-dev (= ${binary:Version}),
librust-web-sys+cssanimation-dev (= ${binary:Version}),
librust-web-sys+cssboxtype-dev (= ${binary:Version}),
librust-web-sys+cssconditionrule-dev (= ${binary:Version}),
librust-web-sys+csscounterstylerule-dev (= ${binary:Version}),
librust-web-sys+cssfontfacerule-dev (= ${binary:Version}),
librust-web-sys+cssfontfeaturevaluesrule-dev (= ${binary:Version}),
librust-web-sys+cssgroupingrule-dev (= ${binary:Version}),
librust-web-sys+cssimportrule-dev (= ${binary:Version}),
librust-web-sys+csskeyframerule-dev (= ${binary:Version}),
librust-web-sys+csskeyframesrule-dev (= ${binary:Version}),
librust-web-sys+cssmediarule-dev (= ${binary:Version}),
librust-web-sys+cssnamespacerule-dev (= ${binary:Version}),
librust-web-sys+csspagerule-dev (= ${binary:Version}),
librust-web-sys+csspseudoelement-dev (= ${binary:Version}),
librust-web-sys+cssrule-dev (= ${binary:Version}),
librust-web-sys+cssrulelist-dev (= ${binary:Version}),
librust-web-sys+cssstyledeclaration-dev (= ${binary:Version}),
librust-web-sys+cssstylerule-dev (= ${binary:Version}),
librust-web-sys+cssstylesheet-dev (= ${binary:Version}),
librust-web-sys+cssstylesheetparsingmode-dev (= ${binary:Version}),
librust-web-sys+csssupportsrule-dev (= ${binary:Version}),
librust-web-sys+csstransition-dev (= ${binary:Version}),
librust-web-sys+customelementregistry-dev (= ${binary:Version}),
librust-web-sys+customevent-dev (= ${binary:Version}),
librust-web-sys+customeventinit-dev (= ${binary:Version}),
librust-web-sys+datatransfer-dev (= ${binary:Version}),
librust-web-sys+datatransferitem-dev (= ${binary:Version}),
librust-web-sys+datatransferitemlist-dev (= ${binary:Version}),
librust-web-sys+datetimevalue-dev (= ${binary:Version}),
librust-web-sys+decoderdoctornotification-dev (= ${binary:Version}),
librust-web-sys+decoderdoctornotificationtype-dev (= ${binary:Version}),
librust-web-sys+decompressionstream-dev (= ${binary:Version}),
librust-web-sys+dedicatedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys+delaynode-dev (= ${binary:Version}),
librust-web-sys+delayoptions-dev (= ${binary:Version}),
librust-web-sys+deviceacceleration-dev (= ${binary:Version}),
librust-web-sys+deviceaccelerationinit-dev (= ${binary:Version}),
librust-web-sys+devicelightevent-dev (= ${binary:Version}),
librust-web-sys+devicelighteventinit-dev (= ${binary:Version}),
librust-web-sys+devicemotionevent-dev (= ${binary:Version}),
librust-web-sys+devicemotioneventinit-dev (= ${binary:Version}),
librust-web-sys+deviceorientationevent-dev (= ${binary:Version}),
librust-web-sys+deviceorientationeventinit-dev (= ${binary:Version}),
librust-web-sys+deviceproximityevent-dev (= ${binary:Version}),
librust-web-sys+deviceproximityeventinit-dev (= ${binary:Version}),
librust-web-sys+devicerotationrate-dev (= ${binary:Version}),
librust-web-sys+devicerotationrateinit-dev (= ${binary:Version}),
librust-web-sys+dhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys+directionsetting-dev (= ${binary:Version}),
librust-web-sys+directory-dev (= ${binary:Version}),
librust-web-sys+directorypickeroptions-dev (= ${binary:Version}),
librust-web-sys+displaymediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys+displaynameoptions-dev (= ${binary:Version}),
librust-web-sys+displaynameresult-dev (= ${binary:Version}),
librust-web-sys+distancemodeltype-dev (= ${binary:Version}),
librust-web-sys+dnscachedict-dev (= ${binary:Version}),
librust-web-sys+dnscacheentry-dev (= ${binary:Version}),
librust-web-sys+dnslookupdict-dev (= ${binary:Version}),
librust-web-sys+document-dev (= ${binary:Version}),
librust-web-sys+documentfragment-dev (= ${binary:Version}),
librust-web-sys+documenttimeline-dev (= ${binary:Version}),
librust-web-sys+documenttimelineoptions-dev (= ${binary:Version}),
librust-web-sys+documenttype-dev (= ${binary:Version}),
librust-web-sys+domerror-dev (= ${binary:Version}),
librust-web-sys+domexception-dev (= ${binary:Version}),
librust-web-sys+domimplementation-dev (= ${binary:Version}),
librust-web-sys+dommatrix-dev (= ${binary:Version}),
librust-web-sys+dommatrix2dinit-dev (= ${binary:Version}),
librust-web-sys+dommatrixinit-dev (= ${binary:Version}),
librust-web-sys+dommatrixreadonly-dev (= ${binary:Version}),
librust-web-sys+domparser-dev (= ${binary:Version}),
librust-web-sys+dompoint-dev (= ${binary:Version}),
librust-web-sys+dompointinit-dev (= ${binary:Version}),
librust-web-sys+dompointreadonly-dev (= ${binary:Version}),
librust-web-sys+domquad-dev (= ${binary:Version}),
librust-web-sys+domquadinit-dev (= ${binary:Version}),
librust-web-sys+domquadjson-dev (= ${binary:Version}),
librust-web-sys+domrect-dev (= ${binary:Version}),
librust-web-sys+domrectinit-dev (= ${binary:Version}),
librust-web-sys+domrectlist-dev (= ${binary:Version}),
librust-web-sys+domrectreadonly-dev (= ${binary:Version}),
librust-web-sys+domrequest-dev (= ${binary:Version}),
librust-web-sys+domrequestreadystate-dev (= ${binary:Version}),
librust-web-sys+domstringlist-dev (= ${binary:Version}),
librust-web-sys+domstringmap-dev (= ${binary:Version}),
librust-web-sys+domtokenlist-dev (= ${binary:Version}),
librust-web-sys+domwindowresizeeventdetail-dev (= ${binary:Version}),
librust-web-sys+doublerange-dev (= ${binary:Version}),
librust-web-sys+dragevent-dev (= ${binary:Version}),
librust-web-sys+drageventinit-dev (= ${binary:Version}),
librust-web-sys+dynamicscompressornode-dev (= ${binary:Version}),
librust-web-sys+dynamicscompressoroptions-dev (= ${binary:Version}),
librust-web-sys+eckeyalgorithm-dev (= ${binary:Version}),
librust-web-sys+eckeygenparams-dev (= ${binary:Version}),
librust-web-sys+eckeyimportparams-dev (= ${binary:Version}),
librust-web-sys+ecdhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys+ecdsaparams-dev (= ${binary:Version}),
librust-web-sys+effecttiming-dev (= ${binary:Version}),
librust-web-sys+element-dev (= ${binary:Version}),
librust-web-sys+elementcreationoptions-dev (= ${binary:Version}),
librust-web-sys+elementdefinitionoptions-dev (= ${binary:Version}),
librust-web-sys+encodedaudiochunk-dev (= ${binary:Version}),
librust-web-sys+encodedaudiochunkinit-dev (= ${binary:Version}),
librust-web-sys+encodedaudiochunkmetadata-dev (= ${binary:Version}),
librust-web-sys+encodedaudiochunktype-dev (= ${binary:Version}),
librust-web-sys+encodedvideochunk-dev (= ${binary:Version}),
librust-web-sys+encodedvideochunkinit-dev (= ${binary:Version}),
librust-web-sys+encodedvideochunkmetadata-dev (= ${binary:Version}),
librust-web-sys+encodedvideochunktype-dev (= ${binary:Version}),
librust-web-sys+endingtypes-dev (= ${binary:Version}),
librust-web-sys+errorcallback-dev (= ${binary:Version}),
librust-web-sys+errorevent-dev (= ${binary:Version}),
librust-web-sys+erroreventinit-dev (= ${binary:Version}),
librust-web-sys+event-dev (= ${binary:Version}),
librust-web-sys+eventinit-dev (= ${binary:Version}),
librust-web-sys+eventlistener-dev (= ${binary:Version}),
librust-web-sys+eventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys+eventmodifierinit-dev (= ${binary:Version}),
librust-web-sys+eventsource-dev (= ${binary:Version}),
librust-web-sys+eventsourceinit-dev (= ${binary:Version}),
librust-web-sys+eventtarget-dev (= ${binary:Version}),
librust-web-sys+exception-dev (= ${binary:Version}),
librust-web-sys+extblendminmax-dev (= ${binary:Version}),
librust-web-sys+extcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys+extcolorbufferhalffloat-dev (= ${binary:Version}),
librust-web-sys+extdisjointtimerquery-dev (= ${binary:Version}),
librust-web-sys+extfragdepth-dev (= ${binary:Version}),
librust-web-sys+extsrgb-dev (= ${binary:Version}),
librust-web-sys+extshadertexturelod-dev (= ${binary:Version}),
librust-web-sys+exttexturefilteranisotropic-dev (= ${binary:Version}),
librust-web-sys+exttexturenorm16-dev (= ${binary:Version}),
librust-web-sys+extendablecookiechangeevent-dev (= ${binary:Version}),
librust-web-sys+extendablecookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys+extendableevent-dev (= ${binary:Version}),
librust-web-sys+extendableeventinit-dev (= ${binary:Version}),
librust-web-sys+extendablemessageevent-dev (= ${binary:Version}),
librust-web-sys+extendablemessageeventinit-dev (= ${binary:Version}),
librust-web-sys+external-dev (= ${binary:Version}),
librust-web-sys+fakepluginmimeentry-dev (= ${binary:Version}),
librust-web-sys+fakeplugintaginit-dev (= ${binary:Version}),
librust-web-sys+fetchevent-dev (= ${binary:Version}),
librust-web-sys+fetcheventinit-dev (= ${binary:Version}),
librust-web-sys+fetchobserver-dev (= ${binary:Version}),
librust-web-sys+fetchreadablestreamreaddataarray-dev (= ${binary:Version}),
librust-web-sys+fetchreadablestreamreaddatadone-dev (= ${binary:Version}),
librust-web-sys+fetchstate-dev (= ${binary:Version}),
librust-web-sys+file-dev (= ${binary:Version}),
librust-web-sys+filecallback-dev (= ${binary:Version}),
librust-web-sys+filelist-dev (= ${binary:Version}),
librust-web-sys+filepickeraccepttype-dev (= ${binary:Version}),
librust-web-sys+filepickeroptions-dev (= ${binary:Version}),
librust-web-sys+filepropertybag-dev (= ${binary:Version}),
librust-web-sys+filereader-dev (= ${binary:Version}),
librust-web-sys+filereadersync-dev (= ${binary:Version}),
librust-web-sys+filesystem-dev (= ${binary:Version}),
librust-web-sys+filesystemcreatewritableoptions-dev (= ${binary:Version}),
librust-web-sys+filesystemdirectoryentry-dev (= ${binary:Version}),
librust-web-sys+filesystemdirectoryhandle-dev (= ${binary:Version}),
librust-web-sys+filesystemdirectoryreader-dev (= ${binary:Version}),
librust-web-sys+filesystementriescallback-dev (= ${binary:Version}),
librust-web-sys+filesystementry-dev (= ${binary:Version}),
librust-web-sys+filesystementrycallback-dev (= ${binary:Version}),
librust-web-sys+filesystemfileentry-dev (= ${binary:Version}),
librust-web-sys+filesystemfilehandle-dev (= ${binary:Version}),
librust-web-sys+filesystemflags-dev (= ${binary:Version}),
librust-web-sys+filesystemgetdirectoryoptions-dev (= ${binary:Version}),
librust-web-sys+filesystemgetfileoptions-dev (= ${binary:Version}),
librust-web-sys+filesystemhandle-dev (= ${binary:Version}),
librust-web-sys+filesystemhandlekind-dev (= ${binary:Version}),
librust-web-sys+filesystemhandlepermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+filesystempermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+filesystempermissionmode-dev (= ${binary:Version}),
librust-web-sys+filesystemreadwriteoptions-dev (= ${binary:Version}),
librust-web-sys+filesystemremoveoptions-dev (= ${binary:Version}),
librust-web-sys+filesystemsyncaccesshandle-dev (= ${binary:Version}),
librust-web-sys+filesystemwritablefilestream-dev (= ${binary:Version}),
librust-web-sys+fillmode-dev (= ${binary:Version}),
librust-web-sys+flashclassification-dev (= ${binary:Version}),
librust-web-sys+flowcontroltype-dev (= ${binary:Version}),
librust-web-sys+focusevent-dev (= ${binary:Version}),
librust-web-sys+focuseventinit-dev (= ${binary:Version}),
librust-web-sys+focusoptions-dev (= ${binary:Version}),
librust-web-sys+fontdata-dev (= ${binary:Version}),
librust-web-sys+fontface-dev (= ${binary:Version}),
librust-web-sys+fontfacedescriptors-dev (= ${binary:Version}),
librust-web-sys+fontfaceloadstatus-dev (= ${binary:Version}),
librust-web-sys+fontfaceset-dev (= ${binary:Version}),
librust-web-sys+fontfacesetiterator-dev (= ${binary:Version}),
librust-web-sys+fontfacesetiteratorresult-dev (= ${binary:Version}),
librust-web-sys+fontfacesetloadevent-dev (= ${binary:Version}),
librust-web-sys+fontfacesetloadeventinit-dev (= ${binary:Version}),
librust-web-sys+fontfacesetloadstatus-dev (= ${binary:Version}),
librust-web-sys+formdata-dev (= ${binary:Version}),
librust-web-sys+frametype-dev (= ${binary:Version}),
librust-web-sys+fuzzingfunctions-dev (= ${binary:Version}),
librust-web-sys+gainnode-dev (= ${binary:Version}),
librust-web-sys+gainoptions-dev (= ${binary:Version}),
librust-web-sys+gamepad-dev (= ${binary:Version}),
librust-web-sys+gamepadbutton-dev (= ${binary:Version}),
librust-web-sys+gamepadeffectparameters-dev (= ${binary:Version}),
librust-web-sys+gamepadevent-dev (= ${binary:Version}),
librust-web-sys+gamepadeventinit-dev (= ${binary:Version}),
librust-web-sys+gamepadhand-dev (= ${binary:Version}),
librust-web-sys+gamepadhapticactuator-dev (= ${binary:Version}),
librust-web-sys+gamepadhapticactuatortype-dev (= ${binary:Version}),
librust-web-sys+gamepadhapticeffecttype-dev (= ${binary:Version}),
librust-web-sys+gamepadhapticsresult-dev (= ${binary:Version}),
librust-web-sys+gamepadmappingtype-dev (= ${binary:Version}),
librust-web-sys+gamepadpose-dev (= ${binary:Version}),
librust-web-sys+gamepadtouch-dev (= ${binary:Version}),
librust-web-sys+geolocation-dev (= ${binary:Version}),
librust-web-sys+gestureevent-dev (= ${binary:Version}),
librust-web-sys+getanimationsoptions-dev (= ${binary:Version}),
librust-web-sys+getrootnodeoptions-dev (= ${binary:Version}),
librust-web-sys+getusermediarequest-dev (= ${binary:Version}),
librust-web-sys+gpu-dev (= ${binary:Version}),
librust-web-sys+gpuadapter-dev (= ${binary:Version}),
librust-web-sys+gpuadapterinfo-dev (= ${binary:Version}),
librust-web-sys+gpuaddressmode-dev (= ${binary:Version}),
librust-web-sys+gpuautolayoutmode-dev (= ${binary:Version}),
librust-web-sys+gpubindgroup-dev (= ${binary:Version}),
librust-web-sys+gpubindgroupdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpubindgroupentry-dev (= ${binary:Version}),
librust-web-sys+gpubindgrouplayout-dev (= ${binary:Version}),
librust-web-sys+gpubindgrouplayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpubindgrouplayoutentry-dev (= ${binary:Version}),
librust-web-sys+gpublendcomponent-dev (= ${binary:Version}),
librust-web-sys+gpublendfactor-dev (= ${binary:Version}),
librust-web-sys+gpublendoperation-dev (= ${binary:Version}),
librust-web-sys+gpublendstate-dev (= ${binary:Version}),
librust-web-sys+gpubuffer-dev (= ${binary:Version}),
librust-web-sys+gpubufferbinding-dev (= ${binary:Version}),
librust-web-sys+gpubufferbindinglayout-dev (= ${binary:Version}),
librust-web-sys+gpubufferbindingtype-dev (= ${binary:Version}),
librust-web-sys+gpubufferdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpubuffermapstate-dev (= ${binary:Version}),
librust-web-sys+gpucanvasalphamode-dev (= ${binary:Version}),
librust-web-sys+gpucanvasconfiguration-dev (= ${binary:Version}),
librust-web-sys+gpucanvascontext-dev (= ${binary:Version}),
librust-web-sys+gpucanvastonemapping-dev (= ${binary:Version}),
librust-web-sys+gpucanvastonemappingmode-dev (= ${binary:Version}),
librust-web-sys+gpucolordict-dev (= ${binary:Version}),
librust-web-sys+gpucolortargetstate-dev (= ${binary:Version}),
librust-web-sys+gpucommandbuffer-dev (= ${binary:Version}),
librust-web-sys+gpucommandbufferdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpucommandencoder-dev (= ${binary:Version}),
librust-web-sys+gpucommandencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpucomparefunction-dev (= ${binary:Version}),
librust-web-sys+gpucompilationinfo-dev (= ${binary:Version}),
librust-web-sys+gpucompilationmessage-dev (= ${binary:Version}),
librust-web-sys+gpucompilationmessagetype-dev (= ${binary:Version}),
librust-web-sys+gpucomputepassdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpucomputepassencoder-dev (= ${binary:Version}),
librust-web-sys+gpucomputepasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys+gpucomputepipeline-dev (= ${binary:Version}),
librust-web-sys+gpucomputepipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys+gpucopyexternalimagedestinfo-dev (= ${binary:Version}),
librust-web-sys+gpucopyexternalimagesourceinfo-dev (= ${binary:Version}),
librust-web-sys+gpucullmode-dev (= ${binary:Version}),
librust-web-sys+gpudepthstencilstate-dev (= ${binary:Version}),
librust-web-sys+gpudevice-dev (= ${binary:Version}),
librust-web-sys+gpudevicedescriptor-dev (= ${binary:Version}),
librust-web-sys+gpudevicelostinfo-dev (= ${binary:Version}),
librust-web-sys+gpudevicelostreason-dev (= ${binary:Version}),
librust-web-sys+gpuerror-dev (= ${binary:Version}),
librust-web-sys+gpuerrorfilter-dev (= ${binary:Version}),
librust-web-sys+gpuextent3ddict-dev (= ${binary:Version}),
librust-web-sys+gpuexternaltexture-dev (= ${binary:Version}),
librust-web-sys+gpuexternaltexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys+gpuexternaltexturedescriptor-dev (= ${binary:Version}),
librust-web-sys+gpufeaturename-dev (= ${binary:Version}),
librust-web-sys+gpufiltermode-dev (= ${binary:Version}),
librust-web-sys+gpufragmentstate-dev (= ${binary:Version}),
librust-web-sys+gpufrontface-dev (= ${binary:Version}),
librust-web-sys+gpuindexformat-dev (= ${binary:Version}),
librust-web-sys+gpuinternalerror-dev (= ${binary:Version}),
librust-web-sys+gpuloadop-dev (= ${binary:Version}),
librust-web-sys+gpumipmapfiltermode-dev (= ${binary:Version}),
librust-web-sys+gpumultisamplestate-dev (= ${binary:Version}),
librust-web-sys+gpuobjectdescriptorbase-dev (= ${binary:Version}),
librust-web-sys+gpuorigin2ddict-dev (= ${binary:Version}),
librust-web-sys+gpuorigin3ddict-dev (= ${binary:Version}),
librust-web-sys+gpuoutofmemoryerror-dev (= ${binary:Version}),
librust-web-sys+gpupipelinedescriptorbase-dev (= ${binary:Version}),
librust-web-sys+gpupipelineerror-dev (= ${binary:Version}),
librust-web-sys+gpupipelineerrorinit-dev (= ${binary:Version}),
librust-web-sys+gpupipelineerrorreason-dev (= ${binary:Version}),
librust-web-sys+gpupipelinelayout-dev (= ${binary:Version}),
librust-web-sys+gpupipelinelayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpupowerpreference-dev (= ${binary:Version}),
librust-web-sys+gpuprimitivestate-dev (= ${binary:Version}),
librust-web-sys+gpuprimitivetopology-dev (= ${binary:Version}),
librust-web-sys+gpuprogrammablestage-dev (= ${binary:Version}),
librust-web-sys+gpuqueryset-dev (= ${binary:Version}),
librust-web-sys+gpuquerysetdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpuquerytype-dev (= ${binary:Version}),
librust-web-sys+gpuqueue-dev (= ${binary:Version}),
librust-web-sys+gpuqueuedescriptor-dev (= ${binary:Version}),
librust-web-sys+gpurenderbundle-dev (= ${binary:Version}),
librust-web-sys+gpurenderbundledescriptor-dev (= ${binary:Version}),
librust-web-sys+gpurenderbundleencoder-dev (= ${binary:Version}),
librust-web-sys+gpurenderbundleencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpurenderpasscolorattachment-dev (= ${binary:Version}),
librust-web-sys+gpurenderpassdepthstencilattachment-dev (= ${binary:Version}),
librust-web-sys+gpurenderpassdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpurenderpassencoder-dev (= ${binary:Version}),
librust-web-sys+gpurenderpasslayout-dev (= ${binary:Version}),
librust-web-sys+gpurenderpasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys+gpurenderpipeline-dev (= ${binary:Version}),
librust-web-sys+gpurenderpipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys+gpurequestadapteroptions-dev (= ${binary:Version}),
librust-web-sys+gpusampler-dev (= ${binary:Version}),
librust-web-sys+gpusamplerbindinglayout-dev (= ${binary:Version}),
librust-web-sys+gpusamplerbindingtype-dev (= ${binary:Version}),
librust-web-sys+gpusamplerdescriptor-dev (= ${binary:Version}),
librust-web-sys+gpushadermodule-dev (= ${binary:Version}),
librust-web-sys+gpushadermodulecompilationhint-dev (= ${binary:Version}),
librust-web-sys+gpushadermoduledescriptor-dev (= ${binary:Version}),
librust-web-sys+gpustencilfacestate-dev (= ${binary:Version}),
librust-web-sys+gpustenciloperation-dev (= ${binary:Version}),
librust-web-sys+gpustoragetextureaccess-dev (= ${binary:Version}),
librust-web-sys+gpustoragetexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys+gpustoreop-dev (= ${binary:Version}),
librust-web-sys+gpusupportedfeatures-dev (= ${binary:Version}),
librust-web-sys+gpusupportedlimits-dev (= ${binary:Version}),
librust-web-sys+gputexelcopybufferinfo-dev (= ${binary:Version}),
librust-web-sys+gputexelcopybufferlayout-dev (= ${binary:Version}),
librust-web-sys+gputexelcopytextureinfo-dev (= ${binary:Version}),
librust-web-sys+gputexture-dev (= ${binary:Version}),
librust-web-sys+gputextureaspect-dev (= ${binary:Version}),
librust-web-sys+gputexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys+gputexturedescriptor-dev (= ${binary:Version}),
librust-web-sys+gputexturedimension-dev (= ${binary:Version}),
librust-web-sys+gputextureformat-dev (= ${binary:Version}),
librust-web-sys+gputexturesampletype-dev (= ${binary:Version}),
librust-web-sys+gputextureview-dev (= ${binary:Version}),
librust-web-sys+gputextureviewdescriptor-dev (= ${binary:Version}),
librust-web-sys+gputextureviewdimension-dev (= ${binary:Version}),
librust-web-sys+gpuuncapturederrorevent-dev (= ${binary:Version}),
librust-web-sys+gpuuncapturederroreventinit-dev (= ${binary:Version}),
librust-web-sys+gpuvalidationerror-dev (= ${binary:Version}),
librust-web-sys+gpuvertexattribute-dev (= ${binary:Version}),
librust-web-sys+gpuvertexbufferlayout-dev (= ${binary:Version}),
librust-web-sys+gpuvertexformat-dev (= ${binary:Version}),
librust-web-sys+gpuvertexstate-dev (= ${binary:Version}),
librust-web-sys+gpuvertexstepmode-dev (= ${binary:Version}),
librust-web-sys+groupedhistoryeventinit-dev (= ${binary:Version}),
librust-web-sys+halfopeninfodict-dev (= ${binary:Version}),
librust-web-sys+hardwareacceleration-dev (= ${binary:Version}),
librust-web-sys+hashchangeevent-dev (= ${binary:Version}),
librust-web-sys+hashchangeeventinit-dev (= ${binary:Version}),
librust-web-sys+headers-dev (= ${binary:Version}),
librust-web-sys+headersguardenum-dev (= ${binary:Version}),
librust-web-sys+hid-dev (= ${binary:Version}),
librust-web-sys+hidcollectioninfo-dev (= ${binary:Version}),
librust-web-sys+hidconnectionevent-dev (= ${binary:Version}),
librust-web-sys+hidconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys+hiddevice-dev (= ${binary:Version}),
librust-web-sys+hiddevicefilter-dev (= ${binary:Version}),
librust-web-sys+hiddevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys+hidinputreportevent-dev (= ${binary:Version}),
librust-web-sys+hidinputreporteventinit-dev (= ${binary:Version}),
librust-web-sys+hidreportinfo-dev (= ${binary:Version}),
librust-web-sys+hidreportitem-dev (= ${binary:Version}),
librust-web-sys+hidunitsystem-dev (= ${binary:Version}),
librust-web-sys+hiddenplugineventinit-dev (= ${binary:Version}),
librust-web-sys+history-dev (= ${binary:Version}),
librust-web-sys+hitregionoptions-dev (= ${binary:Version}),
librust-web-sys+hkdfparams-dev (= ${binary:Version}),
librust-web-sys+hmacderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys+hmacimportparams-dev (= ${binary:Version}),
librust-web-sys+hmackeyalgorithm-dev (= ${binary:Version}),
librust-web-sys+hmackeygenparams-dev (= ${binary:Version}),
librust-web-sys+htmlallcollection-dev (= ${binary:Version}),
librust-web-sys+htmlanchorelement-dev (= ${binary:Version}),
librust-web-sys+htmlareaelement-dev (= ${binary:Version}),
librust-web-sys+htmlaudioelement-dev (= ${binary:Version}),
librust-web-sys+htmlbaseelement-dev (= ${binary:Version}),
librust-web-sys+htmlbodyelement-dev (= ${binary:Version}),
librust-web-sys+htmlbrelement-dev (= ${binary:Version}),
librust-web-sys+htmlbuttonelement-dev (= ${binary:Version}),
librust-web-sys+htmlcanvaselement-dev (= ${binary:Version}),
librust-web-sys+htmlcollection-dev (= ${binary:Version}),
librust-web-sys+htmldlistelement-dev (= ${binary:Version}),
librust-web-sys+htmldataelement-dev (= ${binary:Version}),
librust-web-sys+htmldatalistelement-dev (= ${binary:Version}),
librust-web-sys+htmldetailselement-dev (= ${binary:Version}),
librust-web-sys+htmldialogelement-dev (= ${binary:Version}),
librust-web-sys+htmldirectoryelement-dev (= ${binary:Version}),
librust-web-sys+htmldivelement-dev (= ${binary:Version}),
librust-web-sys+htmldocument-dev (= ${binary:Version}),
librust-web-sys+htmlelement-dev (= ${binary:Version}),
librust-web-sys+htmlembedelement-dev (= ${binary:Version}),
librust-web-sys+htmlfieldsetelement-dev (= ${binary:Version}),
librust-web-sys+htmlfontelement-dev (= ${binary:Version}),
librust-web-sys+htmlformcontrolscollection-dev (= ${binary:Version}),
librust-web-sys+htmlformelement-dev (= ${binary:Version}),
librust-web-sys+htmlframeelement-dev (= ${binary:Version}),
librust-web-sys+htmlframesetelement-dev (= ${binary:Version}),
librust-web-sys+htmlheadelement-dev (= ${binary:Version}),
librust-web-sys+htmlheadingelement-dev (= ${binary:Version}),
librust-web-sys+htmlhrelement-dev (= ${binary:Version}),
librust-web-sys+htmlhtmlelement-dev (= ${binary:Version}),
librust-web-sys+htmliframeelement-dev (= ${binary:Version}),
librust-web-sys+htmlimageelement-dev (= ${binary:Version}),
librust-web-sys+htmlinputelement-dev (= ${binary:Version}),
librust-web-sys+htmllabelelement-dev (= ${binary:Version}),
librust-web-sys+htmllegendelement-dev (= ${binary:Version}),
librust-web-sys+htmllielement-dev (= ${binary:Version}),
librust-web-sys+htmllinkelement-dev (= ${binary:Version}),
librust-web-sys+htmlmapelement-dev (= ${binary:Version}),
librust-web-sys+htmlmediaelement-dev (= ${binary:Version}),
librust-web-sys+htmlmenuelement-dev (= ${binary:Version}),
librust-web-sys+htmlmenuitemelement-dev (= ${binary:Version}),
librust-web-sys+htmlmetaelement-dev (= ${binary:Version}),
librust-web-sys+htmlmeterelement-dev (= ${binary:Version}),
librust-web-sys+htmlmodelement-dev (= ${binary:Version}),
librust-web-sys+htmlolistelement-dev (= ${binary:Version}),
librust-web-sys+htmlobjectelement-dev (= ${binary:Version}),
librust-web-sys+htmloptgroupelement-dev (= ${binary:Version}),
librust-web-sys+htmloptionelement-dev (= ${binary:Version}),
librust-web-sys+htmloptionscollection-dev (= ${binary:Version}),
librust-web-sys+htmloutputelement-dev (= ${binary:Version}),
librust-web-sys+htmlparagraphelement-dev (= ${binary:Version}),
librust-web-sys+htmlparamelement-dev (= ${binary:Version}),
librust-web-sys+htmlpictureelement-dev (= ${binary:Version}),
librust-web-sys+htmlpreelement-dev (= ${binary:Version}),
librust-web-sys+htmlprogresselement-dev (= ${binary:Version}),
librust-web-sys+htmlquoteelement-dev (= ${binary:Version}),
librust-web-sys+htmlscriptelement-dev (= ${binary:Version}),
librust-web-sys+htmlselectelement-dev (= ${binary:Version}),
librust-web-sys+htmlslotelement-dev (= ${binary:Version}),
librust-web-sys+htmlsourceelement-dev (= ${binary:Version}),
librust-web-sys+htmlspanelement-dev (= ${binary:Version}),
librust-web-sys+htmlstyleelement-dev (= ${binary:Version}),
librust-web-sys+htmltablecaptionelement-dev (= ${binary:Version}),
librust-web-sys+htmltablecellelement-dev (= ${binary:Version}),
librust-web-sys+htmltablecolelement-dev (= ${binary:Version}),
librust-web-sys+htmltableelement-dev (= ${binary:Version}),
librust-web-sys+htmltablerowelement-dev (= ${binary:Version}),
librust-web-sys+htmltablesectionelement-dev (= ${binary:Version}),
librust-web-sys+htmltemplateelement-dev (= ${binary:Version}),
librust-web-sys+htmltextareaelement-dev (= ${binary:Version}),
librust-web-sys+htmltimeelement-dev (= ${binary:Version}),
librust-web-sys+htmltitleelement-dev (= ${binary:Version}),
librust-web-sys+htmltrackelement-dev (= ${binary:Version}),
librust-web-sys+htmlulistelement-dev (= ${binary:Version}),
librust-web-sys+htmlunknownelement-dev (= ${binary:Version}),
librust-web-sys+htmlvideoelement-dev (= ${binary:Version}),
librust-web-sys+httpconndict-dev (= ${binary:Version}),
librust-web-sys+httpconninfo-dev (= ${binary:Version}),
librust-web-sys+httpconnectionelement-dev (= ${binary:Version}),
librust-web-sys+idbcursor-dev (= ${binary:Version}),
librust-web-sys+idbcursordirection-dev (= ${binary:Version}),
librust-web-sys+idbcursorwithvalue-dev (= ${binary:Version}),
librust-web-sys+idbdatabase-dev (= ${binary:Version}),
librust-web-sys+idbfactory-dev (= ${binary:Version}),
librust-web-sys+idbfilehandle-dev (= ${binary:Version}),
librust-web-sys+idbfilemetadataparameters-dev (= ${binary:Version}),
librust-web-sys+idbfilerequest-dev (= ${binary:Version}),
librust-web-sys+idbindex-dev (= ${binary:Version}),
librust-web-sys+idbindexparameters-dev (= ${binary:Version}),
librust-web-sys+idbkeyrange-dev (= ${binary:Version}),
librust-web-sys+idblocaleawarekeyrange-dev (= ${binary:Version}),
librust-web-sys+idbmutablefile-dev (= ${binary:Version}),
librust-web-sys+idbobjectstore-dev (= ${binary:Version}),
librust-web-sys+idbobjectstoreparameters-dev (= ${binary:Version}),
librust-web-sys+idbopendboptions-dev (= ${binary:Version}),
librust-web-sys+idbopendbrequest-dev (= ${binary:Version}),
librust-web-sys+idbrequest-dev (= ${binary:Version}),
librust-web-sys+idbrequestreadystate-dev (= ${binary:Version}),
librust-web-sys+idbtransaction-dev (= ${binary:Version}),
librust-web-sys+idbtransactiondurability-dev (= ${binary:Version}),
librust-web-sys+idbtransactionmode-dev (= ${binary:Version}),
librust-web-sys+idbtransactionoptions-dev (= ${binary:Version}),
librust-web-sys+idbversionchangeevent-dev (= ${binary:Version}),
librust-web-sys+idbversionchangeeventinit-dev (= ${binary:Version}),
librust-web-sys+idledeadline-dev (= ${binary:Version}),
librust-web-sys+idlerequestoptions-dev (= ${binary:Version}),
librust-web-sys+iirfilternode-dev (= ${binary:Version}),
librust-web-sys+iirfilteroptions-dev (= ${binary:Version}),
librust-web-sys+imagebitmap-dev (= ${binary:Version}),
librust-web-sys+imagebitmapoptions-dev (= ${binary:Version}),
librust-web-sys+imagebitmaprenderingcontext-dev (= ${binary:Version}),
librust-web-sys+imagecapture-dev (= ${binary:Version}),
librust-web-sys+imagecaptureerror-dev (= ${binary:Version}),
librust-web-sys+imagecaptureerrorevent-dev (= ${binary:Version}),
librust-web-sys+imagecaptureerroreventinit-dev (= ${binary:Version}),
librust-web-sys+imagedata-dev (= ${binary:Version}),
librust-web-sys+imagedecodeoptions-dev (= ${binary:Version}),
librust-web-sys+imagedecoderesult-dev (= ${binary:Version}),
librust-web-sys+imagedecoder-dev (= ${binary:Version}),
librust-web-sys+imagedecoderinit-dev (= ${binary:Version}),
librust-web-sys+imageencodeoptions-dev (= ${binary:Version}),
librust-web-sys+imageorientation-dev (= ${binary:Version}),
librust-web-sys+imagetrack-dev (= ${binary:Version}),
librust-web-sys+imagetracklist-dev (= ${binary:Version}),
librust-web-sys+inputdeviceinfo-dev (= ${binary:Version}),
librust-web-sys+inputevent-dev (= ${binary:Version}),
librust-web-sys+inputeventinit-dev (= ${binary:Version}),
librust-web-sys+intersectionobserver-dev (= ${binary:Version}),
librust-web-sys+intersectionobserverentry-dev (= ${binary:Version}),
librust-web-sys+intersectionobserverentryinit-dev (= ${binary:Version}),
librust-web-sys+intersectionobserverinit-dev (= ${binary:Version}),
librust-web-sys+intlutils-dev (= ${binary:Version}),
librust-web-sys+isinputpendingoptions-dev (= ${binary:Version}),
librust-web-sys+iterablekeyandvalueresult-dev (= ${binary:Version}),
librust-web-sys+iterablekeyorvalueresult-dev (= ${binary:Version}),
librust-web-sys+iterationcompositeoperation-dev (= ${binary:Version}),
librust-web-sys+jsonwebkey-dev (= ${binary:Version}),
librust-web-sys+keyalgorithm-dev (= ${binary:Version}),
librust-web-sys+keyevent-dev (= ${binary:Version}),
librust-web-sys+keyframerequestevent-dev (= ${binary:Version}),
librust-web-sys+keyidsinitdata-dev (= ${binary:Version}),
librust-web-sys+keyboardevent-dev (= ${binary:Version}),
librust-web-sys+keyboardeventinit-dev (= ${binary:Version}),
librust-web-sys+keyframeanimationoptions-dev (= ${binary:Version}),
librust-web-sys+keyframeeffect-dev (= ${binary:Version}),
librust-web-sys+keyframeeffectoptions-dev (= ${binary:Version}),
librust-web-sys+l10nelement-dev (= ${binary:Version}),
librust-web-sys+l10nvalue-dev (= ${binary:Version}),
librust-web-sys+largeblobsupport-dev (= ${binary:Version}),
librust-web-sys+latencymode-dev (= ${binary:Version}),
librust-web-sys+lifecyclecallbacks-dev (= ${binary:Version}),
librust-web-sys+linealignsetting-dev (= ${binary:Version}),
librust-web-sys+listboxobject-dev (= ${binary:Version}),
librust-web-sys+localmediastream-dev (= ${binary:Version}),
librust-web-sys+localeinfo-dev (= ${binary:Version}),
librust-web-sys+location-dev (= ${binary:Version}),
librust-web-sys+lock-dev (= ${binary:Version}),
librust-web-sys+lockinfo-dev (= ${binary:Version}),
librust-web-sys+lockmanager-dev (= ${binary:Version}),
librust-web-sys+lockmanagersnapshot-dev (= ${binary:Version}),
librust-web-sys+lockmode-dev (= ${binary:Version}),
librust-web-sys+lockoptions-dev (= ${binary:Version}),
librust-web-sys+mathmlelement-dev (= ${binary:Version}),
librust-web-sys+mediacapabilities-dev (= ${binary:Version}),
librust-web-sys+mediacapabilitiesinfo-dev (= ${binary:Version}),
librust-web-sys+mediaconfiguration-dev (= ${binary:Version}),
librust-web-sys+mediadecodingconfiguration-dev (= ${binary:Version}),
librust-web-sys+mediadecodingtype-dev (= ${binary:Version}),
librust-web-sys+mediadeviceinfo-dev (= ${binary:Version}),
librust-web-sys+mediadevicekind-dev (= ${binary:Version}),
librust-web-sys+mediadevices-dev (= ${binary:Version}),
librust-web-sys+mediaelementaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys+mediaelementaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys+mediaencodingconfiguration-dev (= ${binary:Version}),
librust-web-sys+mediaencodingtype-dev (= ${binary:Version}),
librust-web-sys+mediaencryptedevent-dev (= ${binary:Version}),
librust-web-sys+mediaerror-dev (= ${binary:Version}),
librust-web-sys+mediaimage-dev (= ${binary:Version}),
librust-web-sys+mediakeyerror-dev (= ${binary:Version}),
librust-web-sys+mediakeymessageevent-dev (= ${binary:Version}),
librust-web-sys+mediakeymessageeventinit-dev (= ${binary:Version}),
librust-web-sys+mediakeymessagetype-dev (= ${binary:Version}),
librust-web-sys+mediakeyneededeventinit-dev (= ${binary:Version}),
librust-web-sys+mediakeysession-dev (= ${binary:Version}),
librust-web-sys+mediakeysessiontype-dev (= ${binary:Version}),
librust-web-sys+mediakeystatus-dev (= ${binary:Version}),
librust-web-sys+mediakeystatusmap-dev (= ${binary:Version}),
librust-web-sys+mediakeysystemaccess-dev (= ${binary:Version}),
librust-web-sys+mediakeysystemconfiguration-dev (= ${binary:Version}),
librust-web-sys+mediakeysystemmediacapability-dev (= ${binary:Version}),
librust-web-sys+mediakeysystemstatus-dev (= ${binary:Version}),
librust-web-sys+mediakeys-dev (= ${binary:Version}),
librust-web-sys+mediakeyspolicy-dev (= ${binary:Version}),
librust-web-sys+mediakeysrequirement-dev (= ${binary:Version}),
librust-web-sys+medialist-dev (= ${binary:Version}),
librust-web-sys+mediametadata-dev (= ${binary:Version}),
librust-web-sys+mediametadatainit-dev (= ${binary:Version}),
librust-web-sys+mediapositionstate-dev (= ${binary:Version}),
librust-web-sys+mediaquerylist-dev (= ${binary:Version}),
librust-web-sys+mediaquerylistevent-dev (= ${binary:Version}),
librust-web-sys+mediaquerylisteventinit-dev (= ${binary:Version}),
librust-web-sys+mediarecorder-dev (= ${binary:Version}),
librust-web-sys+mediarecordererrorevent-dev (= ${binary:Version}),
librust-web-sys+mediarecordererroreventinit-dev (= ${binary:Version}),
librust-web-sys+mediarecorderoptions-dev (= ${binary:Version}),
librust-web-sys+mediasession-dev (= ${binary:Version}),
librust-web-sys+mediasessionaction-dev (= ${binary:Version}),
librust-web-sys+mediasessionactiondetails-dev (= ${binary:Version}),
librust-web-sys+mediasessionplaybackstate-dev (= ${binary:Version}),
librust-web-sys+mediasource-dev (= ${binary:Version}),
librust-web-sys+mediasourceendofstreamerror-dev (= ${binary:Version}),
librust-web-sys+mediasourceenum-dev (= ${binary:Version}),
librust-web-sys+mediasourcereadystate-dev (= ${binary:Version}),
librust-web-sys+mediastream-dev (= ${binary:Version}),
librust-web-sys+mediastreamaudiodestinationnode-dev (= ${binary:Version}),
librust-web-sys+mediastreamaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys+mediastreamaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys+mediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys+mediastreamerror-dev (= ${binary:Version}),
librust-web-sys+mediastreamevent-dev (= ${binary:Version}),
librust-web-sys+mediastreameventinit-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrack-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackevent-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackeventinit-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackgenerator-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackgeneratorinit-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackprocessor-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackprocessorinit-dev (= ${binary:Version}),
librust-web-sys+mediastreamtrackstate-dev (= ${binary:Version}),
librust-web-sys+mediatrackcapabilities-dev (= ${binary:Version}),
librust-web-sys+mediatrackconstraintset-dev (= ${binary:Version}),
librust-web-sys+mediatrackconstraints-dev (= ${binary:Version}),
librust-web-sys+mediatracksettings-dev (= ${binary:Version}),
librust-web-sys+mediatracksupportedconstraints-dev (= ${binary:Version}),
librust-web-sys+memoryattribution-dev (= ${binary:Version}),
librust-web-sys+memoryattributioncontainer-dev (= ${binary:Version}),
librust-web-sys+memorybreakdownentry-dev (= ${binary:Version}),
librust-web-sys+memorymeasurement-dev (= ${binary:Version}),
librust-web-sys+messagechannel-dev (= ${binary:Version}),
librust-web-sys+messageevent-dev (= ${binary:Version}),
librust-web-sys+messageeventinit-dev (= ${binary:Version}),
librust-web-sys+messageport-dev (= ${binary:Version}),
librust-web-sys+midiaccess-dev (= ${binary:Version}),
librust-web-sys+midiconnectionevent-dev (= ${binary:Version}),
librust-web-sys+midiconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys+midiinput-dev (= ${binary:Version}),
librust-web-sys+midiinputmap-dev (= ${binary:Version}),
librust-web-sys+midimessageevent-dev (= ${binary:Version}),
librust-web-sys+midimessageeventinit-dev (= ${binary:Version}),
librust-web-sys+midioptions-dev (= ${binary:Version}),
librust-web-sys+midioutput-dev (= ${binary:Version}),
librust-web-sys+midioutputmap-dev (= ${binary:Version}),
librust-web-sys+midiport-dev (= ${binary:Version}),
librust-web-sys+midiportconnectionstate-dev (= ${binary:Version}),
librust-web-sys+midiportdevicestate-dev (= ${binary:Version}),
librust-web-sys+midiporttype-dev (= ${binary:Version}),
librust-web-sys+mimetype-dev (= ${binary:Version}),
librust-web-sys+mimetypearray-dev (= ${binary:Version}),
librust-web-sys+mouseevent-dev (= ${binary:Version}),
librust-web-sys+mouseeventinit-dev (= ${binary:Version}),
librust-web-sys+mousescrollevent-dev (= ${binary:Version}),
librust-web-sys+mozdebug-dev (= ${binary:Version}),
librust-web-sys+mutationevent-dev (= ${binary:Version}),
librust-web-sys+mutationobserver-dev (= ${binary:Version}),
librust-web-sys+mutationobserverinit-dev (= ${binary:Version}),
librust-web-sys+mutationobservinginfo-dev (= ${binary:Version}),
librust-web-sys+mutationrecord-dev (= ${binary:Version}),
librust-web-sys+namednodemap-dev (= ${binary:Version}),
librust-web-sys+nativeosfilereadoptions-dev (= ${binary:Version}),
librust-web-sys+nativeosfilewriteatomicoptions-dev (= ${binary:Version}),
librust-web-sys+navigationtype-dev (= ${binary:Version}),
librust-web-sys+navigator-dev (= ${binary:Version}),
librust-web-sys+navigatorautomationinformation-dev (= ${binary:Version}),
librust-web-sys+navigatoruabrandversion-dev (= ${binary:Version}),
librust-web-sys+navigatoruadata-dev (= ${binary:Version}),
librust-web-sys+networkcommandoptions-dev (= ${binary:Version}),
librust-web-sys+networkinformation-dev (= ${binary:Version}),
librust-web-sys+networkresultoptions-dev (= ${binary:Version}),
librust-web-sys+node-dev (= ${binary:Version}),
librust-web-sys+nodefilter-dev (= ${binary:Version}),
librust-web-sys+nodeiterator-dev (= ${binary:Version}),
librust-web-sys+nodelist-dev (= ${binary:Version}),
librust-web-sys+notification-dev (= ${binary:Version}),
librust-web-sys+notificationaction-dev (= ${binary:Version}),
librust-web-sys+notificationdirection-dev (= ${binary:Version}),
librust-web-sys+notificationevent-dev (= ${binary:Version}),
librust-web-sys+notificationeventinit-dev (= ${binary:Version}),
librust-web-sys+notificationoptions-dev (= ${binary:Version}),
librust-web-sys+notificationpermission-dev (= ${binary:Version}),
librust-web-sys+observercallback-dev (= ${binary:Version}),
librust-web-sys+oeselementindexuint-dev (= ${binary:Version}),
librust-web-sys+oesstandardderivatives-dev (= ${binary:Version}),
librust-web-sys+oestexturefloat-dev (= ${binary:Version}),
librust-web-sys+oestexturefloatlinear-dev (= ${binary:Version}),
librust-web-sys+oestexturehalffloat-dev (= ${binary:Version}),
librust-web-sys+oestexturehalffloatlinear-dev (= ${binary:Version}),
librust-web-sys+oesvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys+offlineaudiocompletionevent-dev (= ${binary:Version}),
librust-web-sys+offlineaudiocompletioneventinit-dev (= ${binary:Version}),
librust-web-sys+offlineaudiocontext-dev (= ${binary:Version}),
librust-web-sys+offlineaudiocontextoptions-dev (= ${binary:Version}),
librust-web-sys+offlineresourcelist-dev (= ${binary:Version}),
librust-web-sys+offscreencanvas-dev (= ${binary:Version}),
librust-web-sys+offscreencanvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys+openfilepickeroptions-dev (= ${binary:Version}),
librust-web-sys+openwindoweventdetail-dev (= ${binary:Version}),
librust-web-sys+optionaleffecttiming-dev (= ${binary:Version}),
librust-web-sys+orientationlocktype-dev (= ${binary:Version}),
librust-web-sys+orientationtype-dev (= ${binary:Version}),
librust-web-sys+oscillatornode-dev (= ${binary:Version}),
librust-web-sys+oscillatoroptions-dev (= ${binary:Version}),
librust-web-sys+oscillatortype-dev (= ${binary:Version}),
librust-web-sys+oversampletype-dev (= ${binary:Version}),
librust-web-sys+ovrmultiview2-dev (= ${binary:Version}),
librust-web-sys+pagetransitionevent-dev (= ${binary:Version}),
librust-web-sys+pagetransitioneventinit-dev (= ${binary:Version}),
librust-web-sys+paintrequest-dev (= ${binary:Version}),
librust-web-sys+paintrequestlist-dev (= ${binary:Version}),
librust-web-sys+paintworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys+pannernode-dev (= ${binary:Version}),
librust-web-sys+panneroptions-dev (= ${binary:Version}),
librust-web-sys+panningmodeltype-dev (= ${binary:Version}),
librust-web-sys+paritytype-dev (= ${binary:Version}),
librust-web-sys+path2d-dev (= ${binary:Version}),
librust-web-sys+paymentaddress-dev (= ${binary:Version}),
librust-web-sys+paymentcomplete-dev (= ${binary:Version}),
librust-web-sys+paymentmethodchangeevent-dev (= ${binary:Version}),
librust-web-sys+paymentmethodchangeeventinit-dev (= ${binary:Version}),
librust-web-sys+paymentrequestupdateevent-dev (= ${binary:Version}),
librust-web-sys+paymentrequestupdateeventinit-dev (= ${binary:Version}),
librust-web-sys+paymentresponse-dev (= ${binary:Version}),
librust-web-sys+pbkdf2params-dev (= ${binary:Version}),
librust-web-sys+pcimpliceconnectionstate-dev (= ${binary:Version}),
librust-web-sys+pcimplicegatheringstate-dev (= ${binary:Version}),
librust-web-sys+pcimplsignalingstate-dev (= ${binary:Version}),
librust-web-sys+pcobserverstatetype-dev (= ${binary:Version}),
librust-web-sys+performance-dev (= ${binary:Version}),
librust-web-sys+performanceentry-dev (= ${binary:Version}),
librust-web-sys+performanceentryeventinit-dev (= ${binary:Version}),
librust-web-sys+performanceentryfilteroptions-dev (= ${binary:Version}),
librust-web-sys+performancemark-dev (= ${binary:Version}),
librust-web-sys+performancemeasure-dev (= ${binary:Version}),
librust-web-sys+performancenavigation-dev (= ${binary:Version}),
librust-web-sys+performancenavigationtiming-dev (= ${binary:Version}),
librust-web-sys+performanceobserver-dev (= ${binary:Version}),
librust-web-sys+performanceobserverentrylist-dev (= ${binary:Version}),
librust-web-sys+performanceobserverinit-dev (= ${binary:Version}),
librust-web-sys+performanceresourcetiming-dev (= ${binary:Version}),
librust-web-sys+performanceservertiming-dev (= ${binary:Version}),
librust-web-sys+performancetiming-dev (= ${binary:Version}),
librust-web-sys+periodicwave-dev (= ${binary:Version}),
librust-web-sys+periodicwaveconstraints-dev (= ${binary:Version}),
librust-web-sys+periodicwaveoptions-dev (= ${binary:Version}),
librust-web-sys+permissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+permissionname-dev (= ${binary:Version}),
librust-web-sys+permissionstate-dev (= ${binary:Version}),
librust-web-sys+permissionstatus-dev (= ${binary:Version}),
librust-web-sys+permissions-dev (= ${binary:Version}),
librust-web-sys+pictureinpictureevent-dev (= ${binary:Version}),
librust-web-sys+pictureinpictureeventinit-dev (= ${binary:Version}),
librust-web-sys+pictureinpicturewindow-dev (= ${binary:Version}),
librust-web-sys+planelayout-dev (= ${binary:Version}),
librust-web-sys+playbackdirection-dev (= ${binary:Version}),
librust-web-sys+plugin-dev (= ${binary:Version}),
librust-web-sys+pluginarray-dev (= ${binary:Version}),
librust-web-sys+plugincrashedeventinit-dev (= ${binary:Version}),
librust-web-sys+pointerevent-dev (= ${binary:Version}),
librust-web-sys+pointereventinit-dev (= ${binary:Version}),
librust-web-sys+popstateevent-dev (= ${binary:Version}),
librust-web-sys+popstateeventinit-dev (= ${binary:Version}),
librust-web-sys+popupblockedevent-dev (= ${binary:Version}),
librust-web-sys+popupblockedeventinit-dev (= ${binary:Version}),
librust-web-sys+position-dev (= ${binary:Version}),
librust-web-sys+positionalignsetting-dev (= ${binary:Version}),
librust-web-sys+positionerror-dev (= ${binary:Version}),
librust-web-sys+positionoptions-dev (= ${binary:Version}),
librust-web-sys+premultiplyalpha-dev (= ${binary:Version}),
librust-web-sys+presentation-dev (= ${binary:Version}),
librust-web-sys+presentationavailability-dev (= ${binary:Version}),
librust-web-sys+presentationconnection-dev (= ${binary:Version}),
librust-web-sys+presentationconnectionavailableevent-dev (= ${binary:Version}),
librust-web-sys+presentationconnectionavailableeventinit-dev (= ${binary:Version}),
librust-web-sys+presentationconnectionbinarytype-dev (= ${binary:Version}),
librust-web-sys+presentationconnectioncloseevent-dev (= ${binary:Version}),
librust-web-sys+presentationconnectioncloseeventinit-dev (= ${binary:Version}),
librust-web-sys+presentationconnectionclosedreason-dev (= ${binary:Version}),
librust-web-sys+presentationconnectionlist-dev (= ${binary:Version}),
librust-web-sys+presentationconnectionstate-dev (= ${binary:Version}),
librust-web-sys+presentationreceiver-dev (= ${binary:Version}),
librust-web-sys+presentationrequest-dev (= ${binary:Version}),
librust-web-sys+presentationstyle-dev (= ${binary:Version}),
librust-web-sys+processinginstruction-dev (= ${binary:Version}),
librust-web-sys+profiletimelinelayerrect-dev (= ${binary:Version}),
librust-web-sys+profiletimelinemarker-dev (= ${binary:Version}),
librust-web-sys+profiletimelinemessageportoperationtype-dev (= ${binary:Version}),
librust-web-sys+profiletimelinestackframe-dev (= ${binary:Version}),
librust-web-sys+profiletimelineworkeroperationtype-dev (= ${binary:Version}),
librust-web-sys+progressevent-dev (= ${binary:Version}),
librust-web-sys+progresseventinit-dev (= ${binary:Version}),
librust-web-sys+promisenativehandler-dev (= ${binary:Version}),
librust-web-sys+promiserejectionevent-dev (= ${binary:Version}),
librust-web-sys+promiserejectioneventinit-dev (= ${binary:Version}),
librust-web-sys+publickeycredential-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialcreationoptionsjson-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialdescriptor-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialdescriptorjson-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialentity-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialhints-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialparameters-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialrequestoptionsjson-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialrpentity-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialtype-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialuserentity-dev (= ${binary:Version}),
librust-web-sys+publickeycredentialuserentityjson-dev (= ${binary:Version}),
librust-web-sys+pushencryptionkeyname-dev (= ${binary:Version}),
librust-web-sys+pushevent-dev (= ${binary:Version}),
librust-web-sys+pusheventinit-dev (= ${binary:Version}),
librust-web-sys+pushmanager-dev (= ${binary:Version}),
librust-web-sys+pushmessagedata-dev (= ${binary:Version}),
librust-web-sys+pushpermissionstate-dev (= ${binary:Version}),
librust-web-sys+pushsubscription-dev (= ${binary:Version}),
librust-web-sys+pushsubscriptioninit-dev (= ${binary:Version}),
librust-web-sys+pushsubscriptionjson-dev (= ${binary:Version}),
librust-web-sys+pushsubscriptionkeys-dev (= ${binary:Version}),
librust-web-sys+pushsubscriptionoptions-dev (= ${binary:Version}),
librust-web-sys+pushsubscriptionoptionsinit-dev (= ${binary:Version}),
librust-web-sys+queryoptions-dev (= ${binary:Version}),
librust-web-sys+queuingstrategy-dev (= ${binary:Version}),
librust-web-sys+queuingstrategyinit-dev (= ${binary:Version}),
librust-web-sys+radionodelist-dev (= ${binary:Version}),
librust-web-sys+range-dev (= ${binary:Version}),
librust-web-sys+rcwnperfstats-dev (= ${binary:Version}),
librust-web-sys+rcwnstatus-dev (= ${binary:Version}),
librust-web-sys+readablebytestreamcontroller-dev (= ${binary:Version}),
librust-web-sys+readablestream-dev (= ${binary:Version}),
librust-web-sys+readablestreambyobreader-dev (= ${binary:Version}),
librust-web-sys+readablestreambyobrequest-dev (= ${binary:Version}),
librust-web-sys+readablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys+readablestreamdefaultreader-dev (= ${binary:Version}),
librust-web-sys+readablestreamgetreaderoptions-dev (= ${binary:Version}),
librust-web-sys+readablestreamiteratoroptions-dev (= ${binary:Version}),
librust-web-sys+readablestreamreadresult-dev (= ${binary:Version}),
librust-web-sys+readablestreamreadermode-dev (= ${binary:Version}),
librust-web-sys+readablestreamtype-dev (= ${binary:Version}),
librust-web-sys+readablewritablepair-dev (= ${binary:Version}),
librust-web-sys+recordingstate-dev (= ${binary:Version}),
librust-web-sys+referrerpolicy-dev (= ${binary:Version}),
librust-web-sys+registerrequest-dev (= ${binary:Version}),
librust-web-sys+registerresponse-dev (= ${binary:Version}),
librust-web-sys+registeredkey-dev (= ${binary:Version}),
librust-web-sys+registrationoptions-dev (= ${binary:Version}),
librust-web-sys+registrationresponsejson-dev (= ${binary:Version}),
librust-web-sys+request-dev (= ${binary:Version}),
librust-web-sys+requestcache-dev (= ${binary:Version}),
librust-web-sys+requestcredentials-dev (= ${binary:Version}),
librust-web-sys+requestdestination-dev (= ${binary:Version}),
librust-web-sys+requestdeviceoptions-dev (= ${binary:Version}),
librust-web-sys+requestinit-dev (= ${binary:Version}),
librust-web-sys+requestmediakeysystemaccessnotification-dev (= ${binary:Version}),
librust-web-sys+requestmode-dev (= ${binary:Version}),
librust-web-sys+requestredirect-dev (= ${binary:Version}),
librust-web-sys+residentkeyrequirement-dev (= ${binary:Version}),
librust-web-sys+resizeobserver-dev (= ${binary:Version}),
librust-web-sys+resizeobserverboxoptions-dev (= ${binary:Version}),
librust-web-sys+resizeobserverentry-dev (= ${binary:Version}),
librust-web-sys+resizeobserveroptions-dev (= ${binary:Version}),
librust-web-sys+resizeobserversize-dev (= ${binary:Version}),
librust-web-sys+resizequality-dev (= ${binary:Version}),
librust-web-sys+response-dev (= ${binary:Version}),
librust-web-sys+responseinit-dev (= ${binary:Version}),
librust-web-sys+responsetype-dev (= ${binary:Version}),
librust-web-sys+rsahashedimportparams-dev (= ${binary:Version}),
librust-web-sys+rsaoaepparams-dev (= ${binary:Version}),
librust-web-sys+rsaotherprimesinfo-dev (= ${binary:Version}),
librust-web-sys+rsapssparams-dev (= ${binary:Version}),
librust-web-sys+rtcansweroptions-dev (= ${binary:Version}),
librust-web-sys+rtcbundlepolicy-dev (= ${binary:Version}),
librust-web-sys+rtccertificate-dev (= ${binary:Version}),
librust-web-sys+rtccertificateexpiration-dev (= ${binary:Version}),
librust-web-sys+rtccodecstats-dev (= ${binary:Version}),
librust-web-sys+rtcconfiguration-dev (= ${binary:Version}),
librust-web-sys+rtcdatachannel-dev (= ${binary:Version}),
librust-web-sys+rtcdatachannelevent-dev (= ${binary:Version}),
librust-web-sys+rtcdatachanneleventinit-dev (= ${binary:Version}),
librust-web-sys+rtcdatachannelinit-dev (= ${binary:Version}),
librust-web-sys+rtcdatachannelstate-dev (= ${binary:Version}),
librust-web-sys+rtcdatachanneltype-dev (= ${binary:Version}),
librust-web-sys+rtcdegradationpreference-dev (= ${binary:Version}),
librust-web-sys+rtcencodedaudioframe-dev (= ${binary:Version}),
librust-web-sys+rtcencodedaudioframemetadata-dev (= ${binary:Version}),
librust-web-sys+rtcencodedaudioframeoptions-dev (= ${binary:Version}),
librust-web-sys+rtcencodedvideoframe-dev (= ${binary:Version}),
librust-web-sys+rtcencodedvideoframemetadata-dev (= ${binary:Version}),
librust-web-sys+rtcencodedvideoframeoptions-dev (= ${binary:Version}),
librust-web-sys+rtcencodedvideoframetype-dev (= ${binary:Version}),
librust-web-sys+rtcfecparameters-dev (= ${binary:Version}),
librust-web-sys+rtcicecandidate-dev (= ${binary:Version}),
librust-web-sys+rtcicecandidateinit-dev (= ${binary:Version}),
librust-web-sys+rtcicecandidatepairstats-dev (= ${binary:Version}),
librust-web-sys+rtcicecandidatestats-dev (= ${binary:Version}),
librust-web-sys+rtcicecomponentstats-dev (= ${binary:Version}),
librust-web-sys+rtciceconnectionstate-dev (= ${binary:Version}),
librust-web-sys+rtcicecredentialtype-dev (= ${binary:Version}),
librust-web-sys+rtcicegatheringstate-dev (= ${binary:Version}),
librust-web-sys+rtciceserver-dev (= ${binary:Version}),
librust-web-sys+rtcicetransportpolicy-dev (= ${binary:Version}),
librust-web-sys+rtcidentityassertion-dev (= ${binary:Version}),
librust-web-sys+rtcidentityassertionresult-dev (= ${binary:Version}),
librust-web-sys+rtcidentityprovider-dev (= ${binary:Version}),
librust-web-sys+rtcidentityproviderdetails-dev (= ${binary:Version}),
librust-web-sys+rtcidentityprovideroptions-dev (= ${binary:Version}),
librust-web-sys+rtcidentityproviderregistrar-dev (= ${binary:Version}),
librust-web-sys+rtcidentityvalidationresult-dev (= ${binary:Version}),
librust-web-sys+rtcinboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys+rtcmediastreamstats-dev (= ${binary:Version}),
librust-web-sys+rtcmediastreamtrackstats-dev (= ${binary:Version}),
librust-web-sys+rtcofferansweroptions-dev (= ${binary:Version}),
librust-web-sys+rtcofferoptions-dev (= ${binary:Version}),
librust-web-sys+rtcoutboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys+rtcpeerconnection-dev (= ${binary:Version}),
librust-web-sys+rtcpeerconnectioniceerrorevent-dev (= ${binary:Version}),
librust-web-sys+rtcpeerconnectioniceevent-dev (= ${binary:Version}),
librust-web-sys+rtcpeerconnectioniceeventinit-dev (= ${binary:Version}),
librust-web-sys+rtcpeerconnectionstate-dev (= ${binary:Version}),
librust-web-sys+rtcprioritytype-dev (= ${binary:Version}),
librust-web-sys+rtcrtcpparameters-dev (= ${binary:Version}),
librust-web-sys+rtcrtpcapabilities-dev (= ${binary:Version}),
librust-web-sys+rtcrtpcodeccapability-dev (= ${binary:Version}),
librust-web-sys+rtcrtpcodecparameters-dev (= ${binary:Version}),
librust-web-sys+rtcrtpcontributingsource-dev (= ${binary:Version}),
librust-web-sys+rtcrtpencodingparameters-dev (= ${binary:Version}),
librust-web-sys+rtcrtpheaderextensioncapability-dev (= ${binary:Version}),
librust-web-sys+rtcrtpheaderextensionparameters-dev (= ${binary:Version}),
librust-web-sys+rtcrtpparameters-dev (= ${binary:Version}),
librust-web-sys+rtcrtpreceiver-dev (= ${binary:Version}),
librust-web-sys+rtcrtpscripttransform-dev (= ${binary:Version}),
librust-web-sys+rtcrtpscripttransformer-dev (= ${binary:Version}),
librust-web-sys+rtcrtpsender-dev (= ${binary:Version}),
librust-web-sys+rtcrtpsourceentry-dev (= ${binary:Version}),
librust-web-sys+rtcrtpsourceentrytype-dev (= ${binary:Version}),
librust-web-sys+rtcrtpsynchronizationsource-dev (= ${binary:Version}),
librust-web-sys+rtcrtptransceiver-dev (= ${binary:Version}),
librust-web-sys+rtcrtptransceiverdirection-dev (= ${binary:Version}),
librust-web-sys+rtcrtptransceiverinit-dev (= ${binary:Version}),
librust-web-sys+rtcrtxparameters-dev (= ${binary:Version}),
librust-web-sys+rtcsdptype-dev (= ${binary:Version}),
librust-web-sys+rtcsessiondescription-dev (= ${binary:Version}),
librust-web-sys+rtcsessiondescriptioninit-dev (= ${binary:Version}),
librust-web-sys+rtcsignalingstate-dev (= ${binary:Version}),
librust-web-sys+rtcstats-dev (= ${binary:Version}),
librust-web-sys+rtcstatsicecandidatepairstate-dev (= ${binary:Version}),
librust-web-sys+rtcstatsicecandidatetype-dev (= ${binary:Version}),
librust-web-sys+rtcstatsreport-dev (= ${binary:Version}),
librust-web-sys+rtcstatsreportinternal-dev (= ${binary:Version}),
librust-web-sys+rtcstatstype-dev (= ${binary:Version}),
librust-web-sys+rtctrackevent-dev (= ${binary:Version}),
librust-web-sys+rtctrackeventinit-dev (= ${binary:Version}),
librust-web-sys+rtctransformevent-dev (= ${binary:Version}),
librust-web-sys+rtctransportstats-dev (= ${binary:Version}),
librust-web-sys+rtcdtmfsender-dev (= ${binary:Version}),
librust-web-sys+rtcdtmftonechangeevent-dev (= ${binary:Version}),
librust-web-sys+rtcdtmftonechangeeventinit-dev (= ${binary:Version}),
librust-web-sys+rtcrtpcontributingsourcestats-dev (= ${binary:Version}),
librust-web-sys+rtcrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys+sframetransform-dev (= ${binary:Version}),
librust-web-sys+sframetransformerrorevent-dev (= ${binary:Version}),
librust-web-sys+sframetransformerroreventinit-dev (= ${binary:Version}),
librust-web-sys+sframetransformerroreventtype-dev (= ${binary:Version}),
librust-web-sys+sframetransformoptions-dev (= ${binary:Version}),
librust-web-sys+sframetransformrole-dev (= ${binary:Version}),
librust-web-sys+savefilepickeroptions-dev (= ${binary:Version}),
librust-web-sys+scheduler-dev (= ${binary:Version}),
librust-web-sys+schedulerposttaskoptions-dev (= ${binary:Version}),
librust-web-sys+scheduling-dev (= ${binary:Version}),
librust-web-sys+screen-dev (= ${binary:Version}),
librust-web-sys+screencolorgamut-dev (= ${binary:Version}),
librust-web-sys+screendetailed-dev (= ${binary:Version}),
librust-web-sys+screendetails-dev (= ${binary:Version}),
librust-web-sys+screenluminance-dev (= ${binary:Version}),
librust-web-sys+screenorientation-dev (= ${binary:Version}),
librust-web-sys+scriptprocessornode-dev (= ${binary:Version}),
librust-web-sys+scrollareaevent-dev (= ${binary:Version}),
librust-web-sys+scrollbehavior-dev (= ${binary:Version}),
librust-web-sys+scrollboxobject-dev (= ${binary:Version}),
librust-web-sys+scrollintoviewcontainer-dev (= ${binary:Version}),
librust-web-sys+scrollintoviewoptions-dev (= ${binary:Version}),
librust-web-sys+scrolllogicalposition-dev (= ${binary:Version}),
librust-web-sys+scrolloptions-dev (= ${binary:Version}),
librust-web-sys+scrollrestoration-dev (= ${binary:Version}),
librust-web-sys+scrollsetting-dev (= ${binary:Version}),
librust-web-sys+scrollstate-dev (= ${binary:Version}),
librust-web-sys+scrolltooptions-dev (= ${binary:Version}),
librust-web-sys+scrollviewchangeeventinit-dev (= ${binary:Version}),
librust-web-sys+securitypolicyviolationevent-dev (= ${binary:Version}),
librust-web-sys+securitypolicyviolationeventdisposition-dev (= ${binary:Version}),
librust-web-sys+securitypolicyviolationeventinit-dev (= ${binary:Version}),
librust-web-sys+selection-dev (= ${binary:Version}),
librust-web-sys+selectionmode-dev (= ${binary:Version}),
librust-web-sys+serial-dev (= ${binary:Version}),
librust-web-sys+serialinputsignals-dev (= ${binary:Version}),
librust-web-sys+serialoptions-dev (= ${binary:Version}),
librust-web-sys+serialoutputsignals-dev (= ${binary:Version}),
librust-web-sys+serialport-dev (= ${binary:Version}),
librust-web-sys+serialportfilter-dev (= ${binary:Version}),
librust-web-sys+serialportinfo-dev (= ${binary:Version}),
librust-web-sys+serialportrequestoptions-dev (= ${binary:Version}),
librust-web-sys+serversocketoptions-dev (= ${binary:Version}),
librust-web-sys+serviceworker-dev (= ${binary:Version}),
librust-web-sys+serviceworkercontainer-dev (= ${binary:Version}),
librust-web-sys+serviceworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys+serviceworkerregistration-dev (= ${binary:Version}),
librust-web-sys+serviceworkerstate-dev (= ${binary:Version}),
librust-web-sys+serviceworkerupdateviacache-dev (= ${binary:Version}),
librust-web-sys+shadowroot-dev (= ${binary:Version}),
librust-web-sys+shadowrootinit-dev (= ${binary:Version}),
librust-web-sys+shadowrootmode-dev (= ${binary:Version}),
librust-web-sys+sharedata-dev (= ${binary:Version}),
librust-web-sys+sharedworker-dev (= ${binary:Version}),
librust-web-sys+sharedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys+signresponse-dev (= ${binary:Version}),
librust-web-sys+socketelement-dev (= ${binary:Version}),
librust-web-sys+socketoptions-dev (= ${binary:Version}),
librust-web-sys+socketreadystate-dev (= ${binary:Version}),
librust-web-sys+socketsdict-dev (= ${binary:Version}),
librust-web-sys+sourcebuffer-dev (= ${binary:Version}),
librust-web-sys+sourcebufferappendmode-dev (= ${binary:Version}),
librust-web-sys+sourcebufferlist-dev (= ${binary:Version}),
librust-web-sys+speechgrammar-dev (= ${binary:Version}),
librust-web-sys+speechgrammarlist-dev (= ${binary:Version}),
librust-web-sys+speechrecognition-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionalternative-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionerror-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionerrorcode-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionerrorinit-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionevent-dev (= ${binary:Version}),
librust-web-sys+speechrecognitioneventinit-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionresult-dev (= ${binary:Version}),
librust-web-sys+speechrecognitionresultlist-dev (= ${binary:Version}),
librust-web-sys+speechsynthesis-dev (= ${binary:Version}),
librust-web-sys+speechsynthesiserrorcode-dev (= ${binary:Version}),
librust-web-sys+speechsynthesiserrorevent-dev (= ${binary:Version}),
librust-web-sys+speechsynthesiserroreventinit-dev (= ${binary:Version}),
librust-web-sys+speechsynthesisevent-dev (= ${binary:Version}),
librust-web-sys+speechsynthesiseventinit-dev (= ${binary:Version}),
librust-web-sys+speechsynthesisutterance-dev (= ${binary:Version}),
librust-web-sys+speechsynthesisvoice-dev (= ${binary:Version}),
librust-web-sys+stereopannernode-dev (= ${binary:Version}),
librust-web-sys+stereopanneroptions-dev (= ${binary:Version}),
librust-web-sys+storage-dev (= ${binary:Version}),
librust-web-sys+storageestimate-dev (= ${binary:Version}),
librust-web-sys+storageevent-dev (= ${binary:Version}),
librust-web-sys+storageeventinit-dev (= ${binary:Version}),
librust-web-sys+storagemanager-dev (= ${binary:Version}),
librust-web-sys+storagetype-dev (= ${binary:Version}),
librust-web-sys+streampipeoptions-dev (= ${binary:Version}),
librust-web-sys+stylerulechangeeventinit-dev (= ${binary:Version}),
librust-web-sys+stylesheet-dev (= ${binary:Version}),
librust-web-sys+stylesheetapplicablestatechangeeventinit-dev (= ${binary:Version}),
librust-web-sys+stylesheetchangeeventinit-dev (= ${binary:Version}),
librust-web-sys+stylesheetlist-dev (= ${binary:Version}),
librust-web-sys+submitevent-dev (= ${binary:Version}),
librust-web-sys+submiteventinit-dev (= ${binary:Version}),
librust-web-sys+subtlecrypto-dev (= ${binary:Version}),
librust-web-sys+supportedtype-dev (= ${binary:Version}),
librust-web-sys+svcoutputmetadata-dev (= ${binary:Version}),
librust-web-sys+svgangle-dev (= ${binary:Version}),
librust-web-sys+svganimateelement-dev (= ${binary:Version}),
librust-web-sys+svganimatemotionelement-dev (= ${binary:Version}),
librust-web-sys+svganimatetransformelement-dev (= ${binary:Version}),
librust-web-sys+svganimatedangle-dev (= ${binary:Version}),
librust-web-sys+svganimatedboolean-dev (= ${binary:Version}),
librust-web-sys+svganimatedenumeration-dev (= ${binary:Version}),
librust-web-sys+svganimatedinteger-dev (= ${binary:Version}),
librust-web-sys+svganimatedlength-dev (= ${binary:Version}),
librust-web-sys+svganimatedlengthlist-dev (= ${binary:Version}),
librust-web-sys+svganimatednumber-dev (= ${binary:Version}),
librust-web-sys+svganimatednumberlist-dev (= ${binary:Version}),
librust-web-sys+svganimatedpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys+svganimatedrect-dev (= ${binary:Version}),
librust-web-sys+svganimatedstring-dev (= ${binary:Version}),
librust-web-sys+svganimatedtransformlist-dev (= ${binary:Version}),
librust-web-sys+svganimationelement-dev (= ${binary:Version}),
librust-web-sys+svgboundingboxoptions-dev (= ${binary:Version}),
librust-web-sys+svgcircleelement-dev (= ${binary:Version}),
librust-web-sys+svgclippathelement-dev (= ${binary:Version}),
librust-web-sys+svgcomponenttransferfunctionelement-dev (= ${binary:Version}),
librust-web-sys+svgdefselement-dev (= ${binary:Version}),
librust-web-sys+svgdescelement-dev (= ${binary:Version}),
librust-web-sys+svgelement-dev (= ${binary:Version}),
librust-web-sys+svgellipseelement-dev (= ${binary:Version}),
librust-web-sys+svgfilterelement-dev (= ${binary:Version}),
librust-web-sys+svgforeignobjectelement-dev (= ${binary:Version}),
librust-web-sys+svggeometryelement-dev (= ${binary:Version}),
librust-web-sys+svggradientelement-dev (= ${binary:Version}),
librust-web-sys+svggraphicselement-dev (= ${binary:Version}),
librust-web-sys+svgimageelement-dev (= ${binary:Version}),
librust-web-sys+svglength-dev (= ${binary:Version}),
librust-web-sys+svglengthlist-dev (= ${binary:Version}),
librust-web-sys+svglineelement-dev (= ${binary:Version}),
librust-web-sys+svglineargradientelement-dev (= ${binary:Version}),
librust-web-sys+svgmarkerelement-dev (= ${binary:Version}),
librust-web-sys+svgmaskelement-dev (= ${binary:Version}),
librust-web-sys+svgmatrix-dev (= ${binary:Version}),
librust-web-sys+svgmetadataelement-dev (= ${binary:Version}),
librust-web-sys+svgnumber-dev (= ${binary:Version}),
librust-web-sys+svgnumberlist-dev (= ${binary:Version}),
librust-web-sys+svgpathelement-dev (= ${binary:Version}),
librust-web-sys+svgpathseg-dev (= ${binary:Version}),
librust-web-sys+svgpathsegarcabs-dev (= ${binary:Version}),
librust-web-sys+svgpathsegarcrel-dev (= ${binary:Version}),
librust-web-sys+svgpathsegclosepath-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetocubicabs-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetocubicrel-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetocubicsmoothabs-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetocubicsmoothrel-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetoquadraticabs-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetoquadraticrel-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetoquadraticsmoothabs-dev (= ${binary:Version}),
librust-web-sys+svgpathsegcurvetoquadraticsmoothrel-dev (= ${binary:Version}),
librust-web-sys+svgpathseglinetoabs-dev (= ${binary:Version}),
librust-web-sys+svgpathseglinetohorizontalabs-dev (= ${binary:Version}),
librust-web-sys+svgpathseglinetohorizontalrel-dev (= ${binary:Version}),
librust-web-sys+svgpathseglinetorel-dev (= ${binary:Version}),
librust-web-sys+svgpathseglinetoverticalabs-dev (= ${binary:Version}),
librust-web-sys+svgpathseglinetoverticalrel-dev (= ${binary:Version}),
librust-web-sys+svgpathseglist-dev (= ${binary:Version}),
librust-web-sys+svgpathsegmovetoabs-dev (= ${binary:Version}),
librust-web-sys+svgpathsegmovetorel-dev (= ${binary:Version}),
librust-web-sys+svgpatternelement-dev (= ${binary:Version}),
librust-web-sys+svgpoint-dev (= ${binary:Version}),
librust-web-sys+svgpointlist-dev (= ${binary:Version}),
librust-web-sys+svgpolygonelement-dev (= ${binary:Version}),
librust-web-sys+svgpolylineelement-dev (= ${binary:Version}),
librust-web-sys+svgpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys+svgradialgradientelement-dev (= ${binary:Version}),
librust-web-sys+svgrect-dev (= ${binary:Version}),
librust-web-sys+svgrectelement-dev (= ${binary:Version}),
librust-web-sys+svgscriptelement-dev (= ${binary:Version}),
librust-web-sys+svgsetelement-dev (= ${binary:Version}),
librust-web-sys+svgstopelement-dev (= ${binary:Version}),
librust-web-sys+svgstringlist-dev (= ${binary:Version}),
librust-web-sys+svgstyleelement-dev (= ${binary:Version}),
librust-web-sys+svgswitchelement-dev (= ${binary:Version}),
librust-web-sys+svgsymbolelement-dev (= ${binary:Version}),
librust-web-sys+svgtextcontentelement-dev (= ${binary:Version}),
librust-web-sys+svgtextelement-dev (= ${binary:Version}),
librust-web-sys+svgtextpathelement-dev (= ${binary:Version}),
librust-web-sys+svgtextpositioningelement-dev (= ${binary:Version}),
librust-web-sys+svgtitleelement-dev (= ${binary:Version}),
librust-web-sys+svgtransform-dev (= ${binary:Version}),
librust-web-sys+svgtransformlist-dev (= ${binary:Version}),
librust-web-sys+svgunittypes-dev (= ${binary:Version}),
librust-web-sys+svguseelement-dev (= ${binary:Version}),
librust-web-sys+svgviewelement-dev (= ${binary:Version}),
librust-web-sys+svgzoomandpan-dev (= ${binary:Version}),
librust-web-sys+svgaelement-dev (= ${binary:Version}),
librust-web-sys+svgfeblendelement-dev (= ${binary:Version}),
librust-web-sys+svgfecolormatrixelement-dev (= ${binary:Version}),
librust-web-sys+svgfecomponenttransferelement-dev (= ${binary:Version}),
librust-web-sys+svgfecompositeelement-dev (= ${binary:Version}),
librust-web-sys+svgfeconvolvematrixelement-dev (= ${binary:Version}),
librust-web-sys+svgfediffuselightingelement-dev (= ${binary:Version}),
librust-web-sys+svgfedisplacementmapelement-dev (= ${binary:Version}),
librust-web-sys+svgfedistantlightelement-dev (= ${binary:Version}),
librust-web-sys+svgfedropshadowelement-dev (= ${binary:Version}),
librust-web-sys+svgfefloodelement-dev (= ${binary:Version}),
librust-web-sys+svgfefuncaelement-dev (= ${binary:Version}),
librust-web-sys+svgfefuncbelement-dev (= ${binary:Version}),
librust-web-sys+svgfefuncgelement-dev (= ${binary:Version}),
librust-web-sys+svgfefuncrelement-dev (= ${binary:Version}),
librust-web-sys+svgfegaussianblurelement-dev (= ${binary:Version}),
librust-web-sys+svgfeimageelement-dev (= ${binary:Version}),
librust-web-sys+svgfemergeelement-dev (= ${binary:Version}),
librust-web-sys+svgfemergenodeelement-dev (= ${binary:Version}),
librust-web-sys+svgfemorphologyelement-dev (= ${binary:Version}),
librust-web-sys+svgfeoffsetelement-dev (= ${binary:Version}),
librust-web-sys+svgfepointlightelement-dev (= ${binary:Version}),
librust-web-sys+svgfespecularlightingelement-dev (= ${binary:Version}),
librust-web-sys+svgfespotlightelement-dev (= ${binary:Version}),
librust-web-sys+svgfetileelement-dev (= ${binary:Version}),
librust-web-sys+svgfeturbulenceelement-dev (= ${binary:Version}),
librust-web-sys+svggelement-dev (= ${binary:Version}),
librust-web-sys+svgmpathelement-dev (= ${binary:Version}),
librust-web-sys+svgsvgelement-dev (= ${binary:Version}),
librust-web-sys+svgtspanelement-dev (= ${binary:Version}),
librust-web-sys+taskcontroller-dev (= ${binary:Version}),
librust-web-sys+taskcontrollerinit-dev (= ${binary:Version}),
librust-web-sys+taskpriority-dev (= ${binary:Version}),
librust-web-sys+taskprioritychangeevent-dev (= ${binary:Version}),
librust-web-sys+taskprioritychangeeventinit-dev (= ${binary:Version}),
librust-web-sys+tasksignal-dev (= ${binary:Version}),
librust-web-sys+tasksignalanyinit-dev (= ${binary:Version}),
librust-web-sys+tcpreadystate-dev (= ${binary:Version}),
librust-web-sys+tcpserversocket-dev (= ${binary:Version}),
librust-web-sys+tcpserversocketevent-dev (= ${binary:Version}),
librust-web-sys+tcpserversocketeventinit-dev (= ${binary:Version}),
librust-web-sys+tcpsocket-dev (= ${binary:Version}),
librust-web-sys+tcpsocketbinarytype-dev (= ${binary:Version}),
librust-web-sys+tcpsocketerrorevent-dev (= ${binary:Version}),
librust-web-sys+tcpsocketerroreventinit-dev (= ${binary:Version}),
librust-web-sys+tcpsocketevent-dev (= ${binary:Version}),
librust-web-sys+tcpsocketeventinit-dev (= ${binary:Version}),
librust-web-sys+text-dev (= ${binary:Version}),
librust-web-sys+textdecodeoptions-dev (= ${binary:Version}),
librust-web-sys+textdecoder-dev (= ${binary:Version}),
librust-web-sys+textdecoderoptions-dev (= ${binary:Version}),
librust-web-sys+textencoder-dev (= ${binary:Version}),
librust-web-sys+textmetrics-dev (= ${binary:Version}),
librust-web-sys+texttrack-dev (= ${binary:Version}),
librust-web-sys+texttrackcue-dev (= ${binary:Version}),
librust-web-sys+texttrackcuelist-dev (= ${binary:Version}),
librust-web-sys+texttrackkind-dev (= ${binary:Version}),
librust-web-sys+texttracklist-dev (= ${binary:Version}),
librust-web-sys+texttrackmode-dev (= ${binary:Version}),
librust-web-sys+timeevent-dev (= ${binary:Version}),
librust-web-sys+timeranges-dev (= ${binary:Version}),
librust-web-sys+toggleevent-dev (= ${binary:Version}),
librust-web-sys+toggleeventinit-dev (= ${binary:Version}),
librust-web-sys+tokenbinding-dev (= ${binary:Version}),
librust-web-sys+tokenbindingstatus-dev (= ${binary:Version}),
librust-web-sys+touch-dev (= ${binary:Version}),
librust-web-sys+touchevent-dev (= ${binary:Version}),
librust-web-sys+toucheventinit-dev (= ${binary:Version}),
librust-web-sys+touchinit-dev (= ${binary:Version}),
librust-web-sys+touchlist-dev (= ${binary:Version}),
librust-web-sys+trackevent-dev (= ${binary:Version}),
librust-web-sys+trackeventinit-dev (= ${binary:Version}),
librust-web-sys+transformstream-dev (= ${binary:Version}),
librust-web-sys+transformstreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys+transformer-dev (= ${binary:Version}),
librust-web-sys+transitionevent-dev (= ${binary:Version}),
librust-web-sys+transitioneventinit-dev (= ${binary:Version}),
librust-web-sys+transport-dev (= ${binary:Version}),
librust-web-sys+treeboxobject-dev (= ${binary:Version}),
librust-web-sys+treecellinfo-dev (= ${binary:Version}),
librust-web-sys+treeview-dev (= ${binary:Version}),
librust-web-sys+treewalker-dev (= ${binary:Version}),
librust-web-sys+u2f-dev (= ${binary:Version}),
librust-web-sys+u2fclientdata-dev (= ${binary:Version}),
librust-web-sys+ulongrange-dev (= ${binary:Version}),
librust-web-sys+uadatavalues-dev (= ${binary:Version}),
librust-web-sys+ualowentropyjson-dev (= ${binary:Version}),
librust-web-sys+udpmessageeventinit-dev (= ${binary:Version}),
librust-web-sys+udpoptions-dev (= ${binary:Version}),
librust-web-sys+uievent-dev (= ${binary:Version}),
librust-web-sys+uieventinit-dev (= ${binary:Version}),
librust-web-sys+underlyingsink-dev (= ${binary:Version}),
librust-web-sys+underlyingsource-dev (= ${binary:Version}),
librust-web-sys+url-dev (= ${binary:Version}),
librust-web-sys+urlsearchparams-dev (= ${binary:Version}),
librust-web-sys+usb-dev (= ${binary:Version}),
librust-web-sys+usbalternateinterface-dev (= ${binary:Version}),
librust-web-sys+usbconfiguration-dev (= ${binary:Version}),
librust-web-sys+usbconnectionevent-dev (= ${binary:Version}),
librust-web-sys+usbconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys+usbcontroltransferparameters-dev (= ${binary:Version}),
librust-web-sys+usbdevice-dev (= ${binary:Version}),
librust-web-sys+usbdevicefilter-dev (= ${binary:Version}),
librust-web-sys+usbdevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys+usbdirection-dev (= ${binary:Version}),
librust-web-sys+usbendpoint-dev (= ${binary:Version}),
librust-web-sys+usbendpointtype-dev (= ${binary:Version}),
librust-web-sys+usbintransferresult-dev (= ${binary:Version}),
librust-web-sys+usbinterface-dev (= ${binary:Version}),
librust-web-sys+usbisochronousintransferpacket-dev (= ${binary:Version}),
librust-web-sys+usbisochronousintransferresult-dev (= ${binary:Version}),
librust-web-sys+usbisochronousouttransferpacket-dev (= ${binary:Version}),
librust-web-sys+usbisochronousouttransferresult-dev (= ${binary:Version}),
librust-web-sys+usbouttransferresult-dev (= ${binary:Version}),
librust-web-sys+usbpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+usbpermissionresult-dev (= ${binary:Version}),
librust-web-sys+usbpermissionstorage-dev (= ${binary:Version}),
librust-web-sys+usbrecipient-dev (= ${binary:Version}),
librust-web-sys+usbrequesttype-dev (= ${binary:Version}),
librust-web-sys+usbtransferstatus-dev (= ${binary:Version}),
librust-web-sys+useractivation-dev (= ${binary:Version}),
librust-web-sys+userproximityevent-dev (= ${binary:Version}),
librust-web-sys+userproximityeventinit-dev (= ${binary:Version}),
librust-web-sys+userverificationrequirement-dev (= ${binary:Version}),
librust-web-sys+validitystate-dev (= ${binary:Version}),
librust-web-sys+valueevent-dev (= ${binary:Version}),
librust-web-sys+valueeventinit-dev (= ${binary:Version}),
librust-web-sys+videocolorprimaries-dev (= ${binary:Version}),
librust-web-sys+videocolorspace-dev (= ${binary:Version}),
librust-web-sys+videocolorspaceinit-dev (= ${binary:Version}),
librust-web-sys+videoconfiguration-dev (= ${binary:Version}),
librust-web-sys+videodecoder-dev (= ${binary:Version}),
librust-web-sys+videodecoderconfig-dev (= ${binary:Version}),
librust-web-sys+videodecoderinit-dev (= ${binary:Version}),
librust-web-sys+videodecodersupport-dev (= ${binary:Version}),
librust-web-sys+videoencoder-dev (= ${binary:Version}),
librust-web-sys+videoencoderconfig-dev (= ${binary:Version}),
librust-web-sys+videoencoderencodeoptions-dev (= ${binary:Version}),
librust-web-sys+videoencoderinit-dev (= ${binary:Version}),
librust-web-sys+videoencodersupport-dev (= ${binary:Version}),
librust-web-sys+videofacingmodeenum-dev (= ${binary:Version}),
librust-web-sys+videoframe-dev (= ${binary:Version}),
librust-web-sys+videoframebufferinit-dev (= ${binary:Version}),
librust-web-sys+videoframecopytooptions-dev (= ${binary:Version}),
librust-web-sys+videoframeinit-dev (= ${binary:Version}),
librust-web-sys+videomatrixcoefficients-dev (= ${binary:Version}),
librust-web-sys+videopixelformat-dev (= ${binary:Version}),
librust-web-sys+videoplaybackquality-dev (= ${binary:Version}),
librust-web-sys+videostreamtrack-dev (= ${binary:Version}),
librust-web-sys+videotrack-dev (= ${binary:Version}),
librust-web-sys+videotracklist-dev (= ${binary:Version}),
librust-web-sys+videotransfercharacteristics-dev (= ${binary:Version}),
librust-web-sys+viewtransition-dev (= ${binary:Version}),
librust-web-sys+visibilitystate-dev (= ${binary:Version}),
librust-web-sys+visualviewport-dev (= ${binary:Version}),
librust-web-sys+voidcallback-dev (= ${binary:Version}),
librust-web-sys+vrdisplay-dev (= ${binary:Version}),
librust-web-sys+vrdisplaycapabilities-dev (= ${binary:Version}),
librust-web-sys+vreye-dev (= ${binary:Version}),
librust-web-sys+vreyeparameters-dev (= ${binary:Version}),
librust-web-sys+vrfieldofview-dev (= ${binary:Version}),
librust-web-sys+vrframedata-dev (= ${binary:Version}),
librust-web-sys+vrlayer-dev (= ${binary:Version}),
librust-web-sys+vrmockcontroller-dev (= ${binary:Version}),
librust-web-sys+vrmockdisplay-dev (= ${binary:Version}),
librust-web-sys+vrpose-dev (= ${binary:Version}),
librust-web-sys+vrservicetest-dev (= ${binary:Version}),
librust-web-sys+vrstageparameters-dev (= ${binary:Version}),
librust-web-sys+vrsubmitframeresult-dev (= ${binary:Version}),
librust-web-sys+vttcue-dev (= ${binary:Version}),
librust-web-sys+vttregion-dev (= ${binary:Version}),
librust-web-sys+wakelock-dev (= ${binary:Version}),
librust-web-sys+wakelocksentinel-dev (= ${binary:Version}),
librust-web-sys+wakelocktype-dev (= ${binary:Version}),
librust-web-sys+watchadvertisementsoptions-dev (= ${binary:Version}),
librust-web-sys+waveshapernode-dev (= ${binary:Version}),
librust-web-sys+waveshaperoptions-dev (= ${binary:Version}),
librust-web-sys+webgl2renderingcontext-dev (= ${binary:Version}),
librust-web-sys+webglactiveinfo-dev (= ${binary:Version}),
librust-web-sys+webglbuffer-dev (= ${binary:Version}),
librust-web-sys+webglcontextattributes-dev (= ${binary:Version}),
librust-web-sys+webglcontextevent-dev (= ${binary:Version}),
librust-web-sys+webglcontexteventinit-dev (= ${binary:Version}),
librust-web-sys+webglframebuffer-dev (= ${binary:Version}),
librust-web-sys+webglpowerpreference-dev (= ${binary:Version}),
librust-web-sys+webglprogram-dev (= ${binary:Version}),
librust-web-sys+webglquery-dev (= ${binary:Version}),
librust-web-sys+webglrenderbuffer-dev (= ${binary:Version}),
librust-web-sys+webglrenderingcontext-dev (= ${binary:Version}),
librust-web-sys+webglsampler-dev (= ${binary:Version}),
librust-web-sys+webglshader-dev (= ${binary:Version}),
librust-web-sys+webglshaderprecisionformat-dev (= ${binary:Version}),
librust-web-sys+webglsync-dev (= ${binary:Version}),
librust-web-sys+webgltexture-dev (= ${binary:Version}),
librust-web-sys+webgltransformfeedback-dev (= ${binary:Version}),
librust-web-sys+webgluniformlocation-dev (= ${binary:Version}),
librust-web-sys+webglvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys+webkitcssmatrix-dev (= ${binary:Version}),
librust-web-sys+websocket-dev (= ${binary:Version}),
librust-web-sys+websocketdict-dev (= ${binary:Version}),
librust-web-sys+websocketelement-dev (= ${binary:Version}),
librust-web-sys+webtransport-dev (= ${binary:Version}),
librust-web-sys+webtransportbidirectionalstream-dev (= ${binary:Version}),
librust-web-sys+webtransportcloseinfo-dev (= ${binary:Version}),
librust-web-sys+webtransportcongestioncontrol-dev (= ${binary:Version}),
librust-web-sys+webtransportdatagramduplexstream-dev (= ${binary:Version}),
librust-web-sys+webtransportdatagramstats-dev (= ${binary:Version}),
librust-web-sys+webtransporterror-dev (= ${binary:Version}),
librust-web-sys+webtransporterroroptions-dev (= ${binary:Version}),
librust-web-sys+webtransporterrorsource-dev (= ${binary:Version}),
librust-web-sys+webtransporthash-dev (= ${binary:Version}),
librust-web-sys+webtransportoptions-dev (= ${binary:Version}),
librust-web-sys+webtransportreceivestream-dev (= ${binary:Version}),
librust-web-sys+webtransportreceivestreamstats-dev (= ${binary:Version}),
librust-web-sys+webtransportreliabilitymode-dev (= ${binary:Version}),
librust-web-sys+webtransportsendstream-dev (= ${binary:Version}),
librust-web-sys+webtransportsendstreamoptions-dev (= ${binary:Version}),
librust-web-sys+webtransportsendstreamstats-dev (= ${binary:Version}),
librust-web-sys+webtransportstats-dev (= ${binary:Version}),
librust-web-sys+webglcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtextureastc-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtextureatc-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtextureetc-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtextureetc1-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtexturepvrtc-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtextures3tc-dev (= ${binary:Version}),
librust-web-sys+webglcompressedtextures3tcsrgb-dev (= ${binary:Version}),
librust-web-sys+webgldebugrendererinfo-dev (= ${binary:Version}),
librust-web-sys+webgldebugshaders-dev (= ${binary:Version}),
librust-web-sys+webgldepthtexture-dev (= ${binary:Version}),
librust-web-sys+webgldrawbuffers-dev (= ${binary:Version}),
librust-web-sys+webgllosecontext-dev (= ${binary:Version}),
librust-web-sys+webglmultidraw-dev (= ${binary:Version}),
librust-web-sys+wellknowndirectory-dev (= ${binary:Version}),
librust-web-sys+wgsllanguagefeatures-dev (= ${binary:Version}),
librust-web-sys+wheelevent-dev (= ${binary:Version}),
librust-web-sys+wheeleventinit-dev (= ${binary:Version}),
librust-web-sys+widevinecdmmanifest-dev (= ${binary:Version}),
librust-web-sys+window-dev (= ${binary:Version}),
librust-web-sys+windowclient-dev (= ${binary:Version}),
librust-web-sys+worker-dev (= ${binary:Version}),
librust-web-sys+workerdebuggerglobalscope-dev (= ${binary:Version}),
librust-web-sys+workerglobalscope-dev (= ${binary:Version}),
librust-web-sys+workerlocation-dev (= ${binary:Version}),
librust-web-sys+workernavigator-dev (= ${binary:Version}),
librust-web-sys+workeroptions-dev (= ${binary:Version}),
librust-web-sys+workertype-dev (= ${binary:Version}),
librust-web-sys+worklet-dev (= ${binary:Version}),
librust-web-sys+workletglobalscope-dev (= ${binary:Version}),
librust-web-sys+workletoptions-dev (= ${binary:Version}),
librust-web-sys+writablestream-dev (= ${binary:Version}),
librust-web-sys+writablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys+writablestreamdefaultwriter-dev (= ${binary:Version}),
librust-web-sys+writecommandtype-dev (= ${binary:Version}),
librust-web-sys+writeparams-dev (= ${binary:Version}),
librust-web-sys+xpathexpression-dev (= ${binary:Version}),
librust-web-sys+xpathnsresolver-dev (= ${binary:Version}),
librust-web-sys+xpathresult-dev (= ${binary:Version}),
librust-web-sys+xmldocument-dev (= ${binary:Version}),
librust-web-sys+xmlhttprequest-dev (= ${binary:Version}),
librust-web-sys+xmlhttprequesteventtarget-dev (= ${binary:Version}),
librust-web-sys+xmlhttprequestresponsetype-dev (= ${binary:Version}),
librust-web-sys+xmlhttprequestupload-dev (= ${binary:Version}),
librust-web-sys+xmlserializer-dev (= ${binary:Version}),
librust-web-sys+xrboundedreferencespace-dev (= ${binary:Version}),
librust-web-sys+xreye-dev (= ${binary:Version}),
librust-web-sys+xrframe-dev (= ${binary:Version}),
librust-web-sys+xrhand-dev (= ${binary:Version}),
librust-web-sys+xrhandjoint-dev (= ${binary:Version}),
librust-web-sys+xrhandedness-dev (= ${binary:Version}),
librust-web-sys+xrinputsource-dev (= ${binary:Version}),
librust-web-sys+xrinputsourcearray-dev (= ${binary:Version}),
librust-web-sys+xrinputsourceevent-dev (= ${binary:Version}),
librust-web-sys+xrinputsourceeventinit-dev (= ${binary:Version}),
librust-web-sys+xrinputsourceschangeevent-dev (= ${binary:Version}),
librust-web-sys+xrinputsourceschangeeventinit-dev (= ${binary:Version}),
librust-web-sys+xrjointpose-dev (= ${binary:Version}),
librust-web-sys+xrjointspace-dev (= ${binary:Version}),
librust-web-sys+xrlayer-dev (= ${binary:Version}),
librust-web-sys+xrpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+xrpermissionstatus-dev (= ${binary:Version}),
librust-web-sys+xrpose-dev (= ${binary:Version}),
librust-web-sys+xrreferencespace-dev (= ${binary:Version}),
librust-web-sys+xrreferencespaceevent-dev (= ${binary:Version}),
librust-web-sys+xrreferencespaceeventinit-dev (= ${binary:Version}),
librust-web-sys+xrreferencespacetype-dev (= ${binary:Version}),
librust-web-sys+xrrenderstate-dev (= ${binary:Version}),
librust-web-sys+xrrenderstateinit-dev (= ${binary:Version}),
librust-web-sys+xrrigidtransform-dev (= ${binary:Version}),
librust-web-sys+xrsession-dev (= ${binary:Version}),
librust-web-sys+xrsessionevent-dev (= ${binary:Version}),
librust-web-sys+xrsessioneventinit-dev (= ${binary:Version}),
librust-web-sys+xrsessioninit-dev (= ${binary:Version}),
librust-web-sys+xrsessionmode-dev (= ${binary:Version}),
librust-web-sys+xrsessionsupportedpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys+xrspace-dev (= ${binary:Version}),
librust-web-sys+xrsystem-dev (= ${binary:Version}),
librust-web-sys+xrtargetraymode-dev (= ${binary:Version}),
librust-web-sys+xrview-dev (= ${binary:Version}),
librust-web-sys+xrviewerpose-dev (= ${binary:Version}),
librust-web-sys+xrviewport-dev (= ${binary:Version}),
librust-web-sys+xrvisibilitystate-dev (= ${binary:Version}),
librust-web-sys+xrwebgllayer-dev (= ${binary:Version}),
librust-web-sys+xrwebgllayerinit-dev (= ${binary:Version}),
librust-web-sys+xsltprocessor-dev (= ${binary:Version}),
librust-web-sys+console-dev (= ${binary:Version}),
librust-web-sys+css-dev (= ${binary:Version}),
librust-web-sys+default-dev (= ${binary:Version}),
librust-web-sys+gpu-buffer-usage-dev (= ${binary:Version}),
librust-web-sys+gpu-color-write-dev (= ${binary:Version}),
librust-web-sys+gpu-map-mode-dev (= ${binary:Version}),
librust-web-sys+gpu-shader-stage-dev (= ${binary:Version}),
librust-web-sys+gpu-texture-usage-dev (= ${binary:Version}),
librust-web-sys+std-dev (= ${binary:Version}),
librust-web-sys-0-dev (= ${binary:Version}),
librust-web-sys-0+abortcontroller-dev (= ${binary:Version}),
librust-web-sys-0+abortsignal-dev (= ${binary:Version}),
librust-web-sys-0+addeventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys-0+aescbcparams-dev (= ${binary:Version}),
librust-web-sys-0+aesctrparams-dev (= ${binary:Version}),
librust-web-sys-0+aesderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys-0+aesgcmparams-dev (= ${binary:Version}),
librust-web-sys-0+aeskeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0+aeskeygenparams-dev (= ${binary:Version}),
librust-web-sys-0+algorithm-dev (= ${binary:Version}),
librust-web-sys-0+alignsetting-dev (= ${binary:Version}),
librust-web-sys-0+allowedbluetoothdevice-dev (= ${binary:Version}),
librust-web-sys-0+allowedusbdevice-dev (= ${binary:Version}),
librust-web-sys-0+alphaoption-dev (= ${binary:Version}),
librust-web-sys-0+analysernode-dev (= ${binary:Version}),
librust-web-sys-0+analyseroptions-dev (= ${binary:Version}),
librust-web-sys-0+angleinstancedarrays-dev (= ${binary:Version}),
librust-web-sys-0+animation-dev (= ${binary:Version}),
librust-web-sys-0+animationeffect-dev (= ${binary:Version}),
librust-web-sys-0+animationevent-dev (= ${binary:Version}),
librust-web-sys-0+animationeventinit-dev (= ${binary:Version}),
librust-web-sys-0+animationplaystate-dev (= ${binary:Version}),
librust-web-sys-0+animationplaybackevent-dev (= ${binary:Version}),
librust-web-sys-0+animationplaybackeventinit-dev (= ${binary:Version}),
librust-web-sys-0+animationpropertydetails-dev (= ${binary:Version}),
librust-web-sys-0+animationpropertyvaluedetails-dev (= ${binary:Version}),
librust-web-sys-0+animationtimeline-dev (= ${binary:Version}),
librust-web-sys-0+assignednodesoptions-dev (= ${binary:Version}),
librust-web-sys-0+attestationconveyancepreference-dev (= ${binary:Version}),
librust-web-sys-0+attr-dev (= ${binary:Version}),
librust-web-sys-0+attributenamevalue-dev (= ${binary:Version}),
librust-web-sys-0+audiobuffer-dev (= ${binary:Version}),
librust-web-sys-0+audiobufferoptions-dev (= ${binary:Version}),
librust-web-sys-0+audiobuffersourcenode-dev (= ${binary:Version}),
librust-web-sys-0+audiobuffersourceoptions-dev (= ${binary:Version}),
librust-web-sys-0+audioconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+audiocontext-dev (= ${binary:Version}),
librust-web-sys-0+audiocontextlatencycategory-dev (= ${binary:Version}),
librust-web-sys-0+audiocontextoptions-dev (= ${binary:Version}),
librust-web-sys-0+audiocontextstate-dev (= ${binary:Version}),
librust-web-sys-0+audiodata-dev (= ${binary:Version}),
librust-web-sys-0+audiodatacopytooptions-dev (= ${binary:Version}),
librust-web-sys-0+audiodatainit-dev (= ${binary:Version}),
librust-web-sys-0+audiodecoder-dev (= ${binary:Version}),
librust-web-sys-0+audiodecoderconfig-dev (= ${binary:Version}),
librust-web-sys-0+audiodecoderinit-dev (= ${binary:Version}),
librust-web-sys-0+audiodecodersupport-dev (= ${binary:Version}),
librust-web-sys-0+audiodestinationnode-dev (= ${binary:Version}),
librust-web-sys-0+audioencoder-dev (= ${binary:Version}),
librust-web-sys-0+audioencoderconfig-dev (= ${binary:Version}),
librust-web-sys-0+audioencoderinit-dev (= ${binary:Version}),
librust-web-sys-0+audioencodersupport-dev (= ${binary:Version}),
librust-web-sys-0+audiolistener-dev (= ${binary:Version}),
librust-web-sys-0+audionode-dev (= ${binary:Version}),
librust-web-sys-0+audionodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+audioparam-dev (= ${binary:Version}),
librust-web-sys-0+audioparammap-dev (= ${binary:Version}),
librust-web-sys-0+audioprocessingevent-dev (= ${binary:Version}),
librust-web-sys-0+audiosampleformat-dev (= ${binary:Version}),
librust-web-sys-0+audioscheduledsourcenode-dev (= ${binary:Version}),
librust-web-sys-0+audiosinkinfo-dev (= ${binary:Version}),
librust-web-sys-0+audiosinkoptions-dev (= ${binary:Version}),
librust-web-sys-0+audiosinktype-dev (= ${binary:Version}),
librust-web-sys-0+audiostreamtrack-dev (= ${binary:Version}),
librust-web-sys-0+audiotrack-dev (= ${binary:Version}),
librust-web-sys-0+audiotracklist-dev (= ${binary:Version}),
librust-web-sys-0+audioworklet-dev (= ${binary:Version}),
librust-web-sys-0+audioworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+audioworkletnode-dev (= ${binary:Version}),
librust-web-sys-0+audioworkletnodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+audioworkletprocessor-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsclientinputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsclientinputsjson-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsclientoutputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsclientoutputsjson-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsdevicepublickeyinputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsdevicepublickeyoutputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionslargeblobinputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionslargebloboutputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsprfinputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsprfoutputs-dev (= ${binary:Version}),
librust-web-sys-0+authenticationextensionsprfvalues-dev (= ${binary:Version}),
librust-web-sys-0+authenticationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorassertionresponse-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorassertionresponsejson-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorattachment-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorattestationresponse-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorattestationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorresponse-dev (= ${binary:Version}),
librust-web-sys-0+authenticatorselectioncriteria-dev (= ${binary:Version}),
librust-web-sys-0+authenticatortransport-dev (= ${binary:Version}),
librust-web-sys-0+autokeyword-dev (= ${binary:Version}),
librust-web-sys-0+autocompleteinfo-dev (= ${binary:Version}),
librust-web-sys-0+barprop-dev (= ${binary:Version}),
librust-web-sys-0+baseaudiocontext-dev (= ${binary:Version}),
librust-web-sys-0+basecomputedkeyframe-dev (= ${binary:Version}),
librust-web-sys-0+basekeyframe-dev (= ${binary:Version}),
librust-web-sys-0+basepropertyindexedkeyframe-dev (= ${binary:Version}),
librust-web-sys-0+basiccardrequest-dev (= ${binary:Version}),
librust-web-sys-0+basiccardresponse-dev (= ${binary:Version}),
librust-web-sys-0+basiccardtype-dev (= ${binary:Version}),
librust-web-sys-0+batterymanager-dev (= ${binary:Version}),
librust-web-sys-0+beforeunloadevent-dev (= ${binary:Version}),
librust-web-sys-0+binarytype-dev (= ${binary:Version}),
librust-web-sys-0+biquadfilternode-dev (= ${binary:Version}),
librust-web-sys-0+biquadfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0+biquadfiltertype-dev (= ${binary:Version}),
librust-web-sys-0+blob-dev (= ${binary:Version}),
librust-web-sys-0+blobevent-dev (= ${binary:Version}),
librust-web-sys-0+blobeventinit-dev (= ${binary:Version}),
librust-web-sys-0+blobpropertybag-dev (= ${binary:Version}),
librust-web-sys-0+blockparsingoptions-dev (= ${binary:Version}),
librust-web-sys-0+bluetooth-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothadvertisingevent-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothadvertisingeventinit-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothcharacteristicproperties-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothdatafilterinit-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothdevice-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothlescanfilterinit-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothmanufacturerdatamap-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothpermissionresult-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothpermissionstorage-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothremotegattcharacteristic-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothremotegattdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothremotegattserver-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothremotegattservice-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothservicedatamap-dev (= ${binary:Version}),
librust-web-sys-0+bluetoothuuid-dev (= ${binary:Version}),
librust-web-sys-0+boxquadoptions-dev (= ${binary:Version}),
librust-web-sys-0+broadcastchannel-dev (= ${binary:Version}),
librust-web-sys-0+browserelementdownloadoptions-dev (= ${binary:Version}),
librust-web-sys-0+browserelementexecutescriptoptions-dev (= ${binary:Version}),
librust-web-sys-0+browserfeedwriter-dev (= ${binary:Version}),
librust-web-sys-0+browserfindcasesensitivity-dev (= ${binary:Version}),
librust-web-sys-0+browserfinddirection-dev (= ${binary:Version}),
librust-web-sys-0+bytelengthqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0+cache-dev (= ${binary:Version}),
librust-web-sys-0+cachebatchoperation-dev (= ${binary:Version}),
librust-web-sys-0+cachequeryoptions-dev (= ${binary:Version}),
librust-web-sys-0+cachestorage-dev (= ${binary:Version}),
librust-web-sys-0+cachestoragenamespace-dev (= ${binary:Version}),
librust-web-sys-0+canvascapturemediastream-dev (= ${binary:Version}),
librust-web-sys-0+canvascapturemediastreamtrack-dev (= ${binary:Version}),
librust-web-sys-0+canvasgradient-dev (= ${binary:Version}),
librust-web-sys-0+canvaspattern-dev (= ${binary:Version}),
librust-web-sys-0+canvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys-0+canvaswindingrule-dev (= ${binary:Version}),
librust-web-sys-0+caretchangedreason-dev (= ${binary:Version}),
librust-web-sys-0+caretposition-dev (= ${binary:Version}),
librust-web-sys-0+caretstatechangedeventinit-dev (= ${binary:Version}),
librust-web-sys-0+cdatasection-dev (= ${binary:Version}),
librust-web-sys-0+channelcountmode-dev (= ${binary:Version}),
librust-web-sys-0+channelinterpretation-dev (= ${binary:Version}),
librust-web-sys-0+channelmergernode-dev (= ${binary:Version}),
librust-web-sys-0+channelmergeroptions-dev (= ${binary:Version}),
librust-web-sys-0+channelsplitternode-dev (= ${binary:Version}),
librust-web-sys-0+channelsplitteroptions-dev (= ${binary:Version}),
librust-web-sys-0+characterdata-dev (= ${binary:Version}),
librust-web-sys-0+checkerboardreason-dev (= ${binary:Version}),
librust-web-sys-0+checkerboardreport-dev (= ${binary:Version}),
librust-web-sys-0+checkerboardreportservice-dev (= ${binary:Version}),
librust-web-sys-0+chromefilepropertybag-dev (= ${binary:Version}),
librust-web-sys-0+chromeworker-dev (= ${binary:Version}),
librust-web-sys-0+client-dev (= ${binary:Version}),
librust-web-sys-0+clientqueryoptions-dev (= ${binary:Version}),
librust-web-sys-0+clientrectsandtexts-dev (= ${binary:Version}),
librust-web-sys-0+clienttype-dev (= ${binary:Version}),
librust-web-sys-0+clients-dev (= ${binary:Version}),
librust-web-sys-0+clipboard-dev (= ${binary:Version}),
librust-web-sys-0+clipboardevent-dev (= ${binary:Version}),
librust-web-sys-0+clipboardeventinit-dev (= ${binary:Version}),
librust-web-sys-0+clipboarditem-dev (= ${binary:Version}),
librust-web-sys-0+clipboarditemoptions-dev (= ${binary:Version}),
librust-web-sys-0+clipboardpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+clipboardunsanitizedformats-dev (= ${binary:Version}),
librust-web-sys-0+closeevent-dev (= ${binary:Version}),
librust-web-sys-0+closeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+codecstate-dev (= ${binary:Version}),
librust-web-sys-0+collectedclientdata-dev (= ${binary:Version}),
librust-web-sys-0+colorspaceconversion-dev (= ${binary:Version}),
librust-web-sys-0+comment-dev (= ${binary:Version}),
librust-web-sys-0+compositeoperation-dev (= ${binary:Version}),
librust-web-sys-0+compositionevent-dev (= ${binary:Version}),
librust-web-sys-0+compositioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+compressionformat-dev (= ${binary:Version}),
librust-web-sys-0+compressionstream-dev (= ${binary:Version}),
librust-web-sys-0+computedeffecttiming-dev (= ${binary:Version}),
librust-web-sys-0+connstatusdict-dev (= ${binary:Version}),
librust-web-sys-0+connectiontype-dev (= ${binary:Version}),
librust-web-sys-0+consolecounter-dev (= ${binary:Version}),
librust-web-sys-0+consolecountererror-dev (= ${binary:Version}),
librust-web-sys-0+consoleevent-dev (= ${binary:Version}),
librust-web-sys-0+consoleinstance-dev (= ${binary:Version}),
librust-web-sys-0+consoleinstanceoptions-dev (= ${binary:Version}),
librust-web-sys-0+consolelevel-dev (= ${binary:Version}),
librust-web-sys-0+consoleloglevel-dev (= ${binary:Version}),
librust-web-sys-0+consoleprofileevent-dev (= ${binary:Version}),
librust-web-sys-0+consolestackentry-dev (= ${binary:Version}),
librust-web-sys-0+consoletimererror-dev (= ${binary:Version}),
librust-web-sys-0+consoletimerlogorend-dev (= ${binary:Version}),
librust-web-sys-0+consoletimerstart-dev (= ${binary:Version}),
librust-web-sys-0+constantsourcenode-dev (= ${binary:Version}),
librust-web-sys-0+constantsourceoptions-dev (= ${binary:Version}),
librust-web-sys-0+constrainbooleanparameters-dev (= ${binary:Version}),
librust-web-sys-0+constraindomstringparameters-dev (= ${binary:Version}),
librust-web-sys-0+constraindoublerange-dev (= ${binary:Version}),
librust-web-sys-0+constrainlongrange-dev (= ${binary:Version}),
librust-web-sys-0+contextattributes2d-dev (= ${binary:Version}),
librust-web-sys-0+convertcoordinateoptions-dev (= ${binary:Version}),
librust-web-sys-0+convolvernode-dev (= ${binary:Version}),
librust-web-sys-0+convolveroptions-dev (= ${binary:Version}),
librust-web-sys-0+cookiechangeevent-dev (= ${binary:Version}),
librust-web-sys-0+cookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+cookieinit-dev (= ${binary:Version}),
librust-web-sys-0+cookielistitem-dev (= ${binary:Version}),
librust-web-sys-0+cookiesamesite-dev (= ${binary:Version}),
librust-web-sys-0+cookiestore-dev (= ${binary:Version}),
librust-web-sys-0+cookiestoredeleteoptions-dev (= ${binary:Version}),
librust-web-sys-0+cookiestoregetoptions-dev (= ${binary:Version}),
librust-web-sys-0+cookiestoremanager-dev (= ${binary:Version}),
librust-web-sys-0+coordinates-dev (= ${binary:Version}),
librust-web-sys-0+countqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0+credential-dev (= ${binary:Version}),
librust-web-sys-0+credentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0+credentialpropertiesoutput-dev (= ${binary:Version}),
librust-web-sys-0+credentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0+credentialscontainer-dev (= ${binary:Version}),
librust-web-sys-0+crypto-dev (= ${binary:Version}),
librust-web-sys-0+cryptokey-dev (= ${binary:Version}),
librust-web-sys-0+cryptokeypair-dev (= ${binary:Version}),
librust-web-sys-0+cssanimation-dev (= ${binary:Version}),
librust-web-sys-0+cssboxtype-dev (= ${binary:Version}),
librust-web-sys-0+cssconditionrule-dev (= ${binary:Version}),
librust-web-sys-0+csscounterstylerule-dev (= ${binary:Version}),
librust-web-sys-0+cssfontfacerule-dev (= ${binary:Version}),
librust-web-sys-0+cssfontfeaturevaluesrule-dev (= ${binary:Version}),
librust-web-sys-0+cssgroupingrule-dev (= ${binary:Version}),
librust-web-sys-0+cssimportrule-dev (= ${binary:Version}),
librust-web-sys-0+csskeyframerule-dev (= ${binary:Version}),
librust-web-sys-0+csskeyframesrule-dev (= ${binary:Version}),
librust-web-sys-0+cssmediarule-dev (= ${binary:Version}),
librust-web-sys-0+cssnamespacerule-dev (= ${binary:Version}),
librust-web-sys-0+csspagerule-dev (= ${binary:Version}),
librust-web-sys-0+csspseudoelement-dev (= ${binary:Version}),
librust-web-sys-0+cssrule-dev (= ${binary:Version}),
librust-web-sys-0+cssrulelist-dev (= ${binary:Version}),
librust-web-sys-0+cssstyledeclaration-dev (= ${binary:Version}),
librust-web-sys-0+cssstylerule-dev (= ${binary:Version}),
librust-web-sys-0+cssstylesheet-dev (= ${binary:Version}),
librust-web-sys-0+cssstylesheetparsingmode-dev (= ${binary:Version}),
librust-web-sys-0+csssupportsrule-dev (= ${binary:Version}),
librust-web-sys-0+csstransition-dev (= ${binary:Version}),
librust-web-sys-0+customelementregistry-dev (= ${binary:Version}),
librust-web-sys-0+customevent-dev (= ${binary:Version}),
librust-web-sys-0+customeventinit-dev (= ${binary:Version}),
librust-web-sys-0+datatransfer-dev (= ${binary:Version}),
librust-web-sys-0+datatransferitem-dev (= ${binary:Version}),
librust-web-sys-0+datatransferitemlist-dev (= ${binary:Version}),
librust-web-sys-0+datetimevalue-dev (= ${binary:Version}),
librust-web-sys-0+decoderdoctornotification-dev (= ${binary:Version}),
librust-web-sys-0+decoderdoctornotificationtype-dev (= ${binary:Version}),
librust-web-sys-0+decompressionstream-dev (= ${binary:Version}),
librust-web-sys-0+dedicatedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+delaynode-dev (= ${binary:Version}),
librust-web-sys-0+delayoptions-dev (= ${binary:Version}),
librust-web-sys-0+deviceacceleration-dev (= ${binary:Version}),
librust-web-sys-0+deviceaccelerationinit-dev (= ${binary:Version}),
librust-web-sys-0+devicelightevent-dev (= ${binary:Version}),
librust-web-sys-0+devicelighteventinit-dev (= ${binary:Version}),
librust-web-sys-0+devicemotionevent-dev (= ${binary:Version}),
librust-web-sys-0+devicemotioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+deviceorientationevent-dev (= ${binary:Version}),
librust-web-sys-0+deviceorientationeventinit-dev (= ${binary:Version}),
librust-web-sys-0+deviceproximityevent-dev (= ${binary:Version}),
librust-web-sys-0+deviceproximityeventinit-dev (= ${binary:Version}),
librust-web-sys-0+devicerotationrate-dev (= ${binary:Version}),
librust-web-sys-0+devicerotationrateinit-dev (= ${binary:Version}),
librust-web-sys-0+dhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys-0+directionsetting-dev (= ${binary:Version}),
librust-web-sys-0+directory-dev (= ${binary:Version}),
librust-web-sys-0+directorypickeroptions-dev (= ${binary:Version}),
librust-web-sys-0+displaymediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys-0+displaynameoptions-dev (= ${binary:Version}),
librust-web-sys-0+displaynameresult-dev (= ${binary:Version}),
librust-web-sys-0+distancemodeltype-dev (= ${binary:Version}),
librust-web-sys-0+dnscachedict-dev (= ${binary:Version}),
librust-web-sys-0+dnscacheentry-dev (= ${binary:Version}),
librust-web-sys-0+dnslookupdict-dev (= ${binary:Version}),
librust-web-sys-0+document-dev (= ${binary:Version}),
librust-web-sys-0+documentfragment-dev (= ${binary:Version}),
librust-web-sys-0+documenttimeline-dev (= ${binary:Version}),
librust-web-sys-0+documenttimelineoptions-dev (= ${binary:Version}),
librust-web-sys-0+documenttype-dev (= ${binary:Version}),
librust-web-sys-0+domerror-dev (= ${binary:Version}),
librust-web-sys-0+domexception-dev (= ${binary:Version}),
librust-web-sys-0+domimplementation-dev (= ${binary:Version}),
librust-web-sys-0+dommatrix-dev (= ${binary:Version}),
librust-web-sys-0+dommatrix2dinit-dev (= ${binary:Version}),
librust-web-sys-0+dommatrixinit-dev (= ${binary:Version}),
librust-web-sys-0+dommatrixreadonly-dev (= ${binary:Version}),
librust-web-sys-0+domparser-dev (= ${binary:Version}),
librust-web-sys-0+dompoint-dev (= ${binary:Version}),
librust-web-sys-0+dompointinit-dev (= ${binary:Version}),
librust-web-sys-0+dompointreadonly-dev (= ${binary:Version}),
librust-web-sys-0+domquad-dev (= ${binary:Version}),
librust-web-sys-0+domquadinit-dev (= ${binary:Version}),
librust-web-sys-0+domquadjson-dev (= ${binary:Version}),
librust-web-sys-0+domrect-dev (= ${binary:Version}),
librust-web-sys-0+domrectinit-dev (= ${binary:Version}),
librust-web-sys-0+domrectlist-dev (= ${binary:Version}),
librust-web-sys-0+domrectreadonly-dev (= ${binary:Version}),
librust-web-sys-0+domrequest-dev (= ${binary:Version}),
librust-web-sys-0+domrequestreadystate-dev (= ${binary:Version}),
librust-web-sys-0+domstringlist-dev (= ${binary:Version}),
librust-web-sys-0+domstringmap-dev (= ${binary:Version}),
librust-web-sys-0+domtokenlist-dev (= ${binary:Version}),
librust-web-sys-0+domwindowresizeeventdetail-dev (= ${binary:Version}),
librust-web-sys-0+doublerange-dev (= ${binary:Version}),
librust-web-sys-0+dragevent-dev (= ${binary:Version}),
librust-web-sys-0+drageventinit-dev (= ${binary:Version}),
librust-web-sys-0+dynamicscompressornode-dev (= ${binary:Version}),
librust-web-sys-0+dynamicscompressoroptions-dev (= ${binary:Version}),
librust-web-sys-0+eckeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0+eckeygenparams-dev (= ${binary:Version}),
librust-web-sys-0+eckeyimportparams-dev (= ${binary:Version}),
librust-web-sys-0+ecdhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys-0+ecdsaparams-dev (= ${binary:Version}),
librust-web-sys-0+effecttiming-dev (= ${binary:Version}),
librust-web-sys-0+element-dev (= ${binary:Version}),
librust-web-sys-0+elementcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0+elementdefinitionoptions-dev (= ${binary:Version}),
librust-web-sys-0+encodedaudiochunk-dev (= ${binary:Version}),
librust-web-sys-0+encodedaudiochunkinit-dev (= ${binary:Version}),
librust-web-sys-0+encodedaudiochunkmetadata-dev (= ${binary:Version}),
librust-web-sys-0+encodedaudiochunktype-dev (= ${binary:Version}),
librust-web-sys-0+encodedvideochunk-dev (= ${binary:Version}),
librust-web-sys-0+encodedvideochunkinit-dev (= ${binary:Version}),
librust-web-sys-0+encodedvideochunkmetadata-dev (= ${binary:Version}),
librust-web-sys-0+encodedvideochunktype-dev (= ${binary:Version}),
librust-web-sys-0+endingtypes-dev (= ${binary:Version}),
librust-web-sys-0+errorcallback-dev (= ${binary:Version}),
librust-web-sys-0+errorevent-dev (= ${binary:Version}),
librust-web-sys-0+erroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+event-dev (= ${binary:Version}),
librust-web-sys-0+eventinit-dev (= ${binary:Version}),
librust-web-sys-0+eventlistener-dev (= ${binary:Version}),
librust-web-sys-0+eventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys-0+eventmodifierinit-dev (= ${binary:Version}),
librust-web-sys-0+eventsource-dev (= ${binary:Version}),
librust-web-sys-0+eventsourceinit-dev (= ${binary:Version}),
librust-web-sys-0+eventtarget-dev (= ${binary:Version}),
librust-web-sys-0+exception-dev (= ${binary:Version}),
librust-web-sys-0+extblendminmax-dev (= ${binary:Version}),
librust-web-sys-0+extcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys-0+extcolorbufferhalffloat-dev (= ${binary:Version}),
librust-web-sys-0+extdisjointtimerquery-dev (= ${binary:Version}),
librust-web-sys-0+extfragdepth-dev (= ${binary:Version}),
librust-web-sys-0+extsrgb-dev (= ${binary:Version}),
librust-web-sys-0+extshadertexturelod-dev (= ${binary:Version}),
librust-web-sys-0+exttexturefilteranisotropic-dev (= ${binary:Version}),
librust-web-sys-0+exttexturenorm16-dev (= ${binary:Version}),
librust-web-sys-0+extendablecookiechangeevent-dev (= ${binary:Version}),
librust-web-sys-0+extendablecookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+extendableevent-dev (= ${binary:Version}),
librust-web-sys-0+extendableeventinit-dev (= ${binary:Version}),
librust-web-sys-0+extendablemessageevent-dev (= ${binary:Version}),
librust-web-sys-0+extendablemessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0+external-dev (= ${binary:Version}),
librust-web-sys-0+fakepluginmimeentry-dev (= ${binary:Version}),
librust-web-sys-0+fakeplugintaginit-dev (= ${binary:Version}),
librust-web-sys-0+fetchevent-dev (= ${binary:Version}),
librust-web-sys-0+fetcheventinit-dev (= ${binary:Version}),
librust-web-sys-0+fetchobserver-dev (= ${binary:Version}),
librust-web-sys-0+fetchreadablestreamreaddataarray-dev (= ${binary:Version}),
librust-web-sys-0+fetchreadablestreamreaddatadone-dev (= ${binary:Version}),
librust-web-sys-0+fetchstate-dev (= ${binary:Version}),
librust-web-sys-0+file-dev (= ${binary:Version}),
librust-web-sys-0+filecallback-dev (= ${binary:Version}),
librust-web-sys-0+filelist-dev (= ${binary:Version}),
librust-web-sys-0+filepickeraccepttype-dev (= ${binary:Version}),
librust-web-sys-0+filepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0+filepropertybag-dev (= ${binary:Version}),
librust-web-sys-0+filereader-dev (= ${binary:Version}),
librust-web-sys-0+filereadersync-dev (= ${binary:Version}),
librust-web-sys-0+filesystem-dev (= ${binary:Version}),
librust-web-sys-0+filesystemcreatewritableoptions-dev (= ${binary:Version}),
librust-web-sys-0+filesystemdirectoryentry-dev (= ${binary:Version}),
librust-web-sys-0+filesystemdirectoryhandle-dev (= ${binary:Version}),
librust-web-sys-0+filesystemdirectoryreader-dev (= ${binary:Version}),
librust-web-sys-0+filesystementriescallback-dev (= ${binary:Version}),
librust-web-sys-0+filesystementry-dev (= ${binary:Version}),
librust-web-sys-0+filesystementrycallback-dev (= ${binary:Version}),
librust-web-sys-0+filesystemfileentry-dev (= ${binary:Version}),
librust-web-sys-0+filesystemfilehandle-dev (= ${binary:Version}),
librust-web-sys-0+filesystemflags-dev (= ${binary:Version}),
librust-web-sys-0+filesystemgetdirectoryoptions-dev (= ${binary:Version}),
librust-web-sys-0+filesystemgetfileoptions-dev (= ${binary:Version}),
librust-web-sys-0+filesystemhandle-dev (= ${binary:Version}),
librust-web-sys-0+filesystemhandlekind-dev (= ${binary:Version}),
librust-web-sys-0+filesystemhandlepermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+filesystempermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+filesystempermissionmode-dev (= ${binary:Version}),
librust-web-sys-0+filesystemreadwriteoptions-dev (= ${binary:Version}),
librust-web-sys-0+filesystemremoveoptions-dev (= ${binary:Version}),
librust-web-sys-0+filesystemsyncaccesshandle-dev (= ${binary:Version}),
librust-web-sys-0+filesystemwritablefilestream-dev (= ${binary:Version}),
librust-web-sys-0+fillmode-dev (= ${binary:Version}),
librust-web-sys-0+flashclassification-dev (= ${binary:Version}),
librust-web-sys-0+flowcontroltype-dev (= ${binary:Version}),
librust-web-sys-0+focusevent-dev (= ${binary:Version}),
librust-web-sys-0+focuseventinit-dev (= ${binary:Version}),
librust-web-sys-0+focusoptions-dev (= ${binary:Version}),
librust-web-sys-0+fontdata-dev (= ${binary:Version}),
librust-web-sys-0+fontface-dev (= ${binary:Version}),
librust-web-sys-0+fontfacedescriptors-dev (= ${binary:Version}),
librust-web-sys-0+fontfaceloadstatus-dev (= ${binary:Version}),
librust-web-sys-0+fontfaceset-dev (= ${binary:Version}),
librust-web-sys-0+fontfacesetiterator-dev (= ${binary:Version}),
librust-web-sys-0+fontfacesetiteratorresult-dev (= ${binary:Version}),
librust-web-sys-0+fontfacesetloadevent-dev (= ${binary:Version}),
librust-web-sys-0+fontfacesetloadeventinit-dev (= ${binary:Version}),
librust-web-sys-0+fontfacesetloadstatus-dev (= ${binary:Version}),
librust-web-sys-0+formdata-dev (= ${binary:Version}),
librust-web-sys-0+frametype-dev (= ${binary:Version}),
librust-web-sys-0+fuzzingfunctions-dev (= ${binary:Version}),
librust-web-sys-0+gainnode-dev (= ${binary:Version}),
librust-web-sys-0+gainoptions-dev (= ${binary:Version}),
librust-web-sys-0+gamepad-dev (= ${binary:Version}),
librust-web-sys-0+gamepadbutton-dev (= ${binary:Version}),
librust-web-sys-0+gamepadeffectparameters-dev (= ${binary:Version}),
librust-web-sys-0+gamepadevent-dev (= ${binary:Version}),
librust-web-sys-0+gamepadeventinit-dev (= ${binary:Version}),
librust-web-sys-0+gamepadhand-dev (= ${binary:Version}),
librust-web-sys-0+gamepadhapticactuator-dev (= ${binary:Version}),
librust-web-sys-0+gamepadhapticactuatortype-dev (= ${binary:Version}),
librust-web-sys-0+gamepadhapticeffecttype-dev (= ${binary:Version}),
librust-web-sys-0+gamepadhapticsresult-dev (= ${binary:Version}),
librust-web-sys-0+gamepadmappingtype-dev (= ${binary:Version}),
librust-web-sys-0+gamepadpose-dev (= ${binary:Version}),
librust-web-sys-0+gamepadtouch-dev (= ${binary:Version}),
librust-web-sys-0+geolocation-dev (= ${binary:Version}),
librust-web-sys-0+gestureevent-dev (= ${binary:Version}),
librust-web-sys-0+getanimationsoptions-dev (= ${binary:Version}),
librust-web-sys-0+getrootnodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+getusermediarequest-dev (= ${binary:Version}),
librust-web-sys-0+gpu-dev (= ${binary:Version}),
librust-web-sys-0+gpuadapter-dev (= ${binary:Version}),
librust-web-sys-0+gpuadapterinfo-dev (= ${binary:Version}),
librust-web-sys-0+gpuaddressmode-dev (= ${binary:Version}),
librust-web-sys-0+gpuautolayoutmode-dev (= ${binary:Version}),
librust-web-sys-0+gpubindgroup-dev (= ${binary:Version}),
librust-web-sys-0+gpubindgroupdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpubindgroupentry-dev (= ${binary:Version}),
librust-web-sys-0+gpubindgrouplayout-dev (= ${binary:Version}),
librust-web-sys-0+gpubindgrouplayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpubindgrouplayoutentry-dev (= ${binary:Version}),
librust-web-sys-0+gpublendcomponent-dev (= ${binary:Version}),
librust-web-sys-0+gpublendfactor-dev (= ${binary:Version}),
librust-web-sys-0+gpublendoperation-dev (= ${binary:Version}),
librust-web-sys-0+gpublendstate-dev (= ${binary:Version}),
librust-web-sys-0+gpubuffer-dev (= ${binary:Version}),
librust-web-sys-0+gpubufferbinding-dev (= ${binary:Version}),
librust-web-sys-0+gpubufferbindinglayout-dev (= ${binary:Version}),
librust-web-sys-0+gpubufferbindingtype-dev (= ${binary:Version}),
librust-web-sys-0+gpubufferdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpubuffermapstate-dev (= ${binary:Version}),
librust-web-sys-0+gpucanvasalphamode-dev (= ${binary:Version}),
librust-web-sys-0+gpucanvasconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+gpucanvascontext-dev (= ${binary:Version}),
librust-web-sys-0+gpucanvastonemapping-dev (= ${binary:Version}),
librust-web-sys-0+gpucanvastonemappingmode-dev (= ${binary:Version}),
librust-web-sys-0+gpucolordict-dev (= ${binary:Version}),
librust-web-sys-0+gpucolortargetstate-dev (= ${binary:Version}),
librust-web-sys-0+gpucommandbuffer-dev (= ${binary:Version}),
librust-web-sys-0+gpucommandbufferdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpucommandencoder-dev (= ${binary:Version}),
librust-web-sys-0+gpucommandencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpucomparefunction-dev (= ${binary:Version}),
librust-web-sys-0+gpucompilationinfo-dev (= ${binary:Version}),
librust-web-sys-0+gpucompilationmessage-dev (= ${binary:Version}),
librust-web-sys-0+gpucompilationmessagetype-dev (= ${binary:Version}),
librust-web-sys-0+gpucomputepassdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpucomputepassencoder-dev (= ${binary:Version}),
librust-web-sys-0+gpucomputepasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys-0+gpucomputepipeline-dev (= ${binary:Version}),
librust-web-sys-0+gpucomputepipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpucopyexternalimagedestinfo-dev (= ${binary:Version}),
librust-web-sys-0+gpucopyexternalimagesourceinfo-dev (= ${binary:Version}),
librust-web-sys-0+gpucullmode-dev (= ${binary:Version}),
librust-web-sys-0+gpudepthstencilstate-dev (= ${binary:Version}),
librust-web-sys-0+gpudevice-dev (= ${binary:Version}),
librust-web-sys-0+gpudevicedescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpudevicelostinfo-dev (= ${binary:Version}),
librust-web-sys-0+gpudevicelostreason-dev (= ${binary:Version}),
librust-web-sys-0+gpuerror-dev (= ${binary:Version}),
librust-web-sys-0+gpuerrorfilter-dev (= ${binary:Version}),
librust-web-sys-0+gpuextent3ddict-dev (= ${binary:Version}),
librust-web-sys-0+gpuexternaltexture-dev (= ${binary:Version}),
librust-web-sys-0+gpuexternaltexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0+gpuexternaltexturedescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpufeaturename-dev (= ${binary:Version}),
librust-web-sys-0+gpufiltermode-dev (= ${binary:Version}),
librust-web-sys-0+gpufragmentstate-dev (= ${binary:Version}),
librust-web-sys-0+gpufrontface-dev (= ${binary:Version}),
librust-web-sys-0+gpuindexformat-dev (= ${binary:Version}),
librust-web-sys-0+gpuinternalerror-dev (= ${binary:Version}),
librust-web-sys-0+gpuloadop-dev (= ${binary:Version}),
librust-web-sys-0+gpumipmapfiltermode-dev (= ${binary:Version}),
librust-web-sys-0+gpumultisamplestate-dev (= ${binary:Version}),
librust-web-sys-0+gpuobjectdescriptorbase-dev (= ${binary:Version}),
librust-web-sys-0+gpuorigin2ddict-dev (= ${binary:Version}),
librust-web-sys-0+gpuorigin3ddict-dev (= ${binary:Version}),
librust-web-sys-0+gpuoutofmemoryerror-dev (= ${binary:Version}),
librust-web-sys-0+gpupipelinedescriptorbase-dev (= ${binary:Version}),
librust-web-sys-0+gpupipelineerror-dev (= ${binary:Version}),
librust-web-sys-0+gpupipelineerrorinit-dev (= ${binary:Version}),
librust-web-sys-0+gpupipelineerrorreason-dev (= ${binary:Version}),
librust-web-sys-0+gpupipelinelayout-dev (= ${binary:Version}),
librust-web-sys-0+gpupipelinelayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpupowerpreference-dev (= ${binary:Version}),
librust-web-sys-0+gpuprimitivestate-dev (= ${binary:Version}),
librust-web-sys-0+gpuprimitivetopology-dev (= ${binary:Version}),
librust-web-sys-0+gpuprogrammablestage-dev (= ${binary:Version}),
librust-web-sys-0+gpuqueryset-dev (= ${binary:Version}),
librust-web-sys-0+gpuquerysetdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpuquerytype-dev (= ${binary:Version}),
librust-web-sys-0+gpuqueue-dev (= ${binary:Version}),
librust-web-sys-0+gpuqueuedescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderbundle-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderbundledescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderbundleencoder-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderbundleencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpasscolorattachment-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpassdepthstencilattachment-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpassdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpassencoder-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpasslayout-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpipeline-dev (= ${binary:Version}),
librust-web-sys-0+gpurenderpipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpurequestadapteroptions-dev (= ${binary:Version}),
librust-web-sys-0+gpusampler-dev (= ${binary:Version}),
librust-web-sys-0+gpusamplerbindinglayout-dev (= ${binary:Version}),
librust-web-sys-0+gpusamplerbindingtype-dev (= ${binary:Version}),
librust-web-sys-0+gpusamplerdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpushadermodule-dev (= ${binary:Version}),
librust-web-sys-0+gpushadermodulecompilationhint-dev (= ${binary:Version}),
librust-web-sys-0+gpushadermoduledescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gpustencilfacestate-dev (= ${binary:Version}),
librust-web-sys-0+gpustenciloperation-dev (= ${binary:Version}),
librust-web-sys-0+gpustoragetextureaccess-dev (= ${binary:Version}),
librust-web-sys-0+gpustoragetexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0+gpustoreop-dev (= ${binary:Version}),
librust-web-sys-0+gpusupportedfeatures-dev (= ${binary:Version}),
librust-web-sys-0+gpusupportedlimits-dev (= ${binary:Version}),
librust-web-sys-0+gputexelcopybufferinfo-dev (= ${binary:Version}),
librust-web-sys-0+gputexelcopybufferlayout-dev (= ${binary:Version}),
librust-web-sys-0+gputexelcopytextureinfo-dev (= ${binary:Version}),
librust-web-sys-0+gputexture-dev (= ${binary:Version}),
librust-web-sys-0+gputextureaspect-dev (= ${binary:Version}),
librust-web-sys-0+gputexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0+gputexturedescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gputexturedimension-dev (= ${binary:Version}),
librust-web-sys-0+gputextureformat-dev (= ${binary:Version}),
librust-web-sys-0+gputexturesampletype-dev (= ${binary:Version}),
librust-web-sys-0+gputextureview-dev (= ${binary:Version}),
librust-web-sys-0+gputextureviewdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+gputextureviewdimension-dev (= ${binary:Version}),
librust-web-sys-0+gpuuncapturederrorevent-dev (= ${binary:Version}),
librust-web-sys-0+gpuuncapturederroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+gpuvalidationerror-dev (= ${binary:Version}),
librust-web-sys-0+gpuvertexattribute-dev (= ${binary:Version}),
librust-web-sys-0+gpuvertexbufferlayout-dev (= ${binary:Version}),
librust-web-sys-0+gpuvertexformat-dev (= ${binary:Version}),
librust-web-sys-0+gpuvertexstate-dev (= ${binary:Version}),
librust-web-sys-0+gpuvertexstepmode-dev (= ${binary:Version}),
librust-web-sys-0+groupedhistoryeventinit-dev (= ${binary:Version}),
librust-web-sys-0+halfopeninfodict-dev (= ${binary:Version}),
librust-web-sys-0+hardwareacceleration-dev (= ${binary:Version}),
librust-web-sys-0+hashchangeevent-dev (= ${binary:Version}),
librust-web-sys-0+hashchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+headers-dev (= ${binary:Version}),
librust-web-sys-0+headersguardenum-dev (= ${binary:Version}),
librust-web-sys-0+hid-dev (= ${binary:Version}),
librust-web-sys-0+hidcollectioninfo-dev (= ${binary:Version}),
librust-web-sys-0+hidconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0+hidconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+hiddevice-dev (= ${binary:Version}),
librust-web-sys-0+hiddevicefilter-dev (= ${binary:Version}),
librust-web-sys-0+hiddevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0+hidinputreportevent-dev (= ${binary:Version}),
librust-web-sys-0+hidinputreporteventinit-dev (= ${binary:Version}),
librust-web-sys-0+hidreportinfo-dev (= ${binary:Version}),
librust-web-sys-0+hidreportitem-dev (= ${binary:Version}),
librust-web-sys-0+hidunitsystem-dev (= ${binary:Version}),
librust-web-sys-0+hiddenplugineventinit-dev (= ${binary:Version}),
librust-web-sys-0+history-dev (= ${binary:Version}),
librust-web-sys-0+hitregionoptions-dev (= ${binary:Version}),
librust-web-sys-0+hkdfparams-dev (= ${binary:Version}),
librust-web-sys-0+hmacderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys-0+hmacimportparams-dev (= ${binary:Version}),
librust-web-sys-0+hmackeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0+hmackeygenparams-dev (= ${binary:Version}),
librust-web-sys-0+htmlallcollection-dev (= ${binary:Version}),
librust-web-sys-0+htmlanchorelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlareaelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlaudioelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlbaseelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlbodyelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlbrelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlbuttonelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlcanvaselement-dev (= ${binary:Version}),
librust-web-sys-0+htmlcollection-dev (= ${binary:Version}),
librust-web-sys-0+htmldlistelement-dev (= ${binary:Version}),
librust-web-sys-0+htmldataelement-dev (= ${binary:Version}),
librust-web-sys-0+htmldatalistelement-dev (= ${binary:Version}),
librust-web-sys-0+htmldetailselement-dev (= ${binary:Version}),
librust-web-sys-0+htmldialogelement-dev (= ${binary:Version}),
librust-web-sys-0+htmldirectoryelement-dev (= ${binary:Version}),
librust-web-sys-0+htmldivelement-dev (= ${binary:Version}),
librust-web-sys-0+htmldocument-dev (= ${binary:Version}),
librust-web-sys-0+htmlelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlembedelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlfieldsetelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlfontelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlformcontrolscollection-dev (= ${binary:Version}),
librust-web-sys-0+htmlformelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlframeelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlframesetelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlheadelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlheadingelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlhrelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlhtmlelement-dev (= ${binary:Version}),
librust-web-sys-0+htmliframeelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlimageelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlinputelement-dev (= ${binary:Version}),
librust-web-sys-0+htmllabelelement-dev (= ${binary:Version}),
librust-web-sys-0+htmllegendelement-dev (= ${binary:Version}),
librust-web-sys-0+htmllielement-dev (= ${binary:Version}),
librust-web-sys-0+htmllinkelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmapelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmediaelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmenuelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmenuitemelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmetaelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmeterelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlmodelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlolistelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlobjectelement-dev (= ${binary:Version}),
librust-web-sys-0+htmloptgroupelement-dev (= ${binary:Version}),
librust-web-sys-0+htmloptionelement-dev (= ${binary:Version}),
librust-web-sys-0+htmloptionscollection-dev (= ${binary:Version}),
librust-web-sys-0+htmloutputelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlparagraphelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlparamelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlpictureelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlpreelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlprogresselement-dev (= ${binary:Version}),
librust-web-sys-0+htmlquoteelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlscriptelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlselectelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlslotelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlsourceelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlspanelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlstyleelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltablecaptionelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltablecellelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltablecolelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltableelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltablerowelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltablesectionelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltemplateelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltextareaelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltimeelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltitleelement-dev (= ${binary:Version}),
librust-web-sys-0+htmltrackelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlulistelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlunknownelement-dev (= ${binary:Version}),
librust-web-sys-0+htmlvideoelement-dev (= ${binary:Version}),
librust-web-sys-0+httpconndict-dev (= ${binary:Version}),
librust-web-sys-0+httpconninfo-dev (= ${binary:Version}),
librust-web-sys-0+httpconnectionelement-dev (= ${binary:Version}),
librust-web-sys-0+idbcursor-dev (= ${binary:Version}),
librust-web-sys-0+idbcursordirection-dev (= ${binary:Version}),
librust-web-sys-0+idbcursorwithvalue-dev (= ${binary:Version}),
librust-web-sys-0+idbdatabase-dev (= ${binary:Version}),
librust-web-sys-0+idbfactory-dev (= ${binary:Version}),
librust-web-sys-0+idbfilehandle-dev (= ${binary:Version}),
librust-web-sys-0+idbfilemetadataparameters-dev (= ${binary:Version}),
librust-web-sys-0+idbfilerequest-dev (= ${binary:Version}),
librust-web-sys-0+idbindex-dev (= ${binary:Version}),
librust-web-sys-0+idbindexparameters-dev (= ${binary:Version}),
librust-web-sys-0+idbkeyrange-dev (= ${binary:Version}),
librust-web-sys-0+idblocaleawarekeyrange-dev (= ${binary:Version}),
librust-web-sys-0+idbmutablefile-dev (= ${binary:Version}),
librust-web-sys-0+idbobjectstore-dev (= ${binary:Version}),
librust-web-sys-0+idbobjectstoreparameters-dev (= ${binary:Version}),
librust-web-sys-0+idbopendboptions-dev (= ${binary:Version}),
librust-web-sys-0+idbopendbrequest-dev (= ${binary:Version}),
librust-web-sys-0+idbrequest-dev (= ${binary:Version}),
librust-web-sys-0+idbrequestreadystate-dev (= ${binary:Version}),
librust-web-sys-0+idbtransaction-dev (= ${binary:Version}),
librust-web-sys-0+idbtransactiondurability-dev (= ${binary:Version}),
librust-web-sys-0+idbtransactionmode-dev (= ${binary:Version}),
librust-web-sys-0+idbtransactionoptions-dev (= ${binary:Version}),
librust-web-sys-0+idbversionchangeevent-dev (= ${binary:Version}),
librust-web-sys-0+idbversionchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+idledeadline-dev (= ${binary:Version}),
librust-web-sys-0+idlerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0+iirfilternode-dev (= ${binary:Version}),
librust-web-sys-0+iirfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0+imagebitmap-dev (= ${binary:Version}),
librust-web-sys-0+imagebitmapoptions-dev (= ${binary:Version}),
librust-web-sys-0+imagebitmaprenderingcontext-dev (= ${binary:Version}),
librust-web-sys-0+imagecapture-dev (= ${binary:Version}),
librust-web-sys-0+imagecaptureerror-dev (= ${binary:Version}),
librust-web-sys-0+imagecaptureerrorevent-dev (= ${binary:Version}),
librust-web-sys-0+imagecaptureerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+imagedata-dev (= ${binary:Version}),
librust-web-sys-0+imagedecodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+imagedecoderesult-dev (= ${binary:Version}),
librust-web-sys-0+imagedecoder-dev (= ${binary:Version}),
librust-web-sys-0+imagedecoderinit-dev (= ${binary:Version}),
librust-web-sys-0+imageencodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+imageorientation-dev (= ${binary:Version}),
librust-web-sys-0+imagetrack-dev (= ${binary:Version}),
librust-web-sys-0+imagetracklist-dev (= ${binary:Version}),
librust-web-sys-0+inputdeviceinfo-dev (= ${binary:Version}),
librust-web-sys-0+inputevent-dev (= ${binary:Version}),
librust-web-sys-0+inputeventinit-dev (= ${binary:Version}),
librust-web-sys-0+intersectionobserver-dev (= ${binary:Version}),
librust-web-sys-0+intersectionobserverentry-dev (= ${binary:Version}),
librust-web-sys-0+intersectionobserverentryinit-dev (= ${binary:Version}),
librust-web-sys-0+intersectionobserverinit-dev (= ${binary:Version}),
librust-web-sys-0+intlutils-dev (= ${binary:Version}),
librust-web-sys-0+isinputpendingoptions-dev (= ${binary:Version}),
librust-web-sys-0+iterablekeyandvalueresult-dev (= ${binary:Version}),
librust-web-sys-0+iterablekeyorvalueresult-dev (= ${binary:Version}),
librust-web-sys-0+iterationcompositeoperation-dev (= ${binary:Version}),
librust-web-sys-0+jsonwebkey-dev (= ${binary:Version}),
librust-web-sys-0+keyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0+keyevent-dev (= ${binary:Version}),
librust-web-sys-0+keyframerequestevent-dev (= ${binary:Version}),
librust-web-sys-0+keyidsinitdata-dev (= ${binary:Version}),
librust-web-sys-0+keyboardevent-dev (= ${binary:Version}),
librust-web-sys-0+keyboardeventinit-dev (= ${binary:Version}),
librust-web-sys-0+keyframeanimationoptions-dev (= ${binary:Version}),
librust-web-sys-0+keyframeeffect-dev (= ${binary:Version}),
librust-web-sys-0+keyframeeffectoptions-dev (= ${binary:Version}),
librust-web-sys-0+l10nelement-dev (= ${binary:Version}),
librust-web-sys-0+l10nvalue-dev (= ${binary:Version}),
librust-web-sys-0+largeblobsupport-dev (= ${binary:Version}),
librust-web-sys-0+latencymode-dev (= ${binary:Version}),
librust-web-sys-0+lifecyclecallbacks-dev (= ${binary:Version}),
librust-web-sys-0+linealignsetting-dev (= ${binary:Version}),
librust-web-sys-0+listboxobject-dev (= ${binary:Version}),
librust-web-sys-0+localmediastream-dev (= ${binary:Version}),
librust-web-sys-0+localeinfo-dev (= ${binary:Version}),
librust-web-sys-0+location-dev (= ${binary:Version}),
librust-web-sys-0+lock-dev (= ${binary:Version}),
librust-web-sys-0+lockinfo-dev (= ${binary:Version}),
librust-web-sys-0+lockmanager-dev (= ${binary:Version}),
librust-web-sys-0+lockmanagersnapshot-dev (= ${binary:Version}),
librust-web-sys-0+lockmode-dev (= ${binary:Version}),
librust-web-sys-0+lockoptions-dev (= ${binary:Version}),
librust-web-sys-0+mathmlelement-dev (= ${binary:Version}),
librust-web-sys-0+mediacapabilities-dev (= ${binary:Version}),
librust-web-sys-0+mediacapabilitiesinfo-dev (= ${binary:Version}),
librust-web-sys-0+mediaconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+mediadecodingconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+mediadecodingtype-dev (= ${binary:Version}),
librust-web-sys-0+mediadeviceinfo-dev (= ${binary:Version}),
librust-web-sys-0+mediadevicekind-dev (= ${binary:Version}),
librust-web-sys-0+mediadevices-dev (= ${binary:Version}),
librust-web-sys-0+mediaelementaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys-0+mediaelementaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys-0+mediaencodingconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+mediaencodingtype-dev (= ${binary:Version}),
librust-web-sys-0+mediaencryptedevent-dev (= ${binary:Version}),
librust-web-sys-0+mediaerror-dev (= ${binary:Version}),
librust-web-sys-0+mediaimage-dev (= ${binary:Version}),
librust-web-sys-0+mediakeyerror-dev (= ${binary:Version}),
librust-web-sys-0+mediakeymessageevent-dev (= ${binary:Version}),
librust-web-sys-0+mediakeymessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0+mediakeymessagetype-dev (= ${binary:Version}),
librust-web-sys-0+mediakeyneededeventinit-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysession-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysessiontype-dev (= ${binary:Version}),
librust-web-sys-0+mediakeystatus-dev (= ${binary:Version}),
librust-web-sys-0+mediakeystatusmap-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysystemaccess-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysystemconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysystemmediacapability-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysystemstatus-dev (= ${binary:Version}),
librust-web-sys-0+mediakeys-dev (= ${binary:Version}),
librust-web-sys-0+mediakeyspolicy-dev (= ${binary:Version}),
librust-web-sys-0+mediakeysrequirement-dev (= ${binary:Version}),
librust-web-sys-0+medialist-dev (= ${binary:Version}),
librust-web-sys-0+mediametadata-dev (= ${binary:Version}),
librust-web-sys-0+mediametadatainit-dev (= ${binary:Version}),
librust-web-sys-0+mediapositionstate-dev (= ${binary:Version}),
librust-web-sys-0+mediaquerylist-dev (= ${binary:Version}),
librust-web-sys-0+mediaquerylistevent-dev (= ${binary:Version}),
librust-web-sys-0+mediaquerylisteventinit-dev (= ${binary:Version}),
librust-web-sys-0+mediarecorder-dev (= ${binary:Version}),
librust-web-sys-0+mediarecordererrorevent-dev (= ${binary:Version}),
librust-web-sys-0+mediarecordererroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+mediarecorderoptions-dev (= ${binary:Version}),
librust-web-sys-0+mediasession-dev (= ${binary:Version}),
librust-web-sys-0+mediasessionaction-dev (= ${binary:Version}),
librust-web-sys-0+mediasessionactiondetails-dev (= ${binary:Version}),
librust-web-sys-0+mediasessionplaybackstate-dev (= ${binary:Version}),
librust-web-sys-0+mediasource-dev (= ${binary:Version}),
librust-web-sys-0+mediasourceendofstreamerror-dev (= ${binary:Version}),
librust-web-sys-0+mediasourceenum-dev (= ${binary:Version}),
librust-web-sys-0+mediasourcereadystate-dev (= ${binary:Version}),
librust-web-sys-0+mediastream-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamaudiodestinationnode-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamerror-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamevent-dev (= ${binary:Version}),
librust-web-sys-0+mediastreameventinit-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrack-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackevent-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackeventinit-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackgenerator-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackgeneratorinit-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackprocessor-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackprocessorinit-dev (= ${binary:Version}),
librust-web-sys-0+mediastreamtrackstate-dev (= ${binary:Version}),
librust-web-sys-0+mediatrackcapabilities-dev (= ${binary:Version}),
librust-web-sys-0+mediatrackconstraintset-dev (= ${binary:Version}),
librust-web-sys-0+mediatrackconstraints-dev (= ${binary:Version}),
librust-web-sys-0+mediatracksettings-dev (= ${binary:Version}),
librust-web-sys-0+mediatracksupportedconstraints-dev (= ${binary:Version}),
librust-web-sys-0+memoryattribution-dev (= ${binary:Version}),
librust-web-sys-0+memoryattributioncontainer-dev (= ${binary:Version}),
librust-web-sys-0+memorybreakdownentry-dev (= ${binary:Version}),
librust-web-sys-0+memorymeasurement-dev (= ${binary:Version}),
librust-web-sys-0+messagechannel-dev (= ${binary:Version}),
librust-web-sys-0+messageevent-dev (= ${binary:Version}),
librust-web-sys-0+messageeventinit-dev (= ${binary:Version}),
librust-web-sys-0+messageport-dev (= ${binary:Version}),
librust-web-sys-0+midiaccess-dev (= ${binary:Version}),
librust-web-sys-0+midiconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0+midiconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+midiinput-dev (= ${binary:Version}),
librust-web-sys-0+midiinputmap-dev (= ${binary:Version}),
librust-web-sys-0+midimessageevent-dev (= ${binary:Version}),
librust-web-sys-0+midimessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0+midioptions-dev (= ${binary:Version}),
librust-web-sys-0+midioutput-dev (= ${binary:Version}),
librust-web-sys-0+midioutputmap-dev (= ${binary:Version}),
librust-web-sys-0+midiport-dev (= ${binary:Version}),
librust-web-sys-0+midiportconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0+midiportdevicestate-dev (= ${binary:Version}),
librust-web-sys-0+midiporttype-dev (= ${binary:Version}),
librust-web-sys-0+mimetype-dev (= ${binary:Version}),
librust-web-sys-0+mimetypearray-dev (= ${binary:Version}),
librust-web-sys-0+mouseevent-dev (= ${binary:Version}),
librust-web-sys-0+mouseeventinit-dev (= ${binary:Version}),
librust-web-sys-0+mousescrollevent-dev (= ${binary:Version}),
librust-web-sys-0+mozdebug-dev (= ${binary:Version}),
librust-web-sys-0+mutationevent-dev (= ${binary:Version}),
librust-web-sys-0+mutationobserver-dev (= ${binary:Version}),
librust-web-sys-0+mutationobserverinit-dev (= ${binary:Version}),
librust-web-sys-0+mutationobservinginfo-dev (= ${binary:Version}),
librust-web-sys-0+mutationrecord-dev (= ${binary:Version}),
librust-web-sys-0+namednodemap-dev (= ${binary:Version}),
librust-web-sys-0+nativeosfilereadoptions-dev (= ${binary:Version}),
librust-web-sys-0+nativeosfilewriteatomicoptions-dev (= ${binary:Version}),
librust-web-sys-0+navigationtype-dev (= ${binary:Version}),
librust-web-sys-0+navigator-dev (= ${binary:Version}),
librust-web-sys-0+navigatorautomationinformation-dev (= ${binary:Version}),
librust-web-sys-0+navigatoruabrandversion-dev (= ${binary:Version}),
librust-web-sys-0+navigatoruadata-dev (= ${binary:Version}),
librust-web-sys-0+networkcommandoptions-dev (= ${binary:Version}),
librust-web-sys-0+networkinformation-dev (= ${binary:Version}),
librust-web-sys-0+networkresultoptions-dev (= ${binary:Version}),
librust-web-sys-0+node-dev (= ${binary:Version}),
librust-web-sys-0+nodefilter-dev (= ${binary:Version}),
librust-web-sys-0+nodeiterator-dev (= ${binary:Version}),
librust-web-sys-0+nodelist-dev (= ${binary:Version}),
librust-web-sys-0+notification-dev (= ${binary:Version}),
librust-web-sys-0+notificationaction-dev (= ${binary:Version}),
librust-web-sys-0+notificationdirection-dev (= ${binary:Version}),
librust-web-sys-0+notificationevent-dev (= ${binary:Version}),
librust-web-sys-0+notificationeventinit-dev (= ${binary:Version}),
librust-web-sys-0+notificationoptions-dev (= ${binary:Version}),
librust-web-sys-0+notificationpermission-dev (= ${binary:Version}),
librust-web-sys-0+observercallback-dev (= ${binary:Version}),
librust-web-sys-0+oeselementindexuint-dev (= ${binary:Version}),
librust-web-sys-0+oesstandardderivatives-dev (= ${binary:Version}),
librust-web-sys-0+oestexturefloat-dev (= ${binary:Version}),
librust-web-sys-0+oestexturefloatlinear-dev (= ${binary:Version}),
librust-web-sys-0+oestexturehalffloat-dev (= ${binary:Version}),
librust-web-sys-0+oestexturehalffloatlinear-dev (= ${binary:Version}),
librust-web-sys-0+oesvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys-0+offlineaudiocompletionevent-dev (= ${binary:Version}),
librust-web-sys-0+offlineaudiocompletioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+offlineaudiocontext-dev (= ${binary:Version}),
librust-web-sys-0+offlineaudiocontextoptions-dev (= ${binary:Version}),
librust-web-sys-0+offlineresourcelist-dev (= ${binary:Version}),
librust-web-sys-0+offscreencanvas-dev (= ${binary:Version}),
librust-web-sys-0+offscreencanvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys-0+openfilepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0+openwindoweventdetail-dev (= ${binary:Version}),
librust-web-sys-0+optionaleffecttiming-dev (= ${binary:Version}),
librust-web-sys-0+orientationlocktype-dev (= ${binary:Version}),
librust-web-sys-0+orientationtype-dev (= ${binary:Version}),
librust-web-sys-0+oscillatornode-dev (= ${binary:Version}),
librust-web-sys-0+oscillatoroptions-dev (= ${binary:Version}),
librust-web-sys-0+oscillatortype-dev (= ${binary:Version}),
librust-web-sys-0+oversampletype-dev (= ${binary:Version}),
librust-web-sys-0+ovrmultiview2-dev (= ${binary:Version}),
librust-web-sys-0+pagetransitionevent-dev (= ${binary:Version}),
librust-web-sys-0+pagetransitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+paintrequest-dev (= ${binary:Version}),
librust-web-sys-0+paintrequestlist-dev (= ${binary:Version}),
librust-web-sys-0+paintworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+pannernode-dev (= ${binary:Version}),
librust-web-sys-0+panneroptions-dev (= ${binary:Version}),
librust-web-sys-0+panningmodeltype-dev (= ${binary:Version}),
librust-web-sys-0+paritytype-dev (= ${binary:Version}),
librust-web-sys-0+path2d-dev (= ${binary:Version}),
librust-web-sys-0+paymentaddress-dev (= ${binary:Version}),
librust-web-sys-0+paymentcomplete-dev (= ${binary:Version}),
librust-web-sys-0+paymentmethodchangeevent-dev (= ${binary:Version}),
librust-web-sys-0+paymentmethodchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+paymentrequestupdateevent-dev (= ${binary:Version}),
librust-web-sys-0+paymentrequestupdateeventinit-dev (= ${binary:Version}),
librust-web-sys-0+paymentresponse-dev (= ${binary:Version}),
librust-web-sys-0+pbkdf2params-dev (= ${binary:Version}),
librust-web-sys-0+pcimpliceconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0+pcimplicegatheringstate-dev (= ${binary:Version}),
librust-web-sys-0+pcimplsignalingstate-dev (= ${binary:Version}),
librust-web-sys-0+pcobserverstatetype-dev (= ${binary:Version}),
librust-web-sys-0+performance-dev (= ${binary:Version}),
librust-web-sys-0+performanceentry-dev (= ${binary:Version}),
librust-web-sys-0+performanceentryeventinit-dev (= ${binary:Version}),
librust-web-sys-0+performanceentryfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0+performancemark-dev (= ${binary:Version}),
librust-web-sys-0+performancemeasure-dev (= ${binary:Version}),
librust-web-sys-0+performancenavigation-dev (= ${binary:Version}),
librust-web-sys-0+performancenavigationtiming-dev (= ${binary:Version}),
librust-web-sys-0+performanceobserver-dev (= ${binary:Version}),
librust-web-sys-0+performanceobserverentrylist-dev (= ${binary:Version}),
librust-web-sys-0+performanceobserverinit-dev (= ${binary:Version}),
librust-web-sys-0+performanceresourcetiming-dev (= ${binary:Version}),
librust-web-sys-0+performanceservertiming-dev (= ${binary:Version}),
librust-web-sys-0+performancetiming-dev (= ${binary:Version}),
librust-web-sys-0+periodicwave-dev (= ${binary:Version}),
librust-web-sys-0+periodicwaveconstraints-dev (= ${binary:Version}),
librust-web-sys-0+periodicwaveoptions-dev (= ${binary:Version}),
librust-web-sys-0+permissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+permissionname-dev (= ${binary:Version}),
librust-web-sys-0+permissionstate-dev (= ${binary:Version}),
librust-web-sys-0+permissionstatus-dev (= ${binary:Version}),
librust-web-sys-0+permissions-dev (= ${binary:Version}),
librust-web-sys-0+pictureinpictureevent-dev (= ${binary:Version}),
librust-web-sys-0+pictureinpictureeventinit-dev (= ${binary:Version}),
librust-web-sys-0+pictureinpicturewindow-dev (= ${binary:Version}),
librust-web-sys-0+planelayout-dev (= ${binary:Version}),
librust-web-sys-0+playbackdirection-dev (= ${binary:Version}),
librust-web-sys-0+plugin-dev (= ${binary:Version}),
librust-web-sys-0+pluginarray-dev (= ${binary:Version}),
librust-web-sys-0+plugincrashedeventinit-dev (= ${binary:Version}),
librust-web-sys-0+pointerevent-dev (= ${binary:Version}),
librust-web-sys-0+pointereventinit-dev (= ${binary:Version}),
librust-web-sys-0+popstateevent-dev (= ${binary:Version}),
librust-web-sys-0+popstateeventinit-dev (= ${binary:Version}),
librust-web-sys-0+popupblockedevent-dev (= ${binary:Version}),
librust-web-sys-0+popupblockedeventinit-dev (= ${binary:Version}),
librust-web-sys-0+position-dev (= ${binary:Version}),
librust-web-sys-0+positionalignsetting-dev (= ${binary:Version}),
librust-web-sys-0+positionerror-dev (= ${binary:Version}),
librust-web-sys-0+positionoptions-dev (= ${binary:Version}),
librust-web-sys-0+premultiplyalpha-dev (= ${binary:Version}),
librust-web-sys-0+presentation-dev (= ${binary:Version}),
librust-web-sys-0+presentationavailability-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnection-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectionavailableevent-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectionavailableeventinit-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectionbinarytype-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectioncloseevent-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectioncloseeventinit-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectionclosedreason-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectionlist-dev (= ${binary:Version}),
librust-web-sys-0+presentationconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0+presentationreceiver-dev (= ${binary:Version}),
librust-web-sys-0+presentationrequest-dev (= ${binary:Version}),
librust-web-sys-0+presentationstyle-dev (= ${binary:Version}),
librust-web-sys-0+processinginstruction-dev (= ${binary:Version}),
librust-web-sys-0+profiletimelinelayerrect-dev (= ${binary:Version}),
librust-web-sys-0+profiletimelinemarker-dev (= ${binary:Version}),
librust-web-sys-0+profiletimelinemessageportoperationtype-dev (= ${binary:Version}),
librust-web-sys-0+profiletimelinestackframe-dev (= ${binary:Version}),
librust-web-sys-0+profiletimelineworkeroperationtype-dev (= ${binary:Version}),
librust-web-sys-0+progressevent-dev (= ${binary:Version}),
librust-web-sys-0+progresseventinit-dev (= ${binary:Version}),
librust-web-sys-0+promisenativehandler-dev (= ${binary:Version}),
librust-web-sys-0+promiserejectionevent-dev (= ${binary:Version}),
librust-web-sys-0+promiserejectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredential-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialcreationoptionsjson-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialdescriptor-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialdescriptorjson-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialentity-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialhints-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialparameters-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialrequestoptionsjson-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialrpentity-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialtype-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialuserentity-dev (= ${binary:Version}),
librust-web-sys-0+publickeycredentialuserentityjson-dev (= ${binary:Version}),
librust-web-sys-0+pushencryptionkeyname-dev (= ${binary:Version}),
librust-web-sys-0+pushevent-dev (= ${binary:Version}),
librust-web-sys-0+pusheventinit-dev (= ${binary:Version}),
librust-web-sys-0+pushmanager-dev (= ${binary:Version}),
librust-web-sys-0+pushmessagedata-dev (= ${binary:Version}),
librust-web-sys-0+pushpermissionstate-dev (= ${binary:Version}),
librust-web-sys-0+pushsubscription-dev (= ${binary:Version}),
librust-web-sys-0+pushsubscriptioninit-dev (= ${binary:Version}),
librust-web-sys-0+pushsubscriptionjson-dev (= ${binary:Version}),
librust-web-sys-0+pushsubscriptionkeys-dev (= ${binary:Version}),
librust-web-sys-0+pushsubscriptionoptions-dev (= ${binary:Version}),
librust-web-sys-0+pushsubscriptionoptionsinit-dev (= ${binary:Version}),
librust-web-sys-0+queryoptions-dev (= ${binary:Version}),
librust-web-sys-0+queuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0+queuingstrategyinit-dev (= ${binary:Version}),
librust-web-sys-0+radionodelist-dev (= ${binary:Version}),
librust-web-sys-0+range-dev (= ${binary:Version}),
librust-web-sys-0+rcwnperfstats-dev (= ${binary:Version}),
librust-web-sys-0+rcwnstatus-dev (= ${binary:Version}),
librust-web-sys-0+readablebytestreamcontroller-dev (= ${binary:Version}),
librust-web-sys-0+readablestream-dev (= ${binary:Version}),
librust-web-sys-0+readablestreambyobreader-dev (= ${binary:Version}),
librust-web-sys-0+readablestreambyobrequest-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamdefaultreader-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamgetreaderoptions-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamiteratoroptions-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamreadresult-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamreadermode-dev (= ${binary:Version}),
librust-web-sys-0+readablestreamtype-dev (= ${binary:Version}),
librust-web-sys-0+readablewritablepair-dev (= ${binary:Version}),
librust-web-sys-0+recordingstate-dev (= ${binary:Version}),
librust-web-sys-0+referrerpolicy-dev (= ${binary:Version}),
librust-web-sys-0+registerrequest-dev (= ${binary:Version}),
librust-web-sys-0+registerresponse-dev (= ${binary:Version}),
librust-web-sys-0+registeredkey-dev (= ${binary:Version}),
librust-web-sys-0+registrationoptions-dev (= ${binary:Version}),
librust-web-sys-0+registrationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0+request-dev (= ${binary:Version}),
librust-web-sys-0+requestcache-dev (= ${binary:Version}),
librust-web-sys-0+requestcredentials-dev (= ${binary:Version}),
librust-web-sys-0+requestdestination-dev (= ${binary:Version}),
librust-web-sys-0+requestdeviceoptions-dev (= ${binary:Version}),
librust-web-sys-0+requestinit-dev (= ${binary:Version}),
librust-web-sys-0+requestmediakeysystemaccessnotification-dev (= ${binary:Version}),
librust-web-sys-0+requestmode-dev (= ${binary:Version}),
librust-web-sys-0+requestredirect-dev (= ${binary:Version}),
librust-web-sys-0+residentkeyrequirement-dev (= ${binary:Version}),
librust-web-sys-0+resizeobserver-dev (= ${binary:Version}),
librust-web-sys-0+resizeobserverboxoptions-dev (= ${binary:Version}),
librust-web-sys-0+resizeobserverentry-dev (= ${binary:Version}),
librust-web-sys-0+resizeobserveroptions-dev (= ${binary:Version}),
librust-web-sys-0+resizeobserversize-dev (= ${binary:Version}),
librust-web-sys-0+resizequality-dev (= ${binary:Version}),
librust-web-sys-0+response-dev (= ${binary:Version}),
librust-web-sys-0+responseinit-dev (= ${binary:Version}),
librust-web-sys-0+responsetype-dev (= ${binary:Version}),
librust-web-sys-0+rsahashedimportparams-dev (= ${binary:Version}),
librust-web-sys-0+rsaoaepparams-dev (= ${binary:Version}),
librust-web-sys-0+rsaotherprimesinfo-dev (= ${binary:Version}),
librust-web-sys-0+rsapssparams-dev (= ${binary:Version}),
librust-web-sys-0+rtcansweroptions-dev (= ${binary:Version}),
librust-web-sys-0+rtcbundlepolicy-dev (= ${binary:Version}),
librust-web-sys-0+rtccertificate-dev (= ${binary:Version}),
librust-web-sys-0+rtccertificateexpiration-dev (= ${binary:Version}),
librust-web-sys-0+rtccodecstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+rtcdatachannel-dev (= ${binary:Version}),
librust-web-sys-0+rtcdatachannelevent-dev (= ${binary:Version}),
librust-web-sys-0+rtcdatachanneleventinit-dev (= ${binary:Version}),
librust-web-sys-0+rtcdatachannelinit-dev (= ${binary:Version}),
librust-web-sys-0+rtcdatachannelstate-dev (= ${binary:Version}),
librust-web-sys-0+rtcdatachanneltype-dev (= ${binary:Version}),
librust-web-sys-0+rtcdegradationpreference-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedaudioframe-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedaudioframemetadata-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedaudioframeoptions-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedvideoframe-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedvideoframemetadata-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedvideoframeoptions-dev (= ${binary:Version}),
librust-web-sys-0+rtcencodedvideoframetype-dev (= ${binary:Version}),
librust-web-sys-0+rtcfecparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcicecandidate-dev (= ${binary:Version}),
librust-web-sys-0+rtcicecandidateinit-dev (= ${binary:Version}),
librust-web-sys-0+rtcicecandidatepairstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcicecandidatestats-dev (= ${binary:Version}),
librust-web-sys-0+rtcicecomponentstats-dev (= ${binary:Version}),
librust-web-sys-0+rtciceconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0+rtcicecredentialtype-dev (= ${binary:Version}),
librust-web-sys-0+rtcicegatheringstate-dev (= ${binary:Version}),
librust-web-sys-0+rtciceserver-dev (= ${binary:Version}),
librust-web-sys-0+rtcicetransportpolicy-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityassertion-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityassertionresult-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityprovider-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityproviderdetails-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityprovideroptions-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityproviderregistrar-dev (= ${binary:Version}),
librust-web-sys-0+rtcidentityvalidationresult-dev (= ${binary:Version}),
librust-web-sys-0+rtcinboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcmediastreamstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcmediastreamtrackstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcofferansweroptions-dev (= ${binary:Version}),
librust-web-sys-0+rtcofferoptions-dev (= ${binary:Version}),
librust-web-sys-0+rtcoutboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcpeerconnection-dev (= ${binary:Version}),
librust-web-sys-0+rtcpeerconnectioniceerrorevent-dev (= ${binary:Version}),
librust-web-sys-0+rtcpeerconnectioniceevent-dev (= ${binary:Version}),
librust-web-sys-0+rtcpeerconnectioniceeventinit-dev (= ${binary:Version}),
librust-web-sys-0+rtcpeerconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0+rtcprioritytype-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtcpparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpcapabilities-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpcodeccapability-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpcodecparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpcontributingsource-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpencodingparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpheaderextensioncapability-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpheaderextensionparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpreceiver-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpscripttransform-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpscripttransformer-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpsender-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpsourceentry-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpsourceentrytype-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpsynchronizationsource-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtptransceiver-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtptransceiverdirection-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtptransceiverinit-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtxparameters-dev (= ${binary:Version}),
librust-web-sys-0+rtcsdptype-dev (= ${binary:Version}),
librust-web-sys-0+rtcsessiondescription-dev (= ${binary:Version}),
librust-web-sys-0+rtcsessiondescriptioninit-dev (= ${binary:Version}),
librust-web-sys-0+rtcsignalingstate-dev (= ${binary:Version}),
librust-web-sys-0+rtcstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcstatsicecandidatepairstate-dev (= ${binary:Version}),
librust-web-sys-0+rtcstatsicecandidatetype-dev (= ${binary:Version}),
librust-web-sys-0+rtcstatsreport-dev (= ${binary:Version}),
librust-web-sys-0+rtcstatsreportinternal-dev (= ${binary:Version}),
librust-web-sys-0+rtcstatstype-dev (= ${binary:Version}),
librust-web-sys-0+rtctrackevent-dev (= ${binary:Version}),
librust-web-sys-0+rtctrackeventinit-dev (= ${binary:Version}),
librust-web-sys-0+rtctransformevent-dev (= ${binary:Version}),
librust-web-sys-0+rtctransportstats-dev (= ${binary:Version}),
librust-web-sys-0+rtcdtmfsender-dev (= ${binary:Version}),
librust-web-sys-0+rtcdtmftonechangeevent-dev (= ${binary:Version}),
librust-web-sys-0+rtcdtmftonechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpcontributingsourcestats-dev (= ${binary:Version}),
librust-web-sys-0+rtcrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0+sframetransform-dev (= ${binary:Version}),
librust-web-sys-0+sframetransformerrorevent-dev (= ${binary:Version}),
librust-web-sys-0+sframetransformerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+sframetransformerroreventtype-dev (= ${binary:Version}),
librust-web-sys-0+sframetransformoptions-dev (= ${binary:Version}),
librust-web-sys-0+sframetransformrole-dev (= ${binary:Version}),
librust-web-sys-0+savefilepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0+scheduler-dev (= ${binary:Version}),
librust-web-sys-0+schedulerposttaskoptions-dev (= ${binary:Version}),
librust-web-sys-0+scheduling-dev (= ${binary:Version}),
librust-web-sys-0+screen-dev (= ${binary:Version}),
librust-web-sys-0+screencolorgamut-dev (= ${binary:Version}),
librust-web-sys-0+screendetailed-dev (= ${binary:Version}),
librust-web-sys-0+screendetails-dev (= ${binary:Version}),
librust-web-sys-0+screenluminance-dev (= ${binary:Version}),
librust-web-sys-0+screenorientation-dev (= ${binary:Version}),
librust-web-sys-0+scriptprocessornode-dev (= ${binary:Version}),
librust-web-sys-0+scrollareaevent-dev (= ${binary:Version}),
librust-web-sys-0+scrollbehavior-dev (= ${binary:Version}),
librust-web-sys-0+scrollboxobject-dev (= ${binary:Version}),
librust-web-sys-0+scrollintoviewcontainer-dev (= ${binary:Version}),
librust-web-sys-0+scrollintoviewoptions-dev (= ${binary:Version}),
librust-web-sys-0+scrolllogicalposition-dev (= ${binary:Version}),
librust-web-sys-0+scrolloptions-dev (= ${binary:Version}),
librust-web-sys-0+scrollrestoration-dev (= ${binary:Version}),
librust-web-sys-0+scrollsetting-dev (= ${binary:Version}),
librust-web-sys-0+scrollstate-dev (= ${binary:Version}),
librust-web-sys-0+scrolltooptions-dev (= ${binary:Version}),
librust-web-sys-0+scrollviewchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+securitypolicyviolationevent-dev (= ${binary:Version}),
librust-web-sys-0+securitypolicyviolationeventdisposition-dev (= ${binary:Version}),
librust-web-sys-0+securitypolicyviolationeventinit-dev (= ${binary:Version}),
librust-web-sys-0+selection-dev (= ${binary:Version}),
librust-web-sys-0+selectionmode-dev (= ${binary:Version}),
librust-web-sys-0+serial-dev (= ${binary:Version}),
librust-web-sys-0+serialinputsignals-dev (= ${binary:Version}),
librust-web-sys-0+serialoptions-dev (= ${binary:Version}),
librust-web-sys-0+serialoutputsignals-dev (= ${binary:Version}),
librust-web-sys-0+serialport-dev (= ${binary:Version}),
librust-web-sys-0+serialportfilter-dev (= ${binary:Version}),
librust-web-sys-0+serialportinfo-dev (= ${binary:Version}),
librust-web-sys-0+serialportrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0+serversocketoptions-dev (= ${binary:Version}),
librust-web-sys-0+serviceworker-dev (= ${binary:Version}),
librust-web-sys-0+serviceworkercontainer-dev (= ${binary:Version}),
librust-web-sys-0+serviceworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+serviceworkerregistration-dev (= ${binary:Version}),
librust-web-sys-0+serviceworkerstate-dev (= ${binary:Version}),
librust-web-sys-0+serviceworkerupdateviacache-dev (= ${binary:Version}),
librust-web-sys-0+shadowroot-dev (= ${binary:Version}),
librust-web-sys-0+shadowrootinit-dev (= ${binary:Version}),
librust-web-sys-0+shadowrootmode-dev (= ${binary:Version}),
librust-web-sys-0+sharedata-dev (= ${binary:Version}),
librust-web-sys-0+sharedworker-dev (= ${binary:Version}),
librust-web-sys-0+sharedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+signresponse-dev (= ${binary:Version}),
librust-web-sys-0+socketelement-dev (= ${binary:Version}),
librust-web-sys-0+socketoptions-dev (= ${binary:Version}),
librust-web-sys-0+socketreadystate-dev (= ${binary:Version}),
librust-web-sys-0+socketsdict-dev (= ${binary:Version}),
librust-web-sys-0+sourcebuffer-dev (= ${binary:Version}),
librust-web-sys-0+sourcebufferappendmode-dev (= ${binary:Version}),
librust-web-sys-0+sourcebufferlist-dev (= ${binary:Version}),
librust-web-sys-0+speechgrammar-dev (= ${binary:Version}),
librust-web-sys-0+speechgrammarlist-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognition-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionalternative-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionerror-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionerrorcode-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionerrorinit-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionevent-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionresult-dev (= ${binary:Version}),
librust-web-sys-0+speechrecognitionresultlist-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesis-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesiserrorcode-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesiserrorevent-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesiserroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesisevent-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesiseventinit-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesisutterance-dev (= ${binary:Version}),
librust-web-sys-0+speechsynthesisvoice-dev (= ${binary:Version}),
librust-web-sys-0+stereopannernode-dev (= ${binary:Version}),
librust-web-sys-0+stereopanneroptions-dev (= ${binary:Version}),
librust-web-sys-0+storage-dev (= ${binary:Version}),
librust-web-sys-0+storageestimate-dev (= ${binary:Version}),
librust-web-sys-0+storageevent-dev (= ${binary:Version}),
librust-web-sys-0+storageeventinit-dev (= ${binary:Version}),
librust-web-sys-0+storagemanager-dev (= ${binary:Version}),
librust-web-sys-0+storagetype-dev (= ${binary:Version}),
librust-web-sys-0+streampipeoptions-dev (= ${binary:Version}),
librust-web-sys-0+stylerulechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+stylesheet-dev (= ${binary:Version}),
librust-web-sys-0+stylesheetapplicablestatechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+stylesheetchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+stylesheetlist-dev (= ${binary:Version}),
librust-web-sys-0+submitevent-dev (= ${binary:Version}),
librust-web-sys-0+submiteventinit-dev (= ${binary:Version}),
librust-web-sys-0+subtlecrypto-dev (= ${binary:Version}),
librust-web-sys-0+supportedtype-dev (= ${binary:Version}),
librust-web-sys-0+svcoutputmetadata-dev (= ${binary:Version}),
librust-web-sys-0+svgangle-dev (= ${binary:Version}),
librust-web-sys-0+svganimateelement-dev (= ${binary:Version}),
librust-web-sys-0+svganimatemotionelement-dev (= ${binary:Version}),
librust-web-sys-0+svganimatetransformelement-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedangle-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedboolean-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedenumeration-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedinteger-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedlength-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedlengthlist-dev (= ${binary:Version}),
librust-web-sys-0+svganimatednumber-dev (= ${binary:Version}),
librust-web-sys-0+svganimatednumberlist-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedrect-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedstring-dev (= ${binary:Version}),
librust-web-sys-0+svganimatedtransformlist-dev (= ${binary:Version}),
librust-web-sys-0+svganimationelement-dev (= ${binary:Version}),
librust-web-sys-0+svgboundingboxoptions-dev (= ${binary:Version}),
librust-web-sys-0+svgcircleelement-dev (= ${binary:Version}),
librust-web-sys-0+svgclippathelement-dev (= ${binary:Version}),
librust-web-sys-0+svgcomponenttransferfunctionelement-dev (= ${binary:Version}),
librust-web-sys-0+svgdefselement-dev (= ${binary:Version}),
librust-web-sys-0+svgdescelement-dev (= ${binary:Version}),
librust-web-sys-0+svgelement-dev (= ${binary:Version}),
librust-web-sys-0+svgellipseelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfilterelement-dev (= ${binary:Version}),
librust-web-sys-0+svgforeignobjectelement-dev (= ${binary:Version}),
librust-web-sys-0+svggeometryelement-dev (= ${binary:Version}),
librust-web-sys-0+svggradientelement-dev (= ${binary:Version}),
librust-web-sys-0+svggraphicselement-dev (= ${binary:Version}),
librust-web-sys-0+svgimageelement-dev (= ${binary:Version}),
librust-web-sys-0+svglength-dev (= ${binary:Version}),
librust-web-sys-0+svglengthlist-dev (= ${binary:Version}),
librust-web-sys-0+svglineelement-dev (= ${binary:Version}),
librust-web-sys-0+svglineargradientelement-dev (= ${binary:Version}),
librust-web-sys-0+svgmarkerelement-dev (= ${binary:Version}),
librust-web-sys-0+svgmaskelement-dev (= ${binary:Version}),
librust-web-sys-0+svgmatrix-dev (= ${binary:Version}),
librust-web-sys-0+svgmetadataelement-dev (= ${binary:Version}),
librust-web-sys-0+svgnumber-dev (= ${binary:Version}),
librust-web-sys-0+svgnumberlist-dev (= ${binary:Version}),
librust-web-sys-0+svgpathelement-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseg-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegarcabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegarcrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegclosepath-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetocubicabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetocubicrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetocubicsmoothabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetocubicsmoothrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetoquadraticabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetoquadraticrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetoquadraticsmoothabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegcurvetoquadraticsmoothrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglinetoabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglinetohorizontalabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglinetohorizontalrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglinetorel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglinetoverticalabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglinetoverticalrel-dev (= ${binary:Version}),
librust-web-sys-0+svgpathseglist-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegmovetoabs-dev (= ${binary:Version}),
librust-web-sys-0+svgpathsegmovetorel-dev (= ${binary:Version}),
librust-web-sys-0+svgpatternelement-dev (= ${binary:Version}),
librust-web-sys-0+svgpoint-dev (= ${binary:Version}),
librust-web-sys-0+svgpointlist-dev (= ${binary:Version}),
librust-web-sys-0+svgpolygonelement-dev (= ${binary:Version}),
librust-web-sys-0+svgpolylineelement-dev (= ${binary:Version}),
librust-web-sys-0+svgpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys-0+svgradialgradientelement-dev (= ${binary:Version}),
librust-web-sys-0+svgrect-dev (= ${binary:Version}),
librust-web-sys-0+svgrectelement-dev (= ${binary:Version}),
librust-web-sys-0+svgscriptelement-dev (= ${binary:Version}),
librust-web-sys-0+svgsetelement-dev (= ${binary:Version}),
librust-web-sys-0+svgstopelement-dev (= ${binary:Version}),
librust-web-sys-0+svgstringlist-dev (= ${binary:Version}),
librust-web-sys-0+svgstyleelement-dev (= ${binary:Version}),
librust-web-sys-0+svgswitchelement-dev (= ${binary:Version}),
librust-web-sys-0+svgsymbolelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtextcontentelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtextelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtextpathelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtextpositioningelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtitleelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtransform-dev (= ${binary:Version}),
librust-web-sys-0+svgtransformlist-dev (= ${binary:Version}),
librust-web-sys-0+svgunittypes-dev (= ${binary:Version}),
librust-web-sys-0+svguseelement-dev (= ${binary:Version}),
librust-web-sys-0+svgviewelement-dev (= ${binary:Version}),
librust-web-sys-0+svgzoomandpan-dev (= ${binary:Version}),
librust-web-sys-0+svgaelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfeblendelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfecolormatrixelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfecomponenttransferelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfecompositeelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfeconvolvematrixelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfediffuselightingelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfedisplacementmapelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfedistantlightelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfedropshadowelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfefloodelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfefuncaelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfefuncbelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfefuncgelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfefuncrelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfegaussianblurelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfeimageelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfemergeelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfemergenodeelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfemorphologyelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfeoffsetelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfepointlightelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfespecularlightingelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfespotlightelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfetileelement-dev (= ${binary:Version}),
librust-web-sys-0+svgfeturbulenceelement-dev (= ${binary:Version}),
librust-web-sys-0+svggelement-dev (= ${binary:Version}),
librust-web-sys-0+svgmpathelement-dev (= ${binary:Version}),
librust-web-sys-0+svgsvgelement-dev (= ${binary:Version}),
librust-web-sys-0+svgtspanelement-dev (= ${binary:Version}),
librust-web-sys-0+taskcontroller-dev (= ${binary:Version}),
librust-web-sys-0+taskcontrollerinit-dev (= ${binary:Version}),
librust-web-sys-0+taskpriority-dev (= ${binary:Version}),
librust-web-sys-0+taskprioritychangeevent-dev (= ${binary:Version}),
librust-web-sys-0+taskprioritychangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+tasksignal-dev (= ${binary:Version}),
librust-web-sys-0+tasksignalanyinit-dev (= ${binary:Version}),
librust-web-sys-0+tcpreadystate-dev (= ${binary:Version}),
librust-web-sys-0+tcpserversocket-dev (= ${binary:Version}),
librust-web-sys-0+tcpserversocketevent-dev (= ${binary:Version}),
librust-web-sys-0+tcpserversocketeventinit-dev (= ${binary:Version}),
librust-web-sys-0+tcpsocket-dev (= ${binary:Version}),
librust-web-sys-0+tcpsocketbinarytype-dev (= ${binary:Version}),
librust-web-sys-0+tcpsocketerrorevent-dev (= ${binary:Version}),
librust-web-sys-0+tcpsocketerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0+tcpsocketevent-dev (= ${binary:Version}),
librust-web-sys-0+tcpsocketeventinit-dev (= ${binary:Version}),
librust-web-sys-0+text-dev (= ${binary:Version}),
librust-web-sys-0+textdecodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+textdecoder-dev (= ${binary:Version}),
librust-web-sys-0+textdecoderoptions-dev (= ${binary:Version}),
librust-web-sys-0+textencoder-dev (= ${binary:Version}),
librust-web-sys-0+textmetrics-dev (= ${binary:Version}),
librust-web-sys-0+texttrack-dev (= ${binary:Version}),
librust-web-sys-0+texttrackcue-dev (= ${binary:Version}),
librust-web-sys-0+texttrackcuelist-dev (= ${binary:Version}),
librust-web-sys-0+texttrackkind-dev (= ${binary:Version}),
librust-web-sys-0+texttracklist-dev (= ${binary:Version}),
librust-web-sys-0+texttrackmode-dev (= ${binary:Version}),
librust-web-sys-0+timeevent-dev (= ${binary:Version}),
librust-web-sys-0+timeranges-dev (= ${binary:Version}),
librust-web-sys-0+toggleevent-dev (= ${binary:Version}),
librust-web-sys-0+toggleeventinit-dev (= ${binary:Version}),
librust-web-sys-0+tokenbinding-dev (= ${binary:Version}),
librust-web-sys-0+tokenbindingstatus-dev (= ${binary:Version}),
librust-web-sys-0+touch-dev (= ${binary:Version}),
librust-web-sys-0+touchevent-dev (= ${binary:Version}),
librust-web-sys-0+toucheventinit-dev (= ${binary:Version}),
librust-web-sys-0+touchinit-dev (= ${binary:Version}),
librust-web-sys-0+touchlist-dev (= ${binary:Version}),
librust-web-sys-0+trackevent-dev (= ${binary:Version}),
librust-web-sys-0+trackeventinit-dev (= ${binary:Version}),
librust-web-sys-0+transformstream-dev (= ${binary:Version}),
librust-web-sys-0+transformstreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0+transformer-dev (= ${binary:Version}),
librust-web-sys-0+transitionevent-dev (= ${binary:Version}),
librust-web-sys-0+transitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+transport-dev (= ${binary:Version}),
librust-web-sys-0+treeboxobject-dev (= ${binary:Version}),
librust-web-sys-0+treecellinfo-dev (= ${binary:Version}),
librust-web-sys-0+treeview-dev (= ${binary:Version}),
librust-web-sys-0+treewalker-dev (= ${binary:Version}),
librust-web-sys-0+u2f-dev (= ${binary:Version}),
librust-web-sys-0+u2fclientdata-dev (= ${binary:Version}),
librust-web-sys-0+ulongrange-dev (= ${binary:Version}),
librust-web-sys-0+uadatavalues-dev (= ${binary:Version}),
librust-web-sys-0+ualowentropyjson-dev (= ${binary:Version}),
librust-web-sys-0+udpmessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0+udpoptions-dev (= ${binary:Version}),
librust-web-sys-0+uievent-dev (= ${binary:Version}),
librust-web-sys-0+uieventinit-dev (= ${binary:Version}),
librust-web-sys-0+underlyingsink-dev (= ${binary:Version}),
librust-web-sys-0+underlyingsource-dev (= ${binary:Version}),
librust-web-sys-0+url-dev (= ${binary:Version}),
librust-web-sys-0+urlsearchparams-dev (= ${binary:Version}),
librust-web-sys-0+usb-dev (= ${binary:Version}),
librust-web-sys-0+usbalternateinterface-dev (= ${binary:Version}),
librust-web-sys-0+usbconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+usbconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0+usbconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+usbcontroltransferparameters-dev (= ${binary:Version}),
librust-web-sys-0+usbdevice-dev (= ${binary:Version}),
librust-web-sys-0+usbdevicefilter-dev (= ${binary:Version}),
librust-web-sys-0+usbdevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0+usbdirection-dev (= ${binary:Version}),
librust-web-sys-0+usbendpoint-dev (= ${binary:Version}),
librust-web-sys-0+usbendpointtype-dev (= ${binary:Version}),
librust-web-sys-0+usbintransferresult-dev (= ${binary:Version}),
librust-web-sys-0+usbinterface-dev (= ${binary:Version}),
librust-web-sys-0+usbisochronousintransferpacket-dev (= ${binary:Version}),
librust-web-sys-0+usbisochronousintransferresult-dev (= ${binary:Version}),
librust-web-sys-0+usbisochronousouttransferpacket-dev (= ${binary:Version}),
librust-web-sys-0+usbisochronousouttransferresult-dev (= ${binary:Version}),
librust-web-sys-0+usbouttransferresult-dev (= ${binary:Version}),
librust-web-sys-0+usbpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+usbpermissionresult-dev (= ${binary:Version}),
librust-web-sys-0+usbpermissionstorage-dev (= ${binary:Version}),
librust-web-sys-0+usbrecipient-dev (= ${binary:Version}),
librust-web-sys-0+usbrequesttype-dev (= ${binary:Version}),
librust-web-sys-0+usbtransferstatus-dev (= ${binary:Version}),
librust-web-sys-0+useractivation-dev (= ${binary:Version}),
librust-web-sys-0+userproximityevent-dev (= ${binary:Version}),
librust-web-sys-0+userproximityeventinit-dev (= ${binary:Version}),
librust-web-sys-0+userverificationrequirement-dev (= ${binary:Version}),
librust-web-sys-0+validitystate-dev (= ${binary:Version}),
librust-web-sys-0+valueevent-dev (= ${binary:Version}),
librust-web-sys-0+valueeventinit-dev (= ${binary:Version}),
librust-web-sys-0+videocolorprimaries-dev (= ${binary:Version}),
librust-web-sys-0+videocolorspace-dev (= ${binary:Version}),
librust-web-sys-0+videocolorspaceinit-dev (= ${binary:Version}),
librust-web-sys-0+videoconfiguration-dev (= ${binary:Version}),
librust-web-sys-0+videodecoder-dev (= ${binary:Version}),
librust-web-sys-0+videodecoderconfig-dev (= ${binary:Version}),
librust-web-sys-0+videodecoderinit-dev (= ${binary:Version}),
librust-web-sys-0+videodecodersupport-dev (= ${binary:Version}),
librust-web-sys-0+videoencoder-dev (= ${binary:Version}),
librust-web-sys-0+videoencoderconfig-dev (= ${binary:Version}),
librust-web-sys-0+videoencoderencodeoptions-dev (= ${binary:Version}),
librust-web-sys-0+videoencoderinit-dev (= ${binary:Version}),
librust-web-sys-0+videoencodersupport-dev (= ${binary:Version}),
librust-web-sys-0+videofacingmodeenum-dev (= ${binary:Version}),
librust-web-sys-0+videoframe-dev (= ${binary:Version}),
librust-web-sys-0+videoframebufferinit-dev (= ${binary:Version}),
librust-web-sys-0+videoframecopytooptions-dev (= ${binary:Version}),
librust-web-sys-0+videoframeinit-dev (= ${binary:Version}),
librust-web-sys-0+videomatrixcoefficients-dev (= ${binary:Version}),
librust-web-sys-0+videopixelformat-dev (= ${binary:Version}),
librust-web-sys-0+videoplaybackquality-dev (= ${binary:Version}),
librust-web-sys-0+videostreamtrack-dev (= ${binary:Version}),
librust-web-sys-0+videotrack-dev (= ${binary:Version}),
librust-web-sys-0+videotracklist-dev (= ${binary:Version}),
librust-web-sys-0+videotransfercharacteristics-dev (= ${binary:Version}),
librust-web-sys-0+viewtransition-dev (= ${binary:Version}),
librust-web-sys-0+visibilitystate-dev (= ${binary:Version}),
librust-web-sys-0+visualviewport-dev (= ${binary:Version}),
librust-web-sys-0+voidcallback-dev (= ${binary:Version}),
librust-web-sys-0+vrdisplay-dev (= ${binary:Version}),
librust-web-sys-0+vrdisplaycapabilities-dev (= ${binary:Version}),
librust-web-sys-0+vreye-dev (= ${binary:Version}),
librust-web-sys-0+vreyeparameters-dev (= ${binary:Version}),
librust-web-sys-0+vrfieldofview-dev (= ${binary:Version}),
librust-web-sys-0+vrframedata-dev (= ${binary:Version}),
librust-web-sys-0+vrlayer-dev (= ${binary:Version}),
librust-web-sys-0+vrmockcontroller-dev (= ${binary:Version}),
librust-web-sys-0+vrmockdisplay-dev (= ${binary:Version}),
librust-web-sys-0+vrpose-dev (= ${binary:Version}),
librust-web-sys-0+vrservicetest-dev (= ${binary:Version}),
librust-web-sys-0+vrstageparameters-dev (= ${binary:Version}),
librust-web-sys-0+vrsubmitframeresult-dev (= ${binary:Version}),
librust-web-sys-0+vttcue-dev (= ${binary:Version}),
librust-web-sys-0+vttregion-dev (= ${binary:Version}),
librust-web-sys-0+wakelock-dev (= ${binary:Version}),
librust-web-sys-0+wakelocksentinel-dev (= ${binary:Version}),
librust-web-sys-0+wakelocktype-dev (= ${binary:Version}),
librust-web-sys-0+watchadvertisementsoptions-dev (= ${binary:Version}),
librust-web-sys-0+waveshapernode-dev (= ${binary:Version}),
librust-web-sys-0+waveshaperoptions-dev (= ${binary:Version}),
librust-web-sys-0+webgl2renderingcontext-dev (= ${binary:Version}),
librust-web-sys-0+webglactiveinfo-dev (= ${binary:Version}),
librust-web-sys-0+webglbuffer-dev (= ${binary:Version}),
librust-web-sys-0+webglcontextattributes-dev (= ${binary:Version}),
librust-web-sys-0+webglcontextevent-dev (= ${binary:Version}),
librust-web-sys-0+webglcontexteventinit-dev (= ${binary:Version}),
librust-web-sys-0+webglframebuffer-dev (= ${binary:Version}),
librust-web-sys-0+webglpowerpreference-dev (= ${binary:Version}),
librust-web-sys-0+webglprogram-dev (= ${binary:Version}),
librust-web-sys-0+webglquery-dev (= ${binary:Version}),
librust-web-sys-0+webglrenderbuffer-dev (= ${binary:Version}),
librust-web-sys-0+webglrenderingcontext-dev (= ${binary:Version}),
librust-web-sys-0+webglsampler-dev (= ${binary:Version}),
librust-web-sys-0+webglshader-dev (= ${binary:Version}),
librust-web-sys-0+webglshaderprecisionformat-dev (= ${binary:Version}),
librust-web-sys-0+webglsync-dev (= ${binary:Version}),
librust-web-sys-0+webgltexture-dev (= ${binary:Version}),
librust-web-sys-0+webgltransformfeedback-dev (= ${binary:Version}),
librust-web-sys-0+webgluniformlocation-dev (= ${binary:Version}),
librust-web-sys-0+webglvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys-0+webkitcssmatrix-dev (= ${binary:Version}),
librust-web-sys-0+websocket-dev (= ${binary:Version}),
librust-web-sys-0+websocketdict-dev (= ${binary:Version}),
librust-web-sys-0+websocketelement-dev (= ${binary:Version}),
librust-web-sys-0+webtransport-dev (= ${binary:Version}),
librust-web-sys-0+webtransportbidirectionalstream-dev (= ${binary:Version}),
librust-web-sys-0+webtransportcloseinfo-dev (= ${binary:Version}),
librust-web-sys-0+webtransportcongestioncontrol-dev (= ${binary:Version}),
librust-web-sys-0+webtransportdatagramduplexstream-dev (= ${binary:Version}),
librust-web-sys-0+webtransportdatagramstats-dev (= ${binary:Version}),
librust-web-sys-0+webtransporterror-dev (= ${binary:Version}),
librust-web-sys-0+webtransporterroroptions-dev (= ${binary:Version}),
librust-web-sys-0+webtransporterrorsource-dev (= ${binary:Version}),
librust-web-sys-0+webtransporthash-dev (= ${binary:Version}),
librust-web-sys-0+webtransportoptions-dev (= ${binary:Version}),
librust-web-sys-0+webtransportreceivestream-dev (= ${binary:Version}),
librust-web-sys-0+webtransportreceivestreamstats-dev (= ${binary:Version}),
librust-web-sys-0+webtransportreliabilitymode-dev (= ${binary:Version}),
librust-web-sys-0+webtransportsendstream-dev (= ${binary:Version}),
librust-web-sys-0+webtransportsendstreamoptions-dev (= ${binary:Version}),
librust-web-sys-0+webtransportsendstreamstats-dev (= ${binary:Version}),
librust-web-sys-0+webtransportstats-dev (= ${binary:Version}),
librust-web-sys-0+webglcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtextureastc-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtextureatc-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtextureetc-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtextureetc1-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtexturepvrtc-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtextures3tc-dev (= ${binary:Version}),
librust-web-sys-0+webglcompressedtextures3tcsrgb-dev (= ${binary:Version}),
librust-web-sys-0+webgldebugrendererinfo-dev (= ${binary:Version}),
librust-web-sys-0+webgldebugshaders-dev (= ${binary:Version}),
librust-web-sys-0+webgldepthtexture-dev (= ${binary:Version}),
librust-web-sys-0+webgldrawbuffers-dev (= ${binary:Version}),
librust-web-sys-0+webgllosecontext-dev (= ${binary:Version}),
librust-web-sys-0+webglmultidraw-dev (= ${binary:Version}),
librust-web-sys-0+wellknowndirectory-dev (= ${binary:Version}),
librust-web-sys-0+wgsllanguagefeatures-dev (= ${binary:Version}),
librust-web-sys-0+wheelevent-dev (= ${binary:Version}),
librust-web-sys-0+wheeleventinit-dev (= ${binary:Version}),
librust-web-sys-0+widevinecdmmanifest-dev (= ${binary:Version}),
librust-web-sys-0+window-dev (= ${binary:Version}),
librust-web-sys-0+windowclient-dev (= ${binary:Version}),
librust-web-sys-0+worker-dev (= ${binary:Version}),
librust-web-sys-0+workerdebuggerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+workerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+workerlocation-dev (= ${binary:Version}),
librust-web-sys-0+workernavigator-dev (= ${binary:Version}),
librust-web-sys-0+workeroptions-dev (= ${binary:Version}),
librust-web-sys-0+workertype-dev (= ${binary:Version}),
librust-web-sys-0+worklet-dev (= ${binary:Version}),
librust-web-sys-0+workletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0+workletoptions-dev (= ${binary:Version}),
librust-web-sys-0+writablestream-dev (= ${binary:Version}),
librust-web-sys-0+writablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0+writablestreamdefaultwriter-dev (= ${binary:Version}),
librust-web-sys-0+writecommandtype-dev (= ${binary:Version}),
librust-web-sys-0+writeparams-dev (= ${binary:Version}),
librust-web-sys-0+xpathexpression-dev (= ${binary:Version}),
librust-web-sys-0+xpathnsresolver-dev (= ${binary:Version}),
librust-web-sys-0+xpathresult-dev (= ${binary:Version}),
librust-web-sys-0+xmldocument-dev (= ${binary:Version}),
librust-web-sys-0+xmlhttprequest-dev (= ${binary:Version}),
librust-web-sys-0+xmlhttprequesteventtarget-dev (= ${binary:Version}),
librust-web-sys-0+xmlhttprequestresponsetype-dev (= ${binary:Version}),
librust-web-sys-0+xmlhttprequestupload-dev (= ${binary:Version}),
librust-web-sys-0+xmlserializer-dev (= ${binary:Version}),
librust-web-sys-0+xrboundedreferencespace-dev (= ${binary:Version}),
librust-web-sys-0+xreye-dev (= ${binary:Version}),
librust-web-sys-0+xrframe-dev (= ${binary:Version}),
librust-web-sys-0+xrhand-dev (= ${binary:Version}),
librust-web-sys-0+xrhandjoint-dev (= ${binary:Version}),
librust-web-sys-0+xrhandedness-dev (= ${binary:Version}),
librust-web-sys-0+xrinputsource-dev (= ${binary:Version}),
librust-web-sys-0+xrinputsourcearray-dev (= ${binary:Version}),
librust-web-sys-0+xrinputsourceevent-dev (= ${binary:Version}),
librust-web-sys-0+xrinputsourceeventinit-dev (= ${binary:Version}),
librust-web-sys-0+xrinputsourceschangeevent-dev (= ${binary:Version}),
librust-web-sys-0+xrinputsourceschangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0+xrjointpose-dev (= ${binary:Version}),
librust-web-sys-0+xrjointspace-dev (= ${binary:Version}),
librust-web-sys-0+xrlayer-dev (= ${binary:Version}),
librust-web-sys-0+xrpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+xrpermissionstatus-dev (= ${binary:Version}),
librust-web-sys-0+xrpose-dev (= ${binary:Version}),
librust-web-sys-0+xrreferencespace-dev (= ${binary:Version}),
librust-web-sys-0+xrreferencespaceevent-dev (= ${binary:Version}),
librust-web-sys-0+xrreferencespaceeventinit-dev (= ${binary:Version}),
librust-web-sys-0+xrreferencespacetype-dev (= ${binary:Version}),
librust-web-sys-0+xrrenderstate-dev (= ${binary:Version}),
librust-web-sys-0+xrrenderstateinit-dev (= ${binary:Version}),
librust-web-sys-0+xrrigidtransform-dev (= ${binary:Version}),
librust-web-sys-0+xrsession-dev (= ${binary:Version}),
librust-web-sys-0+xrsessionevent-dev (= ${binary:Version}),
librust-web-sys-0+xrsessioneventinit-dev (= ${binary:Version}),
librust-web-sys-0+xrsessioninit-dev (= ${binary:Version}),
librust-web-sys-0+xrsessionmode-dev (= ${binary:Version}),
librust-web-sys-0+xrsessionsupportedpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0+xrspace-dev (= ${binary:Version}),
librust-web-sys-0+xrsystem-dev (= ${binary:Version}),
librust-web-sys-0+xrtargetraymode-dev (= ${binary:Version}),
librust-web-sys-0+xrview-dev (= ${binary:Version}),
librust-web-sys-0+xrviewerpose-dev (= ${binary:Version}),
librust-web-sys-0+xrviewport-dev (= ${binary:Version}),
librust-web-sys-0+xrvisibilitystate-dev (= ${binary:Version}),
librust-web-sys-0+xrwebgllayer-dev (= ${binary:Version}),
librust-web-sys-0+xrwebgllayerinit-dev (= ${binary:Version}),
librust-web-sys-0+xsltprocessor-dev (= ${binary:Version}),
librust-web-sys-0+console-dev (= ${binary:Version}),
librust-web-sys-0+css-dev (= ${binary:Version}),
librust-web-sys-0+default-dev (= ${binary:Version}),
librust-web-sys-0+gpu-buffer-usage-dev (= ${binary:Version}),
librust-web-sys-0+gpu-color-write-dev (= ${binary:Version}),
librust-web-sys-0+gpu-map-mode-dev (= ${binary:Version}),
librust-web-sys-0+gpu-shader-stage-dev (= ${binary:Version}),
librust-web-sys-0+gpu-texture-usage-dev (= ${binary:Version}),
librust-web-sys-0+std-dev (= ${binary:Version}),
librust-web-sys-0.3-dev (= ${binary:Version}),
librust-web-sys-0.3+abortcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+abortsignal-dev (= ${binary:Version}),
librust-web-sys-0.3+addeventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+aescbcparams-dev (= ${binary:Version}),
librust-web-sys-0.3+aesctrparams-dev (= ${binary:Version}),
librust-web-sys-0.3+aesderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys-0.3+aesgcmparams-dev (= ${binary:Version}),
librust-web-sys-0.3+aeskeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3+aeskeygenparams-dev (= ${binary:Version}),
librust-web-sys-0.3+algorithm-dev (= ${binary:Version}),
librust-web-sys-0.3+alignsetting-dev (= ${binary:Version}),
librust-web-sys-0.3+allowedbluetoothdevice-dev (= ${binary:Version}),
librust-web-sys-0.3+allowedusbdevice-dev (= ${binary:Version}),
librust-web-sys-0.3+alphaoption-dev (= ${binary:Version}),
librust-web-sys-0.3+analysernode-dev (= ${binary:Version}),
librust-web-sys-0.3+analyseroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+angleinstancedarrays-dev (= ${binary:Version}),
librust-web-sys-0.3+animation-dev (= ${binary:Version}),
librust-web-sys-0.3+animationeffect-dev (= ${binary:Version}),
librust-web-sys-0.3+animationevent-dev (= ${binary:Version}),
librust-web-sys-0.3+animationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+animationplaystate-dev (= ${binary:Version}),
librust-web-sys-0.3+animationplaybackevent-dev (= ${binary:Version}),
librust-web-sys-0.3+animationplaybackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+animationpropertydetails-dev (= ${binary:Version}),
librust-web-sys-0.3+animationpropertyvaluedetails-dev (= ${binary:Version}),
librust-web-sys-0.3+animationtimeline-dev (= ${binary:Version}),
librust-web-sys-0.3+assignednodesoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+attestationconveyancepreference-dev (= ${binary:Version}),
librust-web-sys-0.3+attr-dev (= ${binary:Version}),
librust-web-sys-0.3+attributenamevalue-dev (= ${binary:Version}),
librust-web-sys-0.3+audiobuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+audiobufferoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audiobuffersourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3+audiobuffersourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audioconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+audiocontext-dev (= ${binary:Version}),
librust-web-sys-0.3+audiocontextlatencycategory-dev (= ${binary:Version}),
librust-web-sys-0.3+audiocontextoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audiocontextstate-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodata-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodatacopytooptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodatainit-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodecoder-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodecoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodecoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodecodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3+audiodestinationnode-dev (= ${binary:Version}),
librust-web-sys-0.3+audioencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+audioencoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3+audioencoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3+audioencodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3+audiolistener-dev (= ${binary:Version}),
librust-web-sys-0.3+audionode-dev (= ${binary:Version}),
librust-web-sys-0.3+audionodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audioparam-dev (= ${binary:Version}),
librust-web-sys-0.3+audioparammap-dev (= ${binary:Version}),
librust-web-sys-0.3+audioprocessingevent-dev (= ${binary:Version}),
librust-web-sys-0.3+audiosampleformat-dev (= ${binary:Version}),
librust-web-sys-0.3+audioscheduledsourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3+audiosinkinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+audiosinkoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audiosinktype-dev (= ${binary:Version}),
librust-web-sys-0.3+audiostreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3+audiotrack-dev (= ${binary:Version}),
librust-web-sys-0.3+audiotracklist-dev (= ${binary:Version}),
librust-web-sys-0.3+audioworklet-dev (= ${binary:Version}),
librust-web-sys-0.3+audioworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+audioworkletnode-dev (= ${binary:Version}),
librust-web-sys-0.3+audioworkletnodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+audioworkletprocessor-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsclientinputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsclientinputsjson-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsclientoutputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsclientoutputsjson-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsdevicepublickeyinputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsdevicepublickeyoutputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionslargeblobinputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionslargebloboutputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsprfinputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsprfoutputs-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationextensionsprfvalues-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorassertionresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorassertionresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorattachment-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorattestationresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorattestationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatorselectioncriteria-dev (= ${binary:Version}),
librust-web-sys-0.3+authenticatortransport-dev (= ${binary:Version}),
librust-web-sys-0.3+autokeyword-dev (= ${binary:Version}),
librust-web-sys-0.3+autocompleteinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+barprop-dev (= ${binary:Version}),
librust-web-sys-0.3+baseaudiocontext-dev (= ${binary:Version}),
librust-web-sys-0.3+basecomputedkeyframe-dev (= ${binary:Version}),
librust-web-sys-0.3+basekeyframe-dev (= ${binary:Version}),
librust-web-sys-0.3+basepropertyindexedkeyframe-dev (= ${binary:Version}),
librust-web-sys-0.3+basiccardrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+basiccardresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+basiccardtype-dev (= ${binary:Version}),
librust-web-sys-0.3+batterymanager-dev (= ${binary:Version}),
librust-web-sys-0.3+beforeunloadevent-dev (= ${binary:Version}),
librust-web-sys-0.3+binarytype-dev (= ${binary:Version}),
librust-web-sys-0.3+biquadfilternode-dev (= ${binary:Version}),
librust-web-sys-0.3+biquadfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+biquadfiltertype-dev (= ${binary:Version}),
librust-web-sys-0.3+blob-dev (= ${binary:Version}),
librust-web-sys-0.3+blobevent-dev (= ${binary:Version}),
librust-web-sys-0.3+blobeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+blobpropertybag-dev (= ${binary:Version}),
librust-web-sys-0.3+blockparsingoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetooth-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothadvertisingevent-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothadvertisingeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothcharacteristicproperties-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothdatafilterinit-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothdevice-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothlescanfilterinit-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothmanufacturerdatamap-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothpermissionresult-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothpermissionstorage-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothremotegattcharacteristic-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothremotegattdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothremotegattserver-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothremotegattservice-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothservicedatamap-dev (= ${binary:Version}),
librust-web-sys-0.3+bluetoothuuid-dev (= ${binary:Version}),
librust-web-sys-0.3+boxquadoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+broadcastchannel-dev (= ${binary:Version}),
librust-web-sys-0.3+browserelementdownloadoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+browserelementexecutescriptoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+browserfeedwriter-dev (= ${binary:Version}),
librust-web-sys-0.3+browserfindcasesensitivity-dev (= ${binary:Version}),
librust-web-sys-0.3+browserfinddirection-dev (= ${binary:Version}),
librust-web-sys-0.3+bytelengthqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0.3+cache-dev (= ${binary:Version}),
librust-web-sys-0.3+cachebatchoperation-dev (= ${binary:Version}),
librust-web-sys-0.3+cachequeryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+cachestorage-dev (= ${binary:Version}),
librust-web-sys-0.3+cachestoragenamespace-dev (= ${binary:Version}),
librust-web-sys-0.3+canvascapturemediastream-dev (= ${binary:Version}),
librust-web-sys-0.3+canvascapturemediastreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3+canvasgradient-dev (= ${binary:Version}),
librust-web-sys-0.3+canvaspattern-dev (= ${binary:Version}),
librust-web-sys-0.3+canvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys-0.3+canvaswindingrule-dev (= ${binary:Version}),
librust-web-sys-0.3+caretchangedreason-dev (= ${binary:Version}),
librust-web-sys-0.3+caretposition-dev (= ${binary:Version}),
librust-web-sys-0.3+caretstatechangedeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+cdatasection-dev (= ${binary:Version}),
librust-web-sys-0.3+channelcountmode-dev (= ${binary:Version}),
librust-web-sys-0.3+channelinterpretation-dev (= ${binary:Version}),
librust-web-sys-0.3+channelmergernode-dev (= ${binary:Version}),
librust-web-sys-0.3+channelmergeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+channelsplitternode-dev (= ${binary:Version}),
librust-web-sys-0.3+channelsplitteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+characterdata-dev (= ${binary:Version}),
librust-web-sys-0.3+checkerboardreason-dev (= ${binary:Version}),
librust-web-sys-0.3+checkerboardreport-dev (= ${binary:Version}),
librust-web-sys-0.3+checkerboardreportservice-dev (= ${binary:Version}),
librust-web-sys-0.3+chromefilepropertybag-dev (= ${binary:Version}),
librust-web-sys-0.3+chromeworker-dev (= ${binary:Version}),
librust-web-sys-0.3+client-dev (= ${binary:Version}),
librust-web-sys-0.3+clientqueryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+clientrectsandtexts-dev (= ${binary:Version}),
librust-web-sys-0.3+clienttype-dev (= ${binary:Version}),
librust-web-sys-0.3+clients-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboard-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboardevent-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboardeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboarditem-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboarditemoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboardpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+clipboardunsanitizedformats-dev (= ${binary:Version}),
librust-web-sys-0.3+closeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+closeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+codecstate-dev (= ${binary:Version}),
librust-web-sys-0.3+collectedclientdata-dev (= ${binary:Version}),
librust-web-sys-0.3+colorspaceconversion-dev (= ${binary:Version}),
librust-web-sys-0.3+comment-dev (= ${binary:Version}),
librust-web-sys-0.3+compositeoperation-dev (= ${binary:Version}),
librust-web-sys-0.3+compositionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+compositioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+compressionformat-dev (= ${binary:Version}),
librust-web-sys-0.3+compressionstream-dev (= ${binary:Version}),
librust-web-sys-0.3+computedeffecttiming-dev (= ${binary:Version}),
librust-web-sys-0.3+connstatusdict-dev (= ${binary:Version}),
librust-web-sys-0.3+connectiontype-dev (= ${binary:Version}),
librust-web-sys-0.3+consolecounter-dev (= ${binary:Version}),
librust-web-sys-0.3+consolecountererror-dev (= ${binary:Version}),
librust-web-sys-0.3+consoleevent-dev (= ${binary:Version}),
librust-web-sys-0.3+consoleinstance-dev (= ${binary:Version}),
librust-web-sys-0.3+consoleinstanceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+consolelevel-dev (= ${binary:Version}),
librust-web-sys-0.3+consoleloglevel-dev (= ${binary:Version}),
librust-web-sys-0.3+consoleprofileevent-dev (= ${binary:Version}),
librust-web-sys-0.3+consolestackentry-dev (= ${binary:Version}),
librust-web-sys-0.3+consoletimererror-dev (= ${binary:Version}),
librust-web-sys-0.3+consoletimerlogorend-dev (= ${binary:Version}),
librust-web-sys-0.3+consoletimerstart-dev (= ${binary:Version}),
librust-web-sys-0.3+constantsourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3+constantsourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+constrainbooleanparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+constraindomstringparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+constraindoublerange-dev (= ${binary:Version}),
librust-web-sys-0.3+constrainlongrange-dev (= ${binary:Version}),
librust-web-sys-0.3+contextattributes2d-dev (= ${binary:Version}),
librust-web-sys-0.3+convertcoordinateoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+convolvernode-dev (= ${binary:Version}),
librust-web-sys-0.3+convolveroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiechangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+cookieinit-dev (= ${binary:Version}),
librust-web-sys-0.3+cookielistitem-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiesamesite-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiestore-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiestoredeleteoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiestoregetoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+cookiestoremanager-dev (= ${binary:Version}),
librust-web-sys-0.3+coordinates-dev (= ${binary:Version}),
librust-web-sys-0.3+countqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0.3+credential-dev (= ${binary:Version}),
librust-web-sys-0.3+credentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+credentialpropertiesoutput-dev (= ${binary:Version}),
librust-web-sys-0.3+credentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+credentialscontainer-dev (= ${binary:Version}),
librust-web-sys-0.3+crypto-dev (= ${binary:Version}),
librust-web-sys-0.3+cryptokey-dev (= ${binary:Version}),
librust-web-sys-0.3+cryptokeypair-dev (= ${binary:Version}),
librust-web-sys-0.3+cssanimation-dev (= ${binary:Version}),
librust-web-sys-0.3+cssboxtype-dev (= ${binary:Version}),
librust-web-sys-0.3+cssconditionrule-dev (= ${binary:Version}),
librust-web-sys-0.3+csscounterstylerule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssfontfacerule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssfontfeaturevaluesrule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssgroupingrule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssimportrule-dev (= ${binary:Version}),
librust-web-sys-0.3+csskeyframerule-dev (= ${binary:Version}),
librust-web-sys-0.3+csskeyframesrule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssmediarule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssnamespacerule-dev (= ${binary:Version}),
librust-web-sys-0.3+csspagerule-dev (= ${binary:Version}),
librust-web-sys-0.3+csspseudoelement-dev (= ${binary:Version}),
librust-web-sys-0.3+cssrule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssrulelist-dev (= ${binary:Version}),
librust-web-sys-0.3+cssstyledeclaration-dev (= ${binary:Version}),
librust-web-sys-0.3+cssstylerule-dev (= ${binary:Version}),
librust-web-sys-0.3+cssstylesheet-dev (= ${binary:Version}),
librust-web-sys-0.3+cssstylesheetparsingmode-dev (= ${binary:Version}),
librust-web-sys-0.3+csssupportsrule-dev (= ${binary:Version}),
librust-web-sys-0.3+csstransition-dev (= ${binary:Version}),
librust-web-sys-0.3+customelementregistry-dev (= ${binary:Version}),
librust-web-sys-0.3+customevent-dev (= ${binary:Version}),
librust-web-sys-0.3+customeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+datatransfer-dev (= ${binary:Version}),
librust-web-sys-0.3+datatransferitem-dev (= ${binary:Version}),
librust-web-sys-0.3+datatransferitemlist-dev (= ${binary:Version}),
librust-web-sys-0.3+datetimevalue-dev (= ${binary:Version}),
librust-web-sys-0.3+decoderdoctornotification-dev (= ${binary:Version}),
librust-web-sys-0.3+decoderdoctornotificationtype-dev (= ${binary:Version}),
librust-web-sys-0.3+decompressionstream-dev (= ${binary:Version}),
librust-web-sys-0.3+dedicatedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+delaynode-dev (= ${binary:Version}),
librust-web-sys-0.3+delayoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+deviceacceleration-dev (= ${binary:Version}),
librust-web-sys-0.3+deviceaccelerationinit-dev (= ${binary:Version}),
librust-web-sys-0.3+devicelightevent-dev (= ${binary:Version}),
librust-web-sys-0.3+devicelighteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+devicemotionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+devicemotioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+deviceorientationevent-dev (= ${binary:Version}),
librust-web-sys-0.3+deviceorientationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+deviceproximityevent-dev (= ${binary:Version}),
librust-web-sys-0.3+deviceproximityeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+devicerotationrate-dev (= ${binary:Version}),
librust-web-sys-0.3+devicerotationrateinit-dev (= ${binary:Version}),
librust-web-sys-0.3+dhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys-0.3+directionsetting-dev (= ${binary:Version}),
librust-web-sys-0.3+directory-dev (= ${binary:Version}),
librust-web-sys-0.3+directorypickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+displaymediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3+displaynameoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+displaynameresult-dev (= ${binary:Version}),
librust-web-sys-0.3+distancemodeltype-dev (= ${binary:Version}),
librust-web-sys-0.3+dnscachedict-dev (= ${binary:Version}),
librust-web-sys-0.3+dnscacheentry-dev (= ${binary:Version}),
librust-web-sys-0.3+dnslookupdict-dev (= ${binary:Version}),
librust-web-sys-0.3+document-dev (= ${binary:Version}),
librust-web-sys-0.3+documentfragment-dev (= ${binary:Version}),
librust-web-sys-0.3+documenttimeline-dev (= ${binary:Version}),
librust-web-sys-0.3+documenttimelineoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+documenttype-dev (= ${binary:Version}),
librust-web-sys-0.3+domerror-dev (= ${binary:Version}),
librust-web-sys-0.3+domexception-dev (= ${binary:Version}),
librust-web-sys-0.3+domimplementation-dev (= ${binary:Version}),
librust-web-sys-0.3+dommatrix-dev (= ${binary:Version}),
librust-web-sys-0.3+dommatrix2dinit-dev (= ${binary:Version}),
librust-web-sys-0.3+dommatrixinit-dev (= ${binary:Version}),
librust-web-sys-0.3+dommatrixreadonly-dev (= ${binary:Version}),
librust-web-sys-0.3+domparser-dev (= ${binary:Version}),
librust-web-sys-0.3+dompoint-dev (= ${binary:Version}),
librust-web-sys-0.3+dompointinit-dev (= ${binary:Version}),
librust-web-sys-0.3+dompointreadonly-dev (= ${binary:Version}),
librust-web-sys-0.3+domquad-dev (= ${binary:Version}),
librust-web-sys-0.3+domquadinit-dev (= ${binary:Version}),
librust-web-sys-0.3+domquadjson-dev (= ${binary:Version}),
librust-web-sys-0.3+domrect-dev (= ${binary:Version}),
librust-web-sys-0.3+domrectinit-dev (= ${binary:Version}),
librust-web-sys-0.3+domrectlist-dev (= ${binary:Version}),
librust-web-sys-0.3+domrectreadonly-dev (= ${binary:Version}),
librust-web-sys-0.3+domrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+domrequestreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3+domstringlist-dev (= ${binary:Version}),
librust-web-sys-0.3+domstringmap-dev (= ${binary:Version}),
librust-web-sys-0.3+domtokenlist-dev (= ${binary:Version}),
librust-web-sys-0.3+domwindowresizeeventdetail-dev (= ${binary:Version}),
librust-web-sys-0.3+doublerange-dev (= ${binary:Version}),
librust-web-sys-0.3+dragevent-dev (= ${binary:Version}),
librust-web-sys-0.3+drageventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+dynamicscompressornode-dev (= ${binary:Version}),
librust-web-sys-0.3+dynamicscompressoroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+eckeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3+eckeygenparams-dev (= ${binary:Version}),
librust-web-sys-0.3+eckeyimportparams-dev (= ${binary:Version}),
librust-web-sys-0.3+ecdhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys-0.3+ecdsaparams-dev (= ${binary:Version}),
librust-web-sys-0.3+effecttiming-dev (= ${binary:Version}),
librust-web-sys-0.3+element-dev (= ${binary:Version}),
librust-web-sys-0.3+elementcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+elementdefinitionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedaudiochunk-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedaudiochunkinit-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedaudiochunkmetadata-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedaudiochunktype-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedvideochunk-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedvideochunkinit-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedvideochunkmetadata-dev (= ${binary:Version}),
librust-web-sys-0.3+encodedvideochunktype-dev (= ${binary:Version}),
librust-web-sys-0.3+endingtypes-dev (= ${binary:Version}),
librust-web-sys-0.3+errorcallback-dev (= ${binary:Version}),
librust-web-sys-0.3+errorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+erroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+event-dev (= ${binary:Version}),
librust-web-sys-0.3+eventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+eventlistener-dev (= ${binary:Version}),
librust-web-sys-0.3+eventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+eventmodifierinit-dev (= ${binary:Version}),
librust-web-sys-0.3+eventsource-dev (= ${binary:Version}),
librust-web-sys-0.3+eventsourceinit-dev (= ${binary:Version}),
librust-web-sys-0.3+eventtarget-dev (= ${binary:Version}),
librust-web-sys-0.3+exception-dev (= ${binary:Version}),
librust-web-sys-0.3+extblendminmax-dev (= ${binary:Version}),
librust-web-sys-0.3+extcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys-0.3+extcolorbufferhalffloat-dev (= ${binary:Version}),
librust-web-sys-0.3+extdisjointtimerquery-dev (= ${binary:Version}),
librust-web-sys-0.3+extfragdepth-dev (= ${binary:Version}),
librust-web-sys-0.3+extsrgb-dev (= ${binary:Version}),
librust-web-sys-0.3+extshadertexturelod-dev (= ${binary:Version}),
librust-web-sys-0.3+exttexturefilteranisotropic-dev (= ${binary:Version}),
librust-web-sys-0.3+exttexturenorm16-dev (= ${binary:Version}),
librust-web-sys-0.3+extendablecookiechangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+extendablecookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+extendableevent-dev (= ${binary:Version}),
librust-web-sys-0.3+extendableeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+extendablemessageevent-dev (= ${binary:Version}),
librust-web-sys-0.3+extendablemessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+external-dev (= ${binary:Version}),
librust-web-sys-0.3+fakepluginmimeentry-dev (= ${binary:Version}),
librust-web-sys-0.3+fakeplugintaginit-dev (= ${binary:Version}),
librust-web-sys-0.3+fetchevent-dev (= ${binary:Version}),
librust-web-sys-0.3+fetcheventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+fetchobserver-dev (= ${binary:Version}),
librust-web-sys-0.3+fetchreadablestreamreaddataarray-dev (= ${binary:Version}),
librust-web-sys-0.3+fetchreadablestreamreaddatadone-dev (= ${binary:Version}),
librust-web-sys-0.3+fetchstate-dev (= ${binary:Version}),
librust-web-sys-0.3+file-dev (= ${binary:Version}),
librust-web-sys-0.3+filecallback-dev (= ${binary:Version}),
librust-web-sys-0.3+filelist-dev (= ${binary:Version}),
librust-web-sys-0.3+filepickeraccepttype-dev (= ${binary:Version}),
librust-web-sys-0.3+filepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+filepropertybag-dev (= ${binary:Version}),
librust-web-sys-0.3+filereader-dev (= ${binary:Version}),
librust-web-sys-0.3+filereadersync-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystem-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemcreatewritableoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemdirectoryentry-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemdirectoryhandle-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemdirectoryreader-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystementriescallback-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystementry-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystementrycallback-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemfileentry-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemfilehandle-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemflags-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemgetdirectoryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemgetfileoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemhandle-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemhandlekind-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemhandlepermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystempermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystempermissionmode-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemreadwriteoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemremoveoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemsyncaccesshandle-dev (= ${binary:Version}),
librust-web-sys-0.3+filesystemwritablefilestream-dev (= ${binary:Version}),
librust-web-sys-0.3+fillmode-dev (= ${binary:Version}),
librust-web-sys-0.3+flashclassification-dev (= ${binary:Version}),
librust-web-sys-0.3+flowcontroltype-dev (= ${binary:Version}),
librust-web-sys-0.3+focusevent-dev (= ${binary:Version}),
librust-web-sys-0.3+focuseventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+focusoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+fontdata-dev (= ${binary:Version}),
librust-web-sys-0.3+fontface-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfacedescriptors-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfaceloadstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfaceset-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfacesetiterator-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfacesetiteratorresult-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfacesetloadevent-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfacesetloadeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+fontfacesetloadstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+formdata-dev (= ${binary:Version}),
librust-web-sys-0.3+frametype-dev (= ${binary:Version}),
librust-web-sys-0.3+fuzzingfunctions-dev (= ${binary:Version}),
librust-web-sys-0.3+gainnode-dev (= ${binary:Version}),
librust-web-sys-0.3+gainoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepad-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadbutton-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadeffectparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadevent-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadhand-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadhapticactuator-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadhapticactuatortype-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadhapticeffecttype-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadhapticsresult-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadmappingtype-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadpose-dev (= ${binary:Version}),
librust-web-sys-0.3+gamepadtouch-dev (= ${binary:Version}),
librust-web-sys-0.3+geolocation-dev (= ${binary:Version}),
librust-web-sys-0.3+gestureevent-dev (= ${binary:Version}),
librust-web-sys-0.3+getanimationsoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+getrootnodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+getusermediarequest-dev (= ${binary:Version}),
librust-web-sys-0.3+gpu-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuadapter-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuadapterinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuaddressmode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuautolayoutmode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubindgroup-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubindgroupdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubindgroupentry-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubindgrouplayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubindgrouplayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubindgrouplayoutentry-dev (= ${binary:Version}),
librust-web-sys-0.3+gpublendcomponent-dev (= ${binary:Version}),
librust-web-sys-0.3+gpublendfactor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpublendoperation-dev (= ${binary:Version}),
librust-web-sys-0.3+gpublendstate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubufferbinding-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubufferbindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubufferbindingtype-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubufferdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpubuffermapstate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucanvasalphamode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucanvasconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucanvascontext-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucanvastonemapping-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucanvastonemappingmode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucolordict-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucolortargetstate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucommandbuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucommandbufferdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucommandencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucommandencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucomparefunction-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucompilationinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucompilationmessage-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucompilationmessagetype-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucomputepassdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucomputepassencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucomputepasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucomputepipeline-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucomputepipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucopyexternalimagedestinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucopyexternalimagesourceinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gpucullmode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpudepthstencilstate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpudevice-dev (= ${binary:Version}),
librust-web-sys-0.3+gpudevicedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpudevicelostinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gpudevicelostreason-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuerror-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuerrorfilter-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuextent3ddict-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuexternaltexture-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuexternaltexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuexternaltexturedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpufeaturename-dev (= ${binary:Version}),
librust-web-sys-0.3+gpufiltermode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpufragmentstate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpufrontface-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuindexformat-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuinternalerror-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuloadop-dev (= ${binary:Version}),
librust-web-sys-0.3+gpumipmapfiltermode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpumultisamplestate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuobjectdescriptorbase-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuorigin2ddict-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuorigin3ddict-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuoutofmemoryerror-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupipelinedescriptorbase-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupipelineerror-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupipelineerrorinit-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupipelineerrorreason-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupipelinelayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupipelinelayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpupowerpreference-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuprimitivestate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuprimitivetopology-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuprogrammablestage-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuqueryset-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuquerysetdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuquerytype-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuqueue-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuqueuedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderbundle-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderbundledescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderbundleencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderbundleencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpasscolorattachment-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpassdepthstencilattachment-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpassdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpassencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpasslayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpipeline-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurenderpipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpurequestadapteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+gpusampler-dev (= ${binary:Version}),
librust-web-sys-0.3+gpusamplerbindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpusamplerbindingtype-dev (= ${binary:Version}),
librust-web-sys-0.3+gpusamplerdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpushadermodule-dev (= ${binary:Version}),
librust-web-sys-0.3+gpushadermodulecompilationhint-dev (= ${binary:Version}),
librust-web-sys-0.3+gpushadermoduledescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gpustencilfacestate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpustenciloperation-dev (= ${binary:Version}),
librust-web-sys-0.3+gpustoragetextureaccess-dev (= ${binary:Version}),
librust-web-sys-0.3+gpustoragetexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpustoreop-dev (= ${binary:Version}),
librust-web-sys-0.3+gpusupportedfeatures-dev (= ${binary:Version}),
librust-web-sys-0.3+gpusupportedlimits-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexelcopybufferinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexelcopybufferlayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexelcopytextureinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexture-dev (= ${binary:Version}),
librust-web-sys-0.3+gputextureaspect-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexturedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexturedimension-dev (= ${binary:Version}),
librust-web-sys-0.3+gputextureformat-dev (= ${binary:Version}),
librust-web-sys-0.3+gputexturesampletype-dev (= ${binary:Version}),
librust-web-sys-0.3+gputextureview-dev (= ${binary:Version}),
librust-web-sys-0.3+gputextureviewdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+gputextureviewdimension-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuuncapturederrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuuncapturederroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuvalidationerror-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuvertexattribute-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuvertexbufferlayout-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuvertexformat-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuvertexstate-dev (= ${binary:Version}),
librust-web-sys-0.3+gpuvertexstepmode-dev (= ${binary:Version}),
librust-web-sys-0.3+groupedhistoryeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+halfopeninfodict-dev (= ${binary:Version}),
librust-web-sys-0.3+hardwareacceleration-dev (= ${binary:Version}),
librust-web-sys-0.3+hashchangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+hashchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+headers-dev (= ${binary:Version}),
librust-web-sys-0.3+headersguardenum-dev (= ${binary:Version}),
librust-web-sys-0.3+hid-dev (= ${binary:Version}),
librust-web-sys-0.3+hidcollectioninfo-dev (= ${binary:Version}),
librust-web-sys-0.3+hidconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+hidconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+hiddevice-dev (= ${binary:Version}),
librust-web-sys-0.3+hiddevicefilter-dev (= ${binary:Version}),
librust-web-sys-0.3+hiddevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+hidinputreportevent-dev (= ${binary:Version}),
librust-web-sys-0.3+hidinputreporteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+hidreportinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+hidreportitem-dev (= ${binary:Version}),
librust-web-sys-0.3+hidunitsystem-dev (= ${binary:Version}),
librust-web-sys-0.3+hiddenplugineventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+history-dev (= ${binary:Version}),
librust-web-sys-0.3+hitregionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+hkdfparams-dev (= ${binary:Version}),
librust-web-sys-0.3+hmacderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys-0.3+hmacimportparams-dev (= ${binary:Version}),
librust-web-sys-0.3+hmackeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3+hmackeygenparams-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlallcollection-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlanchorelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlareaelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlaudioelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlbaseelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlbodyelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlbrelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlbuttonelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlcanvaselement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlcollection-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldlistelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldataelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldatalistelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldetailselement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldialogelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldirectoryelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldivelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmldocument-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlembedelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlfieldsetelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlfontelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlformcontrolscollection-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlformelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlframeelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlframesetelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlheadelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlheadingelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlhrelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlhtmlelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmliframeelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlimageelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlinputelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmllabelelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmllegendelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmllielement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmllinkelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmapelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmediaelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmenuelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmenuitemelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmetaelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmeterelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlmodelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlolistelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlobjectelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmloptgroupelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmloptionelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmloptionscollection-dev (= ${binary:Version}),
librust-web-sys-0.3+htmloutputelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlparagraphelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlparamelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlpictureelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlpreelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlprogresselement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlquoteelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlscriptelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlselectelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlslotelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlsourceelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlspanelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlstyleelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltablecaptionelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltablecellelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltablecolelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltableelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltablerowelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltablesectionelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltemplateelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltextareaelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltimeelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltitleelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmltrackelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlulistelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlunknownelement-dev (= ${binary:Version}),
librust-web-sys-0.3+htmlvideoelement-dev (= ${binary:Version}),
librust-web-sys-0.3+httpconndict-dev (= ${binary:Version}),
librust-web-sys-0.3+httpconninfo-dev (= ${binary:Version}),
librust-web-sys-0.3+httpconnectionelement-dev (= ${binary:Version}),
librust-web-sys-0.3+idbcursor-dev (= ${binary:Version}),
librust-web-sys-0.3+idbcursordirection-dev (= ${binary:Version}),
librust-web-sys-0.3+idbcursorwithvalue-dev (= ${binary:Version}),
librust-web-sys-0.3+idbdatabase-dev (= ${binary:Version}),
librust-web-sys-0.3+idbfactory-dev (= ${binary:Version}),
librust-web-sys-0.3+idbfilehandle-dev (= ${binary:Version}),
librust-web-sys-0.3+idbfilemetadataparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+idbfilerequest-dev (= ${binary:Version}),
librust-web-sys-0.3+idbindex-dev (= ${binary:Version}),
librust-web-sys-0.3+idbindexparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+idbkeyrange-dev (= ${binary:Version}),
librust-web-sys-0.3+idblocaleawarekeyrange-dev (= ${binary:Version}),
librust-web-sys-0.3+idbmutablefile-dev (= ${binary:Version}),
librust-web-sys-0.3+idbobjectstore-dev (= ${binary:Version}),
librust-web-sys-0.3+idbobjectstoreparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+idbopendboptions-dev (= ${binary:Version}),
librust-web-sys-0.3+idbopendbrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+idbrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+idbrequestreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3+idbtransaction-dev (= ${binary:Version}),
librust-web-sys-0.3+idbtransactiondurability-dev (= ${binary:Version}),
librust-web-sys-0.3+idbtransactionmode-dev (= ${binary:Version}),
librust-web-sys-0.3+idbtransactionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+idbversionchangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+idbversionchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+idledeadline-dev (= ${binary:Version}),
librust-web-sys-0.3+idlerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+iirfilternode-dev (= ${binary:Version}),
librust-web-sys-0.3+iirfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+imagebitmap-dev (= ${binary:Version}),
librust-web-sys-0.3+imagebitmapoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+imagebitmaprenderingcontext-dev (= ${binary:Version}),
librust-web-sys-0.3+imagecapture-dev (= ${binary:Version}),
librust-web-sys-0.3+imagecaptureerror-dev (= ${binary:Version}),
librust-web-sys-0.3+imagecaptureerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+imagecaptureerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+imagedata-dev (= ${binary:Version}),
librust-web-sys-0.3+imagedecodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+imagedecoderesult-dev (= ${binary:Version}),
librust-web-sys-0.3+imagedecoder-dev (= ${binary:Version}),
librust-web-sys-0.3+imagedecoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3+imageencodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+imageorientation-dev (= ${binary:Version}),
librust-web-sys-0.3+imagetrack-dev (= ${binary:Version}),
librust-web-sys-0.3+imagetracklist-dev (= ${binary:Version}),
librust-web-sys-0.3+inputdeviceinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+inputevent-dev (= ${binary:Version}),
librust-web-sys-0.3+inputeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+intersectionobserver-dev (= ${binary:Version}),
librust-web-sys-0.3+intersectionobserverentry-dev (= ${binary:Version}),
librust-web-sys-0.3+intersectionobserverentryinit-dev (= ${binary:Version}),
librust-web-sys-0.3+intersectionobserverinit-dev (= ${binary:Version}),
librust-web-sys-0.3+intlutils-dev (= ${binary:Version}),
librust-web-sys-0.3+isinputpendingoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+iterablekeyandvalueresult-dev (= ${binary:Version}),
librust-web-sys-0.3+iterablekeyorvalueresult-dev (= ${binary:Version}),
librust-web-sys-0.3+iterationcompositeoperation-dev (= ${binary:Version}),
librust-web-sys-0.3+jsonwebkey-dev (= ${binary:Version}),
librust-web-sys-0.3+keyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3+keyevent-dev (= ${binary:Version}),
librust-web-sys-0.3+keyframerequestevent-dev (= ${binary:Version}),
librust-web-sys-0.3+keyidsinitdata-dev (= ${binary:Version}),
librust-web-sys-0.3+keyboardevent-dev (= ${binary:Version}),
librust-web-sys-0.3+keyboardeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+keyframeanimationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+keyframeeffect-dev (= ${binary:Version}),
librust-web-sys-0.3+keyframeeffectoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+l10nelement-dev (= ${binary:Version}),
librust-web-sys-0.3+l10nvalue-dev (= ${binary:Version}),
librust-web-sys-0.3+largeblobsupport-dev (= ${binary:Version}),
librust-web-sys-0.3+latencymode-dev (= ${binary:Version}),
librust-web-sys-0.3+lifecyclecallbacks-dev (= ${binary:Version}),
librust-web-sys-0.3+linealignsetting-dev (= ${binary:Version}),
librust-web-sys-0.3+listboxobject-dev (= ${binary:Version}),
librust-web-sys-0.3+localmediastream-dev (= ${binary:Version}),
librust-web-sys-0.3+localeinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+location-dev (= ${binary:Version}),
librust-web-sys-0.3+lock-dev (= ${binary:Version}),
librust-web-sys-0.3+lockinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+lockmanager-dev (= ${binary:Version}),
librust-web-sys-0.3+lockmanagersnapshot-dev (= ${binary:Version}),
librust-web-sys-0.3+lockmode-dev (= ${binary:Version}),
librust-web-sys-0.3+lockoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+mathmlelement-dev (= ${binary:Version}),
librust-web-sys-0.3+mediacapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3+mediacapabilitiesinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+mediadecodingconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+mediadecodingtype-dev (= ${binary:Version}),
librust-web-sys-0.3+mediadeviceinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+mediadevicekind-dev (= ${binary:Version}),
librust-web-sys-0.3+mediadevices-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaelementaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaelementaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaencodingconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaencodingtype-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaencryptedevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaerror-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaimage-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeyerror-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeymessageevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeymessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeymessagetype-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeyneededeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysession-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysessiontype-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeystatus-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeystatusmap-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysystemaccess-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysystemconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysystemmediacapability-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysystemstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeys-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeyspolicy-dev (= ${binary:Version}),
librust-web-sys-0.3+mediakeysrequirement-dev (= ${binary:Version}),
librust-web-sys-0.3+medialist-dev (= ${binary:Version}),
librust-web-sys-0.3+mediametadata-dev (= ${binary:Version}),
librust-web-sys-0.3+mediametadatainit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediapositionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaquerylist-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaquerylistevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mediaquerylisteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediarecorder-dev (= ${binary:Version}),
librust-web-sys-0.3+mediarecordererrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mediarecordererroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediarecorderoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasession-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasessionaction-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasessionactiondetails-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasessionplaybackstate-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasource-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasourceendofstreamerror-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasourceenum-dev (= ${binary:Version}),
librust-web-sys-0.3+mediasourcereadystate-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastream-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamaudiodestinationnode-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamerror-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreameventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackgenerator-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackgeneratorinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackprocessor-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackprocessorinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mediastreamtrackstate-dev (= ${binary:Version}),
librust-web-sys-0.3+mediatrackcapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3+mediatrackconstraintset-dev (= ${binary:Version}),
librust-web-sys-0.3+mediatrackconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3+mediatracksettings-dev (= ${binary:Version}),
librust-web-sys-0.3+mediatracksupportedconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3+memoryattribution-dev (= ${binary:Version}),
librust-web-sys-0.3+memoryattributioncontainer-dev (= ${binary:Version}),
librust-web-sys-0.3+memorybreakdownentry-dev (= ${binary:Version}),
librust-web-sys-0.3+memorymeasurement-dev (= ${binary:Version}),
librust-web-sys-0.3+messagechannel-dev (= ${binary:Version}),
librust-web-sys-0.3+messageevent-dev (= ${binary:Version}),
librust-web-sys-0.3+messageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+messageport-dev (= ${binary:Version}),
librust-web-sys-0.3+midiaccess-dev (= ${binary:Version}),
librust-web-sys-0.3+midiconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+midiconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+midiinput-dev (= ${binary:Version}),
librust-web-sys-0.3+midiinputmap-dev (= ${binary:Version}),
librust-web-sys-0.3+midimessageevent-dev (= ${binary:Version}),
librust-web-sys-0.3+midimessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+midioptions-dev (= ${binary:Version}),
librust-web-sys-0.3+midioutput-dev (= ${binary:Version}),
librust-web-sys-0.3+midioutputmap-dev (= ${binary:Version}),
librust-web-sys-0.3+midiport-dev (= ${binary:Version}),
librust-web-sys-0.3+midiportconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+midiportdevicestate-dev (= ${binary:Version}),
librust-web-sys-0.3+midiporttype-dev (= ${binary:Version}),
librust-web-sys-0.3+mimetype-dev (= ${binary:Version}),
librust-web-sys-0.3+mimetypearray-dev (= ${binary:Version}),
librust-web-sys-0.3+mouseevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mouseeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mousescrollevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mozdebug-dev (= ${binary:Version}),
librust-web-sys-0.3+mutationevent-dev (= ${binary:Version}),
librust-web-sys-0.3+mutationobserver-dev (= ${binary:Version}),
librust-web-sys-0.3+mutationobserverinit-dev (= ${binary:Version}),
librust-web-sys-0.3+mutationobservinginfo-dev (= ${binary:Version}),
librust-web-sys-0.3+mutationrecord-dev (= ${binary:Version}),
librust-web-sys-0.3+namednodemap-dev (= ${binary:Version}),
librust-web-sys-0.3+nativeosfilereadoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+nativeosfilewriteatomicoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+navigationtype-dev (= ${binary:Version}),
librust-web-sys-0.3+navigator-dev (= ${binary:Version}),
librust-web-sys-0.3+navigatorautomationinformation-dev (= ${binary:Version}),
librust-web-sys-0.3+navigatoruabrandversion-dev (= ${binary:Version}),
librust-web-sys-0.3+navigatoruadata-dev (= ${binary:Version}),
librust-web-sys-0.3+networkcommandoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+networkinformation-dev (= ${binary:Version}),
librust-web-sys-0.3+networkresultoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+node-dev (= ${binary:Version}),
librust-web-sys-0.3+nodefilter-dev (= ${binary:Version}),
librust-web-sys-0.3+nodeiterator-dev (= ${binary:Version}),
librust-web-sys-0.3+nodelist-dev (= ${binary:Version}),
librust-web-sys-0.3+notification-dev (= ${binary:Version}),
librust-web-sys-0.3+notificationaction-dev (= ${binary:Version}),
librust-web-sys-0.3+notificationdirection-dev (= ${binary:Version}),
librust-web-sys-0.3+notificationevent-dev (= ${binary:Version}),
librust-web-sys-0.3+notificationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+notificationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+notificationpermission-dev (= ${binary:Version}),
librust-web-sys-0.3+observercallback-dev (= ${binary:Version}),
librust-web-sys-0.3+oeselementindexuint-dev (= ${binary:Version}),
librust-web-sys-0.3+oesstandardderivatives-dev (= ${binary:Version}),
librust-web-sys-0.3+oestexturefloat-dev (= ${binary:Version}),
librust-web-sys-0.3+oestexturefloatlinear-dev (= ${binary:Version}),
librust-web-sys-0.3+oestexturehalffloat-dev (= ${binary:Version}),
librust-web-sys-0.3+oestexturehalffloatlinear-dev (= ${binary:Version}),
librust-web-sys-0.3+oesvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys-0.3+offlineaudiocompletionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+offlineaudiocompletioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+offlineaudiocontext-dev (= ${binary:Version}),
librust-web-sys-0.3+offlineaudiocontextoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+offlineresourcelist-dev (= ${binary:Version}),
librust-web-sys-0.3+offscreencanvas-dev (= ${binary:Version}),
librust-web-sys-0.3+offscreencanvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys-0.3+openfilepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+openwindoweventdetail-dev (= ${binary:Version}),
librust-web-sys-0.3+optionaleffecttiming-dev (= ${binary:Version}),
librust-web-sys-0.3+orientationlocktype-dev (= ${binary:Version}),
librust-web-sys-0.3+orientationtype-dev (= ${binary:Version}),
librust-web-sys-0.3+oscillatornode-dev (= ${binary:Version}),
librust-web-sys-0.3+oscillatoroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+oscillatortype-dev (= ${binary:Version}),
librust-web-sys-0.3+oversampletype-dev (= ${binary:Version}),
librust-web-sys-0.3+ovrmultiview2-dev (= ${binary:Version}),
librust-web-sys-0.3+pagetransitionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+pagetransitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+paintrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+paintrequestlist-dev (= ${binary:Version}),
librust-web-sys-0.3+paintworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+pannernode-dev (= ${binary:Version}),
librust-web-sys-0.3+panneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+panningmodeltype-dev (= ${binary:Version}),
librust-web-sys-0.3+paritytype-dev (= ${binary:Version}),
librust-web-sys-0.3+path2d-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentaddress-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentcomplete-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentmethodchangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentmethodchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentrequestupdateevent-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentrequestupdateeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+paymentresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+pbkdf2params-dev (= ${binary:Version}),
librust-web-sys-0.3+pcimpliceconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+pcimplicegatheringstate-dev (= ${binary:Version}),
librust-web-sys-0.3+pcimplsignalingstate-dev (= ${binary:Version}),
librust-web-sys-0.3+pcobserverstatetype-dev (= ${binary:Version}),
librust-web-sys-0.3+performance-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceentry-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceentryeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceentryfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+performancemark-dev (= ${binary:Version}),
librust-web-sys-0.3+performancemeasure-dev (= ${binary:Version}),
librust-web-sys-0.3+performancenavigation-dev (= ${binary:Version}),
librust-web-sys-0.3+performancenavigationtiming-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceobserver-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceobserverentrylist-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceobserverinit-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceresourcetiming-dev (= ${binary:Version}),
librust-web-sys-0.3+performanceservertiming-dev (= ${binary:Version}),
librust-web-sys-0.3+performancetiming-dev (= ${binary:Version}),
librust-web-sys-0.3+periodicwave-dev (= ${binary:Version}),
librust-web-sys-0.3+periodicwaveconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3+periodicwaveoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+permissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+permissionname-dev (= ${binary:Version}),
librust-web-sys-0.3+permissionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+permissionstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+permissions-dev (= ${binary:Version}),
librust-web-sys-0.3+pictureinpictureevent-dev (= ${binary:Version}),
librust-web-sys-0.3+pictureinpictureeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+pictureinpicturewindow-dev (= ${binary:Version}),
librust-web-sys-0.3+planelayout-dev (= ${binary:Version}),
librust-web-sys-0.3+playbackdirection-dev (= ${binary:Version}),
librust-web-sys-0.3+plugin-dev (= ${binary:Version}),
librust-web-sys-0.3+pluginarray-dev (= ${binary:Version}),
librust-web-sys-0.3+plugincrashedeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+pointerevent-dev (= ${binary:Version}),
librust-web-sys-0.3+pointereventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+popstateevent-dev (= ${binary:Version}),
librust-web-sys-0.3+popstateeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+popupblockedevent-dev (= ${binary:Version}),
librust-web-sys-0.3+popupblockedeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+position-dev (= ${binary:Version}),
librust-web-sys-0.3+positionalignsetting-dev (= ${binary:Version}),
librust-web-sys-0.3+positionerror-dev (= ${binary:Version}),
librust-web-sys-0.3+positionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+premultiplyalpha-dev (= ${binary:Version}),
librust-web-sys-0.3+presentation-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationavailability-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnection-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectionavailableevent-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectionavailableeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectionbinarytype-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectioncloseevent-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectioncloseeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectionclosedreason-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectionlist-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationreceiver-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+presentationstyle-dev (= ${binary:Version}),
librust-web-sys-0.3+processinginstruction-dev (= ${binary:Version}),
librust-web-sys-0.3+profiletimelinelayerrect-dev (= ${binary:Version}),
librust-web-sys-0.3+profiletimelinemarker-dev (= ${binary:Version}),
librust-web-sys-0.3+profiletimelinemessageportoperationtype-dev (= ${binary:Version}),
librust-web-sys-0.3+profiletimelinestackframe-dev (= ${binary:Version}),
librust-web-sys-0.3+profiletimelineworkeroperationtype-dev (= ${binary:Version}),
librust-web-sys-0.3+progressevent-dev (= ${binary:Version}),
librust-web-sys-0.3+progresseventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+promisenativehandler-dev (= ${binary:Version}),
librust-web-sys-0.3+promiserejectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+promiserejectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredential-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialcreationoptionsjson-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialdescriptorjson-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialentity-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialhints-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialrequestoptionsjson-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialrpentity-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialtype-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialuserentity-dev (= ${binary:Version}),
librust-web-sys-0.3+publickeycredentialuserentityjson-dev (= ${binary:Version}),
librust-web-sys-0.3+pushencryptionkeyname-dev (= ${binary:Version}),
librust-web-sys-0.3+pushevent-dev (= ${binary:Version}),
librust-web-sys-0.3+pusheventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+pushmanager-dev (= ${binary:Version}),
librust-web-sys-0.3+pushmessagedata-dev (= ${binary:Version}),
librust-web-sys-0.3+pushpermissionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+pushsubscription-dev (= ${binary:Version}),
librust-web-sys-0.3+pushsubscriptioninit-dev (= ${binary:Version}),
librust-web-sys-0.3+pushsubscriptionjson-dev (= ${binary:Version}),
librust-web-sys-0.3+pushsubscriptionkeys-dev (= ${binary:Version}),
librust-web-sys-0.3+pushsubscriptionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+pushsubscriptionoptionsinit-dev (= ${binary:Version}),
librust-web-sys-0.3+queryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+queuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0.3+queuingstrategyinit-dev (= ${binary:Version}),
librust-web-sys-0.3+radionodelist-dev (= ${binary:Version}),
librust-web-sys-0.3+range-dev (= ${binary:Version}),
librust-web-sys-0.3+rcwnperfstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rcwnstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+readablebytestreamcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestream-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreambyobreader-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreambyobrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamdefaultreader-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamgetreaderoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamiteratoroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamreadresult-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamreadermode-dev (= ${binary:Version}),
librust-web-sys-0.3+readablestreamtype-dev (= ${binary:Version}),
librust-web-sys-0.3+readablewritablepair-dev (= ${binary:Version}),
librust-web-sys-0.3+recordingstate-dev (= ${binary:Version}),
librust-web-sys-0.3+referrerpolicy-dev (= ${binary:Version}),
librust-web-sys-0.3+registerrequest-dev (= ${binary:Version}),
librust-web-sys-0.3+registerresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+registeredkey-dev (= ${binary:Version}),
librust-web-sys-0.3+registrationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+registrationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3+request-dev (= ${binary:Version}),
librust-web-sys-0.3+requestcache-dev (= ${binary:Version}),
librust-web-sys-0.3+requestcredentials-dev (= ${binary:Version}),
librust-web-sys-0.3+requestdestination-dev (= ${binary:Version}),
librust-web-sys-0.3+requestdeviceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+requestinit-dev (= ${binary:Version}),
librust-web-sys-0.3+requestmediakeysystemaccessnotification-dev (= ${binary:Version}),
librust-web-sys-0.3+requestmode-dev (= ${binary:Version}),
librust-web-sys-0.3+requestredirect-dev (= ${binary:Version}),
librust-web-sys-0.3+residentkeyrequirement-dev (= ${binary:Version}),
librust-web-sys-0.3+resizeobserver-dev (= ${binary:Version}),
librust-web-sys-0.3+resizeobserverboxoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+resizeobserverentry-dev (= ${binary:Version}),
librust-web-sys-0.3+resizeobserveroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+resizeobserversize-dev (= ${binary:Version}),
librust-web-sys-0.3+resizequality-dev (= ${binary:Version}),
librust-web-sys-0.3+response-dev (= ${binary:Version}),
librust-web-sys-0.3+responseinit-dev (= ${binary:Version}),
librust-web-sys-0.3+responsetype-dev (= ${binary:Version}),
librust-web-sys-0.3+rsahashedimportparams-dev (= ${binary:Version}),
librust-web-sys-0.3+rsaoaepparams-dev (= ${binary:Version}),
librust-web-sys-0.3+rsaotherprimesinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+rsapssparams-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcansweroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcbundlepolicy-dev (= ${binary:Version}),
librust-web-sys-0.3+rtccertificate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtccertificateexpiration-dev (= ${binary:Version}),
librust-web-sys-0.3+rtccodecstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdatachannel-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdatachannelevent-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdatachanneleventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdatachannelinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdatachannelstate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdatachanneltype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdegradationpreference-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedaudioframe-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedaudioframemetadata-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedaudioframeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedvideoframe-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedvideoframemetadata-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedvideoframeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcencodedvideoframetype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcfecparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicecandidate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicecandidateinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicecandidatepairstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicecandidatestats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicecomponentstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtciceconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicecredentialtype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicegatheringstate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtciceserver-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcicetransportpolicy-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityassertion-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityassertionresult-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityprovider-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityproviderdetails-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityprovideroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityproviderregistrar-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcidentityvalidationresult-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcinboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcmediastreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcmediastreamtrackstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcofferansweroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcofferoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcoutboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcpeerconnection-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcpeerconnectioniceerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcpeerconnectioniceevent-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcpeerconnectioniceeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcpeerconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcprioritytype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtcpparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpcapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpcodeccapability-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpcodecparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpcontributingsource-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpencodingparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpheaderextensioncapability-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpheaderextensionparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpreceiver-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpscripttransform-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpscripttransformer-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpsender-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpsourceentry-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpsourceentrytype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpsynchronizationsource-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtptransceiver-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtptransceiverdirection-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtptransceiverinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtxparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcsdptype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcsessiondescription-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcsessiondescriptioninit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcsignalingstate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcstatsicecandidatepairstate-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcstatsicecandidatetype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcstatsreport-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcstatsreportinternal-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcstatstype-dev (= ${binary:Version}),
librust-web-sys-0.3+rtctrackevent-dev (= ${binary:Version}),
librust-web-sys-0.3+rtctrackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtctransformevent-dev (= ${binary:Version}),
librust-web-sys-0.3+rtctransportstats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdtmfsender-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdtmftonechangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcdtmftonechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpcontributingsourcestats-dev (= ${binary:Version}),
librust-web-sys-0.3+rtcrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3+sframetransform-dev (= ${binary:Version}),
librust-web-sys-0.3+sframetransformerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+sframetransformerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+sframetransformerroreventtype-dev (= ${binary:Version}),
librust-web-sys-0.3+sframetransformoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+sframetransformrole-dev (= ${binary:Version}),
librust-web-sys-0.3+savefilepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+scheduler-dev (= ${binary:Version}),
librust-web-sys-0.3+schedulerposttaskoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+scheduling-dev (= ${binary:Version}),
librust-web-sys-0.3+screen-dev (= ${binary:Version}),
librust-web-sys-0.3+screencolorgamut-dev (= ${binary:Version}),
librust-web-sys-0.3+screendetailed-dev (= ${binary:Version}),
librust-web-sys-0.3+screendetails-dev (= ${binary:Version}),
librust-web-sys-0.3+screenluminance-dev (= ${binary:Version}),
librust-web-sys-0.3+screenorientation-dev (= ${binary:Version}),
librust-web-sys-0.3+scriptprocessornode-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollareaevent-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollbehavior-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollboxobject-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollintoviewcontainer-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollintoviewoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+scrolllogicalposition-dev (= ${binary:Version}),
librust-web-sys-0.3+scrolloptions-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollrestoration-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollsetting-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollstate-dev (= ${binary:Version}),
librust-web-sys-0.3+scrolltooptions-dev (= ${binary:Version}),
librust-web-sys-0.3+scrollviewchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+securitypolicyviolationevent-dev (= ${binary:Version}),
librust-web-sys-0.3+securitypolicyviolationeventdisposition-dev (= ${binary:Version}),
librust-web-sys-0.3+securitypolicyviolationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+selection-dev (= ${binary:Version}),
librust-web-sys-0.3+selectionmode-dev (= ${binary:Version}),
librust-web-sys-0.3+serial-dev (= ${binary:Version}),
librust-web-sys-0.3+serialinputsignals-dev (= ${binary:Version}),
librust-web-sys-0.3+serialoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+serialoutputsignals-dev (= ${binary:Version}),
librust-web-sys-0.3+serialport-dev (= ${binary:Version}),
librust-web-sys-0.3+serialportfilter-dev (= ${binary:Version}),
librust-web-sys-0.3+serialportinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+serialportrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+serversocketoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+serviceworker-dev (= ${binary:Version}),
librust-web-sys-0.3+serviceworkercontainer-dev (= ${binary:Version}),
librust-web-sys-0.3+serviceworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+serviceworkerregistration-dev (= ${binary:Version}),
librust-web-sys-0.3+serviceworkerstate-dev (= ${binary:Version}),
librust-web-sys-0.3+serviceworkerupdateviacache-dev (= ${binary:Version}),
librust-web-sys-0.3+shadowroot-dev (= ${binary:Version}),
librust-web-sys-0.3+shadowrootinit-dev (= ${binary:Version}),
librust-web-sys-0.3+shadowrootmode-dev (= ${binary:Version}),
librust-web-sys-0.3+sharedata-dev (= ${binary:Version}),
librust-web-sys-0.3+sharedworker-dev (= ${binary:Version}),
librust-web-sys-0.3+sharedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+signresponse-dev (= ${binary:Version}),
librust-web-sys-0.3+socketelement-dev (= ${binary:Version}),
librust-web-sys-0.3+socketoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+socketreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3+socketsdict-dev (= ${binary:Version}),
librust-web-sys-0.3+sourcebuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+sourcebufferappendmode-dev (= ${binary:Version}),
librust-web-sys-0.3+sourcebufferlist-dev (= ${binary:Version}),
librust-web-sys-0.3+speechgrammar-dev (= ${binary:Version}),
librust-web-sys-0.3+speechgrammarlist-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognition-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionalternative-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionerror-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionerrorcode-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionerrorinit-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionresult-dev (= ${binary:Version}),
librust-web-sys-0.3+speechrecognitionresultlist-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesis-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesiserrorcode-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesiserrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesiserroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesisevent-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesiseventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesisutterance-dev (= ${binary:Version}),
librust-web-sys-0.3+speechsynthesisvoice-dev (= ${binary:Version}),
librust-web-sys-0.3+stereopannernode-dev (= ${binary:Version}),
librust-web-sys-0.3+stereopanneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+storage-dev (= ${binary:Version}),
librust-web-sys-0.3+storageestimate-dev (= ${binary:Version}),
librust-web-sys-0.3+storageevent-dev (= ${binary:Version}),
librust-web-sys-0.3+storageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+storagemanager-dev (= ${binary:Version}),
librust-web-sys-0.3+storagetype-dev (= ${binary:Version}),
librust-web-sys-0.3+streampipeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+stylerulechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+stylesheet-dev (= ${binary:Version}),
librust-web-sys-0.3+stylesheetapplicablestatechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+stylesheetchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+stylesheetlist-dev (= ${binary:Version}),
librust-web-sys-0.3+submitevent-dev (= ${binary:Version}),
librust-web-sys-0.3+submiteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+subtlecrypto-dev (= ${binary:Version}),
librust-web-sys-0.3+supportedtype-dev (= ${binary:Version}),
librust-web-sys-0.3+svcoutputmetadata-dev (= ${binary:Version}),
librust-web-sys-0.3+svgangle-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimateelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatemotionelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatetransformelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedangle-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedboolean-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedenumeration-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedinteger-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedlength-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedlengthlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatednumber-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatednumberlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedrect-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedstring-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimatedtransformlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svganimationelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgboundingboxoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+svgcircleelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgclippathelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgcomponenttransferfunctionelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgdefselement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgdescelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgellipseelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfilterelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgforeignobjectelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svggeometryelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svggradientelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svggraphicselement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgimageelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svglength-dev (= ${binary:Version}),
librust-web-sys-0.3+svglengthlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svglineelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svglineargradientelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgmarkerelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgmaskelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgmatrix-dev (= ${binary:Version}),
librust-web-sys-0.3+svgmetadataelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgnumber-dev (= ${binary:Version}),
librust-web-sys-0.3+svgnumberlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseg-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegarcabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegarcrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegclosepath-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetocubicabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetocubicrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetocubicsmoothabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetocubicsmoothrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetoquadraticabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetoquadraticrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetoquadraticsmoothabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegcurvetoquadraticsmoothrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglinetoabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglinetohorizontalabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglinetohorizontalrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglinetorel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglinetoverticalabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglinetoverticalrel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathseglist-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegmovetoabs-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpathsegmovetorel-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpatternelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpoint-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpointlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpolygonelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpolylineelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys-0.3+svgradialgradientelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgrect-dev (= ${binary:Version}),
librust-web-sys-0.3+svgrectelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgscriptelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgsetelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgstopelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgstringlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svgstyleelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgswitchelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgsymbolelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtextcontentelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtextelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtextpathelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtextpositioningelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtitleelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtransform-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtransformlist-dev (= ${binary:Version}),
librust-web-sys-0.3+svgunittypes-dev (= ${binary:Version}),
librust-web-sys-0.3+svguseelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgviewelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgzoomandpan-dev (= ${binary:Version}),
librust-web-sys-0.3+svgaelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfeblendelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfecolormatrixelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfecomponenttransferelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfecompositeelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfeconvolvematrixelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfediffuselightingelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfedisplacementmapelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfedistantlightelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfedropshadowelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfefloodelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfefuncaelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfefuncbelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfefuncgelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfefuncrelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfegaussianblurelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfeimageelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfemergeelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfemergenodeelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfemorphologyelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfeoffsetelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfepointlightelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfespecularlightingelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfespotlightelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfetileelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgfeturbulenceelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svggelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgmpathelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgsvgelement-dev (= ${binary:Version}),
librust-web-sys-0.3+svgtspanelement-dev (= ${binary:Version}),
librust-web-sys-0.3+taskcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+taskcontrollerinit-dev (= ${binary:Version}),
librust-web-sys-0.3+taskpriority-dev (= ${binary:Version}),
librust-web-sys-0.3+taskprioritychangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+taskprioritychangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+tasksignal-dev (= ${binary:Version}),
librust-web-sys-0.3+tasksignalanyinit-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpserversocket-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpserversocketevent-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpserversocketeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpsocket-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpsocketbinarytype-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpsocketerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpsocketerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpsocketevent-dev (= ${binary:Version}),
librust-web-sys-0.3+tcpsocketeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+text-dev (= ${binary:Version}),
librust-web-sys-0.3+textdecodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+textdecoder-dev (= ${binary:Version}),
librust-web-sys-0.3+textdecoderoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+textencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+textmetrics-dev (= ${binary:Version}),
librust-web-sys-0.3+texttrack-dev (= ${binary:Version}),
librust-web-sys-0.3+texttrackcue-dev (= ${binary:Version}),
librust-web-sys-0.3+texttrackcuelist-dev (= ${binary:Version}),
librust-web-sys-0.3+texttrackkind-dev (= ${binary:Version}),
librust-web-sys-0.3+texttracklist-dev (= ${binary:Version}),
librust-web-sys-0.3+texttrackmode-dev (= ${binary:Version}),
librust-web-sys-0.3+timeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+timeranges-dev (= ${binary:Version}),
librust-web-sys-0.3+toggleevent-dev (= ${binary:Version}),
librust-web-sys-0.3+toggleeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+tokenbinding-dev (= ${binary:Version}),
librust-web-sys-0.3+tokenbindingstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+touch-dev (= ${binary:Version}),
librust-web-sys-0.3+touchevent-dev (= ${binary:Version}),
librust-web-sys-0.3+toucheventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+touchinit-dev (= ${binary:Version}),
librust-web-sys-0.3+touchlist-dev (= ${binary:Version}),
librust-web-sys-0.3+trackevent-dev (= ${binary:Version}),
librust-web-sys-0.3+trackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+transformstream-dev (= ${binary:Version}),
librust-web-sys-0.3+transformstreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+transformer-dev (= ${binary:Version}),
librust-web-sys-0.3+transitionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+transitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+transport-dev (= ${binary:Version}),
librust-web-sys-0.3+treeboxobject-dev (= ${binary:Version}),
librust-web-sys-0.3+treecellinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+treeview-dev (= ${binary:Version}),
librust-web-sys-0.3+treewalker-dev (= ${binary:Version}),
librust-web-sys-0.3+u2f-dev (= ${binary:Version}),
librust-web-sys-0.3+u2fclientdata-dev (= ${binary:Version}),
librust-web-sys-0.3+ulongrange-dev (= ${binary:Version}),
librust-web-sys-0.3+uadatavalues-dev (= ${binary:Version}),
librust-web-sys-0.3+ualowentropyjson-dev (= ${binary:Version}),
librust-web-sys-0.3+udpmessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+udpoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+uievent-dev (= ${binary:Version}),
librust-web-sys-0.3+uieventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+underlyingsink-dev (= ${binary:Version}),
librust-web-sys-0.3+underlyingsource-dev (= ${binary:Version}),
librust-web-sys-0.3+url-dev (= ${binary:Version}),
librust-web-sys-0.3+urlsearchparams-dev (= ${binary:Version}),
librust-web-sys-0.3+usb-dev (= ${binary:Version}),
librust-web-sys-0.3+usbalternateinterface-dev (= ${binary:Version}),
librust-web-sys-0.3+usbconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+usbconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+usbconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+usbcontroltransferparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+usbdevice-dev (= ${binary:Version}),
librust-web-sys-0.3+usbdevicefilter-dev (= ${binary:Version}),
librust-web-sys-0.3+usbdevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+usbdirection-dev (= ${binary:Version}),
librust-web-sys-0.3+usbendpoint-dev (= ${binary:Version}),
librust-web-sys-0.3+usbendpointtype-dev (= ${binary:Version}),
librust-web-sys-0.3+usbintransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3+usbinterface-dev (= ${binary:Version}),
librust-web-sys-0.3+usbisochronousintransferpacket-dev (= ${binary:Version}),
librust-web-sys-0.3+usbisochronousintransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3+usbisochronousouttransferpacket-dev (= ${binary:Version}),
librust-web-sys-0.3+usbisochronousouttransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3+usbouttransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3+usbpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+usbpermissionresult-dev (= ${binary:Version}),
librust-web-sys-0.3+usbpermissionstorage-dev (= ${binary:Version}),
librust-web-sys-0.3+usbrecipient-dev (= ${binary:Version}),
librust-web-sys-0.3+usbrequesttype-dev (= ${binary:Version}),
librust-web-sys-0.3+usbtransferstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+useractivation-dev (= ${binary:Version}),
librust-web-sys-0.3+userproximityevent-dev (= ${binary:Version}),
librust-web-sys-0.3+userproximityeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+userverificationrequirement-dev (= ${binary:Version}),
librust-web-sys-0.3+validitystate-dev (= ${binary:Version}),
librust-web-sys-0.3+valueevent-dev (= ${binary:Version}),
librust-web-sys-0.3+valueeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+videocolorprimaries-dev (= ${binary:Version}),
librust-web-sys-0.3+videocolorspace-dev (= ${binary:Version}),
librust-web-sys-0.3+videocolorspaceinit-dev (= ${binary:Version}),
librust-web-sys-0.3+videoconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3+videodecoder-dev (= ${binary:Version}),
librust-web-sys-0.3+videodecoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3+videodecoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3+videodecodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3+videoencoder-dev (= ${binary:Version}),
librust-web-sys-0.3+videoencoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3+videoencoderencodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+videoencoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3+videoencodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3+videofacingmodeenum-dev (= ${binary:Version}),
librust-web-sys-0.3+videoframe-dev (= ${binary:Version}),
librust-web-sys-0.3+videoframebufferinit-dev (= ${binary:Version}),
librust-web-sys-0.3+videoframecopytooptions-dev (= ${binary:Version}),
librust-web-sys-0.3+videoframeinit-dev (= ${binary:Version}),
librust-web-sys-0.3+videomatrixcoefficients-dev (= ${binary:Version}),
librust-web-sys-0.3+videopixelformat-dev (= ${binary:Version}),
librust-web-sys-0.3+videoplaybackquality-dev (= ${binary:Version}),
librust-web-sys-0.3+videostreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3+videotrack-dev (= ${binary:Version}),
librust-web-sys-0.3+videotracklist-dev (= ${binary:Version}),
librust-web-sys-0.3+videotransfercharacteristics-dev (= ${binary:Version}),
librust-web-sys-0.3+viewtransition-dev (= ${binary:Version}),
librust-web-sys-0.3+visibilitystate-dev (= ${binary:Version}),
librust-web-sys-0.3+visualviewport-dev (= ${binary:Version}),
librust-web-sys-0.3+voidcallback-dev (= ${binary:Version}),
librust-web-sys-0.3+vrdisplay-dev (= ${binary:Version}),
librust-web-sys-0.3+vrdisplaycapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3+vreye-dev (= ${binary:Version}),
librust-web-sys-0.3+vreyeparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+vrfieldofview-dev (= ${binary:Version}),
librust-web-sys-0.3+vrframedata-dev (= ${binary:Version}),
librust-web-sys-0.3+vrlayer-dev (= ${binary:Version}),
librust-web-sys-0.3+vrmockcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+vrmockdisplay-dev (= ${binary:Version}),
librust-web-sys-0.3+vrpose-dev (= ${binary:Version}),
librust-web-sys-0.3+vrservicetest-dev (= ${binary:Version}),
librust-web-sys-0.3+vrstageparameters-dev (= ${binary:Version}),
librust-web-sys-0.3+vrsubmitframeresult-dev (= ${binary:Version}),
librust-web-sys-0.3+vttcue-dev (= ${binary:Version}),
librust-web-sys-0.3+vttregion-dev (= ${binary:Version}),
librust-web-sys-0.3+wakelock-dev (= ${binary:Version}),
librust-web-sys-0.3+wakelocksentinel-dev (= ${binary:Version}),
librust-web-sys-0.3+wakelocktype-dev (= ${binary:Version}),
librust-web-sys-0.3+watchadvertisementsoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+waveshapernode-dev (= ${binary:Version}),
librust-web-sys-0.3+waveshaperoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+webgl2renderingcontext-dev (= ${binary:Version}),
librust-web-sys-0.3+webglactiveinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+webglbuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcontextattributes-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcontextevent-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcontexteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+webglframebuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+webglpowerpreference-dev (= ${binary:Version}),
librust-web-sys-0.3+webglprogram-dev (= ${binary:Version}),
librust-web-sys-0.3+webglquery-dev (= ${binary:Version}),
librust-web-sys-0.3+webglrenderbuffer-dev (= ${binary:Version}),
librust-web-sys-0.3+webglrenderingcontext-dev (= ${binary:Version}),
librust-web-sys-0.3+webglsampler-dev (= ${binary:Version}),
librust-web-sys-0.3+webglshader-dev (= ${binary:Version}),
librust-web-sys-0.3+webglshaderprecisionformat-dev (= ${binary:Version}),
librust-web-sys-0.3+webglsync-dev (= ${binary:Version}),
librust-web-sys-0.3+webgltexture-dev (= ${binary:Version}),
librust-web-sys-0.3+webgltransformfeedback-dev (= ${binary:Version}),
librust-web-sys-0.3+webgluniformlocation-dev (= ${binary:Version}),
librust-web-sys-0.3+webglvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys-0.3+webkitcssmatrix-dev (= ${binary:Version}),
librust-web-sys-0.3+websocket-dev (= ${binary:Version}),
librust-web-sys-0.3+websocketdict-dev (= ${binary:Version}),
librust-web-sys-0.3+websocketelement-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransport-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportbidirectionalstream-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportcloseinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportcongestioncontrol-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportdatagramduplexstream-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportdatagramstats-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransporterror-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransporterroroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransporterrorsource-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransporthash-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportreceivestream-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportreceivestreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportreliabilitymode-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportsendstream-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportsendstreamoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportsendstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3+webtransportstats-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtextureastc-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtextureatc-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtextureetc-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtextureetc1-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtexturepvrtc-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtextures3tc-dev (= ${binary:Version}),
librust-web-sys-0.3+webglcompressedtextures3tcsrgb-dev (= ${binary:Version}),
librust-web-sys-0.3+webgldebugrendererinfo-dev (= ${binary:Version}),
librust-web-sys-0.3+webgldebugshaders-dev (= ${binary:Version}),
librust-web-sys-0.3+webgldepthtexture-dev (= ${binary:Version}),
librust-web-sys-0.3+webgldrawbuffers-dev (= ${binary:Version}),
librust-web-sys-0.3+webgllosecontext-dev (= ${binary:Version}),
librust-web-sys-0.3+webglmultidraw-dev (= ${binary:Version}),
librust-web-sys-0.3+wellknowndirectory-dev (= ${binary:Version}),
librust-web-sys-0.3+wgsllanguagefeatures-dev (= ${binary:Version}),
librust-web-sys-0.3+wheelevent-dev (= ${binary:Version}),
librust-web-sys-0.3+wheeleventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+widevinecdmmanifest-dev (= ${binary:Version}),
librust-web-sys-0.3+window-dev (= ${binary:Version}),
librust-web-sys-0.3+windowclient-dev (= ${binary:Version}),
librust-web-sys-0.3+worker-dev (= ${binary:Version}),
librust-web-sys-0.3+workerdebuggerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+workerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+workerlocation-dev (= ${binary:Version}),
librust-web-sys-0.3+workernavigator-dev (= ${binary:Version}),
librust-web-sys-0.3+workeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3+workertype-dev (= ${binary:Version}),
librust-web-sys-0.3+worklet-dev (= ${binary:Version}),
librust-web-sys-0.3+workletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3+workletoptions-dev (= ${binary:Version}),
librust-web-sys-0.3+writablestream-dev (= ${binary:Version}),
librust-web-sys-0.3+writablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3+writablestreamdefaultwriter-dev (= ${binary:Version}),
librust-web-sys-0.3+writecommandtype-dev (= ${binary:Version}),
librust-web-sys-0.3+writeparams-dev (= ${binary:Version}),
librust-web-sys-0.3+xpathexpression-dev (= ${binary:Version}),
librust-web-sys-0.3+xpathnsresolver-dev (= ${binary:Version}),
librust-web-sys-0.3+xpathresult-dev (= ${binary:Version}),
librust-web-sys-0.3+xmldocument-dev (= ${binary:Version}),
librust-web-sys-0.3+xmlhttprequest-dev (= ${binary:Version}),
librust-web-sys-0.3+xmlhttprequesteventtarget-dev (= ${binary:Version}),
librust-web-sys-0.3+xmlhttprequestresponsetype-dev (= ${binary:Version}),
librust-web-sys-0.3+xmlhttprequestupload-dev (= ${binary:Version}),
librust-web-sys-0.3+xmlserializer-dev (= ${binary:Version}),
librust-web-sys-0.3+xrboundedreferencespace-dev (= ${binary:Version}),
librust-web-sys-0.3+xreye-dev (= ${binary:Version}),
librust-web-sys-0.3+xrframe-dev (= ${binary:Version}),
librust-web-sys-0.3+xrhand-dev (= ${binary:Version}),
librust-web-sys-0.3+xrhandjoint-dev (= ${binary:Version}),
librust-web-sys-0.3+xrhandedness-dev (= ${binary:Version}),
librust-web-sys-0.3+xrinputsource-dev (= ${binary:Version}),
librust-web-sys-0.3+xrinputsourcearray-dev (= ${binary:Version}),
librust-web-sys-0.3+xrinputsourceevent-dev (= ${binary:Version}),
librust-web-sys-0.3+xrinputsourceeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+xrinputsourceschangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3+xrinputsourceschangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+xrjointpose-dev (= ${binary:Version}),
librust-web-sys-0.3+xrjointspace-dev (= ${binary:Version}),
librust-web-sys-0.3+xrlayer-dev (= ${binary:Version}),
librust-web-sys-0.3+xrpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+xrpermissionstatus-dev (= ${binary:Version}),
librust-web-sys-0.3+xrpose-dev (= ${binary:Version}),
librust-web-sys-0.3+xrreferencespace-dev (= ${binary:Version}),
librust-web-sys-0.3+xrreferencespaceevent-dev (= ${binary:Version}),
librust-web-sys-0.3+xrreferencespaceeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+xrreferencespacetype-dev (= ${binary:Version}),
librust-web-sys-0.3+xrrenderstate-dev (= ${binary:Version}),
librust-web-sys-0.3+xrrenderstateinit-dev (= ${binary:Version}),
librust-web-sys-0.3+xrrigidtransform-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsession-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsessionevent-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsessioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsessioninit-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsessionmode-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsessionsupportedpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3+xrspace-dev (= ${binary:Version}),
librust-web-sys-0.3+xrsystem-dev (= ${binary:Version}),
librust-web-sys-0.3+xrtargetraymode-dev (= ${binary:Version}),
librust-web-sys-0.3+xrview-dev (= ${binary:Version}),
librust-web-sys-0.3+xrviewerpose-dev (= ${binary:Version}),
librust-web-sys-0.3+xrviewport-dev (= ${binary:Version}),
librust-web-sys-0.3+xrvisibilitystate-dev (= ${binary:Version}),
librust-web-sys-0.3+xrwebgllayer-dev (= ${binary:Version}),
librust-web-sys-0.3+xrwebgllayerinit-dev (= ${binary:Version}),
librust-web-sys-0.3+xsltprocessor-dev (= ${binary:Version}),
librust-web-sys-0.3+console-dev (= ${binary:Version}),
librust-web-sys-0.3+css-dev (= ${binary:Version}),
librust-web-sys-0.3+default-dev (= ${binary:Version}),
librust-web-sys-0.3+gpu-buffer-usage-dev (= ${binary:Version}),
librust-web-sys-0.3+gpu-color-write-dev (= ${binary:Version}),
librust-web-sys-0.3+gpu-map-mode-dev (= ${binary:Version}),
librust-web-sys-0.3+gpu-shader-stage-dev (= ${binary:Version}),
librust-web-sys-0.3+gpu-texture-usage-dev (= ${binary:Version}),
librust-web-sys-0.3+std-dev (= ${binary:Version}),
librust-web-sys-0.3.85-dev (= ${binary:Version}),
librust-web-sys-0.3.85+abortcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+abortsignal-dev (= ${binary:Version}),
librust-web-sys-0.3.85+addeventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+aescbcparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+aesctrparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+aesderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+aesgcmparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+aeskeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3.85+aeskeygenparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+algorithm-dev (= ${binary:Version}),
librust-web-sys-0.3.85+alignsetting-dev (= ${binary:Version}),
librust-web-sys-0.3.85+allowedbluetoothdevice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+allowedusbdevice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+alphaoption-dev (= ${binary:Version}),
librust-web-sys-0.3.85+analysernode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+analyseroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+angleinstancedarrays-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationeffect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationplaystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationplaybackevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationplaybackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationpropertydetails-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationpropertyvaluedetails-dev (= ${binary:Version}),
librust-web-sys-0.3.85+animationtimeline-dev (= ${binary:Version}),
librust-web-sys-0.3.85+assignednodesoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+attestationconveyancepreference-dev (= ${binary:Version}),
librust-web-sys-0.3.85+attr-dev (= ${binary:Version}),
librust-web-sys-0.3.85+attributenamevalue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiobuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiobufferoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiobuffersourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiobuffersourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiocontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiocontextlatencycategory-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiocontextoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiocontextstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodatacopytooptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodatainit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodecoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodecoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodecoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodecodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiodestinationnode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioencoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioencoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioencodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiolistener-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audionode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audionodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioparam-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioparammap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioprocessingevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiosampleformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioscheduledsourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiosinkinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiosinkoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiosinktype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiostreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiotrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audiotracklist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioworklet-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioworkletnode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioworkletnodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+audioworkletprocessor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsclientinputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsclientinputsjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsclientoutputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsclientoutputsjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsdevicepublickeyinputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsdevicepublickeyoutputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionslargeblobinputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionslargebloboutputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsprfinputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsprfoutputs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationextensionsprfvalues-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorassertionresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorassertionresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorattachment-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorattestationresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorattestationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatorselectioncriteria-dev (= ${binary:Version}),
librust-web-sys-0.3.85+authenticatortransport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+autokeyword-dev (= ${binary:Version}),
librust-web-sys-0.3.85+autocompleteinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+barprop-dev (= ${binary:Version}),
librust-web-sys-0.3.85+baseaudiocontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+basecomputedkeyframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+basekeyframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+basepropertyindexedkeyframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+basiccardrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+basiccardresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+basiccardtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+batterymanager-dev (= ${binary:Version}),
librust-web-sys-0.3.85+beforeunloadevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+binarytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+biquadfilternode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+biquadfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+biquadfiltertype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+blob-dev (= ${binary:Version}),
librust-web-sys-0.3.85+blobevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+blobeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+blobpropertybag-dev (= ${binary:Version}),
librust-web-sys-0.3.85+blockparsingoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetooth-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothadvertisingevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothadvertisingeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothcharacteristicproperties-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothdatafilterinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothdevice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothlescanfilterinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothmanufacturerdatamap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothpermissionresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothpermissionstorage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothremotegattcharacteristic-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothremotegattdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothremotegattserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothremotegattservice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothservicedatamap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bluetoothuuid-dev (= ${binary:Version}),
librust-web-sys-0.3.85+boxquadoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+broadcastchannel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+browserelementdownloadoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+browserelementexecutescriptoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+browserfeedwriter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+browserfindcasesensitivity-dev (= ${binary:Version}),
librust-web-sys-0.3.85+browserfinddirection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+bytelengthqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cache-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cachebatchoperation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cachequeryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cachestorage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cachestoragenamespace-dev (= ${binary:Version}),
librust-web-sys-0.3.85+canvascapturemediastream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+canvascapturemediastreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+canvasgradient-dev (= ${binary:Version}),
librust-web-sys-0.3.85+canvaspattern-dev (= ${binary:Version}),
librust-web-sys-0.3.85+canvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys-0.3.85+canvaswindingrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+caretchangedreason-dev (= ${binary:Version}),
librust-web-sys-0.3.85+caretposition-dev (= ${binary:Version}),
librust-web-sys-0.3.85+caretstatechangedeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cdatasection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+channelcountmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+channelinterpretation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+channelmergernode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+channelmergeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+channelsplitternode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+channelsplitteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+characterdata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+checkerboardreason-dev (= ${binary:Version}),
librust-web-sys-0.3.85+checkerboardreport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+checkerboardreportservice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+chromefilepropertybag-dev (= ${binary:Version}),
librust-web-sys-0.3.85+chromeworker-dev (= ${binary:Version}),
librust-web-sys-0.3.85+client-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clientqueryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clientrectsandtexts-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clienttype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clients-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboard-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboardevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboardeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboarditem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboarditemoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboardpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+clipboardunsanitizedformats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+closeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+closeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+codecstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+collectedclientdata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+colorspaceconversion-dev (= ${binary:Version}),
librust-web-sys-0.3.85+comment-dev (= ${binary:Version}),
librust-web-sys-0.3.85+compositeoperation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+compositionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+compositioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+compressionformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+compressionstream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+computedeffecttiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+connstatusdict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+connectiontype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consolecounter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consolecountererror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoleevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoleinstance-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoleinstanceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consolelevel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoleloglevel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoleprofileevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consolestackentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoletimererror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoletimerlogorend-dev (= ${binary:Version}),
librust-web-sys-0.3.85+consoletimerstart-dev (= ${binary:Version}),
librust-web-sys-0.3.85+constantsourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+constantsourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+constrainbooleanparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+constraindomstringparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+constraindoublerange-dev (= ${binary:Version}),
librust-web-sys-0.3.85+constrainlongrange-dev (= ${binary:Version}),
librust-web-sys-0.3.85+contextattributes2d-dev (= ${binary:Version}),
librust-web-sys-0.3.85+convertcoordinateoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+convolvernode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+convolveroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiechangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookieinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookielistitem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiesamesite-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiestore-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiestoredeleteoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiestoregetoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cookiestoremanager-dev (= ${binary:Version}),
librust-web-sys-0.3.85+coordinates-dev (= ${binary:Version}),
librust-web-sys-0.3.85+countqueuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+credential-dev (= ${binary:Version}),
librust-web-sys-0.3.85+credentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+credentialpropertiesoutput-dev (= ${binary:Version}),
librust-web-sys-0.3.85+credentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+credentialscontainer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+crypto-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cryptokey-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cryptokeypair-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssanimation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssboxtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssconditionrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csscounterstylerule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssfontfacerule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssfontfeaturevaluesrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssgroupingrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssimportrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csskeyframerule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csskeyframesrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssmediarule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssnamespacerule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csspagerule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csspseudoelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssrulelist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssstyledeclaration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssstylerule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssstylesheet-dev (= ${binary:Version}),
librust-web-sys-0.3.85+cssstylesheetparsingmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csssupportsrule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+csstransition-dev (= ${binary:Version}),
librust-web-sys-0.3.85+customelementregistry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+customevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+customeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+datatransfer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+datatransferitem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+datatransferitemlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+datetimevalue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+decoderdoctornotification-dev (= ${binary:Version}),
librust-web-sys-0.3.85+decoderdoctornotificationtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+decompressionstream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dedicatedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+delaynode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+delayoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+deviceacceleration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+deviceaccelerationinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+devicelightevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+devicelighteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+devicemotionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+devicemotioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+deviceorientationevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+deviceorientationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+deviceproximityevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+deviceproximityeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+devicerotationrate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+devicerotationrateinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+directionsetting-dev (= ${binary:Version}),
librust-web-sys-0.3.85+directory-dev (= ${binary:Version}),
librust-web-sys-0.3.85+directorypickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+displaymediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3.85+displaynameoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+displaynameresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+distancemodeltype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dnscachedict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dnscacheentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dnslookupdict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+document-dev (= ${binary:Version}),
librust-web-sys-0.3.85+documentfragment-dev (= ${binary:Version}),
librust-web-sys-0.3.85+documenttimeline-dev (= ${binary:Version}),
librust-web-sys-0.3.85+documenttimelineoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+documenttype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domexception-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domimplementation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dommatrix-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dommatrix2dinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dommatrixinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dommatrixreadonly-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domparser-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dompoint-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dompointinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dompointreadonly-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domquad-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domquadinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domquadjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domrect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domrectinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domrectlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domrectreadonly-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domrequestreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domstringlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domstringmap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domtokenlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+domwindowresizeeventdetail-dev (= ${binary:Version}),
librust-web-sys-0.3.85+doublerange-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dragevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+drageventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dynamicscompressornode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+dynamicscompressoroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eckeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eckeygenparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eckeyimportparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+ecdhkeyderiveparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+ecdsaparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+effecttiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+element-dev (= ${binary:Version}),
librust-web-sys-0.3.85+elementcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+elementdefinitionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedaudiochunk-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedaudiochunkinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedaudiochunkmetadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedaudiochunktype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedvideochunk-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedvideochunkinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedvideochunkmetadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+encodedvideochunktype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+endingtypes-dev (= ${binary:Version}),
librust-web-sys-0.3.85+errorcallback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+errorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+erroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+event-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventlistener-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventlisteneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventmodifierinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventsource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventsourceinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+eventtarget-dev (= ${binary:Version}),
librust-web-sys-0.3.85+exception-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extblendminmax-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extcolorbufferhalffloat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extdisjointtimerquery-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extfragdepth-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extsrgb-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extshadertexturelod-dev (= ${binary:Version}),
librust-web-sys-0.3.85+exttexturefilteranisotropic-dev (= ${binary:Version}),
librust-web-sys-0.3.85+exttexturenorm16-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extendablecookiechangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extendablecookiechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extendableevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extendableeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extendablemessageevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+extendablemessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+external-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fakepluginmimeentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fakeplugintaginit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fetchevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fetcheventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fetchobserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fetchreadablestreamreaddataarray-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fetchreadablestreamreaddatadone-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fetchstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+file-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filecallback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filelist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filepickeraccepttype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filepropertybag-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filereader-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filereadersync-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemcreatewritableoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemdirectoryentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemdirectoryhandle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemdirectoryreader-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystementriescallback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystementry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystementrycallback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemfileentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemfilehandle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemflags-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemgetdirectoryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemgetfileoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemhandle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemhandlekind-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemhandlepermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystempermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystempermissionmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemreadwriteoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemremoveoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemsyncaccesshandle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+filesystemwritablefilestream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fillmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+flashclassification-dev (= ${binary:Version}),
librust-web-sys-0.3.85+flowcontroltype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+focusevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+focuseventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+focusoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontdata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontface-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfacedescriptors-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfaceloadstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfaceset-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfacesetiterator-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfacesetiteratorresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfacesetloadevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfacesetloadeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fontfacesetloadstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+formdata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+frametype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+fuzzingfunctions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gainnode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gainoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepad-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadbutton-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadeffectparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadhand-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadhapticactuator-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadhapticactuatortype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadhapticeffecttype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadhapticsresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadmappingtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadpose-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gamepadtouch-dev (= ${binary:Version}),
librust-web-sys-0.3.85+geolocation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gestureevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+getanimationsoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+getrootnodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+getusermediarequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpu-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuadapter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuadapterinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuaddressmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuautolayoutmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubindgroup-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubindgroupdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubindgroupentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubindgrouplayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubindgrouplayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubindgrouplayoutentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpublendcomponent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpublendfactor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpublendoperation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpublendstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubufferbinding-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubufferbindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubufferbindingtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubufferdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpubuffermapstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucanvasalphamode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucanvasconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucanvascontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucanvastonemapping-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucanvastonemappingmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucolordict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucolortargetstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucommandbuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucommandbufferdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucommandencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucommandencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucomparefunction-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucompilationinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucompilationmessage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucompilationmessagetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucomputepassdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucomputepassencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucomputepasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucomputepipeline-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucomputepipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucopyexternalimagedestinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucopyexternalimagesourceinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpucullmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpudepthstencilstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpudevice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpudevicedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpudevicelostinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpudevicelostreason-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuerrorfilter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuextent3ddict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuexternaltexture-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuexternaltexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuexternaltexturedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpufeaturename-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpufiltermode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpufragmentstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpufrontface-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuindexformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuinternalerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuloadop-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpumipmapfiltermode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpumultisamplestate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuobjectdescriptorbase-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuorigin2ddict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuorigin3ddict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuoutofmemoryerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupipelinedescriptorbase-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupipelineerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupipelineerrorinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupipelineerrorreason-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupipelinelayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupipelinelayoutdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpupowerpreference-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuprimitivestate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuprimitivetopology-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuprogrammablestage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuqueryset-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuquerysetdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuquerytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuqueue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuqueuedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderbundle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderbundledescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderbundleencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderbundleencoderdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpasscolorattachment-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpassdepthstencilattachment-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpassdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpassencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpasslayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpasstimestampwrites-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpipeline-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurenderpipelinedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpurequestadapteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpusampler-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpusamplerbindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpusamplerbindingtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpusamplerdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpushadermodule-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpushadermodulecompilationhint-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpushadermoduledescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpustencilfacestate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpustenciloperation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpustoragetextureaccess-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpustoragetexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpustoreop-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpusupportedfeatures-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpusupportedlimits-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexelcopybufferinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexelcopybufferlayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexelcopytextureinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexture-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputextureaspect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexturebindinglayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexturedescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexturedimension-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputextureformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputexturesampletype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputextureview-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputextureviewdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gputextureviewdimension-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuuncapturederrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuuncapturederroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuvalidationerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuvertexattribute-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuvertexbufferlayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuvertexformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuvertexstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpuvertexstepmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+groupedhistoryeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+halfopeninfodict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hardwareacceleration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hashchangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hashchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+headers-dev (= ${binary:Version}),
librust-web-sys-0.3.85+headersguardenum-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hid-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidcollectioninfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hiddevice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hiddevicefilter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hiddevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidinputreportevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidinputreporteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidreportinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidreportitem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hidunitsystem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hiddenplugineventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+history-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hitregionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hkdfparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hmacderivedkeyparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hmacimportparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hmackeyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3.85+hmackeygenparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlallcollection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlanchorelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlareaelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlaudioelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlbaseelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlbodyelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlbrelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlbuttonelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlcanvaselement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlcollection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldlistelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldataelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldatalistelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldetailselement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldialogelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldirectoryelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldivelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmldocument-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlembedelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlfieldsetelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlfontelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlformcontrolscollection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlformelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlframeelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlframesetelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlheadelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlheadingelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlhrelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlhtmlelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmliframeelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlimageelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlinputelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmllabelelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmllegendelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmllielement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmllinkelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmapelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmediaelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmenuelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmenuitemelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmetaelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmeterelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlmodelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlolistelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlobjectelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmloptgroupelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmloptionelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmloptionscollection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmloutputelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlparagraphelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlparamelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlpictureelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlpreelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlprogresselement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlquoteelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlscriptelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlselectelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlslotelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlsourceelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlspanelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlstyleelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltablecaptionelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltablecellelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltablecolelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltableelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltablerowelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltablesectionelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltemplateelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltextareaelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltimeelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltitleelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmltrackelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlulistelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlunknownelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+htmlvideoelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+httpconndict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+httpconninfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+httpconnectionelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbcursor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbcursordirection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbcursorwithvalue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbdatabase-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbfactory-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbfilehandle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbfilemetadataparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbfilerequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbindex-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbindexparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbkeyrange-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idblocaleawarekeyrange-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbmutablefile-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbobjectstore-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbobjectstoreparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbopendboptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbopendbrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbrequestreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbtransaction-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbtransactiondurability-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbtransactionmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbtransactionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbversionchangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idbversionchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idledeadline-dev (= ${binary:Version}),
librust-web-sys-0.3.85+idlerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+iirfilternode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+iirfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagebitmap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagebitmapoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagebitmaprenderingcontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagecapture-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagecaptureerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagecaptureerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagecaptureerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagedata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagedecodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagedecoderesult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagedecoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagedecoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imageencodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imageorientation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagetrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+imagetracklist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+inputdeviceinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+inputevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+inputeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+intersectionobserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+intersectionobserverentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+intersectionobserverentryinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+intersectionobserverinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+intlutils-dev (= ${binary:Version}),
librust-web-sys-0.3.85+isinputpendingoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+iterablekeyandvalueresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+iterablekeyorvalueresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+iterationcompositeoperation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+jsonwebkey-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyalgorithm-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyframerequestevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyidsinitdata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyboardevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyboardeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyframeanimationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyframeeffect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+keyframeeffectoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+l10nelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+l10nvalue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+largeblobsupport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+latencymode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lifecyclecallbacks-dev (= ${binary:Version}),
librust-web-sys-0.3.85+linealignsetting-dev (= ${binary:Version}),
librust-web-sys-0.3.85+listboxobject-dev (= ${binary:Version}),
librust-web-sys-0.3.85+localmediastream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+localeinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+location-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lock-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lockinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lockmanager-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lockmanagersnapshot-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lockmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+lockoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mathmlelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediacapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediacapabilitiesinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediadecodingconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediadecodingtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediadeviceinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediadevicekind-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediadevices-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaelementaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaelementaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaencodingconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaencodingtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaencryptedevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaimage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeyerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeymessageevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeymessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeymessagetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeyneededeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysession-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysessiontype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeystatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeystatusmap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysystemaccess-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysystemconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysystemmediacapability-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysystemstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeys-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeyspolicy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediakeysrequirement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+medialist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediametadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediametadatainit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediapositionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaquerylist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaquerylistevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediaquerylisteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediarecorder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediarecordererrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediarecordererroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediarecorderoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasession-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasessionaction-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasessionactiondetails-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasessionplaybackstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasourceendofstreamerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasourceenum-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediasourcereadystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamaudiodestinationnode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamaudiosourcenode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamaudiosourceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreameventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackgenerator-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackgeneratorinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackprocessor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackprocessorinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediastreamtrackstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediatrackcapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediatrackconstraintset-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediatrackconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediatracksettings-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mediatracksupportedconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3.85+memoryattribution-dev (= ${binary:Version}),
librust-web-sys-0.3.85+memoryattributioncontainer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+memorybreakdownentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+memorymeasurement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+messagechannel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+messageevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+messageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+messageport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiaccess-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiinput-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiinputmap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midimessageevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midimessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midioptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midioutput-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midioutputmap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiportconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiportdevicestate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+midiporttype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mimetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mimetypearray-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mouseevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mouseeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mousescrollevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mozdebug-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mutationevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mutationobserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mutationobserverinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mutationobservinginfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+mutationrecord-dev (= ${binary:Version}),
librust-web-sys-0.3.85+namednodemap-dev (= ${binary:Version}),
librust-web-sys-0.3.85+nativeosfilereadoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+nativeosfilewriteatomicoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+navigationtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+navigator-dev (= ${binary:Version}),
librust-web-sys-0.3.85+navigatorautomationinformation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+navigatoruabrandversion-dev (= ${binary:Version}),
librust-web-sys-0.3.85+navigatoruadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+networkcommandoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+networkinformation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+networkresultoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+node-dev (= ${binary:Version}),
librust-web-sys-0.3.85+nodefilter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+nodeiterator-dev (= ${binary:Version}),
librust-web-sys-0.3.85+nodelist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notification-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notificationaction-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notificationdirection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notificationevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notificationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notificationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+notificationpermission-dev (= ${binary:Version}),
librust-web-sys-0.3.85+observercallback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oeselementindexuint-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oesstandardderivatives-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oestexturefloat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oestexturefloatlinear-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oestexturehalffloat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oestexturehalffloatlinear-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oesvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offlineaudiocompletionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offlineaudiocompletioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offlineaudiocontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offlineaudiocontextoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offlineresourcelist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offscreencanvas-dev (= ${binary:Version}),
librust-web-sys-0.3.85+offscreencanvasrenderingcontext2d-dev (= ${binary:Version}),
librust-web-sys-0.3.85+openfilepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+openwindoweventdetail-dev (= ${binary:Version}),
librust-web-sys-0.3.85+optionaleffecttiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+orientationlocktype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+orientationtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oscillatornode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oscillatoroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oscillatortype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+oversampletype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+ovrmultiview2-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pagetransitionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pagetransitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paintrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paintrequestlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paintworkletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pannernode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+panneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+panningmodeltype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paritytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+path2d-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentaddress-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentcomplete-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentmethodchangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentmethodchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentrequestupdateevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentrequestupdateeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+paymentresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pbkdf2params-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pcimpliceconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pcimplicegatheringstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pcimplsignalingstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pcobserverstatetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performance-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceentryeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceentryfilteroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performancemark-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performancemeasure-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performancenavigation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performancenavigationtiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceobserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceobserverentrylist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceobserverinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceresourcetiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performanceservertiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+performancetiming-dev (= ${binary:Version}),
librust-web-sys-0.3.85+periodicwave-dev (= ${binary:Version}),
librust-web-sys-0.3.85+periodicwaveconstraints-dev (= ${binary:Version}),
librust-web-sys-0.3.85+periodicwaveoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+permissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+permissionname-dev (= ${binary:Version}),
librust-web-sys-0.3.85+permissionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+permissionstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+permissions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pictureinpictureevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pictureinpictureeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pictureinpicturewindow-dev (= ${binary:Version}),
librust-web-sys-0.3.85+planelayout-dev (= ${binary:Version}),
librust-web-sys-0.3.85+playbackdirection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+plugin-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pluginarray-dev (= ${binary:Version}),
librust-web-sys-0.3.85+plugincrashedeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pointerevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pointereventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+popstateevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+popstateeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+popupblockedevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+popupblockedeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+position-dev (= ${binary:Version}),
librust-web-sys-0.3.85+positionalignsetting-dev (= ${binary:Version}),
librust-web-sys-0.3.85+positionerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+positionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+premultiplyalpha-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationavailability-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectionavailableevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectionavailableeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectionbinarytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectioncloseevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectioncloseeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectionclosedreason-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectionlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationreceiver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+presentationstyle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+processinginstruction-dev (= ${binary:Version}),
librust-web-sys-0.3.85+profiletimelinelayerrect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+profiletimelinemarker-dev (= ${binary:Version}),
librust-web-sys-0.3.85+profiletimelinemessageportoperationtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+profiletimelinestackframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+profiletimelineworkeroperationtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+progressevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+progresseventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+promisenativehandler-dev (= ${binary:Version}),
librust-web-sys-0.3.85+promiserejectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+promiserejectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredential-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialcreationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialcreationoptionsjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialdescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialdescriptorjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialentity-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialhints-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialrequestoptionsjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialrpentity-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialuserentity-dev (= ${binary:Version}),
librust-web-sys-0.3.85+publickeycredentialuserentityjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushencryptionkeyname-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pusheventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushmanager-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushmessagedata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushpermissionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushsubscription-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushsubscriptioninit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushsubscriptionjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushsubscriptionkeys-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushsubscriptionoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+pushsubscriptionoptionsinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+queryoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+queuingstrategy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+queuingstrategyinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+radionodelist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+range-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rcwnperfstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rcwnstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablebytestreamcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreambyobreader-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreambyobrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamdefaultreader-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamgetreaderoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamiteratoroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamreadresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamreadermode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablestreamtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+readablewritablepair-dev (= ${binary:Version}),
librust-web-sys-0.3.85+recordingstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+referrerpolicy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+registerrequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+registerresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+registeredkey-dev (= ${binary:Version}),
librust-web-sys-0.3.85+registrationoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+registrationresponsejson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+request-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestcache-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestcredentials-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestdestination-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestdeviceoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestmediakeysystemaccessnotification-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+requestredirect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+residentkeyrequirement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+resizeobserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+resizeobserverboxoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+resizeobserverentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+resizeobserveroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+resizeobserversize-dev (= ${binary:Version}),
librust-web-sys-0.3.85+resizequality-dev (= ${binary:Version}),
librust-web-sys-0.3.85+response-dev (= ${binary:Version}),
librust-web-sys-0.3.85+responseinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+responsetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rsahashedimportparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rsaoaepparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rsaotherprimesinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rsapssparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcansweroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcbundlepolicy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtccertificate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtccertificateexpiration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtccodecstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdatachannel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdatachannelevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdatachanneleventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdatachannelinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdatachannelstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdatachanneltype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdegradationpreference-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedaudioframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedaudioframemetadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedaudioframeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedvideoframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedvideoframemetadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedvideoframeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcencodedvideoframetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcfecparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicecandidate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicecandidateinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicecandidatepairstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicecandidatestats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicecomponentstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtciceconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicecredentialtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicegatheringstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtciceserver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcicetransportpolicy-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityassertion-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityassertionresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityprovider-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityproviderdetails-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityprovideroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityproviderregistrar-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcidentityvalidationresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcinboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcmediastreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcmediastreamtrackstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcofferansweroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcofferoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcoutboundrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcpeerconnection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcpeerconnectioniceerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcpeerconnectioniceevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcpeerconnectioniceeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcpeerconnectionstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcprioritytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtcpparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpcapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpcodeccapability-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpcodecparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpcontributingsource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpencodingparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpheaderextensioncapability-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpheaderextensionparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpreceiver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpscripttransform-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpscripttransformer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpsender-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpsourceentry-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpsourceentrytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpsynchronizationsource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtptransceiver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtptransceiverdirection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtptransceiverinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtxparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcsdptype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcsessiondescription-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcsessiondescriptioninit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcsignalingstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcstatsicecandidatepairstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcstatsicecandidatetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcstatsreport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcstatsreportinternal-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcstatstype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtctrackevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtctrackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtctransformevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtctransportstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdtmfsender-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdtmftonechangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcdtmftonechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpcontributingsourcestats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+rtcrtpstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sframetransform-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sframetransformerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sframetransformerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sframetransformerroreventtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sframetransformoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sframetransformrole-dev (= ${binary:Version}),
librust-web-sys-0.3.85+savefilepickeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scheduler-dev (= ${binary:Version}),
librust-web-sys-0.3.85+schedulerposttaskoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scheduling-dev (= ${binary:Version}),
librust-web-sys-0.3.85+screen-dev (= ${binary:Version}),
librust-web-sys-0.3.85+screencolorgamut-dev (= ${binary:Version}),
librust-web-sys-0.3.85+screendetailed-dev (= ${binary:Version}),
librust-web-sys-0.3.85+screendetails-dev (= ${binary:Version}),
librust-web-sys-0.3.85+screenluminance-dev (= ${binary:Version}),
librust-web-sys-0.3.85+screenorientation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scriptprocessornode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollareaevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollbehavior-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollboxobject-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollintoviewcontainer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollintoviewoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrolllogicalposition-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrolloptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollrestoration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollsetting-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrolltooptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+scrollviewchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+securitypolicyviolationevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+securitypolicyviolationeventdisposition-dev (= ${binary:Version}),
librust-web-sys-0.3.85+securitypolicyviolationeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+selection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+selectionmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serial-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialinputsignals-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialoutputsignals-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialportfilter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialportinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serialportrequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serversocketoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serviceworker-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serviceworkercontainer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serviceworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serviceworkerregistration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serviceworkerstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+serviceworkerupdateviacache-dev (= ${binary:Version}),
librust-web-sys-0.3.85+shadowroot-dev (= ${binary:Version}),
librust-web-sys-0.3.85+shadowrootinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+shadowrootmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sharedata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sharedworker-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sharedworkerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+signresponse-dev (= ${binary:Version}),
librust-web-sys-0.3.85+socketelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+socketoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+socketreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+socketsdict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sourcebuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sourcebufferappendmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+sourcebufferlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechgrammar-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechgrammarlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognition-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionalternative-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionerror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionerrorcode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionerrorinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechrecognitionresultlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesis-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesiserrorcode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesiserrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesiserroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesisevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesiseventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesisutterance-dev (= ${binary:Version}),
librust-web-sys-0.3.85+speechsynthesisvoice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stereopannernode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stereopanneroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+storage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+storageestimate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+storageevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+storageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+storagemanager-dev (= ${binary:Version}),
librust-web-sys-0.3.85+storagetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+streampipeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stylerulechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stylesheet-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stylesheetapplicablestatechangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stylesheetchangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+stylesheetlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+submitevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+submiteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+subtlecrypto-dev (= ${binary:Version}),
librust-web-sys-0.3.85+supportedtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svcoutputmetadata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgangle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimateelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatemotionelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatetransformelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedangle-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedboolean-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedenumeration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedinteger-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedlength-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedlengthlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatednumber-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatednumberlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedrect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedstring-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimatedtransformlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svganimationelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgboundingboxoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgcircleelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgclippathelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgcomponenttransferfunctionelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgdefselement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgdescelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgellipseelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfilterelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgforeignobjectelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svggeometryelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svggradientelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svggraphicselement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgimageelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svglength-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svglengthlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svglineelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svglineargradientelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgmarkerelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgmaskelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgmatrix-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgmetadataelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgnumber-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgnumberlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseg-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegarcabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegarcrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegclosepath-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetocubicabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetocubicrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetocubicsmoothabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetocubicsmoothrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetoquadraticabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetoquadraticrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetoquadraticsmoothabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegcurvetoquadraticsmoothrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglinetoabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglinetohorizontalabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglinetohorizontalrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglinetorel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglinetoverticalabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglinetoverticalrel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathseglist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegmovetoabs-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpathsegmovetorel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpatternelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpoint-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpointlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpolygonelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpolylineelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgpreserveaspectratio-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgradialgradientelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgrect-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgrectelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgscriptelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgsetelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgstopelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgstringlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgstyleelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgswitchelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgsymbolelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtextcontentelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtextelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtextpathelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtextpositioningelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtitleelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtransform-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtransformlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgunittypes-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svguseelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgviewelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgzoomandpan-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgaelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfeblendelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfecolormatrixelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfecomponenttransferelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfecompositeelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfeconvolvematrixelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfediffuselightingelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfedisplacementmapelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfedistantlightelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfedropshadowelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfefloodelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfefuncaelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfefuncbelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfefuncgelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfefuncrelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfegaussianblurelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfeimageelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfemergeelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfemergenodeelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfemorphologyelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfeoffsetelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfepointlightelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfespecularlightingelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfespotlightelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfetileelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgfeturbulenceelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svggelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgmpathelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgsvgelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+svgtspanelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+taskcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+taskcontrollerinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+taskpriority-dev (= ${binary:Version}),
librust-web-sys-0.3.85+taskprioritychangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+taskprioritychangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tasksignal-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tasksignalanyinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpreadystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpserversocket-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpserversocketevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpserversocketeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpsocket-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpsocketbinarytype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpsocketerrorevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpsocketerroreventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpsocketevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tcpsocketeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+text-dev (= ${binary:Version}),
librust-web-sys-0.3.85+textdecodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+textdecoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+textdecoderoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+textencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+textmetrics-dev (= ${binary:Version}),
librust-web-sys-0.3.85+texttrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+texttrackcue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+texttrackcuelist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+texttrackkind-dev (= ${binary:Version}),
librust-web-sys-0.3.85+texttracklist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+texttrackmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+timeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+timeranges-dev (= ${binary:Version}),
librust-web-sys-0.3.85+toggleevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+toggleeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tokenbinding-dev (= ${binary:Version}),
librust-web-sys-0.3.85+tokenbindingstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+touch-dev (= ${binary:Version}),
librust-web-sys-0.3.85+touchevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+toucheventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+touchinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+touchlist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+trackevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+trackeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+transformstream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+transformstreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+transformer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+transitionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+transitioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+transport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+treeboxobject-dev (= ${binary:Version}),
librust-web-sys-0.3.85+treecellinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+treeview-dev (= ${binary:Version}),
librust-web-sys-0.3.85+treewalker-dev (= ${binary:Version}),
librust-web-sys-0.3.85+u2f-dev (= ${binary:Version}),
librust-web-sys-0.3.85+u2fclientdata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+ulongrange-dev (= ${binary:Version}),
librust-web-sys-0.3.85+uadatavalues-dev (= ${binary:Version}),
librust-web-sys-0.3.85+ualowentropyjson-dev (= ${binary:Version}),
librust-web-sys-0.3.85+udpmessageeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+udpoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+uievent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+uieventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+underlyingsink-dev (= ${binary:Version}),
librust-web-sys-0.3.85+underlyingsource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+url-dev (= ${binary:Version}),
librust-web-sys-0.3.85+urlsearchparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usb-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbalternateinterface-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbconnectionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbconnectioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbcontroltransferparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbdevice-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbdevicefilter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbdevicerequestoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbdirection-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbendpoint-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbendpointtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbintransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbinterface-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbisochronousintransferpacket-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbisochronousintransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbisochronousouttransferpacket-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbisochronousouttransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbouttransferresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbpermissionresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbpermissionstorage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbrecipient-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbrequesttype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+usbtransferstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+useractivation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+userproximityevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+userproximityeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+userverificationrequirement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+validitystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+valueevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+valueeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videocolorprimaries-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videocolorspace-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videocolorspaceinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoconfiguration-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videodecoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videodecoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videodecoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videodecodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoencoder-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoencoderconfig-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoencoderencodeoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoencoderinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoencodersupport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videofacingmodeenum-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoframebufferinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoframecopytooptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoframeinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videomatrixcoefficients-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videopixelformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videoplaybackquality-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videostreamtrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videotrack-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videotracklist-dev (= ${binary:Version}),
librust-web-sys-0.3.85+videotransfercharacteristics-dev (= ${binary:Version}),
librust-web-sys-0.3.85+viewtransition-dev (= ${binary:Version}),
librust-web-sys-0.3.85+visibilitystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+visualviewport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+voidcallback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrdisplay-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrdisplaycapabilities-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vreye-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vreyeparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrfieldofview-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrframedata-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrlayer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrmockcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrmockdisplay-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrpose-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrservicetest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrstageparameters-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vrsubmitframeresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vttcue-dev (= ${binary:Version}),
librust-web-sys-0.3.85+vttregion-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wakelock-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wakelocksentinel-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wakelocktype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+watchadvertisementsoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+waveshapernode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+waveshaperoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgl2renderingcontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglactiveinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglbuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcontextattributes-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcontextevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcontexteventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglframebuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglpowerpreference-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglprogram-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglquery-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglrenderbuffer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglrenderingcontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglsampler-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglshader-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglshaderprecisionformat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglsync-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgltexture-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgltransformfeedback-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgluniformlocation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglvertexarrayobject-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webkitcssmatrix-dev (= ${binary:Version}),
librust-web-sys-0.3.85+websocket-dev (= ${binary:Version}),
librust-web-sys-0.3.85+websocketdict-dev (= ${binary:Version}),
librust-web-sys-0.3.85+websocketelement-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportbidirectionalstream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportcloseinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportcongestioncontrol-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportdatagramduplexstream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportdatagramstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransporterror-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransporterroroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransporterrorsource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransporthash-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportreceivestream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportreceivestreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportreliabilitymode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportsendstream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportsendstreamoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportsendstreamstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webtransportstats-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcolorbufferfloat-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtextureastc-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtextureatc-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtextureetc-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtextureetc1-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtexturepvrtc-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtextures3tc-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglcompressedtextures3tcsrgb-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgldebugrendererinfo-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgldebugshaders-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgldepthtexture-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgldrawbuffers-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webgllosecontext-dev (= ${binary:Version}),
librust-web-sys-0.3.85+webglmultidraw-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wellknowndirectory-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wgsllanguagefeatures-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wheelevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+wheeleventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+widevinecdmmanifest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+window-dev (= ${binary:Version}),
librust-web-sys-0.3.85+windowclient-dev (= ${binary:Version}),
librust-web-sys-0.3.85+worker-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workerdebuggerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workerglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workerlocation-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workernavigator-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workeroptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workertype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+worklet-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workletglobalscope-dev (= ${binary:Version}),
librust-web-sys-0.3.85+workletoptions-dev (= ${binary:Version}),
librust-web-sys-0.3.85+writablestream-dev (= ${binary:Version}),
librust-web-sys-0.3.85+writablestreamdefaultcontroller-dev (= ${binary:Version}),
librust-web-sys-0.3.85+writablestreamdefaultwriter-dev (= ${binary:Version}),
librust-web-sys-0.3.85+writecommandtype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+writeparams-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xpathexpression-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xpathnsresolver-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xpathresult-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xmldocument-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xmlhttprequest-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xmlhttprequesteventtarget-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xmlhttprequestresponsetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xmlhttprequestupload-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xmlserializer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrboundedreferencespace-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xreye-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrframe-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrhand-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrhandjoint-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrhandedness-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrinputsource-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrinputsourcearray-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrinputsourceevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrinputsourceeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrinputsourceschangeevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrinputsourceschangeeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrjointpose-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrjointspace-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrlayer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrpermissionstatus-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrpose-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrreferencespace-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrreferencespaceevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrreferencespaceeventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrreferencespacetype-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrrenderstate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrrenderstateinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrrigidtransform-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsession-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsessionevent-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsessioneventinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsessioninit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsessionmode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsessionsupportedpermissiondescriptor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrspace-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrsystem-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrtargetraymode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrview-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrviewerpose-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrviewport-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrvisibilitystate-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrwebgllayer-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xrwebgllayerinit-dev (= ${binary:Version}),
librust-web-sys-0.3.85+xsltprocessor-dev (= ${binary:Version}),
librust-web-sys-0.3.85+console-dev (= ${binary:Version}),
librust-web-sys-0.3.85+css-dev (= ${binary:Version}),
librust-web-sys-0.3.85+default-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpu-buffer-usage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpu-color-write-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpu-map-mode-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpu-shader-stage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+gpu-texture-usage-dev (= ${binary:Version}),
librust-web-sys-0.3.85+std-dev (= ${binary:Version})
Description: Bindings for all Web APIs - Rust source code
Source code for Debianized Rust crate "web-sys"
|