halloy: 2023.4 -> 2023.5

Diff: https://github.com/squidowl/halloy/compare/refs/tags/2023.4...2023.5

Changelog: https://github.com/squidowl/halloy/blob/2023.5/CHANGELOG.md

+570 -3
+568 -1
pkgs/applications/networking/irc/halloy/Cargo.lock
··· 146 146 ] 147 147 148 148 [[package]] 149 + name = "async-broadcast" 150 + version = "0.5.1" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 153 + dependencies = [ 154 + "event-listener", 155 + "futures-core", 156 + ] 157 + 158 + [[package]] 159 + name = "async-channel" 160 + version = "1.9.0" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 163 + dependencies = [ 164 + "concurrent-queue", 165 + "event-listener", 166 + "futures-core", 167 + ] 168 + 169 + [[package]] 170 + name = "async-executor" 171 + version = "1.5.1" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 174 + dependencies = [ 175 + "async-lock", 176 + "async-task", 177 + "concurrent-queue", 178 + "fastrand", 179 + "futures-lite", 180 + "slab", 181 + ] 182 + 183 + [[package]] 184 + name = "async-fs" 185 + version = "1.6.0" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 188 + dependencies = [ 189 + "async-lock", 190 + "autocfg", 191 + "blocking", 192 + "futures-lite", 193 + ] 194 + 195 + [[package]] 196 + name = "async-io" 197 + version = "1.13.0" 198 + source = "registry+https://github.com/rust-lang/crates.io-index" 199 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 200 + dependencies = [ 201 + "async-lock", 202 + "autocfg", 203 + "cfg-if", 204 + "concurrent-queue", 205 + "futures-lite", 206 + "log", 207 + "parking", 208 + "polling", 209 + "rustix", 210 + "slab", 211 + "socket2", 212 + "waker-fn", 213 + ] 214 + 215 + [[package]] 216 + name = "async-lock" 217 + version = "2.7.0" 218 + source = "registry+https://github.com/rust-lang/crates.io-index" 219 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 220 + dependencies = [ 221 + "event-listener", 222 + ] 223 + 224 + [[package]] 225 + name = "async-process" 226 + version = "1.7.0" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 229 + dependencies = [ 230 + "async-io", 231 + "async-lock", 232 + "autocfg", 233 + "blocking", 234 + "cfg-if", 235 + "event-listener", 236 + "futures-lite", 237 + "rustix", 238 + "signal-hook", 239 + "windows-sys 0.48.0", 240 + ] 241 + 242 + [[package]] 243 + name = "async-recursion" 244 + version = "1.0.4" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 247 + dependencies = [ 248 + "proc-macro2", 249 + "quote", 250 + "syn 2.0.18", 251 + ] 252 + 253 + [[package]] 254 + name = "async-task" 255 + version = "4.4.0" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 258 + 259 + [[package]] 260 + name = "async-trait" 261 + version = "0.1.69" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "7b2d0f03b3640e3a630367e40c468cb7f309529c708ed1d88597047b0e7c6ef7" 264 + dependencies = [ 265 + "proc-macro2", 266 + "quote", 267 + "syn 2.0.18", 268 + ] 269 + 270 + [[package]] 271 + name = "atomic-waker" 272 + version = "1.1.1" 273 + source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 275 + 276 + [[package]] 149 277 name = "autocfg" 150 278 version = "1.1.0" 151 279 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 212 340 checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 213 341 214 342 [[package]] 343 + name = "block-buffer" 344 + version = "0.10.4" 345 + source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 347 + dependencies = [ 348 + "generic-array", 349 + ] 350 + 351 + [[package]] 215 352 name = "block-sys" 216 353 version = "0.1.0-beta.1" 217 354 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 231 368 ] 232 369 233 370 [[package]] 371 + name = "blocking" 372 + version = "1.3.1" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 375 + dependencies = [ 376 + "async-channel", 377 + "async-lock", 378 + "async-task", 379 + "atomic-waker", 380 + "fastrand", 381 + "futures-lite", 382 + "log", 383 + ] 384 + 385 + [[package]] 234 386 name = "bumpalo" 235 387 version = "3.13.0" 236 388 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 313 465 "js-sys", 314 466 "num-traits", 315 467 "serde", 316 - "time", 468 + "time 0.1.45", 317 469 "wasm-bindgen", 318 470 "winapi", 319 471 ] ··· 413 565 checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" 414 566 415 567 [[package]] 568 + name = "concurrent-queue" 569 + version = "2.2.0" 570 + source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 572 + dependencies = [ 573 + "crossbeam-utils", 574 + ] 575 + 576 + [[package]] 416 577 name = "core-foundation" 417 578 version = "0.9.3" 418 579 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 474 635 ] 475 636 476 637 [[package]] 638 + name = "cpufeatures" 639 + version = "0.2.9" 640 + source = "registry+https://github.com/rust-lang/crates.io-index" 641 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 642 + dependencies = [ 643 + "libc", 644 + ] 645 + 646 + [[package]] 477 647 name = "crc32fast" 478 648 version = "1.3.2" 479 649 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 532 702 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 533 703 534 704 [[package]] 705 + name = "crypto-common" 706 + version = "0.1.6" 707 + source = "registry+https://github.com/rust-lang/crates.io-index" 708 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 709 + dependencies = [ 710 + "generic-array", 711 + "typenum", 712 + ] 713 + 714 + [[package]] 535 715 name = "d3d12" 536 716 version = "0.6.0" 537 717 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 568 748 ] 569 749 570 750 [[package]] 751 + name = "derivative" 752 + version = "2.2.0" 753 + source = "registry+https://github.com/rust-lang/crates.io-index" 754 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 755 + dependencies = [ 756 + "proc-macro2", 757 + "quote", 758 + "syn 1.0.109", 759 + ] 760 + 761 + [[package]] 762 + name = "digest" 763 + version = "0.10.7" 764 + source = "registry+https://github.com/rust-lang/crates.io-index" 765 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 766 + dependencies = [ 767 + "block-buffer", 768 + "crypto-common", 769 + ] 770 + 771 + [[package]] 571 772 name = "dirs-next" 572 773 version = "2.0.0" 573 774 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 629 830 ] 630 831 631 832 [[package]] 833 + name = "enumflags2" 834 + version = "0.7.7" 835 + source = "registry+https://github.com/rust-lang/crates.io-index" 836 + checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 837 + dependencies = [ 838 + "enumflags2_derive", 839 + "serde", 840 + ] 841 + 842 + [[package]] 843 + name = "enumflags2_derive" 844 + version = "0.7.7" 845 + source = "registry+https://github.com/rust-lang/crates.io-index" 846 + checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 847 + dependencies = [ 848 + "proc-macro2", 849 + "quote", 850 + "syn 2.0.18", 851 + ] 852 + 853 + [[package]] 632 854 name = "errno" 633 855 version = "0.3.1" 634 856 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 677 899 dependencies = [ 678 900 "num-traits", 679 901 ] 902 + 903 + [[package]] 904 + name = "event-listener" 905 + version = "2.5.3" 906 + source = "registry+https://github.com/rust-lang/crates.io-index" 907 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 680 908 681 909 [[package]] 682 910 name = "exr" ··· 828 1056 checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 829 1057 830 1058 [[package]] 1059 + name = "futures-lite" 1060 + version = "1.13.0" 1061 + source = "registry+https://github.com/rust-lang/crates.io-index" 1062 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1063 + dependencies = [ 1064 + "fastrand", 1065 + "futures-core", 1066 + "futures-io", 1067 + "memchr", 1068 + "parking", 1069 + "pin-project-lite", 1070 + "waker-fn", 1071 + ] 1072 + 1073 + [[package]] 831 1074 name = "futures-macro" 832 1075 version = "0.3.28" 833 1076 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 869 1112 ] 870 1113 871 1114 [[package]] 1115 + name = "generic-array" 1116 + version = "0.14.7" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1119 + dependencies = [ 1120 + "typenum", 1121 + "version_check", 1122 + ] 1123 + 1124 + [[package]] 872 1125 name = "gethostname" 873 1126 version = "0.2.3" 874 1127 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1020 1273 "iced", 1021 1274 "image", 1022 1275 "log", 1276 + "notify-rust", 1023 1277 "once_cell", 1024 1278 "open", 1025 1279 "palette", ··· 1083 1337 version = "0.3.2" 1084 1338 source = "registry+https://github.com/rust-lang/crates.io-index" 1085 1339 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1340 + 1341 + [[package]] 1342 + name = "hex" 1343 + version = "0.4.3" 1344 + source = "registry+https://github.com/rust-lang/crates.io-index" 1345 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1086 1346 1087 1347 [[package]] 1088 1348 name = "hexf-parse" ··· 1523 1783 ] 1524 1784 1525 1785 [[package]] 1786 + name = "mac-notification-sys" 1787 + version = "0.5.6" 1788 + source = "registry+https://github.com/rust-lang/crates.io-index" 1789 + checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5" 1790 + dependencies = [ 1791 + "cc", 1792 + "dirs-next", 1793 + "objc-foundation", 1794 + "objc_id", 1795 + "time 0.3.23", 1796 + ] 1797 + 1798 + [[package]] 1526 1799 name = "malloc_buf" 1527 1800 version = "0.0.6" 1528 1801 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1778 2051 ] 1779 2052 1780 2053 [[package]] 2054 + name = "notify-rust" 2055 + version = "4.8.0" 2056 + source = "registry+https://github.com/rust-lang/crates.io-index" 2057 + checksum = "2bfa211d18e360f08e36c364308f394b5eb23a6629150690e109a916dc6f610e" 2058 + dependencies = [ 2059 + "log", 2060 + "mac-notification-sys", 2061 + "serde", 2062 + "tauri-winrt-notification", 2063 + "zbus", 2064 + ] 2065 + 2066 + [[package]] 1781 2067 name = "num-integer" 1782 2068 version = "0.1.45" 1783 2069 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1982 2268 ] 1983 2269 1984 2270 [[package]] 2271 + name = "ordered-stream" 2272 + version = "0.2.0" 2273 + source = "registry+https://github.com/rust-lang/crates.io-index" 2274 + checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2275 + dependencies = [ 2276 + "futures-core", 2277 + "pin-project-lite", 2278 + ] 2279 + 2280 + [[package]] 1985 2281 name = "ouroboros" 1986 2282 version = "0.17.0" 1987 2283 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2038 2334 ] 2039 2335 2040 2336 [[package]] 2337 + name = "parking" 2338 + version = "2.1.0" 2339 + source = "registry+https://github.com/rust-lang/crates.io-index" 2340 + checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 2341 + 2342 + [[package]] 2041 2343 name = "parking_lot" 2042 2344 version = "0.11.2" 2043 2345 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2188 2490 "fdeflate", 2189 2491 "flate2", 2190 2492 "miniz_oxide 0.7.1", 2493 + ] 2494 + 2495 + [[package]] 2496 + name = "polling" 2497 + version = "2.8.0" 2498 + source = "registry+https://github.com/rust-lang/crates.io-index" 2499 + checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 2500 + dependencies = [ 2501 + "autocfg", 2502 + "bitflags 1.3.2", 2503 + "cfg-if", 2504 + "concurrent-queue", 2505 + "libc", 2506 + "log", 2507 + "pin-project-lite", 2508 + "windows-sys 0.48.0", 2191 2509 ] 2192 2510 2193 2511 [[package]] ··· 2553 2871 ] 2554 2872 2555 2873 [[package]] 2874 + name = "serde_repr" 2875 + version = "0.1.13" 2876 + source = "registry+https://github.com/rust-lang/crates.io-index" 2877 + checksum = "6f0a21fba416426ac927b1691996e82079f8b6156e920c85345f135b2e9ba2de" 2878 + dependencies = [ 2879 + "proc-macro2", 2880 + "quote", 2881 + "syn 2.0.18", 2882 + ] 2883 + 2884 + [[package]] 2556 2885 name = "serde_spanned" 2557 2886 version = "0.6.2" 2558 2887 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2571 2900 "ryu", 2572 2901 "serde", 2573 2902 "yaml-rust", 2903 + ] 2904 + 2905 + [[package]] 2906 + name = "sha1" 2907 + version = "0.10.5" 2908 + source = "registry+https://github.com/rust-lang/crates.io-index" 2909 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2910 + dependencies = [ 2911 + "cfg-if", 2912 + "cpufeatures", 2913 + "digest", 2914 + ] 2915 + 2916 + [[package]] 2917 + name = "signal-hook" 2918 + version = "0.3.17" 2919 + source = "registry+https://github.com/rust-lang/crates.io-index" 2920 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 2921 + dependencies = [ 2922 + "libc", 2923 + "signal-hook-registry", 2574 2924 ] 2575 2925 2576 2926 [[package]] ··· 2771 3121 ] 2772 3122 2773 3123 [[package]] 3124 + name = "tauri-winrt-notification" 3125 + version = "0.1.2" 3126 + source = "registry+https://github.com/rust-lang/crates.io-index" 3127 + checksum = "4f5bff1d532fead7c43324a0fa33643b8621a47ce2944a633be4cb6c0240898f" 3128 + dependencies = [ 3129 + "quick-xml", 3130 + "windows 0.39.0", 3131 + ] 3132 + 3133 + [[package]] 2774 3134 name = "tempfile" 2775 3135 version = "3.5.0" 2776 3136 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2833 3193 "wasi 0.10.0+wasi-snapshot-preview1", 2834 3194 "winapi", 2835 3195 ] 3196 + 3197 + [[package]] 3198 + name = "time" 3199 + version = "0.3.23" 3200 + source = "registry+https://github.com/rust-lang/crates.io-index" 3201 + checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446" 3202 + dependencies = [ 3203 + "serde", 3204 + "time-core", 3205 + ] 3206 + 3207 + [[package]] 3208 + name = "time-core" 3209 + version = "0.1.1" 3210 + source = "registry+https://github.com/rust-lang/crates.io-index" 3211 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 2836 3212 2837 3213 [[package]] 2838 3214 name = "tiny-skia" ··· 3008 3384 dependencies = [ 3009 3385 "cfg-if", 3010 3386 "pin-project-lite", 3387 + "tracing-attributes", 3011 3388 "tracing-core", 3389 + ] 3390 + 3391 + [[package]] 3392 + name = "tracing-attributes" 3393 + version = "0.1.26" 3394 + source = "registry+https://github.com/rust-lang/crates.io-index" 3395 + checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 3396 + dependencies = [ 3397 + "proc-macro2", 3398 + "quote", 3399 + "syn 2.0.18", 3012 3400 ] 3013 3401 3014 3402 [[package]] ··· 3038 3426 ] 3039 3427 3040 3428 [[package]] 3429 + name = "typenum" 3430 + version = "1.16.0" 3431 + source = "registry+https://github.com/rust-lang/crates.io-index" 3432 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3433 + 3434 + [[package]] 3435 + name = "uds_windows" 3436 + version = "1.0.2" 3437 + source = "registry+https://github.com/rust-lang/crates.io-index" 3438 + checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 3439 + dependencies = [ 3440 + "tempfile", 3441 + "winapi", 3442 + ] 3443 + 3444 + [[package]] 3041 3445 name = "unicode-bidi" 3042 3446 version = "0.3.13" 3043 3447 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3147 3551 "cc", 3148 3552 "libc", 3149 3553 ] 3554 + 3555 + [[package]] 3556 + name = "waker-fn" 3557 + version = "1.1.0" 3558 + source = "registry+https://github.com/rust-lang/crates.io-index" 3559 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3150 3560 3151 3561 [[package]] 3152 3562 name = "wasi" ··· 3542 3952 3543 3953 [[package]] 3544 3954 name = "windows" 3955 + version = "0.39.0" 3956 + source = "registry+https://github.com/rust-lang/crates.io-index" 3957 + checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3958 + dependencies = [ 3959 + "windows_aarch64_msvc 0.39.0", 3960 + "windows_i686_gnu 0.39.0", 3961 + "windows_i686_msvc 0.39.0", 3962 + "windows_x86_64_gnu 0.39.0", 3963 + "windows_x86_64_msvc 0.39.0", 3964 + ] 3965 + 3966 + [[package]] 3967 + name = "windows" 3545 3968 version = "0.44.0" 3546 3969 source = "registry+https://github.com/rust-lang/crates.io-index" 3547 3970 checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" ··· 3635 4058 3636 4059 [[package]] 3637 4060 name = "windows_aarch64_msvc" 4061 + version = "0.39.0" 4062 + source = "registry+https://github.com/rust-lang/crates.io-index" 4063 + checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 4064 + 4065 + [[package]] 4066 + name = "windows_aarch64_msvc" 3638 4067 version = "0.42.2" 3639 4068 source = "registry+https://github.com/rust-lang/crates.io-index" 3640 4069 checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" ··· 3647 4076 3648 4077 [[package]] 3649 4078 name = "windows_i686_gnu" 4079 + version = "0.39.0" 4080 + source = "registry+https://github.com/rust-lang/crates.io-index" 4081 + checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 4082 + 4083 + [[package]] 4084 + name = "windows_i686_gnu" 3650 4085 version = "0.42.2" 3651 4086 source = "registry+https://github.com/rust-lang/crates.io-index" 3652 4087 checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" ··· 3659 4094 3660 4095 [[package]] 3661 4096 name = "windows_i686_msvc" 4097 + version = "0.39.0" 4098 + source = "registry+https://github.com/rust-lang/crates.io-index" 4099 + checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 4100 + 4101 + [[package]] 4102 + name = "windows_i686_msvc" 3662 4103 version = "0.42.2" 3663 4104 source = "registry+https://github.com/rust-lang/crates.io-index" 3664 4105 checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" ··· 3668 4109 version = "0.48.0" 3669 4110 source = "registry+https://github.com/rust-lang/crates.io-index" 3670 4111 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 4112 + 4113 + [[package]] 4114 + name = "windows_x86_64_gnu" 4115 + version = "0.39.0" 4116 + source = "registry+https://github.com/rust-lang/crates.io-index" 4117 + checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3671 4118 3672 4119 [[package]] 3673 4120 name = "windows_x86_64_gnu" ··· 3692 4139 version = "0.48.0" 3693 4140 source = "registry+https://github.com/rust-lang/crates.io-index" 3694 4141 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 4142 + 4143 + [[package]] 4144 + name = "windows_x86_64_msvc" 4145 + version = "0.39.0" 4146 + source = "registry+https://github.com/rust-lang/crates.io-index" 4147 + checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3695 4148 3696 4149 [[package]] 3697 4150 name = "windows_x86_64_msvc" ··· 3816 4269 ] 3817 4270 3818 4271 [[package]] 4272 + name = "xdg-home" 4273 + version = "1.0.0" 4274 + source = "registry+https://github.com/rust-lang/crates.io-index" 4275 + checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 4276 + dependencies = [ 4277 + "nix 0.26.2", 4278 + "winapi", 4279 + ] 4280 + 4281 + [[package]] 3819 4282 name = "xml-rs" 3820 4283 version = "0.8.13" 3821 4284 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3837 4300 checksum = "c94451ac9513335b5e23d7a8a2b61a7102398b8cca5160829d313e84c9d98be1" 3838 4301 3839 4302 [[package]] 4303 + name = "zbus" 4304 + version = "3.14.1" 4305 + source = "registry+https://github.com/rust-lang/crates.io-index" 4306 + checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 4307 + dependencies = [ 4308 + "async-broadcast", 4309 + "async-executor", 4310 + "async-fs", 4311 + "async-io", 4312 + "async-lock", 4313 + "async-process", 4314 + "async-recursion", 4315 + "async-task", 4316 + "async-trait", 4317 + "blocking", 4318 + "byteorder", 4319 + "derivative", 4320 + "enumflags2", 4321 + "event-listener", 4322 + "futures-core", 4323 + "futures-sink", 4324 + "futures-util", 4325 + "hex", 4326 + "nix 0.26.2", 4327 + "once_cell", 4328 + "ordered-stream", 4329 + "rand", 4330 + "serde", 4331 + "serde_repr", 4332 + "sha1", 4333 + "static_assertions", 4334 + "tracing", 4335 + "uds_windows", 4336 + "winapi", 4337 + "xdg-home", 4338 + "zbus_macros", 4339 + "zbus_names", 4340 + "zvariant", 4341 + ] 4342 + 4343 + [[package]] 4344 + name = "zbus_macros" 4345 + version = "3.14.1" 4346 + source = "registry+https://github.com/rust-lang/crates.io-index" 4347 + checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 4348 + dependencies = [ 4349 + "proc-macro-crate", 4350 + "proc-macro2", 4351 + "quote", 4352 + "regex", 4353 + "syn 1.0.109", 4354 + "zvariant_utils", 4355 + ] 4356 + 4357 + [[package]] 4358 + name = "zbus_names" 4359 + version = "2.6.0" 4360 + source = "registry+https://github.com/rust-lang/crates.io-index" 4361 + checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 4362 + dependencies = [ 4363 + "serde", 4364 + "static_assertions", 4365 + "zvariant", 4366 + ] 4367 + 4368 + [[package]] 3840 4369 name = "zeno" 3841 4370 version = "0.2.2" 3842 4371 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3850 4379 dependencies = [ 3851 4380 "simd-adler32", 3852 4381 ] 4382 + 4383 + [[package]] 4384 + name = "zvariant" 4385 + version = "3.15.0" 4386 + source = "registry+https://github.com/rust-lang/crates.io-index" 4387 + checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 4388 + dependencies = [ 4389 + "byteorder", 4390 + "enumflags2", 4391 + "libc", 4392 + "serde", 4393 + "static_assertions", 4394 + "zvariant_derive", 4395 + ] 4396 + 4397 + [[package]] 4398 + name = "zvariant_derive" 4399 + version = "3.15.0" 4400 + source = "registry+https://github.com/rust-lang/crates.io-index" 4401 + checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 4402 + dependencies = [ 4403 + "proc-macro-crate", 4404 + "proc-macro2", 4405 + "quote", 4406 + "syn 1.0.109", 4407 + "zvariant_utils", 4408 + ] 4409 + 4410 + [[package]] 4411 + name = "zvariant_utils" 4412 + version = "1.0.1" 4413 + source = "registry+https://github.com/rust-lang/crates.io-index" 4414 + checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 4415 + dependencies = [ 4416 + "proc-macro2", 4417 + "quote", 4418 + "syn 1.0.109", 4419 + ]
+2 -2
pkgs/applications/networking/irc/halloy/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "halloy"; 18 - version = "2023.4"; 18 + version = "2023.5"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "squidowl"; 22 22 repo = "halloy"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-j5Yw7rXdNd32RnbV2jQ+ZUjbm14AKZ7khQNX6A+qPAM="; 24 + hash = "sha256-XGNFLfZDDGTT55UAsapUf1B0uSzrNjwSRK+yQSU3wG0="; 25 25 }; 26 26 27 27 cargoLock = {