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