Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 1966fd4b ce24b584

+1193 -988
+1
nixos/tests/incus/container.nix
··· 29 29 30 30 incus.enable = true; 31 31 }; 32 + networking.nftables.enable = true; 32 33 }; 33 34 34 35 testScript = ''
+1
nixos/tests/incus/lxd-to-incus.nix
··· 67 67 68 68 incus.enable = true; 69 69 }; 70 + networking.nftables.enable = true; 70 71 }; 71 72 72 73 testScript = ''
+1
nixos/tests/incus/preseed.nix
··· 48 48 ]; 49 49 }; 50 50 }; 51 + networking.nftables.enable = true; 51 52 }; 52 53 53 54 testScript = ''
+1
nixos/tests/incus/socket-activated.nix
··· 12 12 incus.enable = true; 13 13 incus.socketActivation = true; 14 14 }; 15 + networking.nftables.enable = true; 15 16 }; 16 17 17 18 testScript = ''
+1
nixos/tests/incus/ui.nix
··· 10 10 incus.enable = true; 11 11 incus.ui.enable = true; 12 12 }; 13 + networking.nftables.enable = true; 13 14 14 15 environment.systemPackages = 15 16 let
+1
nixos/tests/incus/virtual-machine.nix
··· 32 32 33 33 incus.enable = true; 34 34 }; 35 + networking.nftables.enable = true; 35 36 }; 36 37 37 38 testScript = ''
+2 -2
pkgs/applications/audio/jmusicbot/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "JMusicBot"; 5 - version = "0.3.9"; 5 + version = "0.4.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/jagrosh/MusicBot/releases/download/${version}/JMusicBot-${version}.jar"; 9 - sha256 = "sha256-2A1yo2e1MawGLMTM6jWwpQJJuKOmljxFriORv90Jqg8="; 9 + sha256 = "sha256-JSVrzyCqAp3V5OZ+KJczhWGolPkdaHsPmiqfmhapQMs="; 10 10 }; 11 11 12 12 dontUnpack = true;
+2 -2
pkgs/applications/blockchains/clightning/default.nix
··· 22 22 in 23 23 stdenv.mkDerivation rec { 24 24 pname = "clightning"; 25 - version = "24.02"; 25 + version = "24.02.1"; 26 26 27 27 src = fetchurl { 28 28 url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip"; 29 - sha256 = "sha256-hud6NU2apAJNf2epNk+3nwTUmRy5DfNOYiGp402H4ik="; 29 + sha256 = "sha256-cz4rQUEaWILZMxmIP4V15pWf4zow5PDeWJzn5FEaUSs="; 30 30 }; 31 31 32 32 # when building on darwin we need dawin.cctools to provide the correct libtool
+3 -3
pkgs/applications/emulators/wine/sources.nix
··· 69 69 70 70 unstable = fetchurl rec { 71 71 # NOTE: Don't forget to change the hash for staging as well. 72 - version = "9.3"; 72 + version = "9.4"; 73 73 url = "https://dl.winehq.org/wine/source/9.x/wine-${version}.tar.xz"; 74 - hash = "sha256-FIsuNBR9H6FIQVY3xyPJn0N26SyE6QzB0OAK1O07F5M="; 74 + hash = "sha256-xV/5lXYSVJuMfffN3HnXoA0ZFX0Fs3EUi/CNTd92jsY="; 75 75 inherit (stable) patches; 76 76 77 77 ## see http://wiki.winehq.org/Gecko ··· 117 117 staging = fetchFromGitLab rec { 118 118 # https://gitlab.winehq.org/wine/wine-staging 119 119 inherit (unstable) version; 120 - hash = "sha256-1k7HHcsosce5MX86IMiFrfjg0li4DuP0utjyal1Iwkc="; 120 + hash = "sha256-wij0CeAL6V8dH4nRS+UVKZMBJlSNgzr9tG1860WSbrU="; 121 121 domain = "gitlab.winehq.org"; 122 122 owner = "wine"; 123 123 repo = "wine-staging";
+143 -157
pkgs/applications/graphics/rnote/Cargo.lock
··· 19 19 20 20 [[package]] 21 21 name = "ahash" 22 - version = "0.8.10" 22 + version = "0.8.11" 23 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "8b79b82693f705137f8fb9b37871d99e4f9a7df12b917eed79c3d3954830a60b" 24 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 25 25 dependencies = [ 26 26 "cfg-if", 27 27 "once_cell", ··· 46 46 47 47 [[package]] 48 48 name = "alsa" 49 - version = "0.7.1" 49 + version = "0.9.0" 50 50 source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "e2562ad8dcf0f789f65c6fdaad8a8a9708ed6b488e649da28c01656ad66b8b47" 51 + checksum = "37fe60779335388a88c01ac6c3be40304d1e349de3ada3b15f7808bb90fa9dce" 52 52 dependencies = [ 53 53 "alsa-sys", 54 - "bitflags 1.3.2", 54 + "bitflags 2.4.2", 55 55 "libc", 56 - "nix", 57 56 ] 58 57 59 58 [[package]] ··· 526 525 527 526 [[package]] 528 527 name = "bumpalo" 529 - version = "3.15.3" 528 + version = "3.15.4" 530 529 source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b" 530 + checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 532 531 533 532 [[package]] 534 533 name = "bytemuck" ··· 580 579 581 580 [[package]] 582 581 name = "cc" 583 - version = "1.0.88" 582 + version = "1.0.90" 584 583 source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc" 584 + checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 586 585 dependencies = [ 586 + "jobserver", 587 587 "libc", 588 588 ] 589 589 ··· 620 620 621 621 [[package]] 622 622 name = "chrono" 623 - version = "0.4.34" 623 + version = "0.4.35" 624 624 source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" 625 + checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" 626 626 dependencies = [ 627 627 "android-tzdata", 628 628 "iana-time-zone", ··· 645 645 646 646 [[package]] 647 647 name = "clap" 648 - version = "4.5.1" 648 + version = "4.5.2" 649 649 source = "registry+https://github.com/rust-lang/crates.io-index" 650 - checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da" 650 + checksum = "b230ab84b0ffdf890d5a10abdbc8b83ae1c4918275daea1ab8801f71536b2651" 651 651 dependencies = [ 652 652 "clap_builder", 653 653 "clap_derive", ··· 655 655 656 656 [[package]] 657 657 name = "clap_builder" 658 - version = "4.5.1" 658 + version = "4.5.2" 659 659 source = "registry+https://github.com/rust-lang/crates.io-index" 660 - checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb" 660 + checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 661 661 dependencies = [ 662 662 "anstream", 663 663 "anstyle", ··· 774 774 775 775 [[package]] 776 776 name = "cpal" 777 - version = "0.15.2" 777 + version = "0.15.3" 778 778 source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "6d959d90e938c5493000514b446987c07aed46c668faaa7d34d6c7a67b1a578c" 779 + checksum = "873dab07c8f743075e57f524c583985fbaf745602acbe916a01539364369a779" 780 780 dependencies = [ 781 781 "alsa", 782 782 "core-foundation-sys", 783 783 "coreaudio-rs", 784 784 "dasp_sample", 785 - "jni 0.19.0", 785 + "jni", 786 786 "js-sys", 787 787 "libc", 788 788 "mach2", 789 789 "ndk", 790 790 "ndk-context", 791 791 "oboe", 792 - "once_cell", 793 - "parking_lot", 794 792 "wasm-bindgen", 795 793 "wasm-bindgen-futures", 796 794 "web-sys", ··· 871 869 872 870 [[package]] 873 871 name = "cxx" 874 - version = "1.0.118" 872 + version = "1.0.119" 875 873 source = "registry+https://github.com/rust-lang/crates.io-index" 876 - checksum = "2673ca5ae28334544ec2a6b18ebe666c42a2650abfb48abbd532ed409a44be2b" 874 + checksum = "635179be18797d7e10edb9cd06c859580237750c7351f39ed9b298bfc17544ad" 877 875 dependencies = [ 878 876 "cc", 879 877 "cxxbridge-flags", ··· 883 881 884 882 [[package]] 885 883 name = "cxx-gen" 886 - version = "0.7.118" 884 + version = "0.7.119" 887 885 source = "registry+https://github.com/rust-lang/crates.io-index" 888 - checksum = "a94f02b4e45d7d00ecabff7635833f71c786576067b3d4158c8bef65d0a8e38b" 886 + checksum = "5797d553b95704a6a49394acfdb93e2332b8aaa146713a1e8ebe362e86d9fa68" 889 887 dependencies = [ 890 888 "codespan-reporting", 891 889 "proc-macro2", ··· 895 893 896 894 [[package]] 897 895 name = "cxxbridge-flags" 898 - version = "1.0.118" 896 + version = "1.0.119" 899 897 source = "registry+https://github.com/rust-lang/crates.io-index" 900 - checksum = "886acf875df67811c11cd015506b3392b9e1820b1627af1a6f4e93ccdfc74d11" 898 + checksum = "a87ff7342ffaa54b7c61618e0ce2bbcf827eba6d55b923b83d82551acbbecfe5" 901 899 902 900 [[package]] 903 901 name = "cxxbridge-macro" 904 - version = "1.0.118" 902 + version = "1.0.119" 905 903 source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "1d151cc139c3080e07f448f93a1284577ab2283d2a44acd902c6fba9ec20b6de" 904 + checksum = "70b5b86cf65fa0626d85720619d80b288013477a91a0389fa8bc716bf4903ad1" 907 905 dependencies = [ 908 906 "proc-macro2", 909 907 "quote", ··· 1469 1467 1470 1468 [[package]] 1471 1469 name = "gdk4" 1472 - version = "0.8.0" 1470 + version = "0.8.1" 1473 1471 source = "registry+https://github.com/rust-lang/crates.io-index" 1474 - checksum = "6771942f85a2beaa220c64739395e4401b9fab4a52aba9b503fa1e6ed4d4d806" 1472 + checksum = "9100b25604183f2fd97f55ef087fae96ab4934d7215118a35303e422688e6e4b" 1475 1473 dependencies = [ 1476 1474 "cairo-rs", 1477 1475 "gdk-pixbuf", ··· 1484 1482 1485 1483 [[package]] 1486 1484 name = "gdk4-sys" 1487 - version = "0.8.0" 1485 + version = "0.8.1" 1488 1486 source = "registry+https://github.com/rust-lang/crates.io-index" 1489 - checksum = "1eb95854fab65072023a7814434f003db571d6e45c287c0b0c540c1c78bdf6ae" 1487 + checksum = "d0b76874c40bb8d1c7d03a7231e23ac75fa577a456cd53af32ec17ec8f121626" 1490 1488 dependencies = [ 1491 1489 "cairo-sys-rs", 1492 1490 "gdk-pixbuf-sys", ··· 1653 1651 checksum = "0f5897ca27a83e4cdc7b4666850bade0a2e73e17689aabafcc9acddad9d823b8" 1654 1652 dependencies = [ 1655 1653 "heck", 1656 - "proc-macro-crate 3.1.0", 1654 + "proc-macro-crate", 1657 1655 "proc-macro2", 1658 1656 "quote", 1659 1657 "syn 2.0.52", ··· 1711 1709 1712 1710 [[package]] 1713 1711 name = "gsk4" 1714 - version = "0.8.0" 1712 + version = "0.8.1" 1715 1713 source = "registry+https://github.com/rust-lang/crates.io-index" 1716 - checksum = "0e8ce8dee0fd87a11002214b1204ff18c9272fbd530408f0884a0f9b25dc31de" 1714 + checksum = "c65036fc8f99579e8cb37b12487969b707ab23ec8ab953682ff347cbd15d396e" 1717 1715 dependencies = [ 1718 1716 "cairo-rs", 1719 1717 "gdk4", ··· 1726 1724 1727 1725 [[package]] 1728 1726 name = "gsk4-sys" 1729 - version = "0.8.0" 1727 + version = "0.8.1" 1730 1728 source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "2660a652da5b662d43924df19ba40d73f015ed427329ef51d2b1360a4e0dc0e4" 1729 + checksum = "bd24c814379f9c3199dc53e52253ee8d0f657eae389ab282c330505289d24738" 1732 1730 dependencies = [ 1733 1731 "cairo-sys-rs", 1734 1732 "gdk4-sys", ··· 1742 1740 1743 1741 [[package]] 1744 1742 name = "gtk4" 1745 - version = "0.8.0" 1743 + version = "0.8.1" 1746 1744 source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "7d26ffa3ec6316ccaa1df62d3e7f5bae1637c0acbb43f250fabef38319f73c64" 1745 + checksum = "aa82753b8c26277e4af1446c70e35b19aad4fb794a7b143859e7eeb9a4025d83" 1748 1746 dependencies = [ 1749 1747 "cairo-rs", 1750 1748 "field-offset", ··· 1763 1761 1764 1762 [[package]] 1765 1763 name = "gtk4-macros" 1766 - version = "0.8.0" 1764 + version = "0.8.1" 1767 1765 source = "registry+https://github.com/rust-lang/crates.io-index" 1768 - checksum = "c8b86439e9896f6f3f47c3d8077c5c8205174078760afdabd9098a8e9e937d97" 1766 + checksum = "40300bf071d2fcd4c94eacc09e84ec6fe73129d2ceb635cf7e55b026b5443567" 1769 1767 dependencies = [ 1770 1768 "anyhow", 1771 - "proc-macro-crate 3.1.0", 1769 + "proc-macro-crate", 1772 1770 "proc-macro-error", 1773 1771 "proc-macro2", 1774 1772 "quote", ··· 1777 1775 1778 1776 [[package]] 1779 1777 name = "gtk4-sys" 1780 - version = "0.8.0" 1778 + version = "0.8.1" 1781 1779 source = "registry+https://github.com/rust-lang/crates.io-index" 1782 - checksum = "2abc0a6d356d59a3806021829ce6ed3e70bba3509b41a535fedcb09fae13fbc0" 1780 + checksum = "0db1b104138f087ccdc81d2c332de5dd049b89de3d384437cc1093b17cd2da18" 1783 1781 dependencies = [ 1784 1782 "cairo-sys-rs", 1785 1783 "gdk-pixbuf-sys", ··· 1886 1884 "iana-time-zone-haiku", 1887 1885 "js-sys", 1888 1886 "wasm-bindgen", 1889 - "windows-core", 1887 + "windows-core 0.52.0", 1890 1888 ] 1891 1889 1892 1890 [[package]] ··· 2113 2111 2114 2112 [[package]] 2115 2113 name = "jni" 2116 - version = "0.19.0" 2114 + version = "0.21.1" 2117 2115 source = "registry+https://github.com/rust-lang/crates.io-index" 2118 - checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 2116 + checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 2119 2117 dependencies = [ 2120 2118 "cesu8", 2119 + "cfg-if", 2121 2120 "combine", 2122 2121 "jni-sys", 2123 2122 "log", 2124 2123 "thiserror", 2125 2124 "walkdir", 2125 + "windows-sys 0.45.0", 2126 2126 ] 2127 2127 2128 2128 [[package]] 2129 - name = "jni" 2130 - version = "0.20.0" 2129 + name = "jni-sys" 2130 + version = "0.3.0" 2131 2131 source = "registry+https://github.com/rust-lang/crates.io-index" 2132 - checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 2133 - dependencies = [ 2134 - "cesu8", 2135 - "combine", 2136 - "jni-sys", 2137 - "log", 2138 - "thiserror", 2139 - "walkdir", 2140 - ] 2132 + checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2141 2133 2142 2134 [[package]] 2143 - name = "jni-sys" 2144 - version = "0.3.0" 2135 + name = "jobserver" 2136 + version = "0.1.28" 2145 2137 source = "registry+https://github.com/rust-lang/crates.io-index" 2146 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2138 + checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" 2139 + dependencies = [ 2140 + "libc", 2141 + ] 2147 2142 2148 2143 [[package]] 2149 2144 name = "jpeg-decoder" ··· 2156 2151 2157 2152 [[package]] 2158 2153 name = "js-sys" 2159 - version = "0.3.68" 2154 + version = "0.3.69" 2160 2155 source = "registry+https://github.com/rust-lang/crates.io-index" 2161 - checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 2156 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2162 2157 dependencies = [ 2163 2158 "wasm-bindgen", 2164 2159 ] ··· 2266 2261 2267 2262 [[package]] 2268 2263 name = "libloading" 2269 - version = "0.8.1" 2264 + version = "0.8.3" 2270 2265 source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2266 + checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 2272 2267 dependencies = [ 2273 2268 "cfg-if", 2274 - "windows-sys 0.48.0", 2269 + "windows-targets 0.52.4", 2275 2270 ] 2276 2271 2277 2272 [[package]] ··· 2497 2492 2498 2493 [[package]] 2499 2494 name = "mio" 2500 - version = "0.8.10" 2495 + version = "0.8.11" 2501 2496 source = "registry+https://github.com/rust-lang/crates.io-index" 2502 - checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 2497 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2503 2498 dependencies = [ 2504 2499 "libc", 2505 2500 "log", ··· 2546 2541 2547 2542 [[package]] 2548 2543 name = "ndk" 2549 - version = "0.7.0" 2544 + version = "0.8.0" 2550 2545 source = "registry+https://github.com/rust-lang/crates.io-index" 2551 - checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 2546 + checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 2552 2547 dependencies = [ 2553 - "bitflags 1.3.2", 2548 + "bitflags 2.4.2", 2554 2549 "jni-sys", 2550 + "log", 2555 2551 "ndk-sys", 2556 2552 "num_enum", 2557 - "raw-window-handle", 2558 2553 "thiserror", 2559 2554 ] 2560 2555 ··· 2566 2561 2567 2562 [[package]] 2568 2563 name = "ndk-sys" 2569 - version = "0.4.1+23.1.7779620" 2564 + version = "0.5.0+25.2.9519653" 2570 2565 source = "registry+https://github.com/rust-lang/crates.io-index" 2571 - checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 2566 + checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 2572 2567 dependencies = [ 2573 2568 "jni-sys", 2574 2569 ] ··· 2580 2575 checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2581 2576 2582 2577 [[package]] 2583 - name = "nix" 2584 - version = "0.24.3" 2585 - source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 2587 - dependencies = [ 2588 - "bitflags 1.3.2", 2589 - "cfg-if", 2590 - "libc", 2591 - ] 2592 - 2593 - [[package]] 2594 2578 name = "no-std-compat" 2595 2579 version = "0.4.1" 2596 2580 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2661 2645 2662 2646 [[package]] 2663 2647 name = "num-derive" 2664 - version = "0.3.3" 2665 - source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 2667 - dependencies = [ 2668 - "proc-macro2", 2669 - "quote", 2670 - "syn 1.0.109", 2671 - ] 2672 - 2673 - [[package]] 2674 - name = "num-derive" 2675 2648 version = "0.4.2" 2676 2649 source = "registry+https://github.com/rust-lang/crates.io-index" 2677 2650 checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" ··· 2723 2696 2724 2697 [[package]] 2725 2698 name = "num_enum" 2726 - version = "0.5.11" 2699 + version = "0.7.2" 2727 2700 source = "registry+https://github.com/rust-lang/crates.io-index" 2728 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2701 + checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 2729 2702 dependencies = [ 2730 2703 "num_enum_derive", 2731 2704 ] 2732 2705 2733 2706 [[package]] 2734 2707 name = "num_enum_derive" 2735 - version = "0.5.11" 2708 + version = "0.7.2" 2736 2709 source = "registry+https://github.com/rust-lang/crates.io-index" 2737 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2710 + checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 2738 2711 dependencies = [ 2739 - "proc-macro-crate 1.3.1", 2712 + "proc-macro-crate", 2740 2713 "proc-macro2", 2741 2714 "quote", 2742 - "syn 1.0.109", 2715 + "syn 2.0.52", 2743 2716 ] 2744 2717 2745 2718 [[package]] ··· 2797 2770 2798 2771 [[package]] 2799 2772 name = "oboe" 2800 - version = "0.5.0" 2773 + version = "0.6.1" 2801 2774 source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "8868cc237ee02e2d9618539a23a8d228b9bb3fc2e7a5b11eed3831de77c395d0" 2775 + checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb" 2803 2776 dependencies = [ 2804 - "jni 0.20.0", 2777 + "jni", 2805 2778 "ndk", 2806 2779 "ndk-context", 2807 - "num-derive 0.3.3", 2780 + "num-derive", 2808 2781 "num-traits", 2809 2782 "oboe-sys", 2810 2783 ] 2811 2784 2812 2785 [[package]] 2813 2786 name = "oboe-sys" 2814 - version = "0.5.0" 2787 + version = "0.6.1" 2815 2788 source = "registry+https://github.com/rust-lang/crates.io-index" 2816 - checksum = "7f44155e7fb718d3cfddcf70690b2b51ac4412f347cd9e4fbe511abe9cd7b5f2" 2789 + checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d" 2817 2790 dependencies = [ 2818 2791 "cc", 2819 2792 ] ··· 2826 2799 2827 2800 [[package]] 2828 2801 name = "open" 2829 - version = "5.1.0" 2802 + version = "5.1.2" 2830 2803 source = "registry+https://github.com/rust-lang/crates.io-index" 2831 - checksum = "1f2588edf622de56e7a1fed57bf203344f63c03f3d43472ba0434a92373c8f27" 2804 + checksum = "449f0ff855d85ddbf1edd5b646d65249ead3f5e422aaa86b7d2d0b049b103e32" 2832 2805 dependencies = [ 2833 2806 "is-wsl", 2834 2807 "libc", ··· 2961 2934 "downcast-rs", 2962 2935 "either", 2963 2936 "nalgebra", 2964 - "num-derive 0.4.2", 2937 + "num-derive", 2965 2938 "num-traits", 2966 2939 "rustc-hash", 2967 2940 "serde", ··· 3246 3219 dependencies = [ 3247 3220 "proc-macro2", 3248 3221 "syn 2.0.52", 3249 - ] 3250 - 3251 - [[package]] 3252 - name = "proc-macro-crate" 3253 - version = "1.3.1" 3254 - source = "registry+https://github.com/rust-lang/crates.io-index" 3255 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3256 - dependencies = [ 3257 - "once_cell", 3258 - "toml_edit 0.19.15", 3259 3222 ] 3260 3223 3261 3224 [[package]] ··· 3368 3331 ] 3369 3332 3370 3333 [[package]] 3371 - name = "raw-window-handle" 3372 - version = "0.5.2" 3373 - source = "registry+https://github.com/rust-lang/crates.io-index" 3374 - checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 3375 - 3376 - [[package]] 3377 3334 name = "rawpointer" 3378 3335 version = "0.2.1" 3379 3336 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3422 3379 dependencies = [ 3423 3380 "aho-corasick", 3424 3381 "memchr", 3425 - "regex-automata 0.4.5", 3382 + "regex-automata 0.4.6", 3426 3383 "regex-syntax 0.8.2", 3427 3384 ] 3428 3385 ··· 3437 3394 3438 3395 [[package]] 3439 3396 name = "regex-automata" 3440 - version = "0.4.5" 3397 + version = "0.4.6" 3441 3398 source = "registry+https://github.com/rust-lang/crates.io-index" 3442 - checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 3399 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 3443 3400 dependencies = [ 3444 3401 "aho-corasick", 3445 3402 "memchr", ··· 3469 3426 3470 3427 [[package]] 3471 3428 name = "rnote" 3472 - version = "0.10.0" 3429 + version = "0.10.1" 3473 3430 dependencies = [ 3474 3431 "anyhow", 3475 3432 "async-fs", ··· 3487 3444 "libadwaita", 3488 3445 "nalgebra", 3489 3446 "notify-debouncer-full", 3490 - "num-derive 0.4.2", 3447 + "num-derive", 3491 3448 "num-traits", 3492 3449 "numeric-sort", 3493 3450 "once_cell", ··· 3519 3476 3520 3477 [[package]] 3521 3478 name = "rnote-cli" 3522 - version = "0.10.0" 3479 + version = "0.10.1" 3523 3480 dependencies = [ 3524 3481 "anyhow", 3525 3482 "atty", ··· 3538 3495 3539 3496 [[package]] 3540 3497 name = "rnote-compose" 3541 - version = "0.10.0" 3498 + version = "0.10.1" 3542 3499 dependencies = [ 3543 3500 "anyhow", 3544 3501 "approx", ··· 3547 3504 "ink-stroke-modeler-rs", 3548 3505 "kurbo 0.10.4", 3549 3506 "nalgebra", 3550 - "num-derive 0.4.2", 3507 + "num-derive", 3551 3508 "num-traits", 3552 3509 "once_cell", 3553 3510 "palette", ··· 3567 3524 3568 3525 [[package]] 3569 3526 name = "rnote-engine" 3570 - version = "0.10.0" 3527 + version = "0.10.1" 3571 3528 dependencies = [ 3572 3529 "anyhow", 3573 3530 "approx", ··· 3587 3544 "kurbo 0.10.4", 3588 3545 "librsvg", 3589 3546 "nalgebra", 3590 - "num-derive 0.4.2", 3547 + "num-derive", 3591 3548 "num-traits", 3592 3549 "once_cell", 3593 3550 "parry2d-f64", ··· 4674 4631 4675 4632 [[package]] 4676 4633 name = "walkdir" 4677 - version = "2.4.0" 4634 + version = "2.5.0" 4678 4635 source = "registry+https://github.com/rust-lang/crates.io-index" 4679 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 4636 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4680 4637 dependencies = [ 4681 4638 "same-file", 4682 4639 "winapi-util", ··· 4690 4647 4691 4648 [[package]] 4692 4649 name = "wasm-bindgen" 4693 - version = "0.2.91" 4650 + version = "0.2.92" 4694 4651 source = "registry+https://github.com/rust-lang/crates.io-index" 4695 - checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 4652 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 4696 4653 dependencies = [ 4697 4654 "cfg-if", 4698 4655 "wasm-bindgen-macro", ··· 4700 4657 4701 4658 [[package]] 4702 4659 name = "wasm-bindgen-backend" 4703 - version = "0.2.91" 4660 + version = "0.2.92" 4704 4661 source = "registry+https://github.com/rust-lang/crates.io-index" 4705 - checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 4662 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 4706 4663 dependencies = [ 4707 4664 "bumpalo", 4708 4665 "log", ··· 4715 4672 4716 4673 [[package]] 4717 4674 name = "wasm-bindgen-futures" 4718 - version = "0.4.41" 4675 + version = "0.4.42" 4719 4676 source = "registry+https://github.com/rust-lang/crates.io-index" 4720 - checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 4677 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 4721 4678 dependencies = [ 4722 4679 "cfg-if", 4723 4680 "js-sys", ··· 4727 4684 4728 4685 [[package]] 4729 4686 name = "wasm-bindgen-macro" 4730 - version = "0.2.91" 4687 + version = "0.2.92" 4731 4688 source = "registry+https://github.com/rust-lang/crates.io-index" 4732 - checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 4689 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 4733 4690 dependencies = [ 4734 4691 "quote", 4735 4692 "wasm-bindgen-macro-support", ··· 4737 4694 4738 4695 [[package]] 4739 4696 name = "wasm-bindgen-macro-support" 4740 - version = "0.2.91" 4697 + version = "0.2.92" 4741 4698 source = "registry+https://github.com/rust-lang/crates.io-index" 4742 - checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 4699 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 4743 4700 dependencies = [ 4744 4701 "proc-macro2", 4745 4702 "quote", ··· 4750 4707 4751 4708 [[package]] 4752 4709 name = "wasm-bindgen-shared" 4753 - version = "0.2.91" 4710 + version = "0.2.92" 4754 4711 source = "registry+https://github.com/rust-lang/crates.io-index" 4755 - checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 4712 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 4756 4713 4757 4714 [[package]] 4758 4715 name = "web-sys" 4759 - version = "0.3.68" 4716 + version = "0.3.69" 4760 4717 source = "registry+https://github.com/rust-lang/crates.io-index" 4761 - checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 4718 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 4762 4719 dependencies = [ 4763 4720 "js-sys", 4764 4721 "wasm-bindgen", ··· 4825 4782 4826 4783 [[package]] 4827 4784 name = "windows" 4828 - version = "0.46.0" 4785 + version = "0.54.0" 4829 4786 source = "registry+https://github.com/rust-lang/crates.io-index" 4830 - checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25" 4787 + checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 4831 4788 dependencies = [ 4832 - "windows-targets 0.42.2", 4789 + "windows-core 0.54.0", 4790 + "windows-targets 0.52.4", 4833 4791 ] 4834 4792 4835 4793 [[package]] ··· 4839 4797 checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4840 4798 dependencies = [ 4841 4799 "windows-targets 0.52.4", 4800 + ] 4801 + 4802 + [[package]] 4803 + name = "windows-core" 4804 + version = "0.54.0" 4805 + source = "registry+https://github.com/rust-lang/crates.io-index" 4806 + checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 4807 + dependencies = [ 4808 + "windows-result", 4809 + "windows-targets 0.52.4", 4810 + ] 4811 + 4812 + [[package]] 4813 + name = "windows-result" 4814 + version = "0.1.0" 4815 + source = "registry+https://github.com/rust-lang/crates.io-index" 4816 + checksum = "cd19df78e5168dfb0aedc343d1d1b8d422ab2db6756d2dc3fef75035402a3f64" 4817 + dependencies = [ 4818 + "windows-targets 0.52.4", 4819 + ] 4820 + 4821 + [[package]] 4822 + name = "windows-sys" 4823 + version = "0.45.0" 4824 + source = "registry+https://github.com/rust-lang/crates.io-index" 4825 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4826 + dependencies = [ 4827 + "windows-targets 0.42.2", 4842 4828 ] 4843 4829 4844 4830 [[package]]
+2 -2
pkgs/applications/graphics/rnote/default.nix
··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "rnote"; 30 - version = "0.10.0"; 30 + version = "0.10.1"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "flxzt"; 34 34 repo = "rnote"; 35 35 rev = "v${version}"; 36 - hash = "sha256-PMg83eWcC21yNiRYdTS6/j9gerTctnDPHXIM4PWktrU="; 36 + hash = "sha256-J9M1d6C40EpqcSU5vYVfsCruhECkPJOdhzG2IX1tTQ0="; 37 37 }; 38 38 39 39 cargoDeps = rustPlatform.importCargoLock {
+2 -2
pkgs/applications/misc/girara/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "girara"; 21 - version = "0.4.2"; 21 + version = "0.4.3"; 22 22 23 23 outputs = [ "out" "dev" ]; 24 24 ··· 27 27 owner = "pwmt"; 28 28 repo = "girara"; 29 29 rev = version; 30 - hash = "sha256-/9pj6gB46sKIilImDGdJ8H7UHip/z5ckZWZnJLw/0YU="; 30 + hash = "sha256-/bJXdLXksTxUFC3w7zuBZY6Zh7tJxUJVbS87ENDQbDE="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/mkgmap/default.nix
··· 15 15 in 16 16 stdenv.mkDerivation rec { 17 17 pname = "mkgmap"; 18 - version = "4917"; 18 + version = "4918"; 19 19 20 20 src = fetchsvn { 21 21 url = "https://svn.mkgmap.org.uk/mkgmap/mkgmap/trunk"; 22 22 rev = version; 23 - sha256 = "sha256-7VCEbsvcT7iaJ3MZz4CthJEE9FSJCowAO7PJ9UqmzPA="; 23 + sha256 = "sha256-oQ/2KY6xA/kwAroHiPqcIJlcPsTTeStUu8WN/95ZUTw="; 24 24 }; 25 25 26 26 patches = [
+10 -6
pkgs/applications/misc/zathura/core/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, wrapGAppsHook, pkg-config 1 + { lib, stdenv, fetchFromGitLab, meson, ninja, wrapGAppsHook, pkg-config, gitUpdater 2 2 , appstream-glib, json-glib, desktop-file-utils, python3 3 3 , gtk, girara, gettext, libxml2, check 4 4 , sqlite, glib, texlive, libintl, libseccomp ··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "zathura"; 11 - version = "0.5.4"; 11 + version = "0.5.5"; 12 12 13 - src = fetchurl { 14 - url = "https://pwmt.org/projects/zathura/download/zathura-${finalAttrs.version}.tar.xz"; 15 - sha256 = "0ckgamf98sydq543arp865jg1afwzhpzcsbhv6zrch2dm5x7y0x3"; 13 + src = fetchFromGitLab { 14 + domain = "git.pwmt.org"; 15 + owner = "pwmt"; 16 + repo = "zathura"; 17 + rev = finalAttrs.version; 18 + hash = "sha256-mHEYqgBB55p8nykFtvYtP5bWexp/IqFbeLs7gZmXCeE="; 16 19 }; 17 20 18 21 outputs = [ "bin" "man" "dev" "out" ]; ··· 20 23 # Flag list: 21 24 # https://github.com/pwmt/zathura/blob/master/meson_options.txt 22 25 mesonFlags = [ 23 - "-Dsqlite=enabled" 24 26 "-Dmanpages=enabled" 25 27 "-Dconvert-icon=enabled" 26 28 "-Dsynctex=enabled" ··· 42 44 ++ lib.optional stdenv.isDarwin gtk-mac-integration; 43 45 44 46 doCheck = !stdenv.isDarwin; 47 + 48 + passthru.updateScript = gitUpdater { }; 45 49 46 50 meta = with lib; { 47 51 homepage = "https://git.pwmt.org/pwmt/zathura";
+5 -5
pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
··· 1 1 { lib 2 2 , buildNpmPackage 3 3 , copyDesktopItems 4 - , electron_26 4 + , electron_28 5 5 , buildGoModule 6 6 , esbuild 7 7 , fetchFromGitHub ··· 36 36 in 37 37 buildNpmPackage rec { 38 38 pname = "deltachat-desktop"; 39 - version = "1.42.2"; 39 + version = "1.44.0"; 40 40 41 41 src = fetchFromGitHub { 42 42 owner = "deltachat"; 43 43 repo = "deltachat-desktop"; 44 44 rev = "v${version}"; 45 - hash = "sha256-c8eK6YpxCP+Ga/VcqbbOUYuL1h4xspjglCZ1wiEAags="; 45 + hash = "sha256-EHMKk5V77b+wTf72K9FUclrUzmAm51l4uv3vhOrCloA="; 46 46 }; 47 47 48 - npmDepsHash = "sha256-7xMSsKESK9BqQrMvxceEhsETwDFue0/viCNULtzzwGo="; 48 + npmDepsHash = "sha256-nuhOrgHXKK01EirWYmGF17V+aYhZipwmhnAuNqwSQ/c="; 49 49 50 50 postPatch = '' 51 51 test \ ··· 103 103 $out/lib/node_modules/deltachat-desktop/html-dist/fonts 104 104 done 105 105 106 - makeWrapper ${electron_26}/bin/electron $out/bin/deltachat \ 106 + makeWrapper ${lib.getExe electron_28} $out/bin/deltachat \ 107 107 --set LD_PRELOAD ${sqlcipher}/lib/libsqlcipher${stdenv.hostPlatform.extensions.sharedLibrary} \ 108 108 --add-flags $out/lib/node_modules/deltachat-desktop 109 109
-53
pkgs/applications/networking/instant-messengers/matrixcli/default.nix
··· 1 - { lib, fetchFromGitHub 2 - , buildPythonApplication, buildPythonPackage 3 - , pygobject3, pytest-runner, requests, responses, pytest, python-olm 4 - , canonicaljson, olm 5 - }: 6 - let 7 - mainsrc = fetchFromGitHub { 8 - owner = "saadnpq"; 9 - repo = "matrixcli"; 10 - rev = "61ebde173ca2f77185c261c2b7f6db297ca89863"; 11 - sha256 = "sha256-eH/8b8IyfXqUo7odSECYF+84pXTsP+5S7pFR3oWXknU="; 12 - fetchSubmodules = true; 13 - }; 14 - 15 - sdk = buildPythonPackage rec { 16 - name = "${pname}-${version}"; 17 - pname = "matrix-python-sdk-matrixcli"; 18 - version = "0.0.2019-08-15"; 19 - 20 - src = "${mainsrc}/matrix-python-sdk/"; 21 - 22 - propagatedBuildInputs = [ 23 - requests responses olm python-olm canonicaljson 24 - pytest-runner pytest 25 - ]; 26 - 27 - doCheck = false; 28 - doInstallCheck = false; 29 - 30 - meta = { 31 - license = lib.licenses.asl20; 32 - description = "Fork of Matrix Python SDK"; 33 - platforms = lib.platforms.linux; 34 - }; 35 - }; 36 - 37 - in 38 - buildPythonApplication rec { 39 - pname = "matrixcli"; 40 - version = "0.0.2019-08-15"; 41 - 42 - src = mainsrc; 43 - 44 - propagatedBuildInputs = [pygobject3 sdk]; 45 - 46 - meta = { 47 - description = "CLI client for Matrix"; 48 - license = lib.licenses.gpl3; 49 - maintainers = [lib.maintainers.raskin]; 50 - platforms = lib.platforms.linux; 51 - homepage = "https://github.com/saadnpq/matrixcli"; 52 - }; 53 - }
+3 -3
pkgs/applications/video/kooha/default.nix pkgs/by-name/ko/kooha/package.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "kooha"; 25 - version = "2.2.3"; 25 + version = "2.2.4"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "SeaDve"; 29 29 repo = "Kooha"; 30 30 rev = "v${version}"; 31 - hash = "sha256-vLgBuP0DncBIb05R3484WozS+Nl+S7YBJUYek2CkJkQ="; 31 + hash = "sha256-D/+tsIfcXrlwwL6vSLRsiAp7wMVtIgzjNNd2uk+9bco="; 32 32 }; 33 33 34 34 cargoDeps = rustPlatform.fetchCargoTarball { 35 35 inherit src; 36 36 name = "${pname}-${version}"; 37 - hash = "sha256-NPh603/5yZDUdTegAzFvjRn5tuzyrcNzbbKQr6NxXso="; 37 + hash = "sha256-iDyhK2k2RB7CvtW+91isVzIFOl2/Loh+Bvneu4TGfn0="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+2 -2
pkgs/applications/window-managers/hyprwm/hyprshade/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "hyprshade"; 11 - version = "3.1.0"; 11 + version = "3.2.0"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "loqusion"; 16 16 repo = "hyprshade"; 17 17 rev = "refs/tags/${version}"; 18 - hash = "sha256-bH+QXvZ+Yaogcp/MYJopiAUvM/imNrSo+cotTzzdlV8="; 18 + hash = "sha256-bNgXnN4F9kzbi1vTuBqn8H7A8QMznr7QA65eNLumkAA="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -1
pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh
··· 52 52 fi 53 53 54 54 used_source="$(jq -r '.source' "$version"/.nupkg.metadata)" 55 + found=false 55 56 56 57 if [[ -d "$used_source" ]]; then 57 58 continue ··· 80 81 fi 81 82 done 82 83 83 - if ! ${found-false}; then 84 + if [[ $found = false ]]; then 84 85 echo "couldn't find $package $version" >&2 85 86 exit 1 86 87 fi
+6
pkgs/by-name/in/incus/ui.nix
··· 22 22 echo "applying patch $p" 23 23 git apply -p1 "$p" 24 24 done 25 + sed -i "s/LXD/Incus/g" src/*/*.ts* src/*/*/*.ts* src/*/*/*/*.ts* 26 + sed -i "s/devlxd/guestapi/g" src/*/*.ts* src/*/*/*.ts* src/*/*/*/*.ts* 27 + sed -i "s/dev\/lxd/dev\/incus/g" src/*/*.ts* src/*/*/*.ts* src/*/*/*/*.ts* 28 + sed -i "s/lxd_/incus_/g" src/*/*.ts* src/*/*/*.ts* src/*/*/*/*.ts* 29 + sed -i "s/\"lxd\"/\"incus\"/g" src/*/*.ts* src/*/*/*.ts* src/*/*/*/*.ts* 30 + 25 31 ''; 26 32 })
+3 -3
pkgs/by-name/sp/spotube/package.nix
··· 17 17 18 18 let 19 19 pname = "spotube"; 20 - version = "3.4.1"; 20 + version = "3.5.0"; 21 21 22 22 meta = { 23 23 description = "An open source, cross-platform Spotify client compatible across multiple platforms"; ··· 46 46 47 47 src = fetchArtifact { 48 48 filename = "Spotube-macos-universal.dmg"; 49 - hash = "sha256-VobLCxsmE5kGIlDDa3v5xIHkw2x2YV14fgHHcDb+bLo="; 49 + hash = "sha256-omXhiH/hVxFef03GqmpYf65SfdLjLyeMyuAWuvSpYiI="; 50 50 }; 51 51 52 52 sourceRoot = "."; ··· 67 67 68 68 src = fetchArtifact { 69 69 filename = "Spotube-linux-x86_64.deb"; 70 - hash = "sha256-NEGhzNz0E8jK2NPmigzoPAvYcU7zN9YHikuXHpzWfx0="; 70 + hash = "sha256-Rea4GvxdkUfZF8lCBzI9UrD9Iz9D5vq9oxYBn5bahZE="; 71 71 }; 72 72 73 73 nativeBuildInputs = [
+2 -2
pkgs/by-name/sr/srm-cuarzo/package.nix
··· 14 14 }: 15 15 stdenv.mkDerivation (self: { 16 16 pname = "srm-cuarzo"; 17 - version = "0.5.3-1"; 17 + version = "0.5.4-1"; 18 18 rev = "v${self.version}"; 19 - hash = "sha256-KRp+rTpiUbOmUPE9vASwTF+c8TDveFnAEqptcGO5luc="; 19 + hash = "sha256-nmYMhX3XtyIyv6Kxi7s+ahkOHfnuLcjpwSU58HcPNeU="; 20 20 21 21 src = fetchFromGitHub { 22 22 inherit (self) rev hash;
+18
pkgs/by-name/yt/ytdownloader/config-dir.patch
··· 1 + --- a/main.js 2 + +++ b/main.js 3 + @@ -13,6 +13,15 @@ 4 + const fs = require("fs"); 5 + const path = require("path"); 6 + autoUpdater.autoDownload = false; 7 + + 8 + +// Set the config directory to XDG_CONFIG_HOME/ytdownloader 9 + +const xdgConfigHome = process.env.XDG_CONFIG_HOME; 10 + +let configDir = app.getPath('home') + "/.config/ytdownloader"; 11 + +if (xdgConfigHome) { 12 + + configDir = xdgConfigHome + "/ytdownloader"; 13 + +} 14 + +app.setPath ('userData', configDir); 15 + + 16 + /**@type {BrowserWindow} */ 17 + let win = null; 18 + let secondaryWindow = null;
+7 -3
pkgs/by-name/yt/ytdownloader/package.nix
··· 25 25 buildInputs = [ ffmpeg yt-dlp ]; 26 26 27 27 desktopItem = makeDesktopItem { 28 - name = "YTDownloader"; 28 + name = "ytDownloader"; 29 29 exec = "ytdownloader %U"; 30 30 icon = "ytdownloader"; 31 - desktopName = "YT Downloader"; 31 + desktopName = "ytDownloader"; 32 32 comment = "A modern GUI video and audio downloader"; 33 33 categories = [ "Utility" ]; 34 - startupWMClass = "YTDownloader"; 34 + startupWMClass = "ytDownloader"; 35 35 }; 36 36 37 37 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 38 38 39 39 dontNpmBuild = true; 40 + 41 + # Patch config dir to ~/.config/ytdownloader 42 + # Otherwise it stores config in ~/.config/Electron 43 + patches = [ ./config-dir.patch ]; 40 44 41 45 # Replace hardcoded ffmpeg and ytdlp paths 42 46 # Also stop it from downloading ytdlp
+3 -3
pkgs/data/themes/alacritty-theme/default.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation (self: { 8 8 name = "alacritty-theme"; 9 - version = "unstable-2024-02-28"; 9 + version = "unstable-2024-03-06"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "alacritty"; 13 13 repo = "alacritty-theme"; 14 - rev = "4aefb7c079721474078b28bbf9f582b592749ca6"; 15 - hash = "sha256-+35S6eQkxLBuS/fDKD5bglQDIuz2xeEc5KSaK6k7IjI="; 14 + rev = "cb786242b6f5e00a57e2f541e7bf1115f3950650"; 15 + hash = "sha256-fZJ0F4zJy6HOwWtZGm5yN4WfeFNJnW/UJhoQSZ0Bpxk="; 16 16 }; 17 17 18 18 dontConfigure = true;
+2 -2
pkgs/data/themes/where-is-my-sddm-theme/default.nix
··· 23 23 24 24 stdenvNoCC.mkDerivation rec { 25 25 pname = "where-is-my-sddm-theme"; 26 - version = "1.6.0"; 26 + version = "1.6.1"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "stepanzubkov"; 30 30 repo = pname; 31 31 rev = "v${version}"; 32 - hash = "sha256-EK0bB2dRXNtDKFiyf+nMoDq9XK2f3PFwoNbQDZamB3Y="; 32 + hash = "sha256-H0CVTnznODJ27m5C7gT68RVcXFXS2mi0daI6vCi5KmQ="; 33 33 }; 34 34 35 35 propagatedUserEnvPkgs = [ qtgraphicaleffects ];
+137 -130
pkgs/development/compilers/dotnet/update.sh
··· 36 36 37 37 platform_sources () { 38 38 local release_files="$1" 39 - local platforms=( \ 40 - "x86_64-linux linux-x64" \ 41 - "aarch64-linux linux-arm64" \ 42 - "x86_64-darwin osx-x64" \ 43 - "aarch64-darwin osx-arm64" \ 39 + local platforms=( 40 + "x86_64-linux linux-x64" 41 + "aarch64-linux linux-arm64" 42 + "x86_64-darwin osx-x64" 43 + "aarch64-darwin osx-arm64" 44 44 ) 45 45 46 46 echo "srcs = {" ··· 85 85 cur_version=$1 86 86 max_version=$2 87 87 result=$(nix-instantiate -I ../../../../. \ 88 - --eval -E "(import <nixpkgs> {}).lib.versionOlder \"$cur_version\" \"$max_version\"") 88 + --eval -E "(import ../../../../. {}).lib.versionOlder \"$cur_version\" \"$max_version\"") 89 89 if [[ "$result" == "true" ]]; then 90 90 return 0 91 91 else ··· 117 117 # Due to this, make sure to check if new SDK versions introduce any new packages. 118 118 # This should not happend in minor or bugfix updates, but probably happens 119 119 # with every new major .NET release. 120 - local pkgs=( \ 121 - "Microsoft.AspNetCore.App.Runtime.linux-arm" \ 122 - "Microsoft.AspNetCore.App.Runtime.linux-arm64" \ 123 - "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64" \ 124 - "Microsoft.AspNetCore.App.Runtime.linux-musl-x64" \ 125 - "Microsoft.AspNetCore.App.Runtime.linux-x64" \ 126 - "Microsoft.AspNetCore.App.Runtime.osx-x64" \ 127 - "Microsoft.AspNetCore.App.Runtime.win-arm64" \ 128 - "Microsoft.AspNetCore.App.Runtime.win-x64" \ 129 - "Microsoft.AspNetCore.App.Runtime.win-x86" \ 120 + local pkgs=( 121 + "Microsoft.AspNetCore.App.Runtime.linux-arm" 122 + "Microsoft.AspNetCore.App.Runtime.linux-arm64" 123 + "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64" 124 + "Microsoft.AspNetCore.App.Runtime.linux-musl-x64" 125 + "Microsoft.AspNetCore.App.Runtime.linux-x64" 126 + "Microsoft.AspNetCore.App.Runtime.osx-x64" 127 + "Microsoft.AspNetCore.App.Runtime.win-arm64" 128 + "Microsoft.AspNetCore.App.Runtime.win-x64" 129 + "Microsoft.AspNetCore.App.Runtime.win-x86" 130 130 ) 131 131 132 132 # These packages are currently broken on .NET 8 133 133 if version_older "$version" "8"; then 134 - pkgs+=( \ 135 - "Microsoft.AspNetCore.App.Runtime.win-arm" \ 134 + pkgs+=( 135 + "Microsoft.AspNetCore.App.Runtime.win-arm" 136 136 ) 137 137 fi 138 138 139 139 # Packages that only apply to .NET 6 and up 140 140 if ! version_older "$version" "6"; then 141 - pkgs+=( \ 142 - "Microsoft.AspNetCore.App.Ref" \ 143 - "Microsoft.AspNetCore.App.Runtime.linux-musl-arm" \ 144 - "Microsoft.AspNetCore.App.Runtime.osx-arm64" \ 141 + pkgs+=( 142 + "Microsoft.AspNetCore.App.Ref" 143 + "Microsoft.AspNetCore.App.Runtime.linux-musl-arm" 144 + "Microsoft.AspNetCore.App.Runtime.osx-arm64" 145 145 ) 146 146 fi 147 147 ··· 173 173 # Due to this, make sure to check if new SDK versions introduce any new packages. 174 174 # This should not happend in minor or bugfix updates, but probably happens 175 175 # with every new major .NET release. 176 - local pkgs=( \ 177 - "Microsoft.NETCore.App.Host.linux-arm" \ 178 - "Microsoft.NETCore.App.Host.linux-arm64" \ 179 - "Microsoft.NETCore.App.Host.linux-musl-arm64" \ 180 - "Microsoft.NETCore.App.Host.linux-musl-x64" \ 181 - "Microsoft.NETCore.App.Host.linux-x64" \ 182 - "Microsoft.NETCore.App.Host.osx-x64" \ 183 - "Microsoft.NETCore.App.Host.win-arm64" \ 184 - "Microsoft.NETCore.App.Host.win-x64" \ 185 - "Microsoft.NETCore.App.Host.win-x86" \ 186 - "Microsoft.NETCore.App.Runtime.linux-arm" \ 187 - "Microsoft.NETCore.App.Runtime.linux-arm64" \ 188 - "Microsoft.NETCore.App.Runtime.linux-musl-arm64" \ 189 - "Microsoft.NETCore.App.Runtime.linux-musl-x64" \ 190 - "Microsoft.NETCore.App.Runtime.linux-x64" \ 191 - "Microsoft.NETCore.App.Runtime.osx-x64" \ 192 - "Microsoft.NETCore.App.Runtime.win-arm64" \ 193 - "Microsoft.NETCore.App.Runtime.win-x64" \ 194 - "Microsoft.NETCore.App.Runtime.win-x86" \ 195 - "Microsoft.NETCore.DotNetAppHost" \ 196 - "Microsoft.NETCore.DotNetHost" \ 197 - "Microsoft.NETCore.DotNetHostPolicy" \ 198 - "Microsoft.NETCore.DotNetHostResolver" \ 199 - "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost" \ 200 - "runtime.linux-arm64.Microsoft.NETCore.DotNetHost" \ 201 - "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy" \ 202 - "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver" \ 203 - "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost" \ 204 - "runtime.linux-arm.Microsoft.NETCore.DotNetHost" \ 205 - "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy" \ 206 - "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver" \ 207 - "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost" \ 208 - "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost" \ 209 - "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy" \ 210 - "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver" \ 211 - "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost" \ 212 - "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost" \ 213 - "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy" \ 214 - "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver" \ 215 - "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost" \ 216 - "runtime.linux-x64.Microsoft.NETCore.DotNetHost" \ 217 - "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy" \ 218 - "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver" \ 219 - "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost" \ 220 - "runtime.osx-x64.Microsoft.NETCore.DotNetHost" \ 221 - "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy" \ 222 - "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver" \ 223 - "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost" \ 224 - "runtime.win-arm64.Microsoft.NETCore.DotNetHost" \ 225 - "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy" \ 226 - "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver" \ 227 - "runtime.win-x64.Microsoft.NETCore.DotNetAppHost" \ 228 - "runtime.win-x64.Microsoft.NETCore.DotNetHost" \ 229 - "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy" \ 230 - "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver" \ 231 - "runtime.win-x86.Microsoft.NETCore.DotNetAppHost" \ 232 - "runtime.win-x86.Microsoft.NETCore.DotNetHost" \ 233 - "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy" \ 234 - "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver" \ 235 - "Microsoft.NETCore.App.Host.linux-musl-arm" \ 236 - "Microsoft.NETCore.App.Host.osx-arm64" \ 237 - "Microsoft.NETCore.App.Runtime.linux-musl-arm" \ 238 - "Microsoft.NETCore.App.Runtime.osx-arm64" \ 239 - "Microsoft.NETCore.App.Ref" \ 240 - "Microsoft.NETCore.App.Runtime.Mono.linux-arm" \ 241 - "Microsoft.NETCore.App.Runtime.Mono.linux-arm64" \ 242 - "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64" \ 243 - "Microsoft.NETCore.App.Runtime.Mono.linux-x64" \ 244 - "Microsoft.NETCore.App.Runtime.Mono.osx-arm64" \ 245 - "Microsoft.NETCore.App.Runtime.Mono.osx-x64" \ 246 - "Microsoft.NETCore.App.Runtime.Mono.win-x64" \ 247 - "Microsoft.NETCore.App.Runtime.Mono.win-x86" \ 248 - "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost" \ 249 - "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost" \ 250 - "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy" \ 251 - "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver" \ 252 - "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost" \ 253 - "runtime.osx-arm64.Microsoft.NETCore.DotNetHost" \ 254 - "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy" \ 255 - "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver" \ 256 - "Microsoft.NETCore.App.Crossgen2.linux-musl-arm" \ 257 - "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64" \ 258 - "Microsoft.NETCore.App.Crossgen2.linux-musl-x64" \ 259 - "Microsoft.NETCore.App.Crossgen2.linux-arm" \ 260 - "Microsoft.NETCore.App.Crossgen2.linux-arm64" \ 261 - "Microsoft.NETCore.App.Crossgen2.linux-x64" \ 262 - "Microsoft.NETCore.App.Crossgen2.osx-x64" \ 176 + local pkgs=( 177 + "Microsoft.NETCore.App.Host.linux-arm" 178 + "Microsoft.NETCore.App.Host.linux-arm64" 179 + "Microsoft.NETCore.App.Host.linux-musl-arm64" 180 + "Microsoft.NETCore.App.Host.linux-musl-x64" 181 + "Microsoft.NETCore.App.Host.linux-x64" 182 + "Microsoft.NETCore.App.Host.osx-x64" 183 + "Microsoft.NETCore.App.Host.win-arm64" 184 + "Microsoft.NETCore.App.Host.win-x64" 185 + "Microsoft.NETCore.App.Host.win-x86" 186 + "Microsoft.NETCore.App.Runtime.linux-arm" 187 + "Microsoft.NETCore.App.Runtime.linux-arm64" 188 + "Microsoft.NETCore.App.Runtime.linux-musl-arm64" 189 + "Microsoft.NETCore.App.Runtime.linux-musl-x64" 190 + "Microsoft.NETCore.App.Runtime.linux-x64" 191 + "Microsoft.NETCore.App.Runtime.osx-x64" 192 + "Microsoft.NETCore.App.Runtime.win-arm64" 193 + "Microsoft.NETCore.App.Runtime.win-x64" 194 + "Microsoft.NETCore.App.Runtime.win-x86" 195 + "Microsoft.NETCore.DotNetAppHost" 196 + "Microsoft.NETCore.DotNetHost" 197 + "Microsoft.NETCore.DotNetHostPolicy" 198 + "Microsoft.NETCore.DotNetHostResolver" 199 + "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost" 200 + "runtime.linux-arm64.Microsoft.NETCore.DotNetHost" 201 + "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy" 202 + "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver" 203 + "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost" 204 + "runtime.linux-arm.Microsoft.NETCore.DotNetHost" 205 + "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy" 206 + "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver" 207 + "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost" 208 + "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost" 209 + "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy" 210 + "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver" 211 + "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost" 212 + "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost" 213 + "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy" 214 + "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver" 215 + "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost" 216 + "runtime.linux-x64.Microsoft.NETCore.DotNetHost" 217 + "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy" 218 + "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver" 219 + "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost" 220 + "runtime.osx-x64.Microsoft.NETCore.DotNetHost" 221 + "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy" 222 + "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver" 223 + "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost" 224 + "runtime.win-arm64.Microsoft.NETCore.DotNetHost" 225 + "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy" 226 + "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver" 227 + "runtime.win-x64.Microsoft.NETCore.DotNetAppHost" 228 + "runtime.win-x64.Microsoft.NETCore.DotNetHost" 229 + "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy" 230 + "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver" 231 + "runtime.win-x86.Microsoft.NETCore.DotNetAppHost" 232 + "runtime.win-x86.Microsoft.NETCore.DotNetHost" 233 + "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy" 234 + "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver" 235 + "Microsoft.NETCore.App.Host.linux-musl-arm" 236 + "Microsoft.NETCore.App.Host.osx-arm64" 237 + "Microsoft.NETCore.App.Runtime.linux-musl-arm" 238 + "Microsoft.NETCore.App.Runtime.osx-arm64" 239 + "Microsoft.NETCore.App.Ref" 240 + "Microsoft.NETCore.App.Runtime.Mono.linux-arm" 241 + "Microsoft.NETCore.App.Runtime.Mono.linux-arm64" 242 + "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64" 243 + "Microsoft.NETCore.App.Runtime.Mono.linux-x64" 244 + "Microsoft.NETCore.App.Runtime.Mono.osx-arm64" 245 + "Microsoft.NETCore.App.Runtime.Mono.osx-x64" 246 + "Microsoft.NETCore.App.Runtime.Mono.win-x64" 247 + "Microsoft.NETCore.App.Runtime.Mono.win-x86" 248 + "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost" 249 + "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost" 250 + "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy" 251 + "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver" 252 + "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost" 253 + "runtime.osx-arm64.Microsoft.NETCore.DotNetHost" 254 + "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy" 255 + "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver" 256 + "Microsoft.NETCore.App.Crossgen2.linux-musl-arm" 257 + "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64" 258 + "Microsoft.NETCore.App.Crossgen2.linux-musl-x64" 259 + "Microsoft.NETCore.App.Crossgen2.linux-arm" 260 + "Microsoft.NETCore.App.Crossgen2.linux-arm64" 261 + "Microsoft.NETCore.App.Crossgen2.linux-x64" 262 + "Microsoft.NETCore.App.Crossgen2.osx-x64" 263 263 "Microsoft.NETCore.App.Crossgen2.osx-arm64" 264 264 ) 265 265 ··· 274 274 275 275 # These packages were removed on .NET 8 276 276 if version_older "$version" "8"; then 277 - pkgs+=( \ 278 - "Microsoft.NETCore.App.Host.win-arm" \ 279 - "Microsoft.NETCore.App.Runtime.win-arm" \ 280 - "runtime.win-arm.Microsoft.NETCore.DotNetAppHost" \ 281 - "runtime.win-arm.Microsoft.NETCore.DotNetHost" \ 282 - "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy" \ 283 - "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver" \ 284 - "Microsoft.NETCore.App.Composite" \ 277 + pkgs+=( 278 + "Microsoft.NETCore.App.Host.win-arm" 279 + "Microsoft.NETCore.App.Runtime.win-arm" 280 + "runtime.win-arm.Microsoft.NETCore.DotNetAppHost" 281 + "runtime.win-arm.Microsoft.NETCore.DotNetHost" 282 + "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy" 283 + "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver" 284 + "Microsoft.NETCore.App.Composite" 285 285 ) 286 286 fi 287 287 288 288 # Packages that only apply to .NET 7 and up 289 289 if ! version_older "$version" "7"; then 290 - pkgs+=( \ 291 - "runtime.linux-arm64.Microsoft.DotNet.ILCompiler" \ 292 - "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler" \ 293 - "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler" \ 294 - "runtime.linux-x64.Microsoft.DotNet.ILCompiler" \ 295 - "runtime.osx-x64.Microsoft.DotNet.ILCompiler" \ 296 - "runtime.win-arm64.Microsoft.DotNet.ILCompiler" \ 297 - "runtime.win-x64.Microsoft.DotNet.ILCompiler" \ 290 + pkgs+=( 291 + "runtime.linux-arm64.Microsoft.DotNet.ILCompiler" 292 + "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler" 293 + "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler" 294 + "runtime.linux-x64.Microsoft.DotNet.ILCompiler" 295 + "runtime.osx-x64.Microsoft.DotNet.ILCompiler" 296 + "runtime.win-arm64.Microsoft.DotNet.ILCompiler" 297 + "runtime.win-x64.Microsoft.DotNet.ILCompiler" 298 298 ) 299 299 fi 300 300 ··· 368 368 channel_version=$(jq -r '."channel-version"' <<< "$content") 369 369 support_phase=$(jq -r '."support-phase"' <<< "$content") 370 370 371 + aspnetcore_sources="$(platform_sources "$aspnetcore_files")" 372 + runtime_sources="$(platform_sources "$runtime_files")" 373 + sdk_sources="$(platform_sources "$sdk_files")" 374 + 375 + aspnetcore_packages="$(aspnetcore_packages "${aspnetcore_version}")" 376 + sdk_packages="$(sdk_packages "${runtime_version}")" 377 + 371 378 result=$(mktemp) 372 379 trap "rm -f $result" TERM INT EXIT 373 380 ··· 377 384 { 378 385 aspnetcore_$major_minor_underscore = buildAspNetCore { 379 386 version = \"${aspnetcore_version}\"; 380 - $(platform_sources "$aspnetcore_files") 387 + $aspnetcore_sources 381 388 }; 382 389 383 390 runtime_$major_minor_underscore = buildNetRuntime { 384 391 version = \"${runtime_version}\"; 385 - $(platform_sources "$runtime_files") 392 + $runtime_sources 386 393 }; 387 394 388 395 sdk_$major_minor_underscore = buildNetSdk { 389 396 version = \"${sdk_version}\"; 390 - $(platform_sources "$sdk_files") 397 + $sdk_sources 391 398 packages = { fetchNuGet }: [ 392 - $(aspnetcore_packages "${aspnetcore_version}") 393 - $(sdk_packages "${runtime_version}") 399 + $aspnetcore_packages 400 + $sdk_packages 394 401 ]; 395 402 }; 396 403 }" > "${result}"
+771 -537
pkgs/development/libraries/libdeltachat/Cargo.lock
··· 32 32 33 33 [[package]] 34 34 name = "aes" 35 - version = "0.8.3" 35 + version = "0.8.4" 36 36 source = "registry+https://github.com/rust-lang/crates.io-index" 37 - checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 37 + checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 38 38 dependencies = [ 39 39 "cfg-if", 40 40 "cipher", ··· 43 43 44 44 [[package]] 45 45 name = "ahash" 46 - version = "0.8.6" 46 + version = "0.8.11" 47 47 source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 48 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 49 49 dependencies = [ 50 50 "cfg-if", 51 51 "once_cell", ··· 115 115 116 116 [[package]] 117 117 name = "anstyle" 118 - version = "1.0.4" 118 + version = "1.0.6" 119 119 source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 120 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 121 121 122 122 [[package]] 123 123 name = "anyhow" 124 - version = "1.0.75" 124 + version = "1.0.80" 125 125 source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 126 + checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" 127 127 dependencies = [ 128 128 "backtrace", 129 129 ] ··· 159 159 "num-traits", 160 160 "rusticata-macros", 161 161 "thiserror", 162 - "time 0.3.30", 162 + "time 0.3.34", 163 163 ] 164 164 165 165 [[package]] ··· 198 198 199 199 [[package]] 200 200 name = "async-channel" 201 - version = "2.1.1" 201 + version = "2.2.0" 202 202 source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 203 + checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" 204 204 dependencies = [ 205 205 "concurrent-queue", 206 - "event-listener 4.0.0", 206 + "event-listener 5.2.0", 207 207 "event-listener-strategy", 208 208 "futures-core", 209 209 "pin-project-lite", ··· 224 224 225 225 [[package]] 226 226 name = "async-imap" 227 - version = "0.9.4" 227 + version = "0.9.7" 228 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "d736a74edf6c327b53dd9c932eae834253470ac5f0c55770e7e133bcbf986362" 229 + checksum = "98892ebee4c05fc66757e600a7466f0d9bfcde338f645d64add323789f26cb36" 230 230 dependencies = [ 231 - "async-channel 2.1.1", 232 - "base64 0.21.5", 231 + "async-channel 2.2.0", 232 + "base64 0.21.7", 233 233 "bytes", 234 234 "chrono", 235 235 "futures", ··· 284 284 285 285 [[package]] 286 286 name = "async-trait" 287 - version = "0.1.74" 287 + version = "0.1.77" 288 288 source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 289 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 290 290 dependencies = [ 291 291 "proc-macro2", 292 292 "quote", 293 - "syn 2.0.39", 293 + "syn 2.0.52", 294 294 ] 295 295 296 296 [[package]] ··· 315 315 316 316 [[package]] 317 317 name = "axum" 318 - version = "0.6.20" 318 + version = "0.7.4" 319 319 source = "registry+https://github.com/rust-lang/crates.io-index" 320 - checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 320 + checksum = "1236b4b292f6c4d6dc34604bb5120d85c3fe1d1aa596bd5cc52ca054d13e7b9e" 321 321 dependencies = [ 322 322 "async-trait", 323 323 "axum-core", 324 - "base64 0.21.5", 325 - "bitflags 1.3.2", 324 + "base64 0.21.7", 326 325 "bytes", 327 326 "futures-util", 328 - "http", 329 - "http-body", 330 - "hyper", 327 + "http 1.1.0", 328 + "http-body 1.0.0", 329 + "http-body-util", 330 + "hyper 1.2.0", 331 + "hyper-util", 331 332 "itoa", 332 333 "matchit", 333 334 "memchr", ··· 346 347 "tower", 347 348 "tower-layer", 348 349 "tower-service", 350 + "tracing", 349 351 ] 350 352 351 353 [[package]] 352 354 name = "axum-core" 353 - version = "0.3.4" 355 + version = "0.4.3" 354 356 source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 357 + checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 356 358 dependencies = [ 357 359 "async-trait", 358 360 "bytes", 359 361 "futures-util", 360 - "http", 361 - "http-body", 362 + "http 1.1.0", 363 + "http-body 1.0.0", 364 + "http-body-util", 362 365 "mime", 366 + "pin-project-lite", 363 367 "rustversion", 368 + "sync_wrapper", 364 369 "tower-layer", 365 370 "tower-service", 371 + "tracing", 366 372 ] 367 373 368 374 [[package]] ··· 412 418 413 419 [[package]] 414 420 name = "base64" 415 - version = "0.21.5" 421 + version = "0.21.7" 416 422 source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 423 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 418 424 419 425 [[package]] 420 426 name = "base64ct" ··· 445 451 446 452 [[package]] 447 453 name = "bitflags" 448 - version = "2.4.1" 454 + version = "2.4.2" 449 455 source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 456 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 451 457 452 458 [[package]] 453 459 name = "blake3" ··· 522 528 523 529 [[package]] 524 530 name = "bstr" 525 - version = "1.8.0" 531 + version = "1.9.1" 526 532 source = "registry+https://github.com/rust-lang/crates.io-index" 527 - checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 533 + checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 528 534 dependencies = [ 529 535 "memchr", 530 536 "serde", ··· 532 538 533 539 [[package]] 534 540 name = "buffer-redux" 535 - version = "1.0.0" 541 + version = "1.0.1" 536 542 source = "registry+https://github.com/rust-lang/crates.io-index" 537 - checksum = "d2886ea01509598caac116942abd33ab5a88fa32acdf7e4abfa0fc489ca520c9" 543 + checksum = "4c9f8ddd22e0a12391d1e7ada69ec3b0da1914f1cec39c5cf977143c5b2854f5" 538 544 dependencies = [ 539 545 "memchr", 540 - "safemem", 541 546 ] 542 547 543 548 [[package]] 544 549 name = "bumpalo" 545 - version = "3.14.0" 550 + version = "3.15.3" 546 551 source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 552 + checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b" 548 553 549 554 [[package]] 550 555 name = "bytemuck" 551 - version = "1.14.0" 556 + version = "1.14.3" 552 557 source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 558 + checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f" 554 559 555 560 [[package]] 556 561 name = "byteorder" ··· 585 590 586 591 [[package]] 587 592 name = "cargo-platform" 588 - version = "0.1.5" 593 + version = "0.1.7" 589 594 source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "e34637b3140142bdf929fb439e8aa4ebad7651ebf7b1080b3930aa16ac1459ff" 595 + checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" 591 596 dependencies = [ 592 597 "serde", 593 598 ] ··· 622 627 623 628 [[package]] 624 629 name = "cc" 625 - version = "1.0.83" 630 + version = "1.0.89" 626 631 source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 628 - dependencies = [ 629 - "libc", 630 - ] 632 + checksum = "a0ba8f7aaa012f30d5b2861462f6708eccd49c3c39863fe083a308035f63d723" 631 633 632 634 [[package]] 633 635 name = "cfb-mode" ··· 656 658 657 659 [[package]] 658 660 name = "chrono" 659 - version = "0.4.31" 661 + version = "0.4.34" 660 662 source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 663 + checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" 662 664 dependencies = [ 663 665 "android-tzdata", 664 666 "iana-time-zone", 665 667 "js-sys", 666 668 "num-traits", 667 669 "wasm-bindgen", 668 - "windows-targets", 670 + "windows-targets 0.52.4", 669 671 ] 670 672 671 673 [[package]] 672 674 name = "ciborium" 673 - version = "0.2.1" 675 + version = "0.2.2" 674 676 source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 677 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 676 678 dependencies = [ 677 679 "ciborium-io", 678 680 "ciborium-ll", ··· 681 683 682 684 [[package]] 683 685 name = "ciborium-io" 684 - version = "0.2.1" 686 + version = "0.2.2" 685 687 source = "registry+https://github.com/rust-lang/crates.io-index" 686 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 688 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 687 689 688 690 [[package]] 689 691 name = "ciborium-ll" 690 - version = "0.2.1" 692 + version = "0.2.2" 691 693 source = "registry+https://github.com/rust-lang/crates.io-index" 692 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 694 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 693 695 dependencies = [ 694 696 "ciborium-io", 695 697 "half", ··· 707 709 708 710 [[package]] 709 711 name = "clap" 710 - version = "4.4.10" 712 + version = "4.4.18" 711 713 source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "41fffed7514f420abec6d183b1d3acfd9099c79c3a10a06ade4f8203f1411272" 714 + checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 713 715 dependencies = [ 714 716 "clap_builder", 715 717 ] 716 718 717 719 [[package]] 718 720 name = "clap_builder" 719 - version = "4.4.9" 721 + version = "4.4.18" 720 722 source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "63361bae7eef3771745f02d8d892bec2fee5f6e34af316ba556e7f97a7069ff1" 723 + checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 722 724 dependencies = [ 723 725 "anstyle", 724 726 "clap_lex", ··· 732 734 733 735 [[package]] 734 736 name = "clipboard-win" 735 - version = "4.5.0" 737 + version = "5.2.0" 736 738 source = "registry+https://github.com/rust-lang/crates.io-index" 737 - checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" 739 + checksum = "12f9a0700e0127ba15d1d52dd742097f821cd9c65939303a44d970465040a297" 738 740 dependencies = [ 739 741 "error-code", 740 - "str-buf", 741 - "winapi", 742 742 ] 743 743 744 744 [[package]] ··· 755 755 756 756 [[package]] 757 757 name = "concurrent-queue" 758 - version = "2.3.0" 758 + version = "2.4.0" 759 759 source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 760 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 761 761 dependencies = [ 762 762 "crossbeam-utils", 763 763 ] 764 764 765 765 [[package]] 766 766 name = "const-oid" 767 - version = "0.9.5" 767 + version = "0.9.6" 768 768 source = "registry+https://github.com/rust-lang/crates.io-index" 769 - checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" 769 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 770 770 771 771 [[package]] 772 772 name = "const_format" ··· 824 824 825 825 [[package]] 826 826 name = "cpufeatures" 827 - version = "0.2.11" 827 + version = "0.2.12" 828 828 source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 829 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 830 830 dependencies = [ 831 831 "libc", 832 832 ] ··· 839 839 840 840 [[package]] 841 841 name = "crc32fast" 842 - version = "1.3.2" 842 + version = "1.4.0" 843 843 source = "registry+https://github.com/rust-lang/crates.io-index" 844 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 844 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 845 845 dependencies = [ 846 846 "cfg-if", 847 847 ] ··· 886 886 887 887 [[package]] 888 888 name = "crossbeam-deque" 889 - version = "0.8.3" 889 + version = "0.8.5" 890 890 source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 891 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 892 892 dependencies = [ 893 - "cfg-if", 894 893 "crossbeam-epoch", 895 894 "crossbeam-utils", 896 895 ] 897 896 898 897 [[package]] 899 898 name = "crossbeam-epoch" 900 - version = "0.9.15" 899 + version = "0.9.18" 901 900 source = "registry+https://github.com/rust-lang/crates.io-index" 902 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 901 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 903 902 dependencies = [ 904 - "autocfg", 905 - "cfg-if", 906 903 "crossbeam-utils", 907 - "memoffset", 908 - "scopeguard", 909 904 ] 910 905 911 906 [[package]] 912 907 name = "crossbeam-utils" 913 - version = "0.8.16" 908 + version = "0.8.19" 914 909 source = "registry+https://github.com/rust-lang/crates.io-index" 915 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 916 - dependencies = [ 917 - "cfg-if", 918 - ] 910 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 911 + 912 + [[package]] 913 + name = "crunchy" 914 + version = "0.2.2" 915 + source = "registry+https://github.com/rust-lang/crates.io-index" 916 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 919 917 920 918 [[package]] 921 919 name = "crypto-bigint" ··· 966 964 967 965 [[package]] 968 966 name = "curve25519-dalek" 969 - version = "4.1.1" 967 + version = "4.1.2" 970 968 source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c" 969 + checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" 972 970 dependencies = [ 973 971 "cfg-if", 974 972 "cpufeatures", ··· 989 987 dependencies = [ 990 988 "proc-macro2", 991 989 "quote", 992 - "syn 2.0.39", 990 + "syn 2.0.52", 993 991 ] 994 992 995 993 [[package]] ··· 1087 1085 1088 1086 [[package]] 1089 1087 name = "deltachat" 1090 - version = "1.131.9" 1088 + version = "1.136.1" 1091 1089 dependencies = [ 1092 1090 "ansi_term", 1093 1091 "anyhow", 1094 - "async-channel 2.1.1", 1092 + "async-channel 2.2.0", 1095 1093 "async-imap", 1096 1094 "async-native-tls", 1097 1095 "async-smtp", 1098 1096 "async_zip", 1099 1097 "backtrace", 1100 - "base64 0.21.5", 1098 + "base64 0.21.7", 1101 1099 "brotli", 1102 1100 "chrono", 1103 1101 "criterion", 1102 + "deltachat-time", 1104 1103 "deltachat_derive", 1105 1104 "email", 1106 1105 "encoded-words", ··· 1125 1124 "num-traits", 1126 1125 "num_cpus", 1127 1126 "once_cell", 1127 + "openssl-src", 1128 1128 "parking_lot", 1129 1129 "percent-encoding", 1130 1130 "pgp", ··· 1134 1134 "proptest", 1135 1135 "qrcodegen", 1136 1136 "quick-xml", 1137 + "quoted_printable", 1137 1138 "rand 0.8.5", 1138 1139 "ratelimit", 1139 1140 "regex", ··· 1165 1166 1166 1167 [[package]] 1167 1168 name = "deltachat-jsonrpc" 1168 - version = "1.131.9" 1169 + version = "1.136.1" 1169 1170 dependencies = [ 1170 1171 "anyhow", 1171 - "async-channel 2.1.1", 1172 + "async-channel 2.2.0", 1172 1173 "axum", 1173 - "base64 0.21.5", 1174 + "base64 0.21.7", 1174 1175 "deltachat", 1175 1176 "env_logger", 1176 1177 "futures", ··· 1189 1190 1190 1191 [[package]] 1191 1192 name = "deltachat-repl" 1192 - version = "1.131.9" 1193 + version = "1.136.1" 1193 1194 dependencies = [ 1194 1195 "ansi_term", 1195 1196 "anyhow", ··· 1204 1205 1205 1206 [[package]] 1206 1207 name = "deltachat-rpc-server" 1207 - version = "1.131.9" 1208 + version = "1.136.1" 1208 1209 dependencies = [ 1209 1210 "anyhow", 1210 1211 "deltachat", ··· 1218 1219 "tokio-util", 1219 1220 "yerpc", 1220 1221 ] 1222 + 1223 + [[package]] 1224 + name = "deltachat-time" 1225 + version = "1.0.0" 1221 1226 1222 1227 [[package]] 1223 1228 name = "deltachat_derive" 1224 1229 version = "2.0.0" 1225 1230 dependencies = [ 1226 1231 "quote", 1227 - "syn 2.0.39", 1232 + "syn 2.0.52", 1228 1233 ] 1229 1234 1230 1235 [[package]] 1231 1236 name = "deltachat_ffi" 1232 - version = "1.131.9" 1237 + version = "1.136.1" 1233 1238 dependencies = [ 1234 1239 "anyhow", 1235 1240 "deltachat", ··· 1296 1301 1297 1302 [[package]] 1298 1303 name = "deranged" 1299 - version = "0.3.9" 1304 + version = "0.3.11" 1300 1305 source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1306 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1302 1307 dependencies = [ 1303 1308 "powerfmt", 1304 1309 ] ··· 1411 1416 "libc", 1412 1417 "option-ext", 1413 1418 "redox_users", 1414 - "windows-sys", 1419 + "windows-sys 0.48.0", 1415 1420 ] 1416 1421 1417 1422 [[package]] ··· 1433 1438 dependencies = [ 1434 1439 "proc-macro2", 1435 1440 "quote", 1436 - "syn 2.0.39", 1441 + "syn 2.0.52", 1437 1442 ] 1438 1443 1439 1444 [[package]] ··· 1460 1465 ] 1461 1466 1462 1467 [[package]] 1468 + name = "dsa" 1469 + version = "0.6.3" 1470 + source = "registry+https://github.com/rust-lang/crates.io-index" 1471 + checksum = "48bc224a9084ad760195584ce5abb3c2c34a225fa312a128ad245a6b412b7689" 1472 + dependencies = [ 1473 + "digest 0.10.7", 1474 + "num-bigint-dig", 1475 + "num-traits", 1476 + "pkcs8 0.10.2", 1477 + "rfc6979 0.4.0", 1478 + "sha2 0.10.8", 1479 + "signature 2.2.0", 1480 + "zeroize", 1481 + ] 1482 + 1483 + [[package]] 1463 1484 name = "dyn-clone" 1464 - version = "1.0.16" 1485 + version = "1.0.17" 1465 1486 source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d" 1487 + checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" 1467 1488 1468 1489 [[package]] 1469 1490 name = "ecdsa" ··· 1488 1509 "elliptic-curve 0.13.8", 1489 1510 "rfc6979 0.4.0", 1490 1511 "signature 2.2.0", 1491 - "spki 0.7.2", 1512 + "spki 0.7.3", 1492 1513 ] 1493 1514 1494 1515 [[package]] ··· 1528 1549 1529 1550 [[package]] 1530 1551 name = "ed25519-dalek" 1531 - version = "2.1.0" 1552 + version = "2.1.1" 1532 1553 source = "registry+https://github.com/rust-lang/crates.io-index" 1533 - checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0" 1554 + checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 1534 1555 dependencies = [ 1535 - "curve25519-dalek 4.1.1", 1556 + "curve25519-dalek 4.1.2", 1536 1557 "ed25519 2.2.3", 1537 1558 "serde", 1538 1559 "sha2 0.10.8", ··· 1554 1575 1555 1576 [[package]] 1556 1577 name = "either" 1557 - version = "1.9.0" 1578 + version = "1.10.0" 1558 1579 source = "registry+https://github.com/rust-lang/crates.io-index" 1559 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1580 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 1560 1581 1561 1582 [[package]] 1562 1583 name = "elliptic-curve" ··· 1600 1621 1601 1622 [[package]] 1602 1623 name = "email" 1603 - version = "0.0.21" 1604 - source = "git+https://github.com/deltachat/rust-email?branch=master#37778c89d5eb5a94b7983f3f37ff67769bde3cf9" 1624 + version = "0.0.20" 1625 + source = "git+https://github.com/deltachat/rust-email?branch=master#5179cd68db44101ee3d3df7bfef96f014507352b" 1605 1626 dependencies = [ 1606 1627 "base64 0.11.0", 1607 1628 "chrono", ··· 1609 1630 "encoding", 1610 1631 "lazy_static", 1611 1632 "rand 0.7.3", 1612 - "time 0.1.45", 1613 1633 "version_check", 1614 1634 ] 1615 1635 ··· 1727 1747 "heck", 1728 1748 "proc-macro2", 1729 1749 "quote", 1730 - "syn 2.0.39", 1750 + "syn 2.0.52", 1731 1751 ] 1732 1752 1733 1753 [[package]] ··· 1740 1760 "num-traits", 1741 1761 "proc-macro2", 1742 1762 "quote", 1743 - "syn 2.0.39", 1763 + "syn 2.0.52", 1744 1764 ] 1745 1765 1746 1766 [[package]] 1747 1767 name = "env_logger" 1748 - version = "0.10.1" 1768 + version = "0.10.2" 1749 1769 source = "registry+https://github.com/rust-lang/crates.io-index" 1750 - checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 1770 + checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 1751 1771 dependencies = [ 1752 1772 "humantime", 1753 1773 "is-terminal", ··· 1764 1784 1765 1785 [[package]] 1766 1786 name = "errno" 1767 - version = "0.3.7" 1787 + version = "0.3.8" 1768 1788 source = "registry+https://github.com/rust-lang/crates.io-index" 1769 - checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8" 1789 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1770 1790 dependencies = [ 1771 1791 "libc", 1772 - "windows-sys", 1792 + "windows-sys 0.52.0", 1773 1793 ] 1774 1794 1775 1795 [[package]] 1776 1796 name = "error-code" 1777 - version = "2.3.1" 1797 + version = "3.2.0" 1778 1798 source = "registry+https://github.com/rust-lang/crates.io-index" 1779 - checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 1780 - dependencies = [ 1781 - "libc", 1782 - "str-buf", 1783 - ] 1799 + checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b" 1784 1800 1785 1801 [[package]] 1786 1802 name = "escaper" ··· 1799 1815 1800 1816 [[package]] 1801 1817 name = "event-listener" 1802 - version = "4.0.0" 1818 + version = "5.2.0" 1803 1819 source = "registry+https://github.com/rust-lang/crates.io-index" 1804 - checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae" 1820 + checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" 1805 1821 dependencies = [ 1806 1822 "concurrent-queue", 1807 1823 "parking", ··· 1810 1826 1811 1827 [[package]] 1812 1828 name = "event-listener-strategy" 1813 - version = "0.4.0" 1829 + version = "0.5.0" 1814 1830 source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1831 + checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" 1816 1832 dependencies = [ 1817 - "event-listener 4.0.0", 1833 + "event-listener 5.2.0", 1818 1834 "pin-project-lite", 1819 1835 ] 1820 1836 ··· 1832 1848 1833 1849 [[package]] 1834 1850 name = "fast-socks5" 1835 - version = "0.8.2" 1851 + version = "0.9.5" 1836 1852 source = "registry+https://github.com/rust-lang/crates.io-index" 1837 - checksum = "961ce1761191c157145a8c9f0c3ceabecd3a729d65c9a8d443674eaee3420f7e" 1853 + checksum = "cbcc731f3c17a5053e07e6a2290918da75cd8b9b1217b419721f715674ac520c" 1838 1854 dependencies = [ 1839 1855 "anyhow", 1856 + "async-trait", 1840 1857 "log", 1841 1858 "thiserror", 1842 1859 "tokio", ··· 1860 1877 1861 1878 [[package]] 1862 1879 name = "fd-lock" 1863 - version = "3.0.13" 1880 + version = "4.0.2" 1864 1881 source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5" 1882 + checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947" 1866 1883 dependencies = [ 1867 1884 "cfg-if", 1868 1885 "rustix", 1869 - "windows-sys", 1886 + "windows-sys 0.52.0", 1870 1887 ] 1871 1888 1872 1889 [[package]] 1873 1890 name = "fdeflate" 1874 - version = "0.3.1" 1891 + version = "0.3.4" 1875 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1893 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1877 1894 dependencies = [ 1878 1895 "simd-adler32", 1879 1896 ] ··· 1900 1917 1901 1918 [[package]] 1902 1919 name = "fiat-crypto" 1903 - version = "0.2.5" 1920 + version = "0.2.6" 1904 1921 source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "27573eac26f4dd11e2b1916c3fe1baa56407c83c71a773a8ba17ec0bca03b6b7" 1922 + checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" 1906 1923 1907 1924 [[package]] 1908 1925 name = "filetime" 1909 - version = "0.2.22" 1926 + version = "0.2.23" 1910 1927 source = "registry+https://github.com/rust-lang/crates.io-index" 1911 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1928 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1912 1929 dependencies = [ 1913 1930 "cfg-if", 1914 1931 "libc", 1915 - "redox_syscall 0.3.5", 1916 - "windows-sys", 1932 + "redox_syscall 0.4.1", 1933 + "windows-sys 0.52.0", 1917 1934 ] 1918 1935 1919 1936 [[package]] ··· 1928 1945 1929 1946 [[package]] 1930 1947 name = "flume" 1931 - version = "0.10.14" 1948 + version = "0.11.0" 1932 1949 source = "registry+https://github.com/rust-lang/crates.io-index" 1933 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1950 + checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1934 1951 dependencies = [ 1935 1952 "futures-core", 1936 1953 "futures-sink", 1937 1954 "nanorand", 1938 - "pin-project", 1939 1955 "spin 0.9.8", 1940 1956 ] 1941 1957 ··· 1962 1978 1963 1979 [[package]] 1964 1980 name = "form_urlencoded" 1965 - version = "1.2.0" 1981 + version = "1.2.1" 1966 1982 source = "registry+https://github.com/rust-lang/crates.io-index" 1967 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1983 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1968 1984 dependencies = [ 1969 1985 "percent-encoding", 1970 1986 ] ··· 1975 1991 1976 1992 [[package]] 1977 1993 name = "futures" 1978 - version = "0.3.29" 1994 + version = "0.3.30" 1979 1995 source = "registry+https://github.com/rust-lang/crates.io-index" 1980 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1996 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1981 1997 dependencies = [ 1982 1998 "futures-channel", 1983 1999 "futures-core", ··· 1990 2006 1991 2007 [[package]] 1992 2008 name = "futures-channel" 1993 - version = "0.3.29" 2009 + version = "0.3.30" 1994 2010 source = "registry+https://github.com/rust-lang/crates.io-index" 1995 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 2011 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1996 2012 dependencies = [ 1997 2013 "futures-core", 1998 2014 "futures-sink", ··· 2000 2016 2001 2017 [[package]] 2002 2018 name = "futures-core" 2003 - version = "0.3.29" 2019 + version = "0.3.30" 2004 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 2005 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 2021 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 2006 2022 2007 2023 [[package]] 2008 2024 name = "futures-executor" 2009 - version = "0.3.29" 2025 + version = "0.3.30" 2010 2026 source = "registry+https://github.com/rust-lang/crates.io-index" 2011 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 2027 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 2012 2028 dependencies = [ 2013 2029 "futures-core", 2014 2030 "futures-task", ··· 2017 2033 2018 2034 [[package]] 2019 2035 name = "futures-io" 2020 - version = "0.3.29" 2036 + version = "0.3.30" 2021 2037 source = "registry+https://github.com/rust-lang/crates.io-index" 2022 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 2038 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 2023 2039 2024 2040 [[package]] 2025 2041 name = "futures-lite" 2026 - version = "2.0.1" 2042 + version = "2.2.0" 2027 2043 source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 2044 + checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 2029 2045 dependencies = [ 2030 2046 "fastrand", 2031 2047 "futures-core", 2032 2048 "futures-io", 2033 - "memchr", 2034 2049 "parking", 2035 2050 "pin-project-lite", 2036 2051 ] 2037 2052 2038 2053 [[package]] 2039 2054 name = "futures-macro" 2040 - version = "0.3.29" 2055 + version = "0.3.30" 2041 2056 source = "registry+https://github.com/rust-lang/crates.io-index" 2042 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 2057 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 2043 2058 dependencies = [ 2044 2059 "proc-macro2", 2045 2060 "quote", 2046 - "syn 2.0.39", 2061 + "syn 2.0.52", 2047 2062 ] 2048 2063 2049 2064 [[package]] 2050 2065 name = "futures-sink" 2051 - version = "0.3.29" 2066 + version = "0.3.30" 2052 2067 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 2068 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 2054 2069 2055 2070 [[package]] 2056 2071 name = "futures-task" 2057 - version = "0.3.29" 2072 + version = "0.3.30" 2058 2073 source = "registry+https://github.com/rust-lang/crates.io-index" 2059 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 2074 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 2060 2075 2061 2076 [[package]] 2062 2077 name = "futures-util" 2063 - version = "0.3.29" 2078 + version = "0.3.30" 2064 2079 source = "registry+https://github.com/rust-lang/crates.io-index" 2065 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 2080 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 2066 2081 dependencies = [ 2067 2082 "futures-channel", 2068 2083 "futures-core", ··· 2100 2115 2101 2116 [[package]] 2102 2117 name = "getrandom" 2103 - version = "0.2.11" 2118 + version = "0.2.12" 2104 2119 source = "registry+https://github.com/rust-lang/crates.io-index" 2105 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2120 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 2106 2121 dependencies = [ 2107 2122 "cfg-if", 2108 2123 "js-sys", ··· 2113 2128 2114 2129 [[package]] 2115 2130 name = "gif" 2116 - version = "0.12.0" 2131 + version = "0.13.1" 2117 2132 source = "registry+https://github.com/rust-lang/crates.io-index" 2118 - checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 2133 + checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 2119 2134 dependencies = [ 2120 2135 "color_quant", 2121 2136 "weezl", ··· 2151 2166 2152 2167 [[package]] 2153 2168 name = "h2" 2154 - version = "0.3.22" 2169 + version = "0.3.24" 2170 + source = "registry+https://github.com/rust-lang/crates.io-index" 2171 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 2172 + dependencies = [ 2173 + "bytes", 2174 + "fnv", 2175 + "futures-core", 2176 + "futures-sink", 2177 + "futures-util", 2178 + "http 0.2.12", 2179 + "indexmap", 2180 + "slab", 2181 + "tokio", 2182 + "tokio-util", 2183 + "tracing", 2184 + ] 2185 + 2186 + [[package]] 2187 + name = "h2" 2188 + version = "0.4.2" 2155 2189 source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 2190 + checksum = "31d030e59af851932b72ceebadf4a2b5986dba4c3b99dd2493f8273a0f151943" 2157 2191 dependencies = [ 2158 2192 "bytes", 2159 2193 "fnv", 2160 2194 "futures-core", 2161 2195 "futures-sink", 2162 2196 "futures-util", 2163 - "http", 2197 + "http 1.1.0", 2164 2198 "indexmap", 2165 2199 "slab", 2166 2200 "tokio", ··· 2170 2204 2171 2205 [[package]] 2172 2206 name = "half" 2173 - version = "1.8.2" 2207 + version = "2.4.0" 2174 2208 source = "registry+https://github.com/rust-lang/crates.io-index" 2175 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2209 + checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e" 2210 + dependencies = [ 2211 + "cfg-if", 2212 + "crunchy", 2213 + ] 2176 2214 2177 2215 [[package]] 2178 2216 name = "hashbrown" ··· 2186 2224 2187 2225 [[package]] 2188 2226 name = "hashlink" 2189 - version = "0.8.4" 2227 + version = "0.9.0" 2190 2228 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 2229 + checksum = "692eaaf7f7607518dd3cef090f1474b61edc5301d8012f09579920df68b725ee" 2192 2230 dependencies = [ 2193 2231 "hashbrown", 2194 2232 ] ··· 2201 2239 2202 2240 [[package]] 2203 2241 name = "hermit-abi" 2204 - version = "0.3.3" 2242 + version = "0.3.9" 2205 2243 source = "registry+https://github.com/rust-lang/crates.io-index" 2206 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 2244 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2207 2245 2208 2246 [[package]] 2209 2247 name = "hex" ··· 2224 2262 "futures-channel", 2225 2263 "futures-io", 2226 2264 "futures-util", 2227 - "idna", 2265 + "idna 0.4.0", 2228 2266 "ipnet", 2229 2267 "once_cell", 2230 2268 "rand 0.8.5", ··· 2258 2296 2259 2297 [[package]] 2260 2298 name = "hkdf" 2261 - version = "0.12.3" 2299 + version = "0.12.4" 2262 2300 source = "registry+https://github.com/rust-lang/crates.io-index" 2263 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 2301 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2264 2302 dependencies = [ 2265 2303 "hmac", 2266 2304 ] ··· 2276 2314 2277 2315 [[package]] 2278 2316 name = "home" 2279 - version = "0.5.5" 2317 + version = "0.5.9" 2280 2318 source = "registry+https://github.com/rust-lang/crates.io-index" 2281 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2319 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2282 2320 dependencies = [ 2283 - "windows-sys", 2321 + "windows-sys 0.52.0", 2284 2322 ] 2285 2323 2286 2324 [[package]] ··· 2296 2334 2297 2335 [[package]] 2298 2336 name = "http" 2299 - version = "0.2.11" 2337 + version = "0.2.12" 2338 + source = "registry+https://github.com/rust-lang/crates.io-index" 2339 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2340 + dependencies = [ 2341 + "bytes", 2342 + "fnv", 2343 + "itoa", 2344 + ] 2345 + 2346 + [[package]] 2347 + name = "http" 2348 + version = "1.1.0" 2300 2349 source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2350 + checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 2302 2351 dependencies = [ 2303 2352 "bytes", 2304 2353 "fnv", ··· 2307 2356 2308 2357 [[package]] 2309 2358 name = "http-body" 2310 - version = "0.4.5" 2359 + version = "0.4.6" 2311 2360 source = "registry+https://github.com/rust-lang/crates.io-index" 2312 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2361 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2313 2362 dependencies = [ 2314 2363 "bytes", 2315 - "http", 2364 + "http 0.2.12", 2365 + "pin-project-lite", 2366 + ] 2367 + 2368 + [[package]] 2369 + name = "http-body" 2370 + version = "1.0.0" 2371 + source = "registry+https://github.com/rust-lang/crates.io-index" 2372 + checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2373 + dependencies = [ 2374 + "bytes", 2375 + "http 1.1.0", 2376 + ] 2377 + 2378 + [[package]] 2379 + name = "http-body-util" 2380 + version = "0.1.0" 2381 + source = "registry+https://github.com/rust-lang/crates.io-index" 2382 + checksum = "41cb79eb393015dadd30fc252023adb0b2400a0caee0fa2a077e6e21a551e840" 2383 + dependencies = [ 2384 + "bytes", 2385 + "futures-util", 2386 + "http 1.1.0", 2387 + "http-body 1.0.0", 2316 2388 "pin-project-lite", 2317 2389 ] 2318 2390 ··· 2330 2402 2331 2403 [[package]] 2332 2404 name = "human-panic" 2333 - version = "1.2.2" 2405 + version = "1.2.3" 2334 2406 source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - checksum = "7a79a67745be0cb8dd2771f03b24c2f25df98d5471fe7a595d668cfa2e6f843d" 2407 + checksum = "c4f016c89920bbb30951a8405ecacbb4540db5524313b9445736e7e1855cf370" 2336 2408 dependencies = [ 2337 2409 "backtrace", 2338 2410 "os_info", ··· 2359 2431 2360 2432 [[package]] 2361 2433 name = "hyper" 2362 - version = "0.14.27" 2434 + version = "0.14.28" 2363 2435 source = "registry+https://github.com/rust-lang/crates.io-index" 2364 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 2436 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 2365 2437 dependencies = [ 2366 2438 "bytes", 2367 2439 "futures-channel", 2368 2440 "futures-core", 2369 2441 "futures-util", 2370 - "h2", 2371 - "http", 2372 - "http-body", 2442 + "h2 0.3.24", 2443 + "http 0.2.12", 2444 + "http-body 0.4.6", 2373 2445 "httparse", 2374 2446 "httpdate", 2375 2447 "itoa", 2376 2448 "pin-project-lite", 2377 - "socket2 0.4.10", 2449 + "socket2", 2378 2450 "tokio", 2379 2451 "tower-service", 2380 2452 "tracing", ··· 2382 2454 ] 2383 2455 2384 2456 [[package]] 2457 + name = "hyper" 2458 + version = "1.2.0" 2459 + source = "registry+https://github.com/rust-lang/crates.io-index" 2460 + checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" 2461 + dependencies = [ 2462 + "bytes", 2463 + "futures-channel", 2464 + "futures-util", 2465 + "h2 0.4.2", 2466 + "http 1.1.0", 2467 + "http-body 1.0.0", 2468 + "httparse", 2469 + "httpdate", 2470 + "itoa", 2471 + "pin-project-lite", 2472 + "smallvec", 2473 + "tokio", 2474 + ] 2475 + 2476 + [[package]] 2385 2477 name = "hyper-tls" 2386 2478 version = "0.5.0" 2387 2479 source = "registry+https://github.com/rust-lang/crates.io-index" 2388 2480 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2389 2481 dependencies = [ 2390 2482 "bytes", 2391 - "hyper", 2483 + "hyper 0.14.28", 2392 2484 "native-tls", 2393 2485 "tokio", 2394 2486 "tokio-native-tls", 2395 2487 ] 2396 2488 2397 2489 [[package]] 2490 + name = "hyper-util" 2491 + version = "0.1.3" 2492 + source = "registry+https://github.com/rust-lang/crates.io-index" 2493 + checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" 2494 + dependencies = [ 2495 + "bytes", 2496 + "futures-util", 2497 + "http 1.1.0", 2498 + "http-body 1.0.0", 2499 + "hyper 1.2.0", 2500 + "pin-project-lite", 2501 + "socket2", 2502 + "tokio", 2503 + ] 2504 + 2505 + [[package]] 2398 2506 name = "iana-time-zone" 2399 - version = "0.1.58" 2507 + version = "0.1.60" 2400 2508 source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 2509 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2402 2510 dependencies = [ 2403 2511 "android_system_properties", 2404 2512 "core-foundation-sys", ··· 2443 2551 ] 2444 2552 2445 2553 [[package]] 2554 + name = "idna" 2555 + version = "0.5.0" 2556 + source = "registry+https://github.com/rust-lang/crates.io-index" 2557 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2558 + dependencies = [ 2559 + "unicode-bidi", 2560 + "unicode-normalization", 2561 + ] 2562 + 2563 + [[package]] 2446 2564 name = "image" 2447 - version = "0.24.7" 2565 + version = "0.24.9" 2448 2566 source = "registry+https://github.com/rust-lang/crates.io-index" 2449 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2567 + checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 2450 2568 dependencies = [ 2451 2569 "bytemuck", 2452 2570 "byteorder", 2453 2571 "color_quant", 2454 2572 "gif", 2455 2573 "jpeg-decoder", 2456 - "num-rational", 2457 2574 "num-traits", 2458 2575 "png", 2459 2576 ] 2460 2577 2461 2578 [[package]] 2462 2579 name = "imap-proto" 2463 - version = "0.16.3" 2464 - source = "git+https://github.com/djc/tokio-imap.git?rev=01ff256a7e42a9f7d2732706f8b71a16ce93427e#01ff256a7e42a9f7d2732706f8b71a16ce93427e" 2580 + version = "0.16.4" 2581 + source = "registry+https://github.com/rust-lang/crates.io-index" 2582 + checksum = "22e70cd66882c8cb1c9802096ba75212822153c51478dc61621e1a22f6c92361" 2465 2583 dependencies = [ 2466 2584 "nom", 2467 2585 ] 2468 2586 2469 2587 [[package]] 2470 2588 name = "indexmap" 2471 - version = "2.1.0" 2589 + version = "2.2.5" 2472 2590 source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2591 + checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" 2474 2592 dependencies = [ 2475 2593 "equivalent", 2476 2594 "hashbrown", ··· 2491 2609 source = "registry+https://github.com/rust-lang/crates.io-index" 2492 2610 checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 2493 2611 dependencies = [ 2494 - "socket2 0.5.5", 2612 + "socket2", 2495 2613 "widestring", 2496 - "windows-sys", 2614 + "windows-sys 0.48.0", 2497 2615 "winreg", 2498 2616 ] 2499 2617 ··· 2506 2624 [[package]] 2507 2625 name = "iroh" 2508 2626 version = "0.4.2" 2509 - source = "git+https://github.com/n0-computer/iroh?branch=maint-0.4#9881b7886235035a1124e4371f7a4cd59379e51b" 2627 + source = "registry+https://github.com/rust-lang/crates.io-index" 2628 + checksum = "85075391dcb8491a4939266334b28601052d418b37d20b33c58ffb5776adc912" 2510 2629 dependencies = [ 2511 2630 "abao", 2512 2631 "anyhow", 2513 - "base64 0.21.5", 2632 + "base64 0.21.7", 2514 2633 "blake3", 2515 2634 "bytes", 2516 2635 "default-net", ··· 2548 2667 2549 2668 [[package]] 2550 2669 name = "is-terminal" 2551 - version = "0.4.9" 2670 + version = "0.4.12" 2552 2671 source = "registry+https://github.com/rust-lang/crates.io-index" 2553 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2672 + checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 2554 2673 dependencies = [ 2555 2674 "hermit-abi", 2556 - "rustix", 2557 - "windows-sys", 2675 + "libc", 2676 + "windows-sys 0.52.0", 2558 2677 ] 2559 2678 2560 2679 [[package]] 2680 + name = "iter-read" 2681 + version = "1.0.1" 2682 + source = "registry+https://github.com/rust-lang/crates.io-index" 2683 + checksum = "a598c1abae8e3456ebda517868b254b6bc2a9bb6501ffd5b9d0875bf332e048b" 2684 + 2685 + [[package]] 2561 2686 name = "itertools" 2562 2687 version = "0.10.5" 2563 2688 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2568 2693 2569 2694 [[package]] 2570 2695 name = "itoa" 2571 - version = "1.0.9" 2696 + version = "1.0.10" 2572 2697 source = "registry+https://github.com/rust-lang/crates.io-index" 2573 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 2698 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 2574 2699 2575 2700 [[package]] 2576 2701 name = "jpeg-decoder" 2577 - version = "0.3.0" 2702 + version = "0.3.1" 2578 2703 source = "registry+https://github.com/rust-lang/crates.io-index" 2579 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2704 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 2580 2705 2581 2706 [[package]] 2582 2707 name = "js-sys" 2583 - version = "0.3.65" 2708 + version = "0.3.69" 2584 2709 source = "registry+https://github.com/rust-lang/crates.io-index" 2585 - checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 2710 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2586 2711 dependencies = [ 2587 2712 "wasm-bindgen", 2588 2713 ] 2589 2714 2590 2715 [[package]] 2716 + name = "k256" 2717 + version = "0.13.3" 2718 + source = "registry+https://github.com/rust-lang/crates.io-index" 2719 + checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" 2720 + dependencies = [ 2721 + "cfg-if", 2722 + "ecdsa 0.16.9", 2723 + "elliptic-curve 0.13.8", 2724 + "once_cell", 2725 + "sha2 0.10.8", 2726 + "signature 2.2.0", 2727 + ] 2728 + 2729 + [[package]] 2591 2730 name = "kamadak-exif" 2592 2731 version = "0.5.5" 2593 2732 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2598 2737 2599 2738 [[package]] 2600 2739 name = "keccak" 2601 - version = "0.1.4" 2740 + version = "0.1.5" 2602 2741 source = "registry+https://github.com/rust-lang/crates.io-index" 2603 - checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" 2742 + checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 2604 2743 dependencies = [ 2605 2744 "cpufeatures", 2606 2745 ] ··· 2640 2779 2641 2780 [[package]] 2642 2781 name = "libc" 2643 - version = "0.2.150" 2782 + version = "0.2.153" 2644 2783 source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 2784 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 2646 2785 2647 2786 [[package]] 2648 2787 name = "libm" ··· 2656 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2657 2796 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2658 2797 dependencies = [ 2659 - "bitflags 2.4.1", 2798 + "bitflags 2.4.2", 2660 2799 "libc", 2661 2800 "redox_syscall 0.4.1", 2662 2801 ] 2663 2802 2664 2803 [[package]] 2665 2804 name = "libsqlite3-sys" 2666 - version = "0.27.0" 2805 + version = "0.28.0" 2667 2806 source = "registry+https://github.com/rust-lang/crates.io-index" 2668 - checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2807 + checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f" 2669 2808 dependencies = [ 2670 2809 "cc", 2671 2810 "openssl-sys", ··· 2681 2820 2682 2821 [[package]] 2683 2822 name = "linux-raw-sys" 2684 - version = "0.4.11" 2823 + version = "0.4.13" 2685 2824 source = "registry+https://github.com/rust-lang/crates.io-index" 2686 - checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 2825 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 2687 2826 2688 2827 [[package]] 2689 2828 name = "lock_api" ··· 2697 2836 2698 2837 [[package]] 2699 2838 name = "log" 2700 - version = "0.4.20" 2839 + version = "0.4.21" 2701 2840 source = "registry+https://github.com/rust-lang/crates.io-index" 2702 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2841 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 2703 2842 2704 2843 [[package]] 2705 2844 name = "lru-cache" ··· 2712 2851 2713 2852 [[package]] 2714 2853 name = "mailparse" 2715 - version = "0.14.0" 2854 + version = "0.14.1" 2716 2855 source = "registry+https://github.com/rust-lang/crates.io-index" 2717 - checksum = "6b56570f5f8c0047260d1c8b5b331f62eb9c660b9dd4071a8c46f8c7d3f280aa" 2856 + checksum = "2d096594926cab442e054e047eb8c1402f7d5b2272573b97ba68aa40629f9757" 2718 2857 dependencies = [ 2719 2858 "charset", 2720 2859 "data-encoding", ··· 2760 2899 2761 2900 [[package]] 2762 2901 name = "memchr" 2763 - version = "2.6.4" 2764 - source = "registry+https://github.com/rust-lang/crates.io-index" 2765 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2766 - 2767 - [[package]] 2768 - name = "memoffset" 2769 - version = "0.9.0" 2902 + version = "2.7.1" 2770 2903 source = "registry+https://github.com/rust-lang/crates.io-index" 2771 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 2772 - dependencies = [ 2773 - "autocfg", 2774 - ] 2904 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 2775 2905 2776 2906 [[package]] 2777 2907 name = "mime" ··· 2787 2917 2788 2918 [[package]] 2789 2919 name = "miniz_oxide" 2790 - version = "0.7.1" 2920 + version = "0.7.2" 2791 2921 source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2922 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 2793 2923 dependencies = [ 2794 2924 "adler", 2795 2925 "simd-adler32", ··· 2797 2927 2798 2928 [[package]] 2799 2929 name = "mio" 2800 - version = "0.8.9" 2930 + version = "0.8.11" 2801 2931 source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 2932 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2803 2933 dependencies = [ 2804 2934 "libc", 2805 2935 "wasi 0.11.0+wasi-snapshot-preview1", 2806 - "windows-sys", 2936 + "windows-sys 0.48.0", 2807 2937 ] 2808 2938 2809 2939 [[package]] ··· 2818 2948 source = "registry+https://github.com/rust-lang/crates.io-index" 2819 2949 checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2820 2950 dependencies = [ 2821 - "getrandom 0.2.11", 2951 + "getrandom 0.2.12", 2822 2952 ] 2823 2953 2824 2954 [[package]] ··· 2899 3029 2900 3030 [[package]] 2901 3031 name = "nix" 2902 - version = "0.26.4" 3032 + version = "0.27.1" 2903 3033 source = "registry+https://github.com/rust-lang/crates.io-index" 2904 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3034 + checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2905 3035 dependencies = [ 2906 - "bitflags 1.3.2", 3036 + "bitflags 2.4.2", 2907 3037 "cfg-if", 2908 3038 "libc", 2909 3039 ] ··· 2967 3097 ] 2968 3098 2969 3099 [[package]] 3100 + name = "num-conv" 3101 + version = "0.1.0" 3102 + source = "registry+https://github.com/rust-lang/crates.io-index" 3103 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3104 + 3105 + [[package]] 2970 3106 name = "num-derive" 2971 - version = "0.4.1" 3107 + version = "0.4.2" 2972 3108 source = "registry+https://github.com/rust-lang/crates.io-index" 2973 - checksum = "cfb77679af88f8b125209d354a202862602672222e7f2313fdd6dc349bad4712" 3109 + checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 2974 3110 dependencies = [ 2975 3111 "proc-macro2", 2976 3112 "quote", 2977 - "syn 2.0.39", 3113 + "syn 2.0.52", 2978 3114 ] 2979 3115 2980 3116 [[package]] 2981 3117 name = "num-integer" 2982 - version = "0.1.45" 3118 + version = "0.1.46" 2983 3119 source = "registry+https://github.com/rust-lang/crates.io-index" 2984 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3120 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2985 3121 dependencies = [ 2986 - "autocfg", 2987 3122 "num-traits", 2988 3123 ] 2989 3124 2990 3125 [[package]] 2991 3126 name = "num-iter" 2992 - version = "0.1.43" 2993 - source = "registry+https://github.com/rust-lang/crates.io-index" 2994 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 2995 - dependencies = [ 2996 - "autocfg", 2997 - "num-integer", 2998 - "num-traits", 2999 - ] 3000 - 3001 - [[package]] 3002 - name = "num-rational" 3003 - version = "0.4.1" 3127 + version = "0.1.44" 3004 3128 source = "registry+https://github.com/rust-lang/crates.io-index" 3005 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 3129 + checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" 3006 3130 dependencies = [ 3007 3131 "autocfg", 3008 3132 "num-integer", ··· 3011 3135 3012 3136 [[package]] 3013 3137 name = "num-traits" 3014 - version = "0.2.17" 3138 + version = "0.2.18" 3015 3139 source = "registry+https://github.com/rust-lang/crates.io-index" 3016 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3140 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 3017 3141 dependencies = [ 3018 3142 "autocfg", 3019 3143 "libm", ··· 3030 3154 ] 3031 3155 3032 3156 [[package]] 3157 + name = "num_enum" 3158 + version = "0.7.2" 3159 + source = "registry+https://github.com/rust-lang/crates.io-index" 3160 + checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 3161 + dependencies = [ 3162 + "num_enum_derive", 3163 + ] 3164 + 3165 + [[package]] 3166 + name = "num_enum_derive" 3167 + version = "0.7.2" 3168 + source = "registry+https://github.com/rust-lang/crates.io-index" 3169 + checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 3170 + dependencies = [ 3171 + "proc-macro-crate", 3172 + "proc-macro2", 3173 + "quote", 3174 + "syn 2.0.52", 3175 + ] 3176 + 3177 + [[package]] 3033 3178 name = "object" 3034 - version = "0.32.1" 3179 + version = "0.32.2" 3035 3180 source = "registry+https://github.com/rust-lang/crates.io-index" 3036 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3181 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 3037 3182 dependencies = [ 3038 3183 "memchr", 3039 3184 ] ··· 3049 3194 3050 3195 [[package]] 3051 3196 name = "once_cell" 3052 - version = "1.18.0" 3197 + version = "1.19.0" 3053 3198 source = "registry+https://github.com/rust-lang/crates.io-index" 3054 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 3199 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 3055 3200 3056 3201 [[package]] 3057 3202 name = "oorandom" ··· 3061 3206 3062 3207 [[package]] 3063 3208 name = "opaque-debug" 3064 - version = "0.3.0" 3209 + version = "0.3.1" 3065 3210 source = "registry+https://github.com/rust-lang/crates.io-index" 3066 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 3211 + checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 3067 3212 3068 3213 [[package]] 3069 3214 name = "openssl" 3070 - version = "0.10.60" 3215 + version = "0.10.63" 3071 3216 source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" 3217 + checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" 3073 3218 dependencies = [ 3074 - "bitflags 2.4.1", 3219 + "bitflags 2.4.2", 3075 3220 "cfg-if", 3076 3221 "foreign-types", 3077 3222 "libc", ··· 3088 3233 dependencies = [ 3089 3234 "proc-macro2", 3090 3235 "quote", 3091 - "syn 2.0.39", 3236 + "syn 2.0.52", 3092 3237 ] 3093 3238 3094 3239 [[package]] ··· 3108 3253 3109 3254 [[package]] 3110 3255 name = "openssl-sys" 3111 - version = "0.9.96" 3256 + version = "0.9.99" 3112 3257 source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" 3258 + checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" 3114 3259 dependencies = [ 3115 3260 "cc", 3116 3261 "libc", ··· 3214 3359 "libc", 3215 3360 "redox_syscall 0.4.1", 3216 3361 "smallvec", 3217 - "windows-targets", 3362 + "windows-targets 0.48.5", 3218 3363 ] 3219 3364 3220 3365 [[package]] ··· 3258 3403 3259 3404 [[package]] 3260 3405 name = "pgp" 3261 - version = "0.10.2" 3406 + version = "0.11.0" 3262 3407 source = "registry+https://github.com/rust-lang/crates.io-index" 3263 - checksum = "27e1f8e085bfa9b85763fe3ddaacbe90a09cd847b3833129153a6cb063bbe132" 3408 + checksum = "031fa1e28c4cb54c90502ef0642a44ef10ec8349349ebe6372089f1b1ef4f297" 3264 3409 dependencies = [ 3265 3410 "aes", 3266 - "base64 0.21.5", 3411 + "base64 0.21.7", 3267 3412 "bitfield", 3268 3413 "block-padding", 3269 3414 "blowfish", ··· 3275 3420 "cfb-mode", 3276 3421 "chrono", 3277 3422 "cipher", 3423 + "const-oid", 3278 3424 "crc24", 3279 - "curve25519-dalek 4.1.1", 3425 + "curve25519-dalek 4.1.2", 3280 3426 "derive_builder", 3281 3427 "des", 3282 3428 "digest 0.10.7", 3283 - "ed25519-dalek 2.1.0", 3429 + "dsa", 3430 + "ed25519-dalek 2.1.1", 3284 3431 "elliptic-curve 0.13.8", 3285 3432 "flate2", 3286 3433 "generic-array", 3287 3434 "hex", 3288 3435 "idea", 3436 + "iter-read", 3437 + "k256", 3289 3438 "log", 3290 3439 "md-5", 3291 3440 "nom", 3292 3441 "num-bigint-dig", 3293 - "num-derive", 3294 3442 "num-traits", 3443 + "num_enum", 3295 3444 "p256 0.13.2", 3296 3445 "p384 0.13.0", 3297 3446 "rand 0.8.5", 3298 3447 "ripemd", 3299 - "rsa 0.9.5", 3448 + "rsa 0.9.6", 3300 3449 "sha1", 3301 3450 "sha2 0.10.8", 3302 3451 "sha3", ··· 3310 3459 3311 3460 [[package]] 3312 3461 name = "pin-project" 3313 - version = "1.1.3" 3462 + version = "1.1.4" 3314 3463 source = "registry+https://github.com/rust-lang/crates.io-index" 3315 - checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 3464 + checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" 3316 3465 dependencies = [ 3317 3466 "pin-project-internal", 3318 3467 ] 3319 3468 3320 3469 [[package]] 3321 3470 name = "pin-project-internal" 3322 - version = "1.1.3" 3471 + version = "1.1.4" 3323 3472 source = "registry+https://github.com/rust-lang/crates.io-index" 3324 - checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 3473 + checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" 3325 3474 dependencies = [ 3326 3475 "proc-macro2", 3327 3476 "quote", 3328 - "syn 2.0.39", 3477 + "syn 2.0.52", 3329 3478 ] 3330 3479 3331 3480 [[package]] ··· 3360 3509 dependencies = [ 3361 3510 "der 0.7.8", 3362 3511 "pkcs8 0.10.2", 3363 - "spki 0.7.2", 3512 + "spki 0.7.3", 3364 3513 ] 3365 3514 3366 3515 [[package]] ··· 3380 3529 checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3381 3530 dependencies = [ 3382 3531 "der 0.7.8", 3383 - "spki 0.7.2", 3532 + "spki 0.7.3", 3384 3533 ] 3385 3534 3386 3535 [[package]] 3387 3536 name = "pkg-config" 3388 - version = "0.3.27" 3537 + version = "0.3.30" 3389 3538 source = "registry+https://github.com/rust-lang/crates.io-index" 3390 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3539 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 3391 3540 3392 3541 [[package]] 3393 3542 name = "platforms" 3394 - version = "3.2.0" 3543 + version = "3.3.0" 3395 3544 source = "registry+https://github.com/rust-lang/crates.io-index" 3396 - checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" 3545 + checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" 3397 3546 3398 3547 [[package]] 3399 3548 name = "plotters" ··· 3425 3574 3426 3575 [[package]] 3427 3576 name = "png" 3428 - version = "0.17.10" 3577 + version = "0.17.13" 3429 3578 source = "registry+https://github.com/rust-lang/crates.io-index" 3430 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3579 + checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 3431 3580 dependencies = [ 3432 3581 "bitflags 1.3.2", 3433 3582 "crc32fast", ··· 3438 3587 3439 3588 [[package]] 3440 3589 name = "portable-atomic" 3441 - version = "1.5.1" 3590 + version = "1.6.0" 3442 3591 source = "registry+https://github.com/rust-lang/crates.io-index" 3443 - checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b" 3592 + checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 3444 3593 3445 3594 [[package]] 3446 3595 name = "postcard" ··· 3505 3654 checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 3506 3655 dependencies = [ 3507 3656 "elliptic-curve 0.13.8", 3657 + ] 3658 + 3659 + [[package]] 3660 + name = "proc-macro-crate" 3661 + version = "3.1.0" 3662 + source = "registry+https://github.com/rust-lang/crates.io-index" 3663 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 3664 + dependencies = [ 3665 + "toml_edit 0.21.1", 3508 3666 ] 3509 3667 3510 3668 [[package]] ··· 3533 3691 3534 3692 [[package]] 3535 3693 name = "proc-macro2" 3536 - version = "1.0.69" 3694 + version = "1.0.78" 3537 3695 source = "registry+https://github.com/rust-lang/crates.io-index" 3538 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 3696 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 3539 3697 dependencies = [ 3540 3698 "unicode-ident", 3541 3699 ] ··· 3546 3704 source = "registry+https://github.com/rust-lang/crates.io-index" 3547 3705 checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" 3548 3706 dependencies = [ 3549 - "bitflags 2.4.1", 3707 + "bitflags 2.4.2", 3550 3708 "lazy_static", 3551 3709 "num-traits", 3552 3710 "rand 0.8.5", ··· 3564 3722 3565 3723 [[package]] 3566 3724 name = "quic-rpc" 3567 - version = "0.6.1" 3725 + version = "0.6.2" 3568 3726 source = "registry+https://github.com/rust-lang/crates.io-index" 3569 - checksum = "6d60c2fc2390baad4b9d41ae9957ae88c3095496f88e252ef50722df8b5b78d7" 3727 + checksum = "1428fcf30c17a159ff10c1f3c69fca92fd7cfa11e9fef7d573f3c6f0da3b5920" 3570 3728 dependencies = [ 3571 3729 "bincode", 3572 3730 "educe", ··· 3639 3797 dependencies = [ 3640 3798 "bytes", 3641 3799 "libc", 3642 - "socket2 0.5.5", 3800 + "socket2", 3643 3801 "tracing", 3644 - "windows-sys", 3802 + "windows-sys 0.48.0", 3645 3803 ] 3646 3804 3647 3805 [[package]] 3648 3806 name = "quote" 3649 - version = "1.0.33" 3807 + version = "1.0.35" 3650 3808 source = "registry+https://github.com/rust-lang/crates.io-index" 3651 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3809 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 3652 3810 dependencies = [ 3653 3811 "proc-macro2", 3654 3812 ] 3655 3813 3656 3814 [[package]] 3657 3815 name = "quoted_printable" 3658 - version = "0.4.8" 3816 + version = "0.5.0" 3659 3817 source = "registry+https://github.com/rust-lang/crates.io-index" 3660 - checksum = "5a3866219251662ec3b26fc217e3e05bf9c4f84325234dfb96bf0bf840889e49" 3818 + checksum = "79ec282e887b434b68c18fe5c121d38e72a5cf35119b59e54ec5b992ea9c8eb0" 3661 3819 3662 3820 [[package]] 3663 3821 name = "radix_trie" ··· 3728 3886 source = "registry+https://github.com/rust-lang/crates.io-index" 3729 3887 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3730 3888 dependencies = [ 3731 - "getrandom 0.2.11", 3889 + "getrandom 0.2.12", 3732 3890 ] 3733 3891 3734 3892 [[package]] ··· 3755 3913 3756 3914 [[package]] 3757 3915 name = "rayon" 3758 - version = "1.8.0" 3916 + version = "1.9.0" 3759 3917 source = "registry+https://github.com/rust-lang/crates.io-index" 3760 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3918 + checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" 3761 3919 dependencies = [ 3762 3920 "either", 3763 3921 "rayon-core", ··· 3765 3923 3766 3924 [[package]] 3767 3925 name = "rayon-core" 3768 - version = "1.12.0" 3926 + version = "1.12.1" 3769 3927 source = "registry+https://github.com/rust-lang/crates.io-index" 3770 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3928 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3771 3929 dependencies = [ 3772 3930 "crossbeam-deque", 3773 3931 "crossbeam-utils", ··· 3781 3939 dependencies = [ 3782 3940 "pem", 3783 3941 "ring 0.16.20", 3784 - "time 0.3.30", 3942 + "time 0.3.34", 3785 3943 "yasna", 3786 3944 ] 3787 3945 ··· 3809 3967 source = "registry+https://github.com/rust-lang/crates.io-index" 3810 3968 checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3811 3969 dependencies = [ 3812 - "getrandom 0.2.11", 3970 + "getrandom 0.2.12", 3813 3971 "libredox", 3814 3972 "thiserror", 3815 3973 ] 3816 3974 3817 3975 [[package]] 3818 3976 name = "regex" 3819 - version = "1.10.2" 3977 + version = "1.10.3" 3820 3978 source = "registry+https://github.com/rust-lang/crates.io-index" 3821 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 3979 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 3822 3980 dependencies = [ 3823 3981 "aho-corasick", 3824 3982 "memchr", 3825 - "regex-automata 0.4.3", 3983 + "regex-automata 0.4.6", 3826 3984 "regex-syntax 0.8.2", 3827 3985 ] 3828 3986 ··· 3837 3995 3838 3996 [[package]] 3839 3997 name = "regex-automata" 3840 - version = "0.4.3" 3998 + version = "0.4.6" 3841 3999 source = "registry+https://github.com/rust-lang/crates.io-index" 3842 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 4000 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 3843 4001 dependencies = [ 3844 4002 "aho-corasick", 3845 4003 "memchr", ··· 3860 4018 3861 4019 [[package]] 3862 4020 name = "reqwest" 3863 - version = "0.11.22" 4021 + version = "0.11.24" 3864 4022 source = "registry+https://github.com/rust-lang/crates.io-index" 3865 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 4023 + checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" 3866 4024 dependencies = [ 3867 - "base64 0.21.5", 4025 + "base64 0.21.7", 3868 4026 "bytes", 3869 4027 "encoding_rs", 3870 4028 "futures-core", 3871 4029 "futures-util", 3872 - "h2", 3873 - "http", 3874 - "http-body", 3875 - "hyper", 4030 + "h2 0.3.24", 4031 + "http 0.2.12", 4032 + "http-body 0.4.6", 4033 + "hyper 0.14.28", 3876 4034 "hyper-tls", 3877 4035 "ipnet", 3878 4036 "js-sys", ··· 3882 4040 "once_cell", 3883 4041 "percent-encoding", 3884 4042 "pin-project-lite", 4043 + "rustls-pemfile", 3885 4044 "serde", 3886 4045 "serde_json", 3887 4046 "serde_urlencoded", 4047 + "sync_wrapper", 3888 4048 "system-configuration", 3889 4049 "tokio", 3890 4050 "tokio-native-tls", ··· 3944 4104 3945 4105 [[package]] 3946 4106 name = "ring" 3947 - version = "0.17.5" 4107 + version = "0.17.8" 3948 4108 source = "registry+https://github.com/rust-lang/crates.io-index" 3949 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 4109 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 3950 4110 dependencies = [ 3951 4111 "cc", 3952 - "getrandom 0.2.11", 4112 + "cfg-if", 4113 + "getrandom 0.2.12", 3953 4114 "libc", 3954 4115 "spin 0.9.8", 3955 4116 "untrusted 0.9.0", 3956 - "windows-sys", 4117 + "windows-sys 0.52.0", 3957 4118 ] 3958 4119 3959 4120 [[package]] ··· 3988 4149 3989 4150 [[package]] 3990 4151 name = "rsa" 3991 - version = "0.9.5" 4152 + version = "0.9.6" 3992 4153 source = "registry+https://github.com/rust-lang/crates.io-index" 3993 - checksum = "af6c4b23d99685a1408194da11270ef8e9809aff951cc70ec9b17350b087e474" 4154 + checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 3994 4155 dependencies = [ 3995 4156 "const-oid", 3996 4157 "digest 0.10.7", ··· 4001 4162 "pkcs8 0.10.2", 4002 4163 "rand_core 0.6.4", 4003 4164 "signature 2.2.0", 4004 - "spki 0.7.2", 4165 + "spki 0.7.3", 4005 4166 "subtle", 4006 4167 "zeroize", 4007 4168 ] 4008 4169 4009 4170 [[package]] 4010 4171 name = "rusqlite" 4011 - version = "0.30.0" 4172 + version = "0.31.0" 4012 4173 source = "registry+https://github.com/rust-lang/crates.io-index" 4013 - checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" 4174 + checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae" 4014 4175 dependencies = [ 4015 - "bitflags 2.4.1", 4176 + "bitflags 2.4.2", 4016 4177 "fallible-iterator", 4017 4178 "fallible-streaming-iterator", 4018 4179 "hashlink", ··· 4058 4219 4059 4220 [[package]] 4060 4221 name = "rustix" 4061 - version = "0.38.25" 4222 + version = "0.38.31" 4062 4223 source = "registry+https://github.com/rust-lang/crates.io-index" 4063 - checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e" 4224 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 4064 4225 dependencies = [ 4065 - "bitflags 2.4.1", 4226 + "bitflags 2.4.2", 4066 4227 "errno", 4067 4228 "libc", 4068 4229 "linux-raw-sys", 4069 - "windows-sys", 4230 + "windows-sys 0.52.0", 4070 4231 ] 4071 4232 4072 4233 [[package]] 4073 4234 name = "rustls" 4074 - version = "0.21.9" 4235 + version = "0.21.10" 4075 4236 source = "registry+https://github.com/rust-lang/crates.io-index" 4076 - checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 4237 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 4077 4238 dependencies = [ 4078 - "ring 0.17.5", 4239 + "ring 0.17.8", 4079 4240 "rustls-webpki", 4080 4241 "sct", 4081 4242 ] ··· 4098 4259 source = "registry+https://github.com/rust-lang/crates.io-index" 4099 4260 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 4100 4261 dependencies = [ 4101 - "base64 0.21.5", 4262 + "base64 0.21.7", 4102 4263 ] 4103 4264 4104 4265 [[package]] ··· 4107 4268 source = "registry+https://github.com/rust-lang/crates.io-index" 4108 4269 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 4109 4270 dependencies = [ 4110 - "ring 0.17.5", 4271 + "ring 0.17.8", 4111 4272 "untrusted 0.9.0", 4112 4273 ] 4113 4274 ··· 4119 4280 4120 4281 [[package]] 4121 4282 name = "rustyline" 4122 - version = "12.0.0" 4283 + version = "13.0.0" 4123 4284 source = "registry+https://github.com/rust-lang/crates.io-index" 4124 - checksum = "994eca4bca05c87e86e15d90fc7a91d1be64b4482b38cb2d27474568fe7c9db9" 4285 + checksum = "02a2d683a4ac90aeef5b1013933f6d977bd37d51ff3f4dad829d4931a7e6be86" 4125 4286 dependencies = [ 4126 - "bitflags 2.4.1", 4287 + "bitflags 2.4.2", 4127 4288 "cfg-if", 4128 4289 "clipboard-win", 4129 4290 "fd-lock", ··· 4133 4294 "memchr", 4134 4295 "nix", 4135 4296 "radix_trie", 4136 - "scopeguard", 4137 4297 "unicode-segmentation", 4138 4298 "unicode-width", 4139 4299 "utf8parse", ··· 4142 4302 4143 4303 [[package]] 4144 4304 name = "ryu" 4145 - version = "1.0.15" 4305 + version = "1.0.17" 4146 4306 source = "registry+https://github.com/rust-lang/crates.io-index" 4147 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 4148 - 4149 - [[package]] 4150 - name = "safemem" 4151 - version = "0.3.3" 4152 - source = "registry+https://github.com/rust-lang/crates.io-index" 4153 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 4307 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 4154 4308 4155 4309 [[package]] 4156 4310 name = "same-file" ··· 4173 4327 4174 4328 [[package]] 4175 4329 name = "schannel" 4176 - version = "0.1.22" 4330 + version = "0.1.23" 4177 4331 source = "registry+https://github.com/rust-lang/crates.io-index" 4178 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 4332 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 4179 4333 dependencies = [ 4180 - "windows-sys", 4334 + "windows-sys 0.52.0", 4181 4335 ] 4182 4336 4183 4337 [[package]] ··· 4216 4370 source = "registry+https://github.com/rust-lang/crates.io-index" 4217 4371 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 4218 4372 dependencies = [ 4219 - "ring 0.17.5", 4373 + "ring 0.17.8", 4220 4374 "untrusted 0.9.0", 4221 4375 ] 4222 4376 ··· 4273 4427 4274 4428 [[package]] 4275 4429 name = "self_cell" 4276 - version = "1.0.2" 4430 + version = "1.0.3" 4277 4431 source = "registry+https://github.com/rust-lang/crates.io-index" 4278 - checksum = "e388332cd64eb80cd595a00941baf513caffae8dce9cfd0467fc9c66397dade6" 4432 + checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba" 4279 4433 4280 4434 [[package]] 4281 4435 name = "semver" 4282 - version = "1.0.20" 4436 + version = "1.0.22" 4283 4437 source = "registry+https://github.com/rust-lang/crates.io-index" 4284 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 4438 + checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 4285 4439 dependencies = [ 4286 4440 "serde", 4287 4441 ] 4288 4442 4289 4443 [[package]] 4290 4444 name = "serde" 4291 - version = "1.0.193" 4445 + version = "1.0.197" 4292 4446 source = "registry+https://github.com/rust-lang/crates.io-index" 4293 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 4447 + checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 4294 4448 dependencies = [ 4295 4449 "serde_derive", 4296 4450 ] ··· 4306 4460 4307 4461 [[package]] 4308 4462 name = "serde_bytes" 4309 - version = "0.11.12" 4463 + version = "0.11.14" 4310 4464 source = "registry+https://github.com/rust-lang/crates.io-index" 4311 - checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 4465 + checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" 4312 4466 dependencies = [ 4313 4467 "serde", 4314 4468 ] 4315 4469 4316 4470 [[package]] 4317 4471 name = "serde_derive" 4318 - version = "1.0.193" 4472 + version = "1.0.197" 4319 4473 source = "registry+https://github.com/rust-lang/crates.io-index" 4320 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 4474 + checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 4321 4475 dependencies = [ 4322 4476 "proc-macro2", 4323 4477 "quote", 4324 - "syn 2.0.39", 4478 + "syn 2.0.52", 4325 4479 ] 4326 4480 4327 4481 [[package]] ··· 4337 4491 4338 4492 [[package]] 4339 4493 name = "serde_json" 4340 - version = "1.0.108" 4494 + version = "1.0.114" 4341 4495 source = "registry+https://github.com/rust-lang/crates.io-index" 4342 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 4496 + checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 4343 4497 dependencies = [ 4344 4498 "itoa", 4345 4499 "ryu", ··· 4348 4502 4349 4503 [[package]] 4350 4504 name = "serde_path_to_error" 4351 - version = "0.1.14" 4505 + version = "0.1.15" 4352 4506 source = "registry+https://github.com/rust-lang/crates.io-index" 4353 - checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" 4507 + checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c" 4354 4508 dependencies = [ 4355 4509 "itoa", 4356 4510 "serde", ··· 4358 4512 4359 4513 [[package]] 4360 4514 name = "serde_spanned" 4361 - version = "0.6.4" 4515 + version = "0.6.5" 4362 4516 source = "registry+https://github.com/rust-lang/crates.io-index" 4363 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 4517 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 4364 4518 dependencies = [ 4365 4519 "serde", 4366 4520 ] ··· 4488 4642 4489 4643 [[package]] 4490 4644 name = "smallvec" 4491 - version = "1.11.2" 4645 + version = "1.13.1" 4492 4646 source = "registry+https://github.com/rust-lang/crates.io-index" 4493 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4647 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 4494 4648 4495 4649 [[package]] 4496 4650 name = "smawk" ··· 4500 4654 4501 4655 [[package]] 4502 4656 name = "socket2" 4503 - version = "0.4.10" 4657 + version = "0.5.6" 4504 4658 source = "registry+https://github.com/rust-lang/crates.io-index" 4505 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 4659 + checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 4506 4660 dependencies = [ 4507 4661 "libc", 4508 - "winapi", 4509 - ] 4510 - 4511 - [[package]] 4512 - name = "socket2" 4513 - version = "0.5.5" 4514 - source = "registry+https://github.com/rust-lang/crates.io-index" 4515 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 4516 - dependencies = [ 4517 - "libc", 4518 - "windows-sys", 4662 + "windows-sys 0.52.0", 4519 4663 ] 4520 4664 4521 4665 [[package]] ··· 4545 4689 4546 4690 [[package]] 4547 4691 name = "spki" 4548 - version = "0.7.2" 4692 + version = "0.7.3" 4549 4693 source = "registry+https://github.com/rust-lang/crates.io-index" 4550 - checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" 4694 + checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 4551 4695 dependencies = [ 4552 4696 "base64ct", 4553 4697 "der 0.7.8", ··· 4595 4739 ] 4596 4740 4597 4741 [[package]] 4598 - name = "str-buf" 4599 - version = "1.0.6" 4600 - source = "registry+https://github.com/rust-lang/crates.io-index" 4601 - checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 4602 - 4603 - [[package]] 4604 4742 name = "strsim" 4605 4743 version = "0.10.0" 4606 4744 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4608 4746 4609 4747 [[package]] 4610 4748 name = "strum" 4611 - version = "0.25.0" 4749 + version = "0.26.1" 4612 4750 source = "registry+https://github.com/rust-lang/crates.io-index" 4613 - checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 4751 + checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" 4614 4752 4615 4753 [[package]] 4616 4754 name = "strum_macros" 4617 - version = "0.25.3" 4755 + version = "0.26.1" 4618 4756 source = "registry+https://github.com/rust-lang/crates.io-index" 4619 - checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" 4757 + checksum = "7a3417fc93d76740d974a01654a09777cb500428cc874ca9f45edfe0c4d4cd18" 4620 4758 dependencies = [ 4621 4759 "heck", 4622 4760 "proc-macro2", 4623 4761 "quote", 4624 4762 "rustversion", 4625 - "syn 2.0.39", 4763 + "syn 2.0.52", 4626 4764 ] 4627 4765 4628 4766 [[package]] ··· 4644 4782 4645 4783 [[package]] 4646 4784 name = "syn" 4647 - version = "2.0.39" 4785 + version = "2.0.52" 4648 4786 source = "registry+https://github.com/rust-lang/crates.io-index" 4649 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 4787 + checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" 4650 4788 dependencies = [ 4651 4789 "proc-macro2", 4652 4790 "quote", ··· 4714 4852 4715 4853 [[package]] 4716 4854 name = "tempfile" 4717 - version = "3.8.1" 4855 + version = "3.10.1" 4718 4856 source = "registry+https://github.com/rust-lang/crates.io-index" 4719 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 4857 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 4720 4858 dependencies = [ 4721 4859 "cfg-if", 4722 4860 "fastrand", 4723 - "redox_syscall 0.4.1", 4724 4861 "rustix", 4725 - "windows-sys", 4862 + "windows-sys 0.52.0", 4726 4863 ] 4727 4864 4728 4865 [[package]] 4729 4866 name = "termcolor" 4730 - version = "1.4.0" 4867 + version = "1.4.1" 4731 4868 source = "registry+https://github.com/rust-lang/crates.io-index" 4732 - checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 4869 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4733 4870 dependencies = [ 4734 4871 "winapi-util", 4735 4872 ] 4736 4873 4737 4874 [[package]] 4738 4875 name = "testdir" 4739 - version = "0.8.1" 4876 + version = "0.9.1" 4740 4877 source = "registry+https://github.com/rust-lang/crates.io-index" 4741 - checksum = "480060a2e7e1d3c779d3dea588a81c0df78b6a6322b7ce25c0d2ec14a0d5d869" 4878 + checksum = "ee79e927b64d193f5abb60d20a0eb56be0ee5a242fdeb8ce3bf054177006de52" 4742 4879 dependencies = [ 4743 4880 "anyhow", 4744 4881 "backtrace", ··· 4750 4887 4751 4888 [[package]] 4752 4889 name = "textwrap" 4753 - version = "0.16.0" 4890 + version = "0.16.1" 4754 4891 source = "registry+https://github.com/rust-lang/crates.io-index" 4755 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 4892 + checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 4756 4893 dependencies = [ 4757 4894 "smawk", 4758 4895 "unicode-linebreak", ··· 4761 4898 4762 4899 [[package]] 4763 4900 name = "thiserror" 4764 - version = "1.0.50" 4901 + version = "1.0.57" 4765 4902 source = "registry+https://github.com/rust-lang/crates.io-index" 4766 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 4903 + checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" 4767 4904 dependencies = [ 4768 4905 "thiserror-impl", 4769 4906 ] 4770 4907 4771 4908 [[package]] 4772 4909 name = "thiserror-impl" 4773 - version = "1.0.50" 4910 + version = "1.0.57" 4774 4911 source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 4912 + checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" 4776 4913 dependencies = [ 4777 4914 "proc-macro2", 4778 4915 "quote", 4779 - "syn 2.0.39", 4916 + "syn 2.0.52", 4780 4917 ] 4781 4918 4782 4919 [[package]] 4783 4920 name = "thread_local" 4784 - version = "1.1.7" 4921 + version = "1.1.8" 4785 4922 source = "registry+https://github.com/rust-lang/crates.io-index" 4786 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 4923 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 4787 4924 dependencies = [ 4788 4925 "cfg-if", 4789 4926 "once_cell", ··· 4802 4939 4803 4940 [[package]] 4804 4941 name = "time" 4805 - version = "0.3.30" 4942 + version = "0.3.34" 4806 4943 source = "registry+https://github.com/rust-lang/crates.io-index" 4807 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 4944 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 4808 4945 dependencies = [ 4809 4946 "deranged", 4810 4947 "itoa", 4948 + "num-conv", 4811 4949 "powerfmt", 4812 4950 "serde", 4813 4951 "time-core", ··· 4822 4960 4823 4961 [[package]] 4824 4962 name = "time-macros" 4825 - version = "0.2.15" 4963 + version = "0.2.17" 4826 4964 source = "registry+https://github.com/rust-lang/crates.io-index" 4827 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 4965 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 4828 4966 dependencies = [ 4967 + "num-conv", 4829 4968 "time-core", 4830 4969 ] 4831 4970 ··· 4856 4995 4857 4996 [[package]] 4858 4997 name = "tokio" 4859 - version = "1.34.0" 4998 + version = "1.36.0" 4860 4999 source = "registry+https://github.com/rust-lang/crates.io-index" 4861 - checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 5000 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 4862 5001 dependencies = [ 4863 5002 "backtrace", 4864 5003 "bytes", ··· 4868 5007 "parking_lot", 4869 5008 "pin-project-lite", 4870 5009 "signal-hook-registry", 4871 - "socket2 0.5.5", 5010 + "socket2", 4872 5011 "tokio-macros", 4873 - "windows-sys", 5012 + "windows-sys 0.48.0", 4874 5013 ] 4875 5014 4876 5015 [[package]] ··· 4891 5030 dependencies = [ 4892 5031 "proc-macro2", 4893 5032 "quote", 4894 - "syn 2.0.39", 5033 + "syn 2.0.52", 4895 5034 ] 4896 5035 4897 5036 [[package]] ··· 4947 5086 4948 5087 [[package]] 4949 5088 name = "tokio-tungstenite" 4950 - version = "0.20.1" 5089 + version = "0.21.0" 4951 5090 source = "registry+https://github.com/rust-lang/crates.io-index" 4952 - checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" 5091 + checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" 4953 5092 dependencies = [ 4954 5093 "futures-util", 4955 5094 "log", ··· 4973 5112 4974 5113 [[package]] 4975 5114 name = "toml" 4976 - version = "0.8.8" 5115 + version = "0.8.10" 4977 5116 source = "registry+https://github.com/rust-lang/crates.io-index" 4978 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 5117 + checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" 4979 5118 dependencies = [ 4980 5119 "serde", 4981 5120 "serde_spanned", 4982 5121 "toml_datetime", 4983 - "toml_edit", 5122 + "toml_edit 0.22.6", 4984 5123 ] 4985 5124 4986 5125 [[package]] ··· 4994 5133 4995 5134 [[package]] 4996 5135 name = "toml_edit" 4997 - version = "0.21.0" 5136 + version = "0.21.1" 5137 + source = "registry+https://github.com/rust-lang/crates.io-index" 5138 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 5139 + dependencies = [ 5140 + "indexmap", 5141 + "toml_datetime", 5142 + "winnow 0.5.40", 5143 + ] 5144 + 5145 + [[package]] 5146 + name = "toml_edit" 5147 + version = "0.22.6" 4998 5148 source = "registry+https://github.com/rust-lang/crates.io-index" 4999 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 5149 + checksum = "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6" 5000 5150 dependencies = [ 5001 5151 "indexmap", 5002 5152 "serde", 5003 5153 "serde_spanned", 5004 5154 "toml_datetime", 5005 - "winnow", 5155 + "winnow 0.6.5", 5006 5156 ] 5007 5157 5008 5158 [[package]] ··· 5053 5203 dependencies = [ 5054 5204 "proc-macro2", 5055 5205 "quote", 5056 - "syn 2.0.39", 5206 + "syn 2.0.52", 5057 5207 ] 5058 5208 5059 5209 [[package]] ··· 5107 5257 5108 5258 [[package]] 5109 5259 name = "try-lock" 5110 - version = "0.2.4" 5260 + version = "0.2.5" 5111 5261 source = "registry+https://github.com/rust-lang/crates.io-index" 5112 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 5262 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 5113 5263 5114 5264 [[package]] 5115 5265 name = "tungstenite" 5116 - version = "0.20.1" 5266 + version = "0.21.0" 5117 5267 source = "registry+https://github.com/rust-lang/crates.io-index" 5118 - checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 5268 + checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" 5119 5269 dependencies = [ 5120 5270 "byteorder", 5121 5271 "bytes", 5122 5272 "data-encoding", 5123 - "http", 5273 + "http 1.1.0", 5124 5274 "httparse", 5125 5275 "log", 5126 5276 "rand 0.8.5", ··· 5147 5297 5148 5298 [[package]] 5149 5299 name = "typescript-type-def" 5150 - version = "0.5.9" 5300 + version = "0.5.11" 5151 5301 source = "registry+https://github.com/rust-lang/crates.io-index" 5152 - checksum = "8a548b68faefac1ef83c3682cece0046b4f3efc943a067aacb4dfb99be299f60" 5302 + checksum = "19d9560109be8840693dcb09ed745851f3713bee7b23534b8cab65b7ff9383f1" 5153 5303 dependencies = [ 5154 5304 "serde_json", 5155 5305 "typescript-type-def-derive", ··· 5157 5307 5158 5308 [[package]] 5159 5309 name = "typescript-type-def-derive" 5160 - version = "0.5.9" 5310 + version = "0.5.11" 5161 5311 source = "registry+https://github.com/rust-lang/crates.io-index" 5162 - checksum = "2f205a929a19c5dd74f80c9f795c33b4416f7efef7d7b2772f0eff96bdd71c35" 5312 + checksum = "2835fe6badda3e20a012d19d6593ded0fc11f659d5d5152394061ffbb03b4b04" 5163 5313 dependencies = [ 5164 5314 "darling 0.13.4", 5165 5315 "ident_case", ··· 5177 5327 5178 5328 [[package]] 5179 5329 name = "unicode-bidi" 5180 - version = "0.3.13" 5330 + version = "0.3.15" 5181 5331 source = "registry+https://github.com/rust-lang/crates.io-index" 5182 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 5332 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 5183 5333 5184 5334 [[package]] 5185 5335 name = "unicode-ident" ··· 5195 5345 5196 5346 [[package]] 5197 5347 name = "unicode-normalization" 5198 - version = "0.1.22" 5348 + version = "0.1.23" 5199 5349 source = "registry+https://github.com/rust-lang/crates.io-index" 5200 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5350 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 5201 5351 dependencies = [ 5202 5352 "tinyvec", 5203 5353 ] 5204 5354 5205 5355 [[package]] 5206 5356 name = "unicode-segmentation" 5207 - version = "1.10.1" 5357 + version = "1.11.0" 5208 5358 source = "registry+https://github.com/rust-lang/crates.io-index" 5209 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 5359 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 5210 5360 5211 5361 [[package]] 5212 5362 name = "unicode-width" ··· 5234 5384 5235 5385 [[package]] 5236 5386 name = "url" 5237 - version = "2.4.1" 5387 + version = "2.5.0" 5238 5388 source = "registry+https://github.com/rust-lang/crates.io-index" 5239 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 5389 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 5240 5390 dependencies = [ 5241 5391 "form_urlencoded", 5242 - "idna", 5392 + "idna 0.5.0", 5243 5393 "percent-encoding", 5244 5394 ] 5245 5395 ··· 5257 5407 5258 5408 [[package]] 5259 5409 name = "uuid" 5260 - version = "1.6.1" 5410 + version = "1.7.0" 5261 5411 source = "registry+https://github.com/rust-lang/crates.io-index" 5262 - checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 5412 + checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 5263 5413 dependencies = [ 5264 - "getrandom 0.2.11", 5414 + "getrandom 0.2.12", 5265 5415 "serde", 5266 5416 ] 5267 5417 ··· 5285 5435 5286 5436 [[package]] 5287 5437 name = "walkdir" 5288 - version = "2.4.0" 5438 + version = "2.5.0" 5289 5439 source = "registry+https://github.com/rust-lang/crates.io-index" 5290 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 5440 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 5291 5441 dependencies = [ 5292 5442 "same-file", 5293 5443 "winapi-util", ··· 5321 5471 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5322 5472 5323 5473 [[package]] 5474 + name = "wasite" 5475 + version = "0.1.0" 5476 + source = "registry+https://github.com/rust-lang/crates.io-index" 5477 + checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 5478 + 5479 + [[package]] 5324 5480 name = "wasm-bindgen" 5325 - version = "0.2.89" 5481 + version = "0.2.92" 5326 5482 source = "registry+https://github.com/rust-lang/crates.io-index" 5327 - checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 5483 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 5328 5484 dependencies = [ 5329 5485 "cfg-if", 5330 5486 "wasm-bindgen-macro", ··· 5332 5488 5333 5489 [[package]] 5334 5490 name = "wasm-bindgen-backend" 5335 - version = "0.2.89" 5491 + version = "0.2.92" 5336 5492 source = "registry+https://github.com/rust-lang/crates.io-index" 5337 - checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 5493 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 5338 5494 dependencies = [ 5339 5495 "bumpalo", 5340 5496 "log", 5341 5497 "once_cell", 5342 5498 "proc-macro2", 5343 5499 "quote", 5344 - "syn 2.0.39", 5500 + "syn 2.0.52", 5345 5501 "wasm-bindgen-shared", 5346 5502 ] 5347 5503 5348 5504 [[package]] 5349 5505 name = "wasm-bindgen-futures" 5350 - version = "0.4.38" 5506 + version = "0.4.42" 5351 5507 source = "registry+https://github.com/rust-lang/crates.io-index" 5352 - checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 5508 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 5353 5509 dependencies = [ 5354 5510 "cfg-if", 5355 5511 "js-sys", ··· 5359 5515 5360 5516 [[package]] 5361 5517 name = "wasm-bindgen-macro" 5362 - version = "0.2.89" 5518 + version = "0.2.92" 5363 5519 source = "registry+https://github.com/rust-lang/crates.io-index" 5364 - checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 5520 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 5365 5521 dependencies = [ 5366 5522 "quote", 5367 5523 "wasm-bindgen-macro-support", ··· 5369 5525 5370 5526 [[package]] 5371 5527 name = "wasm-bindgen-macro-support" 5372 - version = "0.2.89" 5528 + version = "0.2.92" 5373 5529 source = "registry+https://github.com/rust-lang/crates.io-index" 5374 - checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 5530 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 5375 5531 dependencies = [ 5376 5532 "proc-macro2", 5377 5533 "quote", 5378 - "syn 2.0.39", 5534 + "syn 2.0.52", 5379 5535 "wasm-bindgen-backend", 5380 5536 "wasm-bindgen-shared", 5381 5537 ] 5382 5538 5383 5539 [[package]] 5384 5540 name = "wasm-bindgen-shared" 5385 - version = "0.2.89" 5541 + version = "0.2.92" 5386 5542 source = "registry+https://github.com/rust-lang/crates.io-index" 5387 - checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 5543 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 5388 5544 5389 5545 [[package]] 5390 5546 name = "web-sys" 5391 - version = "0.3.65" 5547 + version = "0.3.69" 5392 5548 source = "registry+https://github.com/rust-lang/crates.io-index" 5393 - checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 5549 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 5394 5550 dependencies = [ 5395 5551 "js-sys", 5396 5552 "wasm-bindgen", ··· 5398 5554 5399 5555 [[package]] 5400 5556 name = "weezl" 5401 - version = "0.1.7" 5557 + version = "0.1.8" 5402 5558 source = "registry+https://github.com/rust-lang/crates.io-index" 5403 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 5559 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 5404 5560 5405 5561 [[package]] 5406 5562 name = "whoami" 5407 - version = "1.4.1" 5563 + version = "1.5.0" 5408 5564 source = "registry+https://github.com/rust-lang/crates.io-index" 5409 - checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" 5565 + checksum = "0fec781d48b41f8163426ed18e8fc2864c12937df9ce54c88ede7bd47270893e" 5410 5566 dependencies = [ 5411 - "wasm-bindgen", 5567 + "redox_syscall 0.4.1", 5568 + "wasite", 5412 5569 "web-sys", 5413 5570 ] 5414 5571 ··· 5464 5621 5465 5622 [[package]] 5466 5623 name = "windows-core" 5467 - version = "0.51.1" 5624 + version = "0.52.0" 5468 5625 source = "registry+https://github.com/rust-lang/crates.io-index" 5469 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5626 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 5470 5627 dependencies = [ 5471 - "windows-targets", 5628 + "windows-targets 0.52.4", 5472 5629 ] 5473 5630 5474 5631 [[package]] ··· 5477 5634 source = "registry+https://github.com/rust-lang/crates.io-index" 5478 5635 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5479 5636 dependencies = [ 5480 - "windows-targets", 5637 + "windows-targets 0.48.5", 5638 + ] 5639 + 5640 + [[package]] 5641 + name = "windows-sys" 5642 + version = "0.52.0" 5643 + source = "registry+https://github.com/rust-lang/crates.io-index" 5644 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5645 + dependencies = [ 5646 + "windows-targets 0.52.4", 5481 5647 ] 5482 5648 5483 5649 [[package]] ··· 5486 5652 source = "registry+https://github.com/rust-lang/crates.io-index" 5487 5653 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5488 5654 dependencies = [ 5489 - "windows_aarch64_gnullvm", 5655 + "windows_aarch64_gnullvm 0.48.5", 5490 5656 "windows_aarch64_msvc 0.48.5", 5491 5657 "windows_i686_gnu 0.48.5", 5492 5658 "windows_i686_msvc 0.48.5", 5493 5659 "windows_x86_64_gnu 0.48.5", 5494 - "windows_x86_64_gnullvm", 5660 + "windows_x86_64_gnullvm 0.48.5", 5495 5661 "windows_x86_64_msvc 0.48.5", 5496 5662 ] 5497 5663 5498 5664 [[package]] 5665 + name = "windows-targets" 5666 + version = "0.52.4" 5667 + source = "registry+https://github.com/rust-lang/crates.io-index" 5668 + checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 5669 + dependencies = [ 5670 + "windows_aarch64_gnullvm 0.52.4", 5671 + "windows_aarch64_msvc 0.52.4", 5672 + "windows_i686_gnu 0.52.4", 5673 + "windows_i686_msvc 0.52.4", 5674 + "windows_x86_64_gnu 0.52.4", 5675 + "windows_x86_64_gnullvm 0.52.4", 5676 + "windows_x86_64_msvc 0.52.4", 5677 + ] 5678 + 5679 + [[package]] 5499 5680 name = "windows_aarch64_gnullvm" 5500 5681 version = "0.48.5" 5501 5682 source = "registry+https://github.com/rust-lang/crates.io-index" 5502 5683 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5503 5684 5504 5685 [[package]] 5686 + name = "windows_aarch64_gnullvm" 5687 + version = "0.52.4" 5688 + source = "registry+https://github.com/rust-lang/crates.io-index" 5689 + checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 5690 + 5691 + [[package]] 5505 5692 name = "windows_aarch64_msvc" 5506 5693 version = "0.32.0" 5507 5694 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5512 5699 version = "0.48.5" 5513 5700 source = "registry+https://github.com/rust-lang/crates.io-index" 5514 5701 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5702 + 5703 + [[package]] 5704 + name = "windows_aarch64_msvc" 5705 + version = "0.52.4" 5706 + source = "registry+https://github.com/rust-lang/crates.io-index" 5707 + checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 5515 5708 5516 5709 [[package]] 5517 5710 name = "windows_i686_gnu" ··· 5526 5719 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5527 5720 5528 5721 [[package]] 5722 + name = "windows_i686_gnu" 5723 + version = "0.52.4" 5724 + source = "registry+https://github.com/rust-lang/crates.io-index" 5725 + checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 5726 + 5727 + [[package]] 5529 5728 name = "windows_i686_msvc" 5530 5729 version = "0.32.0" 5531 5730 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5538 5737 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5539 5738 5540 5739 [[package]] 5740 + name = "windows_i686_msvc" 5741 + version = "0.52.4" 5742 + source = "registry+https://github.com/rust-lang/crates.io-index" 5743 + checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 5744 + 5745 + [[package]] 5541 5746 name = "windows_x86_64_gnu" 5542 5747 version = "0.32.0" 5543 5748 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5550 5755 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5551 5756 5552 5757 [[package]] 5758 + name = "windows_x86_64_gnu" 5759 + version = "0.52.4" 5760 + source = "registry+https://github.com/rust-lang/crates.io-index" 5761 + checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 5762 + 5763 + [[package]] 5553 5764 name = "windows_x86_64_gnullvm" 5554 5765 version = "0.48.5" 5555 5766 source = "registry+https://github.com/rust-lang/crates.io-index" 5556 5767 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5557 5768 5558 5769 [[package]] 5770 + name = "windows_x86_64_gnullvm" 5771 + version = "0.52.4" 5772 + source = "registry+https://github.com/rust-lang/crates.io-index" 5773 + checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 5774 + 5775 + [[package]] 5559 5776 name = "windows_x86_64_msvc" 5560 5777 version = "0.32.0" 5561 5778 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5568 5785 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5569 5786 5570 5787 [[package]] 5788 + name = "windows_x86_64_msvc" 5789 + version = "0.52.4" 5790 + source = "registry+https://github.com/rust-lang/crates.io-index" 5791 + checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 5792 + 5793 + [[package]] 5571 5794 name = "winnow" 5572 - version = "0.5.19" 5795 + version = "0.5.40" 5796 + source = "registry+https://github.com/rust-lang/crates.io-index" 5797 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5798 + dependencies = [ 5799 + "memchr", 5800 + ] 5801 + 5802 + [[package]] 5803 + name = "winnow" 5804 + version = "0.6.5" 5573 5805 source = "registry+https://github.com/rust-lang/crates.io-index" 5574 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 5806 + checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" 5575 5807 dependencies = [ 5576 5808 "memchr", 5577 5809 ] ··· 5583 5815 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5584 5816 dependencies = [ 5585 5817 "cfg-if", 5586 - "windows-sys", 5818 + "windows-sys 0.48.0", 5587 5819 ] 5588 5820 5589 5821 [[package]] 5590 5822 name = "x25519-dalek" 5591 - version = "2.0.0" 5823 + version = "2.0.1" 5592 5824 source = "registry+https://github.com/rust-lang/crates.io-index" 5593 - checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96" 5825 + checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 5594 5826 dependencies = [ 5595 - "curve25519-dalek 4.1.1", 5827 + "curve25519-dalek 4.1.2", 5596 5828 "rand_core 0.6.4", 5597 5829 "serde", 5598 5830 "zeroize", ··· 5613 5845 "oid-registry", 5614 5846 "rusticata-macros", 5615 5847 "thiserror", 5616 - "time 0.3.30", 5848 + "time 0.3.34", 5617 5849 ] 5618 5850 5619 5851 [[package]] 5620 5852 name = "xattr" 5621 - version = "1.0.1" 5853 + version = "1.3.1" 5622 5854 source = "registry+https://github.com/rust-lang/crates.io-index" 5623 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 5855 + checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 5624 5856 dependencies = [ 5625 5857 "libc", 5858 + "linux-raw-sys", 5859 + "rustix", 5626 5860 ] 5627 5861 5628 5862 [[package]] ··· 5637 5871 source = "registry+https://github.com/rust-lang/crates.io-index" 5638 5872 checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 5639 5873 dependencies = [ 5640 - "time 0.3.30", 5874 + "time 0.3.34", 5641 5875 ] 5642 5876 5643 5877 [[package]] 5644 5878 name = "yerpc" 5645 - version = "0.5.2" 5879 + version = "0.5.3" 5646 5880 source = "registry+https://github.com/rust-lang/crates.io-index" 5647 - checksum = "75b5547af776328f66a5476ea3b7c0789e6fed164eb32d1a2122cfb39ffa505d" 5881 + checksum = "31978be1300d9d078f34ebb05660fbf3b5114611316a4777bb9ce269a7a33f38" 5648 5882 dependencies = [ 5649 5883 "anyhow", 5650 5884 "async-channel 1.9.0", ··· 5665 5899 5666 5900 [[package]] 5667 5901 name = "yerpc_derive" 5668 - version = "0.5.2" 5902 + version = "0.5.3" 5669 5903 source = "registry+https://github.com/rust-lang/crates.io-index" 5670 - checksum = "f321bb5f728fb066af06c5a994e4375f1f8b054ee6d650766f0bd68dfa4faefe" 5904 + checksum = "0e510aa045bc7be964b982c68f001933fce4fbe609bb98de60068fa8cefe6308" 5671 5905 dependencies = [ 5672 5906 "convert_case 0.5.0", 5673 5907 "darling 0.14.4", ··· 5678 5912 5679 5913 [[package]] 5680 5914 name = "zerocopy" 5681 - version = "0.7.27" 5915 + version = "0.7.32" 5682 5916 source = "registry+https://github.com/rust-lang/crates.io-index" 5683 - checksum = "f43de342578a3a14a9314a2dab1942cbfcbe5686e1f91acdc513058063eafe18" 5917 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 5684 5918 dependencies = [ 5685 5919 "zerocopy-derive", 5686 5920 ] 5687 5921 5688 5922 [[package]] 5689 5923 name = "zerocopy-derive" 5690 - version = "0.7.27" 5924 + version = "0.7.32" 5691 5925 source = "registry+https://github.com/rust-lang/crates.io-index" 5692 - checksum = "e1012d89e3acb79fad7a799ce96866cfb8098b74638465ea1b1533d35900ca90" 5926 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 5693 5927 dependencies = [ 5694 5928 "proc-macro2", 5695 5929 "quote", 5696 - "syn 2.0.39", 5930 + "syn 2.0.52", 5697 5931 ] 5698 5932 5699 5933 [[package]] ··· 5713 5947 dependencies = [ 5714 5948 "proc-macro2", 5715 5949 "quote", 5716 - "syn 2.0.39", 5950 + "syn 2.0.52", 5717 5951 ]
+3 -5
pkgs/development/libraries/libdeltachat/default.nix
··· 23 23 cargoLock = { 24 24 lockFile = ./Cargo.lock; 25 25 outputHashes = { 26 - "email-0.0.21" = "sha256-u4CsK/JqFgq5z3iJGxxGtb7QbSkOAqmOvrmagsqfXIU="; 26 + "email-0.0.20" = "sha256-rV4Uzqt2Qdrfi5Ti1r+Si1c2iW1kKyWLwOgLkQ5JGGw="; 27 27 "encoded-words-0.2.0" = "sha256-KK9st0hLFh4dsrnLd6D8lC6pRFFs8W+WpZSGMGJcosk="; 28 - "imap-proto-0.16.3" = "sha256-okIHA8MQ1K/tcKHZYGh83zom1ULGHZ/KGxgcwiE1+sE="; 29 - "iroh-0.4.2" = "sha256-VXNMmj+AvlY/W2JRWMICoNOqpFEahsUDxypHRg185Ao="; 30 28 "lettre-0.9.2" = "sha256-+hU1cFacyyeC9UGVBpS14BWlJjHy90i/3ynMkKAzclk="; 31 29 }; 32 30 }; 33 31 in stdenv.mkDerivation rec { 34 32 pname = "libdeltachat"; 35 - version = "1.131.9"; 33 + version = "1.136.1"; 36 34 37 35 src = fetchFromGitHub { 38 36 owner = "deltachat"; 39 37 repo = "deltachat-core-rust"; 40 38 rev = "v${version}"; 41 - hash = "sha256-xZai5RsrfT6bYzMpNdKncmDzBzcAcEtZZmh7f+3g5Hs="; 39 + hash = "sha256-+mwOTm9SWgZjGI0TFHMmLgQJQSXyYMqteqQiubGhFkU="; 42 40 }; 43 41 44 42 patches = [
+3 -4
pkgs/development/python-modules/bandit/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , isPy3k 5 4 , pythonOlder 6 5 , gitpython 7 6 , pbr ··· 12 11 13 12 buildPythonPackage rec { 14 13 pname = "bandit"; 15 - version = "1.7.7"; 16 - format = "setuptools"; 14 + version = "1.7.8"; 15 + pyproject = true; 17 16 18 17 disabled = pythonOlder "3.8"; 19 18 20 19 src = fetchPypi { 21 20 inherit pname version; 22 - hash = "sha256-UnkGvsYIjLSZquMbyWKGS053Vp6dUp7lHfOpO0uKsoo="; 21 + hash = "sha256-Nt5Q9yCFarJKJNuqX+4sZgUO2XwUd+ChFZ3qsXdeq2s="; 23 22 }; 24 23 25 24 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/bthome-ble/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "bthome-ble"; 16 - version = "3.6.0"; 17 - format = "pyproject"; 16 + version = "3.7.0"; 17 + pyproject = true; 18 18 19 19 disabled = pythonOlder "3.9"; 20 20 ··· 22 22 owner = "Bluetooth-Devices"; 23 23 repo = "bthome-ble"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-CgPmBZGciK5WsDc46B+v7FmDRwRjxt7VasZg+3xSLN0="; 25 + hash = "sha256-ALLeJdEYCFtGZb7dO7xW8Mv331kmQpl0e/CUt9erjHc="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+1 -5
pkgs/development/python-modules/deltachat/default.nix
··· 4 4 , pkg-config 5 5 , pkgconfig 6 6 , setuptools-scm 7 - , wheel 8 7 , libdeltachat 9 8 , cffi 10 9 , imap-tools 11 10 , requests 12 11 , pluggy 13 - , setuptools 14 12 , pytestCheckHook 15 13 }: 16 14 ··· 20 18 sourceRoot = "${src.name}/python"; 21 19 22 20 disabled = pythonOlder "3.7"; 23 - format = "pyproject"; 21 + pyproject = true; 24 22 25 23 nativeBuildInputs = [ 26 24 cffi 27 25 pkg-config 28 26 pkgconfig 29 - setuptools 30 27 setuptools-scm 31 - wheel 32 28 ]; 33 29 34 30 buildInputs = [
+2 -2
pkgs/development/python-modules/jwcrypto/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "jwcrypto"; 14 - version = "1.5.5"; 14 + version = "1.5.6"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-WefV5FidGwcXDzaOIMMusyoCORGAapcjsfQ6DYswKNY="; 21 + hash = "sha256-dxqHdioMCBrmFmlYqVT4CEiCCyqwZpN9yLg3nWWxsDk="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/piccolo-theme/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "piccolo-theme"; 5 - version = "0.19.0"; 5 + version = "0.20.0"; 6 6 format = "setuptools"; 7 7 8 8 src = fetchPypi { 9 9 pname = "piccolo_theme"; 10 10 inherit version; 11 - hash = "sha256-pGMOc/GSh3q2HW1mfW+XFgpOyiXd3cdh56cvXatseuc="; 11 + hash = "sha256-/I6Q///oZ1OlSQEOwQ4KtUuj73ra6poyDhfhiF5nJrE="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyngrok/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyngrok"; 11 - version = "7.1.4"; 11 + version = "7.1.5"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.8"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-MlTT2a4VvazWP+EPLb1W3KZIf284OM4mI6LA8ToBtVY="; 18 + hash = "sha256-9oS/iBuAWQ3COlnhgeN0e7CFj6VNbkfpPe35tO0BSpo="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "trimesh"; 13 - version = "4.1.7"; 13 + version = "4.1.8"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-bO7fIrk+ScSvz1iwLMdPN+fK9T5VhIEitxdZRnLBSxA="; 20 + hash = "sha256-oG0UejqUe+8OcgSZF/Ln/QC70GifiHHkkI5EelPF+0A="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/types-pillow/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-pillow"; 8 - version = "10.2.0.20240206"; 8 + version = "10.2.0.20240213"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit version; 13 13 pname = "types-Pillow"; 14 - hash = "sha256-8N5RB/+DYv/bvVPsiWICrJBearIq54S0a82tFg6hQ7k="; 14 + hash = "sha256-SAC2G/fqva4vGxet4NCAcJ7TPp8moukA5HDotW6+I4c="; 15 15 }; 16 16 17 17 # Modules doesn't have tests
+10 -5
pkgs/development/python-modules/unidecode/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pytestCheckHook 5 5 , pythonOlder 6 + , setuptools 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "unidecode"; 10 - version = "1.3.6"; 11 - format = "setuptools"; 11 + version = "1.3.8"; 12 + pyproject = true; 12 13 13 14 disabled = pythonOlder "3.5"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "avian2"; 17 - repo = pname; 18 - rev = "${pname}-${version}"; 19 - hash = "sha256-75E2OlrGIxvwR9MeZEB4bDLdFd1SdprCVcBIJCPS3hM="; 18 + repo = "unidecode"; 19 + rev = "refs/tags/${pname}-${version}"; 20 + hash = "sha256-OoJSY+dNNISyVwKuRboMH7Je8nYFKxus2c4v3VsmyRE="; 20 21 }; 22 + 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 21 26 22 27 nativeCheckInputs = [ 23 28 pytestCheckHook
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "checkov"; 8 - version = "3.2.32"; 8 + version = "3.2.33"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bridgecrewio"; 13 13 repo = "checkov"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-brebisU7YhbLHEojJUu5Ei0F6hMHg1lsYjppBAXewYQ="; 15 + hash = "sha256-OI5c1L4wWM9C+wKJCY+VIoIyxoNVAdlZoeu3zbWSNPY="; 16 16 }; 17 17 18 18 patches = [
+3 -3
pkgs/development/tools/firebase-tools/default.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "firebase-tools"; 11 - version = "13.4.0"; 11 + version = "13.4.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "firebase"; 15 15 repo = "firebase-tools"; 16 16 rev = "v${version}"; 17 - hash = "sha256-15u6upX9xPSlXhRrCxqmAuzjkfnpkXk8vwt1pI7c7Tk="; 17 + hash = "sha256-XznQP9kcool3dgydMk1tq68ms+/TKVgKj8EvhdFr8LE="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-on4NKTGpdEb9l0JoybbssUN6z63Yg5AT8sHeGRGUEDA="; 20 + npmDepsHash = "sha256-mDjSWIg/mtB1nl0Znu4MQO8Rr0EYfRbArx650DnqZd8="; 21 21 22 22 postPatch = '' 23 23 ln -s npm-shrinkwrap.json package-lock.json
+2 -2
pkgs/development/tools/operator-sdk/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "operator-sdk"; 10 - version = "1.34.0"; 10 + version = "1.34.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "operator-framework"; 14 14 repo = pname; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-7Kkx1XMWoi1P3UA2HlCsqVxr2d5jjs9JxMUvHWs1nlk="; 16 + hash = "sha256-3S7jR76b9MZpqn4Hj9yhjfravBk1PiESJEbG5XR4tnI="; 17 17 }; 18 18 19 19 vendorHash = "sha256-YspUrnSS6d8Ta8dmUjx9A5D/V5Bqm08DQJrRBaIGyQg=";
+5 -5
pkgs/servers/icecream/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, zstd, docbook_xml_dtd_45 }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, pkg-config, zstd, docbook_xml_dtd_45 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "icecream"; 5 - version = "2020-04-15"; 5 + version = "1.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "icecc"; 9 9 repo = pname; 10 - rev = "c370c4d701d05e1872d44d1c1642a774a7f25807"; 11 - sha256 = "0ld2ihd39irlk4wshpbw7inmgyl3x0gbkgsy10izcm1wwfc0x2ac"; 10 + rev = version; 11 + sha256 = "sha256-nBdUbWNmTxKpkgFM3qbooNQISItt5eNKtnnzpBGVbd4="; 12 12 }; 13 13 enableParallelBuilding = true; 14 14 15 - nativeBuildInputs = [ autoreconfHook docbook2x ]; 15 + nativeBuildInputs = [ autoreconfHook docbook2x pkg-config ]; 16 16 buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ]; 17 17 18 18 meta = with lib; {
+2 -2
pkgs/shells/zsh/zsh-abbr/default.nix
··· 5 5 }: 6 6 stdenv.mkDerivation rec { 7 7 pname = "zsh-abbr"; 8 - version = "5.3.0"; 8 + version = "5.4.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "olets"; 12 12 repo = "zsh-abbr"; 13 13 rev = "v${version}"; 14 - hash = "sha256-TdTjIt8SmwxXJqfaaCyBnBRzMm1Ux1nELGTkpY2Lmrc="; 14 + hash = "sha256-gEBGMVR1lMVKNPVuPjtdPkgOXI1MWO0EAtk7JRmS0Ok="; 15 15 }; 16 16 17 17 strictDeps = true;
+2 -2
pkgs/tools/graphics/gmic-qt/default.nix
··· 54 54 55 55 stdenv.mkDerivation (finalAttrs: { 56 56 pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}"; 57 - version = "3.3.3"; 57 + version = "3.3.4"; 58 58 59 59 src = fetchzip { 60 60 url = "https://gmic.eu/files/source/gmic_${finalAttrs.version}.tar.gz"; 61 - hash = "sha256-LkWQ3fSHJSaXztX+soGZ+pl3MnXNgw6tV09356bAfYY="; 61 + hash = "sha256-/Hh5yzH//i01kyeoqETokvsKUOcY2iZsiYJBEmgw1rU="; 62 62 }; 63 63 64 64 nativeBuildInputs = [
+3 -3
pkgs/tools/misc/aichat/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "aichat"; 11 - version = "0.13.0"; 11 + version = "0.14.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sigoden"; 15 15 repo = "aichat"; 16 16 rev = "v${version}"; 17 - hash = "sha256-1m0Sf8qC5kGOfXkxQVri+kL3sZfOFKH3TcpNhuOFPVQ="; 17 + hash = "sha256-0VNFqfl1La6jSUE7IsS/pYIQGaNrAgSgiGUjo65pUR4="; 18 18 }; 19 19 20 - cargoHash = "sha256-/oEyI6m5j3u89NeEwM4+z1exZfu0FMSf14scAiax3CE="; 20 + cargoHash = "sha256-zrX4e9Z8FgZvvNyyiw29Dr/0KO1uL20/+DUASyPjxjE="; 21 21 22 22 nativeBuildInputs = [ 23 23 pkg-config
+2 -2
pkgs/tools/misc/bash_unit/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "bash_unit"; 7 - version = "2.2.0"; 7 + version = "2.3.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "pgrange"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-sYs7b6I1VhO2TLLhMFuaV9AtLoavcoKvCRYfVNGAg20="; 13 + sha256 = "sha256-kd5h12yjzvR/RBE/IjVXNSyjcf+rz6B2eoO8w2jiaps="; 14 14 }; 15 15 16 16 patchPhase = ''
+3 -2
pkgs/tools/misc/tio/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion }: 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion, darwin }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tio"; ··· 13 13 14 14 strictDeps = true; 15 15 16 - buildInputs = [ inih ]; 16 + buildInputs = [ inih ] 17 + ++ lib.optionals (stdenv.hostPlatform.isDarwin) [ darwin.apple_sdk.frameworks.IOKit ]; 17 18 18 19 nativeBuildInputs = [ meson ninja pkg-config bash-completion ]; 19 20
+2 -2
pkgs/tools/misc/ugs/default.nix
··· 18 18 in 19 19 stdenv.mkDerivation rec { 20 20 pname = "ugs"; 21 - version = "2.1.5"; 21 + version = "2.1.6"; 22 22 23 23 src = fetchzip { 24 24 url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip"; 25 - hash = "sha256-StXEtDJ3UjTWgiQQ8HQtPcUENQPosdHis1eo81Jf96M="; 25 + hash = "sha256-6L/4s/QmlTnYnhwLgPf7z8UVkBUYXi3Wb3doa5JCViE="; 26 26 }; 27 27 28 28 dontUnpack = true;
+1
pkgs/top-level/aliases.nix
··· 694 694 markdown-pp = throw "markdown-pp was removed from nixpkgs, because the upstream archived it on 2021-09-02"; # Added 2023-07-22 695 695 markmind = throw "markmind has been removed from nixpkgs, because it depended on an old version of electron"; # Added 2023-09-12 696 696 matrique = spectral; # Added 2020-01-27 697 + matrixcli = throw "'matrixcli' has been removed due to being unmaintained and broken functionality. Recommend 'matrix-commander' as an alternative"; # Added 2024-03-09 697 698 matrix-recorder = throw "matrix-recorder has been removed due to being unmaintained"; # Added 2023-05-21 698 699 maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17 699 700 mbox = throw "'mbox' has been removed, as it was broken and unmaintained"; # Added 2023-12-21
+3 -11
pkgs/top-level/all-packages.nix
··· 7297 7297 builtins.mapAttrs (_: pin-to-gcc12-if-gcc13) 7298 7298 (darwin.apple_sdk_11_0.callPackage ../tools/networking/curl-impersonate { }); 7299 7299 curl-impersonate-ff = pin-to-gcc12-if-gcc13 curl-impersonate.curl-impersonate-ff; 7300 - curl-impersonate-chrom = pin-to-gcc12-if-gcc13 curl-impersonate.curl-impersonate-chrome; 7300 + curl-impersonate-chrome = pin-to-gcc12-if-gcc13 curl-impersonate.curl-impersonate-chrome; 7301 7301 7302 7302 curlie = callPackage ../tools/networking/curlie { }; 7303 7303 ··· 26037 26037 26038 26038 engelsystem = callPackage ../servers/web-apps/engelsystem { php = php81; }; 26039 26039 26040 - envoy = pin-to-gcc12-if-gcc13 (callPackage ../servers/http/envoy { 26040 + envoy = callPackage ../servers/http/envoy { 26041 26041 go = go_1_20; 26042 26042 jdk = openjdk11_headless; 26043 26043 gn = gn1924; 26044 - }); 26044 + }; 26045 26045 26046 26046 ergochat = callPackage ../servers/irc/ergochat { }; 26047 26047 ··· 32721 32721 32722 32722 kondo = callPackage ../applications/misc/kondo { }; 32723 32723 32724 - kooha = callPackage ../applications/video/kooha { }; 32725 - 32726 32724 kotatogram-desktop = libsForQt5.callPackage ../applications/networking/instant-messengers/telegram/kotatogram-desktop { 32727 32725 inherit (darwin.apple_sdk_11_0.frameworks) Cocoa CoreFoundation CoreServices CoreText CoreGraphics 32728 32726 CoreMedia OpenGL AudioUnit ApplicationServices Foundation AGL Security SystemConfiguration ··· 33197 33195 mastodon-bot = nodePackages.mastodon-bot; 33198 33196 33199 33197 matchbox = callPackage ../applications/window-managers/matchbox { }; 33200 - 33201 - matrixcli = callPackage ../applications/networking/instant-messengers/matrixcli { 33202 - inherit (python3Packages) buildPythonApplication buildPythonPackage 33203 - pygobject3 pytest-runner requests responses pytest python-olm 33204 - canonicaljson; 33205 - }; 33206 33198 33207 33199 matrix-commander = python3Packages.callPackage ../applications/networking/instant-messengers/matrix-commander { }; 33208 33200