Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
c26bb8fc 6ba70cf6

+808 -6264
+21
maintainers/maintainer-list.nix
··· 4460 4460 githubId = 424946; 4461 4461 name = "James Earl Douglas"; 4462 4462 }; 4463 + earthengine = { 4464 + email = "earthengine@skiff.com"; 4465 + github = "ee2500"; 4466 + githubId = 134107129; 4467 + name = "EarthEngine"; 4468 + }; 4463 4469 ebbertd = { 4464 4470 email = "daniel@ebbert.nrw"; 4465 4471 github = "ebbertd"; ··· 5683 5689 name = "Florian Brandes"; 5684 5690 keys = [{ 5685 5691 fingerprint = "0200 3EF8 8D2B CF2D 8F00 FFDC BBB3 E40E 5379 7FD9"; 5692 + }]; 5693 + }; 5694 + gaelreyrol = { 5695 + email = "me@gaelreyrol.dev"; 5696 + matrix = "@Zevran:matrix.org"; 5697 + name = "Gaël Reyrol"; 5698 + github = "gaelreyrol"; 5699 + githubId = 498465; 5700 + keys = [{ 5701 + fingerprint = "3492 D8FA ACFF 4C5F A56E 50B7 DFB9 B69A 2C42 7F61"; 5686 5702 }]; 5687 5703 }; 5688 5704 GaetanLepage = { ··· 10470 10486 github = "M-Gregoire"; 10471 10487 githubId = 9469313; 10472 10488 name = "Gregoire Martinache"; 10489 + }; 10490 + mgregson = { 10491 + github = "mgregson"; 10492 + githubId = 333572; 10493 + name = "Michael Gregson"; 10473 10494 }; 10474 10495 mgttlinger = { 10475 10496 email = "megoettlinger@gmail.com";
+77 -5
nixos/modules/programs/gnupg.nix
··· 94 94 }; 95 95 96 96 config = mkIf cfg.agent.enable { 97 + environment.etc."gnupg/gpg-agent.conf".text = '' 98 + pinentry-program ${pkgs.pinentry.${cfg.agent.pinentryFlavor}}/bin/pinentry 99 + ''; 100 + 97 101 # This overrides the systemd user unit shipped with the gnupg package 98 102 systemd.user.services.gpg-agent = mkIf (cfg.agent.pinentryFlavor != null) { 99 - serviceConfig.ExecStart = [ "" '' 100 - ${cfg.package}/bin/gpg-agent --supervised \ 101 - --pinentry-program ${pkgs.pinentry.${cfg.agent.pinentryFlavor}}/bin/pinentry 102 - '' ]; 103 + unitConfig = { 104 + Description = "GnuPG cryptographic agent and passphrase cache"; 105 + Documentation = "man:gpg-agent(1)"; 106 + Requires = [ "gpg-agent.socket" ]; 107 + }; 108 + serviceConfig = { 109 + ExecStart = "${cfg.package}/bin/gpg-agent --supervised"; 110 + ExecReload = "${cfg.package}/bin/gpgconf --reload gpg-agent"; 111 + }; 103 112 }; 104 113 105 114 systemd.user.sockets.gpg-agent = { 115 + unitConfig = { 116 + Description = "GnuPG cryptographic agent and passphrase cache"; 117 + Documentation = "man:gpg-agent(1)"; 118 + }; 119 + socketConfig = { 120 + ListenStream = "%t/gnupg/S.gpg-agent"; 121 + FileDescriptorName = "std"; 122 + SocketMode = "0600"; 123 + DirectoryMode = "0700"; 124 + }; 106 125 wantedBy = [ "sockets.target" ]; 107 126 }; 108 127 109 128 systemd.user.sockets.gpg-agent-ssh = mkIf cfg.agent.enableSSHSupport { 129 + unitConfig = { 130 + Description = "GnuPG cryptographic agent (ssh-agent emulation)"; 131 + Documentation = "man:gpg-agent(1) man:ssh-add(1) man:ssh-agent(1) man:ssh(1)"; 132 + }; 133 + socketConfig = { 134 + ListenStream = "%t/gnupg/S.gpg-agent.ssh"; 135 + FileDescriptorName = "ssh"; 136 + Service = "gpg-agent.service"; 137 + SocketMode = "0600"; 138 + DirectoryMode = "0700"; 139 + }; 110 140 wantedBy = [ "sockets.target" ]; 111 141 }; 112 142 113 143 systemd.user.sockets.gpg-agent-extra = mkIf cfg.agent.enableExtraSocket { 144 + unitConfig = { 145 + Description = "GnuPG cryptographic agent and passphrase cache (restricted)"; 146 + Documentation = "man:gpg-agent(1)"; 147 + }; 148 + socketConfig = { 149 + ListenStream = "%t/gnupg/S.gpg-agent.extra"; 150 + FileDescriptorName = "extra"; 151 + Service = "gpg-agent.service"; 152 + SocketMode = "0600"; 153 + DirectoryMode = "0700"; 154 + }; 114 155 wantedBy = [ "sockets.target" ]; 115 156 }; 116 157 117 158 systemd.user.sockets.gpg-agent-browser = mkIf cfg.agent.enableBrowserSocket { 159 + unitConfig = { 160 + Description = "GnuPG cryptographic agent and passphrase cache (access for web browsers)"; 161 + Documentation = "man:gpg-agent(1)"; 162 + }; 163 + socketConfig = { 164 + ListenStream = "%t/gnupg/S.gpg-agent.browser"; 165 + FileDescriptorName = "browser"; 166 + Service = "gpg-agent.service"; 167 + SocketMode = "0600"; 168 + DirectoryMode = "0700"; 169 + }; 118 170 wantedBy = [ "sockets.target" ]; 119 171 }; 120 172 173 + systemd.user.services.dirmngr = mkIf cfg.dirmngr.enable { 174 + unitConfig = { 175 + Description = "GnuPG network certificate management daemon"; 176 + Documentation = "man:dirmngr(8)"; 177 + Requires = "dirmngr.socket"; 178 + }; 179 + serviceConfig = { 180 + ExecStart = "${cfg.package}/bin/dirmngr --supervised"; 181 + ExecReload = "${cfg.package}/bin/gpgconf --reload dirmngr"; 182 + }; 183 + }; 184 + 121 185 systemd.user.sockets.dirmngr = mkIf cfg.dirmngr.enable { 186 + unitConfig = { 187 + Description = "GnuPG network certificate management daemon"; 188 + Documentation = "man:dirmngr(8)"; 189 + }; 190 + socketConfig = { 191 + ListenStream = "%t/gnupg/S.dirmngr"; 192 + SocketMode = "0600"; 193 + DirectoryMode = "0700"; 194 + }; 122 195 wantedBy = [ "sockets.target" ]; 123 196 }; 124 197 125 198 services.dbus.packages = mkIf (cfg.agent.pinentryFlavor == "gnome3") [ pkgs.gcr ]; 126 199 127 200 environment.systemPackages = with pkgs; [ cfg.package ]; 128 - systemd.packages = [ cfg.package ]; 129 201 130 202 environment.interactiveShellInit = '' 131 203 # Bind gpg-agent to this TTY if gpg commands are used.
+1 -1
nixos/modules/services/web-apps/pixelfed.nix
··· 24 24 if [[ "$USER" != ${user} ]]; then 25 25 sudo='exec /run/wrappers/bin/sudo -u ${user}' 26 26 fi 27 - $sudo ${cfg.phpPackage}/bin/php artisan "$@" 27 + $sudo ${phpPackage}/bin/php artisan "$@" 28 28 ''; 29 29 dbSocket = { 30 30 "pgsql" = "/run/postgresql";
+1
nixos/tests/all-tests.nix
··· 670 670 samba = handleTest ./samba.nix {}; 671 671 samba-wsdd = handleTest ./samba-wsdd.nix {}; 672 672 sanoid = handleTest ./sanoid.nix {}; 673 + scaphandre = handleTest ./scaphandre.nix {}; 673 674 schleuder = handleTest ./schleuder.nix {}; 674 675 sddm = handleTest ./sddm.nix {}; 675 676 seafile = handleTest ./seafile.nix {};
+18
nixos/tests/scaphandre.nix
··· 1 + import ./make-test-python.nix { 2 + name = "scaphandre"; 3 + 4 + nodes = { 5 + scaphandre = { pkgs, ... } : { 6 + boot.kernelModules = [ "intel_rapl_common" ]; 7 + 8 + environment.systemPackages = [ pkgs.scaphandre ]; 9 + }; 10 + }; 11 + 12 + testScript = { nodes, ... } : '' 13 + scaphandre.start() 14 + scaphandre.wait_until_succeeds( 15 + "scaphandre stdout -t 4", 16 + ) 17 + ''; 18 + }
+2 -2
pkgs/applications/audio/qjackctl/default.nix
··· 5 5 }: 6 6 7 7 mkDerivation rec { 8 - version = "0.9.10"; 8 + version = "0.9.11"; 9 9 pname = "qjackctl"; 10 10 11 11 # some dependencies such as killall have to be installed additionally ··· 14 14 owner = "rncbc"; 15 15 repo = "qjackctl"; 16 16 rev = "${pname}_${lib.replaceStrings ["."] ["_"] version}"; 17 - sha256 = "sha256-XF5v+VgSCqqV2ft9qw1NTNzeYOv1OuhljJGdgikPLEo="; 17 + sha256 = "sha256-dZW9bZ17O/1DxBr5faYSE+YkSuz7NIJSc1vqxzOOxyg="; 18 18 }; 19 19 20 20 buildInputs = [
+2 -2
pkgs/applications/audio/tidal-hifi/default.nix
··· 36 36 37 37 stdenv.mkDerivation rec { 38 38 pname = "tidal-hifi"; 39 - version = "5.2.0"; 39 + version = "5.3.0"; 40 40 41 41 src = fetchurl { 42 42 url = "https://github.com/Mastermindzh/tidal-hifi/releases/download/${version}/tidal-hifi_${version}_amd64.deb"; 43 - sha256 = "sha256-ZdEbGsGt1Z/vve3W/Z6Pw1+m5xoTY/l7Es03yM4T0tE="; 43 + sha256 = "sha256-YGSHEvanWek6qiWvKs6g+HneGbuuqJn/DBfhawjQi5M="; 44 44 }; 45 45 46 46 nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper ];
+3 -3
pkgs/applications/blockchains/btcd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "btcd"; 5 - version = "0.23.3"; 5 + version = "0.23.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "btcsuite"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-LdK68Ianiyrs+HVMwrkiX2ruCWKkdpuY8ylxhNbm9qI="; 11 + hash = "sha256-X1kfr6jrVArm0HK0XiN/93OPxqPo8J4U+qglJAf23+A="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-3w8rb0sfAIFCXqPXOKb4QwoLd7WsbFv3phu/rJCEjeY="; 14 + vendorHash = "sha256-3w8rb0sfAIFCXqPXOKb4QwoLd7WsbFv3phu/rJCEjeY="; 15 15 16 16 subPackages = [ "." "cmd/*" ]; 17 17
+166 -154
pkgs/applications/editors/vim/plugins/generated.nix
··· 173 173 174 174 LazyVim = buildVimPluginFrom2Nix { 175 175 pname = "LazyVim"; 176 - version = "2023-06-21"; 176 + version = "2023-06-23"; 177 177 src = fetchFromGitHub { 178 178 owner = "LazyVim"; 179 179 repo = "LazyVim"; 180 - rev = "47111bd2db140aac32422752e07db7a1c5b74659"; 181 - sha256 = "1c10kj7f3512j62nwhnlqxf8y4frx24k0j1vvyw226rv7cla0vyq"; 180 + rev = "c3477ed81e8e26bce1eb53f9c04a8aa7adc1807a"; 181 + sha256 = "1hga1b9zx8ygrpr7863x12pd3rh9c3k69lgg59jzpzxiasnm3wkj"; 182 182 }; 183 183 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 184 184 }; ··· 305 305 306 306 SchemaStore-nvim = buildVimPluginFrom2Nix { 307 307 pname = "SchemaStore.nvim"; 308 - version = "2023-06-21"; 308 + version = "2023-06-23"; 309 309 src = fetchFromGitHub { 310 310 owner = "b0o"; 311 311 repo = "SchemaStore.nvim"; 312 - rev = "4f96b7bb1a0d5973a249e654f02adf2973422dcc"; 313 - sha256 = "0nc5sbdkhahyf80ng9g3gysp385m347lw2djr46fwcmkmlypllg2"; 312 + rev = "7322390c9abff6f137774d9e04bddb3cd725afd1"; 313 + sha256 = "1r9kqnhr3b14fs929xbh6qfrxmki961svlj2208vmlfmbsp7sx13"; 314 314 }; 315 315 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 316 316 }; ··· 353 353 354 354 SpaceCamp = buildVimPluginFrom2Nix { 355 355 pname = "SpaceCamp"; 356 - version = "2023-01-31"; 356 + version = "2023-06-22"; 357 357 src = fetchFromGitHub { 358 358 owner = "jaredgorski"; 359 359 repo = "SpaceCamp"; 360 - rev = "fab8e52ec7d67000c8d96028b2d643573a4289b1"; 361 - sha256 = "0kk482si63v67a4086hk9va1lsjqpmbaf71y2cqyrw9vidbmy38g"; 360 + rev = "3e37187e1e5731d7d36980db3f92e7332406813a"; 361 + sha256 = "0akdf7zv9pywdnqf4zp345irsbdfhy2rqvx759n13d403hwwya6z"; 362 362 }; 363 363 meta.homepage = "https://github.com/jaredgorski/SpaceCamp/"; 364 364 }; 365 365 366 366 SpaceVim = buildVimPluginFrom2Nix { 367 367 pname = "SpaceVim"; 368 - version = "2023-06-20"; 368 + version = "2023-06-22"; 369 369 src = fetchFromGitHub { 370 370 owner = "SpaceVim"; 371 371 repo = "SpaceVim"; 372 - rev = "b737573667d1212ff4c76ed2a999c84c966da83d"; 373 - sha256 = "10v89a853dakhgmmlpf6gig16764w481jy4acw0h7nrqn28y4qfr"; 372 + rev = "bd4a67e98b2b3de690a288ae3af68232f2c41738"; 373 + sha256 = "0l8p48zw0svcpn48v1qck6wfr5ljdfs5r96vchvbhnlg7bcivpi1"; 374 374 }; 375 375 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 376 376 }; ··· 486 486 487 487 aerial-nvim = buildVimPluginFrom2Nix { 488 488 pname = "aerial.nvim"; 489 - version = "2023-06-17"; 489 + version = "2023-06-23"; 490 490 src = fetchFromGitHub { 491 491 owner = "stevearc"; 492 492 repo = "aerial.nvim"; 493 - rev = "c30fb2c9bd09592351eed676f4c20e7a6411020e"; 494 - sha256 = "07nkrlaar7j8bgby6bij50kxi17ha5jzl4bwvwkgrrlj08v96if3"; 493 + rev = "c663d1b55f002930187a09b9eeb5bd0bad0ea23c"; 494 + sha256 = "0rcf3wlzqb6a4y1jvr3w3yxpik5ykhrdzcnyxw39cr55h94i6xyz"; 495 495 fetchSubmodules = true; 496 496 }; 497 497 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; ··· 847 847 848 848 autoclose-nvim = buildVimPluginFrom2Nix { 849 849 pname = "autoclose.nvim"; 850 - version = "2023-05-29"; 850 + version = "2023-06-22"; 851 851 src = fetchFromGitHub { 852 852 owner = "m4xshen"; 853 853 repo = "autoclose.nvim"; 854 - rev = "2321727fd10a6b34624723bc4747d8c09c10b7a4"; 855 - sha256 = "0bbf4lfs6li6mdifzlk9y2z4lgksl4xpvk0h1bd2l24x768mmm0k"; 854 + rev = "469782b0456f0b4f764378ffda94c18599544e09"; 855 + sha256 = "0qj2qvyjh4a70wykwlijj9h73i06npl8h88g7bb1vifsp5yyshzv"; 856 856 }; 857 857 meta.homepage = "https://github.com/m4xshen/autoclose.nvim/"; 858 858 }; ··· 1399 1399 1400 1400 cmp-conjure = buildVimPluginFrom2Nix { 1401 1401 pname = "cmp-conjure"; 1402 - version = "2022-12-05"; 1402 + version = "2023-06-22"; 1403 1403 src = fetchFromGitHub { 1404 1404 owner = "PaterJason"; 1405 1405 repo = "cmp-conjure"; 1406 - rev = "d76e1fe5d724afe604dfa7b4b5ba93f3d3730617"; 1407 - sha256 = "026kmjrhfwqllr8qh0z4jgdl2fcxy4cqf33yy4lnalkgvapnja5s"; 1406 + rev = "d97816d5007be2b060f3a4e09f5b144d97d96fe8"; 1407 + sha256 = "0nl61si8las2lmx1mrds2csha1747lwnmv4jf0rm4qz0mqhfb4ij"; 1408 1408 }; 1409 1409 meta.homepage = "https://github.com/PaterJason/cmp-conjure/"; 1410 1410 }; ··· 1591 1591 1592 1592 cmp-nvim-lsp = buildVimPluginFrom2Nix { 1593 1593 pname = "cmp-nvim-lsp"; 1594 - version = "2023-02-06"; 1594 + version = "2023-06-23"; 1595 1595 src = fetchFromGitHub { 1596 1596 owner = "hrsh7th"; 1597 1597 repo = "cmp-nvim-lsp"; 1598 - rev = "0e6b2ed705ddcff9738ec4ea838141654f12eeef"; 1599 - sha256 = "0gpwwc3rhfckaava83hpl7pw4rspicblxs7hy3y57gb560ymq6hg"; 1598 + rev = "44b16d11215dce86f253ce0c30949813c0a90765"; 1599 + sha256 = "1ny64ls3z9pcflsg3sd7xnd795mcfbqhyan3bk4ymxgv5jh2qkcr"; 1600 1600 }; 1601 1601 meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp/"; 1602 1602 }; ··· 1963 1963 1964 1964 codeium-vim = buildVimPluginFrom2Nix { 1965 1965 pname = "codeium.vim"; 1966 - version = "2023-06-20"; 1966 + version = "2023-06-23"; 1967 1967 src = fetchFromGitHub { 1968 1968 owner = "Exafunction"; 1969 1969 repo = "codeium.vim"; 1970 - rev = "c620cea17f898c6c66961f09d05cb2c0fa5ffcd8"; 1971 - sha256 = "1h2972cffs0qacjcsq3sl99935633bcg7rgygazg1qga96a47si3"; 1970 + rev = "23348d55415a0d1e227a36d4217a2751528aebf2"; 1971 + sha256 = "0j0w5m2xmzv6amj5hir9xyvq932yzisqhxnb3nmv9j63pwl06q7y"; 1972 1972 }; 1973 1973 meta.homepage = "https://github.com/Exafunction/codeium.vim/"; 1974 1974 }; ··· 2251 2251 2252 2252 copilot-vim = buildVimPluginFrom2Nix { 2253 2253 pname = "copilot.vim"; 2254 - version = "2023-04-28"; 2254 + version = "2023-06-23"; 2255 2255 src = fetchFromGitHub { 2256 2256 owner = "github"; 2257 2257 repo = "copilot.vim"; 2258 - rev = "1358e8e45ecedc53daf971924a0541ddf6224faf"; 2259 - sha256 = "171ypwb85ya8n63zykdnb8d4ni2jbn728x7r6ph1m67k06g0w4pb"; 2258 + rev = "98c293994f1bbebd5bade5d5840ead3b2feb5074"; 2259 + sha256 = "1wm36wba1pcmr0slmdvgjixm587sm13zcsdrc2cykra54p87ky2m"; 2260 2260 }; 2261 2261 meta.homepage = "https://github.com/github/copilot.vim/"; 2262 2262 }; ··· 2299 2299 2300 2300 coq_nvim = buildVimPluginFrom2Nix { 2301 2301 pname = "coq_nvim"; 2302 - version = "2023-06-18"; 2302 + version = "2023-06-23"; 2303 2303 src = fetchFromGitHub { 2304 2304 owner = "ms-jpq"; 2305 2305 repo = "coq_nvim"; 2306 - rev = "3d76374ab24a6730973ed6a93f9f7b3b6640cc50"; 2307 - sha256 = "1gkg2iiswnviq07dzpij62lzjsrlapg7c9v4psl25l727l1ddi8y"; 2306 + rev = "54b069140e1240f8f244d74636c0e911e1337520"; 2307 + sha256 = "0bplg5lcrb3bhpqpsw10z56wwfnkfvsr3fzm7747j3idlqspjy27"; 2308 2308 }; 2309 2309 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2310 2310 }; ··· 2913 2913 2914 2914 dressing-nvim = buildVimPluginFrom2Nix { 2915 2915 pname = "dressing.nvim"; 2916 - version = "2023-06-16"; 2916 + version = "2023-06-23"; 2917 2917 src = fetchFromGitHub { 2918 2918 owner = "stevearc"; 2919 2919 repo = "dressing.nvim"; 2920 - rev = "5fb5cce0cbfcedeadbcee43e5674e8c9a9f28d4a"; 2921 - sha256 = "0qjvmgpjpbxar8dyaz3wpp3pisgnwr3mi7ci4nk8zckd4jb11017"; 2920 + rev = "1cbc4eef2ef7d745aa1a559b22589e33860cf077"; 2921 + sha256 = "0nmb3wiyk21254z4jxnhw2agbg0mfx7kj9fk92zr482i71qz9rlc"; 2922 2922 }; 2923 2923 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2924 2924 }; 2925 2925 2926 2926 dropbar-nvim = buildVimPluginFrom2Nix { 2927 2927 pname = "dropbar.nvim"; 2928 - version = "2023-06-20"; 2928 + version = "2023-06-22"; 2929 2929 src = fetchFromGitHub { 2930 2930 owner = "Bekaboo"; 2931 2931 repo = "dropbar.nvim"; 2932 - rev = "15f32c0b1c646b5608b52440599577799ce20425"; 2933 - sha256 = "05zhsjbndlklxlnb9dv3pj790r0ck91c4sv1svpclaim8mjhv9ch"; 2932 + rev = "b00ede8cbde4129249ce2476fed657fe3293edb7"; 2933 + sha256 = "0k1di9b0irqc9f2bvsyadbnk35wmd7sw71v50fz2p1fm05h53h5d"; 2934 2934 }; 2935 2935 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 2936 2936 }; ··· 3083 3083 3084 3084 eyeliner-nvim = buildVimPluginFrom2Nix { 3085 3085 pname = "eyeliner.nvim"; 3086 - version = "2023-04-26"; 3086 + version = "2023-06-22"; 3087 3087 src = fetchFromGitHub { 3088 3088 owner = "jinh0"; 3089 3089 repo = "eyeliner.nvim"; 3090 - rev = "fa3a0986cb072fe2ab29ef79e022514d2533f0db"; 3091 - sha256 = "072qnpn30sz72gwppsdg9npbr897a2xlh1wj0706n58lkd7nhl2v"; 3090 + rev = "214e6ff4a0c786b9facac9d2bd267f08cc5fc0bb"; 3091 + sha256 = "0fa5y8vgydi63xk99dgryhvcja0zq7jb004bm1fd3g4dd0jpvgar"; 3092 3092 }; 3093 3093 meta.homepage = "https://github.com/jinh0/eyeliner.nvim/"; 3094 3094 }; ··· 3238 3238 meta.homepage = "https://github.com/andviro/flake8-vim/"; 3239 3239 }; 3240 3240 3241 + flash-nvim = buildVimPluginFrom2Nix { 3242 + pname = "flash.nvim"; 3243 + version = "2023-06-23"; 3244 + src = fetchFromGitHub { 3245 + owner = "folke"; 3246 + repo = "flash.nvim"; 3247 + rev = "188666c2d76347e46fc8527f9428fd48693b469c"; 3248 + sha256 = "190jjnwsl7nsf2zljwlrl14gpq2ragrx99ydhli7cgvnwiwwkcnq"; 3249 + }; 3250 + meta.homepage = "https://github.com/folke/flash.nvim/"; 3251 + }; 3252 + 3241 3253 flatten-nvim = buildVimPluginFrom2Nix { 3242 3254 pname = "flatten.nvim"; 3243 3255 version = "2023-04-23"; ··· 3348 3360 3349 3361 friendly-snippets = buildVimPluginFrom2Nix { 3350 3362 pname = "friendly-snippets"; 3351 - version = "2023-06-20"; 3363 + version = "2023-06-21"; 3352 3364 src = fetchFromGitHub { 3353 3365 owner = "rafamadriz"; 3354 3366 repo = "friendly-snippets"; 3355 - rev = "01f80274100fe3ff6c9183b9c0674a520141be4d"; 3356 - sha256 = "1pxbbdjq25ri5jhwl953020xwbzhy564m35xz9vhnv8i2wz8kg2l"; 3367 + rev = "5749f093759c29e3694053d048ceb940fe12c3d3"; 3368 + sha256 = "1shzw4886qifn90n5kpjhz9iqckqmfgfwmfk9ahkggd6l5844rw9"; 3357 3369 }; 3358 3370 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 3359 3371 }; ··· 4523 4535 4524 4536 lazy-nvim = buildVimPluginFrom2Nix { 4525 4537 pname = "lazy.nvim"; 4526 - version = "2023-06-19"; 4538 + version = "2023-06-22"; 4527 4539 src = fetchFromGitHub { 4528 4540 owner = "folke"; 4529 4541 repo = "lazy.nvim"; 4530 - rev = "c1aad95243f0d180f41348be26b2417547fb168b"; 4531 - sha256 = "0w4a2c6yxnf6q589sc7gmmsq2i76isr6pz8pyc75aj6isq3r4jrn"; 4542 + rev = "b7043f2983d7aead78ca902f3f2053907081859a"; 4543 + sha256 = "1dc8mc9lghxxbk94c8qwny55f7190zwlvip18zajj4bf9a116kpb"; 4532 4544 }; 4533 4545 meta.homepage = "https://github.com/folke/lazy.nvim/"; 4534 4546 }; ··· 4583 4595 4584 4596 leap-nvim = buildVimPluginFrom2Nix { 4585 4597 pname = "leap.nvim"; 4586 - version = "2023-06-21"; 4598 + version = "2023-06-22"; 4587 4599 src = fetchFromGitHub { 4588 4600 owner = "ggandor"; 4589 4601 repo = "leap.nvim"; 4590 - rev = "2d7d35ea0da1b4478436dfbbb7440be91605b503"; 4591 - sha256 = "0ihy5xpxzdg603dd31vbzcdj48gc5khr2d72r97ryc57afmriy28"; 4602 + rev = "0e5a8b684b577a1d1af53499007e9b84f6323e45"; 4603 + sha256 = "14mqp0l6gwhgg6sz592cdzkrh82gv2wa6l094spyyhz6f598rz62"; 4592 4604 }; 4593 4605 meta.homepage = "https://github.com/ggandor/leap.nvim/"; 4594 4606 }; 4595 4607 4596 4608 legendary-nvim = buildVimPluginFrom2Nix { 4597 4609 pname = "legendary.nvim"; 4598 - version = "2023-06-21"; 4610 + version = "2023-06-23"; 4599 4611 src = fetchFromGitHub { 4600 4612 owner = "mrjones2014"; 4601 4613 repo = "legendary.nvim"; 4602 - rev = "6530106e93a0196437111678d6681c3121be7362"; 4603 - sha256 = "0ybzk88xs1095216ipki8s4ws4h3bpbrpi1cqqndclpxplhn06wg"; 4614 + rev = "d6166169f3cc2214398a6f516f2f2a0ccc2472c4"; 4615 + sha256 = "0rva1qwjjklfxjr7bn3vxv4ma4hrhjg469ynws1y69q5475vbj2v"; 4604 4616 }; 4605 4617 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 4606 4618 }; ··· 4631 4643 4632 4644 lexima-vim = buildVimPluginFrom2Nix { 4633 4645 pname = "lexima.vim"; 4634 - version = "2022-11-28"; 4646 + version = "2023-06-23"; 4635 4647 src = fetchFromGitHub { 4636 4648 owner = "cohama"; 4637 4649 repo = "lexima.vim"; 4638 - rev = "36781e59099b9b46eed564283b95938f90cd852d"; 4639 - sha256 = "1p9x56iw26kkkv3dk6z8kf1bhsysr72gsc2x1ki2mhlf2i15axbn"; 4650 + rev = "1f5dd656018f83ad03bddda216bd5c04d23ba57d"; 4651 + sha256 = "12q0pv1lax8xkmy54dlvd5c7ibq4gkbd1zlangsqc4xiq7nnq7jg"; 4640 4652 }; 4641 4653 meta.homepage = "https://github.com/cohama/lexima.vim/"; 4642 4654 }; ··· 5175 5187 src = fetchFromGitHub { 5176 5188 owner = "williamboman"; 5177 5189 repo = "mason.nvim"; 5178 - rev = "e706d305fbcc8701bd30e31dd727aee2853b9db9"; 5179 - sha256 = "0kibx5p9f7zc4mp4rpihablfrrzrahhj777pjhjb0i46p3y0hx4r"; 5190 + rev = "664c987c3b14d2262a4e580f993a3e5045baded0"; 5191 + sha256 = "0pvxp5zdd2jxy0gkz913rny0p7k9zam5dzsdvgv8ihcdwn0c5mdg"; 5180 5192 }; 5181 5193 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 5182 5194 }; ··· 5255 5267 5256 5268 mini-nvim = buildVimPluginFrom2Nix { 5257 5269 pname = "mini.nvim"; 5258 - version = "2023-06-15"; 5270 + version = "2023-06-23"; 5259 5271 src = fetchFromGitHub { 5260 5272 owner = "echasnovski"; 5261 5273 repo = "mini.nvim"; 5262 - rev = "3a11a130bac227462dd226669d260c4bbe33fb5b"; 5263 - sha256 = "0xrggd6a7g05n168624k19ga05cd35fv6imhz40dznrxkqbrp7cd"; 5274 + rev = "f51265b17b8753420372a6a8d3f865fe79630513"; 5275 + sha256 = "14dvlma230mjvjvz6vfv1vgxssk776hkdjmlsavch5p2z5l97j89"; 5264 5276 }; 5265 5277 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 5266 5278 }; ··· 5651 5663 5652 5664 neodev-nvim = buildVimPluginFrom2Nix { 5653 5665 pname = "neodev.nvim"; 5654 - version = "2023-06-20"; 5666 + version = "2023-06-23"; 5655 5667 src = fetchFromGitHub { 5656 5668 owner = "folke"; 5657 5669 repo = "neodev.nvim"; 5658 - rev = "78f1c370173e7689bd58d64229b4d92c5dfb2793"; 5659 - sha256 = "00lmk9dnpvp6qd8ymav6z0i07fg0pbnmf0xrhvlrbglxl09dg4ym"; 5670 + rev = "412776d881d7aa2bedbe8a2572e700f740440cad"; 5671 + sha256 = "157l5lbgsacd1b7qvf9fnj8ssdq78bgpgvr15z7rmxm40i25pqrp"; 5660 5672 }; 5661 5673 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5662 5674 }; ··· 5963 5975 5964 5976 neotest-rust = buildVimPluginFrom2Nix { 5965 5977 pname = "neotest-rust"; 5966 - version = "2023-06-21"; 5978 + version = "2023-06-23"; 5967 5979 src = fetchFromGitHub { 5968 5980 owner = "rouge8"; 5969 5981 repo = "neotest-rust"; 5970 - rev = "e4baa0b02be7a7b9271da0a98eb82fb278a0c1e7"; 5971 - sha256 = "0rdl0a93qp01ldrmb98bz93yadadving2isksxz0m015cijrdf2s"; 5982 + rev = "3394e385cd33397d04ac703c5004ce7924ddcd99"; 5983 + sha256 = "02zk00b51jj4cxc6c5lxcppg2ayq48scqgkn41457w8zhzfj7bvb"; 5972 5984 }; 5973 5985 meta.homepage = "https://github.com/rouge8/neotest-rust/"; 5974 5986 }; ··· 5999 6011 6000 6012 neotest-vitest = buildVimPluginFrom2Nix { 6001 6013 pname = "neotest-vitest"; 6002 - version = "2023-04-16"; 6014 + version = "2023-06-23"; 6003 6015 src = fetchFromGitHub { 6004 6016 owner = "marilari88"; 6005 6017 repo = "neotest-vitest"; 6006 - rev = "f9efe9524ccba1284d5f4e41d0dc6ff91951cfcc"; 6007 - sha256 = "09bhg1g2r4nc0jr41v5j07wgfcqgfnjw4nbmhz8pizshiyqq0rah"; 6018 + rev = "41bf2f6b743f2ac5c5e9bd0949cee77ca7f2372c"; 6019 + sha256 = "0bz6h0mh8cyjf2xdnykyiijwmw9vgwvlb9nfzzjvxba8nqzgb4rq"; 6008 6020 }; 6009 6021 meta.homepage = "https://github.com/marilari88/neotest-vitest/"; 6010 6022 }; ··· 6227 6239 6228 6240 noice-nvim = buildVimPluginFrom2Nix { 6229 6241 pname = "noice.nvim"; 6230 - version = "2023-06-19"; 6242 + version = "2023-06-22"; 6231 6243 src = fetchFromGitHub { 6232 6244 owner = "folke"; 6233 6245 repo = "noice.nvim"; 6234 - rev = "39461475d9de676bccc338876689c9e5b44bc932"; 6235 - sha256 = "11b4bv0dhy8y478p1gfw2ic47bg0x9v073ljndvcz5qcdh3qpsv9"; 6246 + rev = "7d01b45174d0d642302518275ab7cedf73e2690b"; 6247 + sha256 = "1712kai7n0cgz1gq9lxka2x83zh647y1gsvp58mh6hbv8cbv9g14"; 6236 6248 }; 6237 6249 meta.homepage = "https://github.com/folke/noice.nvim/"; 6238 6250 }; ··· 6323 6335 6324 6336 nvchad = buildVimPluginFrom2Nix { 6325 6337 pname = "nvchad"; 6326 - version = "2023-06-18"; 6338 + version = "2023-06-22"; 6327 6339 src = fetchFromGitHub { 6328 6340 owner = "nvchad"; 6329 6341 repo = "nvchad"; 6330 - rev = "11c839f870cfa8b75a9f847cba11fdfee7690856"; 6331 - sha256 = "17kjwwcbx0lwyn6f8zc3nl9v0wpmx7yif8rp32hzxinkz0pg35h8"; 6342 + rev = "4aa283119ac8abe8e8c4932c3f5ceb026052eebd"; 6343 + sha256 = "0xd0axz96z4a6snpdw814w56703kznmdvq8mzwp6aichd5g765rs"; 6332 6344 }; 6333 6345 meta.homepage = "https://github.com/nvchad/nvchad/"; 6334 6346 }; ··· 6443 6455 6444 6456 nvim-cmp = buildNeovimPlugin { 6445 6457 pname = "nvim-cmp"; 6446 - version = "2023-06-21"; 6458 + version = "2023-06-23"; 6447 6459 src = fetchFromGitHub { 6448 6460 owner = "hrsh7th"; 6449 6461 repo = "nvim-cmp"; 6450 - rev = "8a1694ff330ed58ed29716686fcef79c28090354"; 6451 - sha256 = "00zxvwc244njvkbwbvxffrcqam37xi93r0pvcvzin4kc9npaygaq"; 6462 + rev = "e1f1b40790a8cb7e64091fb12cc5ffe350363aa0"; 6463 + sha256 = "1gz02cy11r5bdrr0bz0xl0cmph6kpb3fv4xdnsbnxzq5jwia24m9"; 6452 6464 }; 6453 6465 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 6454 6466 }; ··· 6695 6707 6696 6708 nvim-highlite = buildVimPluginFrom2Nix { 6697 6709 pname = "nvim-highlite"; 6698 - version = "2023-06-18"; 6710 + version = "2023-06-22"; 6699 6711 src = fetchFromGitHub { 6700 6712 owner = "Iron-E"; 6701 6713 repo = "nvim-highlite"; 6702 - rev = "da2f0934f08f01d9c0d348814860cb3413d4ab23"; 6703 - sha256 = "057wn6drnynrkbddgm9p8rnmzh3mqrlgy739wx3mvfax26fmg6xd"; 6714 + rev = "3ff82ebfbec4846d07ce442fb31f21f9785e87a9"; 6715 + sha256 = "1cp45lli0y5i41ws3hh888szn6vmbjqqppkm1cadkkhcw36j1kcv"; 6704 6716 }; 6705 6717 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 6706 6718 }; ··· 6731 6743 6732 6744 nvim-jdtls = buildVimPluginFrom2Nix { 6733 6745 pname = "nvim-jdtls"; 6734 - version = "2023-06-13"; 6746 + version = "2023-06-22"; 6735 6747 src = fetchFromGitHub { 6736 6748 owner = "mfussenegger"; 6737 6749 repo = "nvim-jdtls"; 6738 - rev = "aebfc22877ab143f907e90889e3903557183a22c"; 6739 - sha256 = "0r76y5qz86w55q0sx2jm5ps3j3nm7v5b60w4ln7vk59jz1m01a35"; 6750 + rev = "c6a3c47a0c57c6c0c9b5fb92d3770bb59e92d9c6"; 6751 + sha256 = "0239v4y3hr3g8njd14ii79ndrk56i494nfp1rx4lzj3a2jmx0b4r"; 6740 6752 }; 6741 6753 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 6742 6754 }; ··· 6791 6803 6792 6804 nvim-lint = buildVimPluginFrom2Nix { 6793 6805 pname = "nvim-lint"; 6794 - version = "2023-06-11"; 6806 + version = "2023-06-22"; 6795 6807 src = fetchFromGitHub { 6796 6808 owner = "mfussenegger"; 6797 6809 repo = "nvim-lint"; 6798 - rev = "ed93c624e91b575f00d0834f2fecbdc6d3918096"; 6799 - sha256 = "17n8k151cf570fjxjivkkakb0ganb8iz56bj2088ifjrj50phsjf"; 6810 + rev = "0b99416769e87231ce37aec64b4ed91feb43a98e"; 6811 + sha256 = "0skmm7j2js0idqprns1jhknqnfvm88xxx3k0z3il0n2fibnd7kf3"; 6800 6812 }; 6801 6813 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 6802 6814 }; ··· 6815 6827 6816 6828 nvim-lspconfig = buildVimPluginFrom2Nix { 6817 6829 pname = "nvim-lspconfig"; 6818 - version = "2023-06-20"; 6830 + version = "2023-06-23"; 6819 6831 src = fetchFromGitHub { 6820 6832 owner = "neovim"; 6821 6833 repo = "nvim-lspconfig"; 6822 - rev = "a51892484c2002c083a8b0a9dfcefb3a569be36d"; 6823 - sha256 = "02yxlfqlvv8nprk9mbxhw2mh52plcjka5kwbn4h8s4d49dzp396w"; 6834 + rev = "b6b34b9acf84949f0ac1c00747765e62b81fb38d"; 6835 + sha256 = "12p1flmk9qp71kmy9sgv8a5izdwk1n4fggdpmiz42wyg7znzjxmp"; 6824 6836 }; 6825 6837 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6826 6838 }; ··· 7031 7043 7032 7044 nvim-scrollview = buildVimPluginFrom2Nix { 7033 7045 pname = "nvim-scrollview"; 7034 - version = "2023-06-20"; 7046 + version = "2023-06-22"; 7035 7047 src = fetchFromGitHub { 7036 7048 owner = "dstein64"; 7037 7049 repo = "nvim-scrollview"; 7038 - rev = "8a04e2043f1d2582a5de1a7d97ff53e9e87c9d5f"; 7039 - sha256 = "123mxy80fmjvnk2bcaddkbnbf855xjqqzn2c69z5ym0bbydlkjld"; 7050 + rev = "251c5b9b15f7937bfe9a24bf3066a9944936c32d"; 7051 + sha256 = "0ii5ipxijlfbq1dx2sy027ypj006h6b8d6q4gb0gkgjp6kyb3dnb"; 7040 7052 }; 7041 7053 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 7042 7054 }; ··· 7067 7079 7068 7080 nvim-spectre = buildVimPluginFrom2Nix { 7069 7081 pname = "nvim-spectre"; 7070 - version = "2023-06-10"; 7082 + version = "2023-06-23"; 7071 7083 src = fetchFromGitHub { 7072 7084 owner = "nvim-pack"; 7073 7085 repo = "nvim-spectre"; 7074 - rev = "8adb05dbfbd36862d700b5c3d1c26f0febf3f10d"; 7075 - sha256 = "1swpwr78g1ygw1k5a881qnrv9dk728637a90m44f44ip5g51v95l"; 7086 + rev = "f4dc98ec45ecded2344aa3aac2d7cc43ad236858"; 7087 + sha256 = "1p2s7a18d13irrf5yg1c4hq3ffqd8a7vqr4iw70rzvllr2mwzlbm"; 7076 7088 }; 7077 7089 meta.homepage = "https://github.com/nvim-pack/nvim-spectre/"; 7078 7090 }; ··· 7151 7163 7152 7164 nvim-treesitter = buildVimPluginFrom2Nix { 7153 7165 pname = "nvim-treesitter"; 7154 - version = "2023-06-21"; 7166 + version = "2023-06-23"; 7155 7167 src = fetchFromGitHub { 7156 7168 owner = "nvim-treesitter"; 7157 7169 repo = "nvim-treesitter"; 7158 - rev = "c9d5812ba358ce9e5ae2df322550cc6bc1678538"; 7159 - sha256 = "1s6gxdg0f1wq8kw2x0frjbqq78h7ymdm91jv14ldsasagn7szmjb"; 7170 + rev = "f26596386f31d5bd74b85b7d1ab0fd90c5b98608"; 7171 + sha256 = "19ixpk7dsdyb99w41zy72j18amfw7vif6gdp2hvxrmwj0wqhwlmd"; 7160 7172 }; 7161 7173 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 7162 7174 }; ··· 7235 7247 7236 7248 nvim-ts-context-commentstring = buildVimPluginFrom2Nix { 7237 7249 pname = "nvim-ts-context-commentstring"; 7238 - version = "2023-04-18"; 7250 + version = "2023-06-22"; 7239 7251 src = fetchFromGitHub { 7240 7252 owner = "joosepalviste"; 7241 7253 repo = "nvim-ts-context-commentstring"; 7242 - rev = "0bf8fbc2ca8f8cdb6efbd0a9e32740d7a991e4c3"; 7243 - sha256 = "194v4vp3fjwmhiyy6gf7465m9c7yhhyvwvyih6gxls0bq5jmdzjs"; 7254 + rev = "7f625207f225eea97ef7a6abe7611e556c396d2f"; 7255 + sha256 = "0rr0kqr4v2pf9r31sw5mk8xhrlp1nq8bhbmghi18gxxg2qc58p65"; 7244 7256 }; 7245 7257 meta.homepage = "https://github.com/joosepalviste/nvim-ts-context-commentstring/"; 7246 7258 }; ··· 7354 7366 7355 7367 oceanic-material = buildVimPluginFrom2Nix { 7356 7368 pname = "oceanic-material"; 7357 - version = "2022-08-17"; 7369 + version = "2023-06-22"; 7358 7370 src = fetchFromGitHub { 7359 7371 owner = "nvimdev"; 7360 7372 repo = "oceanic-material"; 7361 - rev = "9f2d002398d1ef0cd52315fa767b138719536c5d"; 7362 - sha256 = "1c9sbprivdhjyzxni3xzmk3lc56icd61azzvl9bb961iaag6r1c9"; 7373 + rev = "d0bb88707f4f9e6918a958c5a80aeddf6db5c652"; 7374 + sha256 = "133ylp1ji3ff9pi8446772q3afxvrmc848wf31fk5d9as4izm47p"; 7363 7375 }; 7364 7376 meta.homepage = "https://github.com/nvimdev/oceanic-material/"; 7365 7377 }; ··· 7390 7402 7391 7403 oil-nvim = buildVimPluginFrom2Nix { 7392 7404 pname = "oil.nvim"; 7393 - version = "2023-06-21"; 7405 + version = "2023-06-22"; 7394 7406 src = fetchFromGitHub { 7395 7407 owner = "stevearc"; 7396 7408 repo = "oil.nvim"; 7397 - rev = "2a63f9224f8cb1349da4cf89844a161a285b18e9"; 7398 - sha256 = "0ipyc8frgfk1mhmmn78nix264bdcn9fcsz39syv61ay20iljm8fk"; 7409 + rev = "8882f6c89eccb3754221cab942904780ed6b3e62"; 7410 + sha256 = "1x91qxgj84a7ywgyfwanzxjji5ffblln8p83rfybd6jfcnir6f28"; 7399 7411 fetchSubmodules = true; 7400 7412 }; 7401 7413 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 7451 7463 7452 7464 onedarkpro-nvim = buildVimPluginFrom2Nix { 7453 7465 pname = "onedarkpro.nvim"; 7454 - version = "2023-06-21"; 7466 + version = "2023-06-22"; 7455 7467 src = fetchFromGitHub { 7456 7468 owner = "olimorris"; 7457 7469 repo = "onedarkpro.nvim"; 7458 - rev = "47fbac24ecf4e75e5860c93242fbfc71234c3d4f"; 7459 - sha256 = "08zwnvw20afb574ksr89vkndf88fc5qif1942pn0rv56d0i7ppaw"; 7470 + rev = "f97db0e46ea5e55874892ac3e3cb2fc619d74c7f"; 7471 + sha256 = "10n7a19gmakv1nk96b2zsc5d3dnzasacg53iz620s0wkixrl8lsv"; 7460 7472 }; 7461 7473 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 7462 7474 }; ··· 8209 8221 8210 8222 satellite-nvim = buildVimPluginFrom2Nix { 8211 8223 pname = "satellite.nvim"; 8212 - version = "2023-06-20"; 8224 + version = "2023-06-23"; 8213 8225 src = fetchFromGitHub { 8214 8226 owner = "lewis6991"; 8215 8227 repo = "satellite.nvim"; 8216 - rev = "22c8cc5283c9533677e4b86b9d25d3beeca04667"; 8217 - sha256 = "1s1y3z7kw5w2gnq96zfah3zy6m43rwvd9gaxpy5a2nr1alniwcjw"; 8228 + rev = "5ae27c87f1da3fd0c0924b5adb8e2dd42268b4fe"; 8229 + sha256 = "1ymvzjzdrv4li8vhy7k3aj1sa4cvvn6nrq7qr2jxzlwrz7q58sjr"; 8218 8230 }; 8219 8231 meta.homepage = "https://github.com/lewis6991/satellite.nvim/"; 8220 8232 }; ··· 8345 8357 src = fetchFromGitHub { 8346 8358 owner = "sourcegraph"; 8347 8359 repo = "sg.nvim"; 8348 - rev = "11b21cdefab45895c2b585fa816dbf98831ff0f9"; 8349 - sha256 = "0ql4rrv2z36y2md12nqj5bydvymf6kkqwjj9ipnrh4c5ywbyh65x"; 8360 + rev = "f1fa0cf7f1c8d73b2631aaed9c73f706da8be4b5"; 8361 + sha256 = "1firdr23l58zdb9kvhar5ksc88ix6iy5pgifp4r9wks88k16gbr0"; 8350 8362 }; 8351 8363 meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; 8352 8364 }; ··· 9307 9319 9308 9320 telescope-nvim = buildNeovimPlugin { 9309 9321 pname = "telescope.nvim"; 9310 - version = "2023-06-13"; 9322 + version = "2023-06-21"; 9311 9323 src = fetchFromGitHub { 9312 9324 owner = "nvim-telescope"; 9313 9325 repo = "telescope.nvim"; 9314 - rev = "00cf15074a2997487813672a75f946d2ead95eb0"; 9315 - sha256 = "0zfdcgs67nvhx73nmhv3ppilh9wkf2lv88pniwmf67pnks9x94i3"; 9326 + rev = "ffe35cb433192fcb5080b557c1aef14d37092035"; 9327 + sha256 = "1kac34kiwnnz3r80pyfx87r730jryqflh3f12hr8z8crzpz262yk"; 9316 9328 }; 9317 9329 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 9318 9330 }; ··· 9644 9656 9645 9657 trouble-nvim = buildVimPluginFrom2Nix { 9646 9658 pname = "trouble.nvim"; 9647 - version = "2023-06-08"; 9659 + version = "2023-06-23"; 9648 9660 src = fetchFromGitHub { 9649 9661 owner = "folke"; 9650 9662 repo = "trouble.nvim"; 9651 - rev = "2af0dd9767526410c88c628f1cbfcb6cf22dd683"; 9652 - sha256 = "1wyiyijs7cjmn7qq2x6fgwm12zrr2sn3w5ray3d8rmrvzl0059ni"; 9663 + rev = "a3372bd2ba3a91882a6e54ed35da13a441d7c167"; 9664 + sha256 = "05cwzc2sskyijg2j2m82j0yvbh35cyabq8ms7zxi34kv2jm2pqm5"; 9653 9665 }; 9654 9666 meta.homepage = "https://github.com/folke/trouble.nvim/"; 9655 9667 }; ··· 9776 9788 9777 9789 unison = buildVimPluginFrom2Nix { 9778 9790 pname = "unison"; 9779 - version = "2023-06-20"; 9791 + version = "2023-06-23"; 9780 9792 src = fetchFromGitHub { 9781 9793 owner = "unisonweb"; 9782 9794 repo = "unison"; 9783 - rev = "677c4d935007bbe1e016f858d3e1f951b00796c5"; 9784 - sha256 = "148kwk9q5rp2pmcc4cnir8aaiq4y7r62dxggis12nk13lnpmrbxn"; 9795 + rev = "17fc0db0d876e2e8ce8522a3c4cb56429208c8b3"; 9796 + sha256 = "12hgg4jzb4ra3cnmvphzcklimf87x9fcmf1dvfn4pmcd2hnj542z"; 9785 9797 }; 9786 9798 meta.homepage = "https://github.com/unisonweb/unison/"; 9787 9799 }; ··· 11372 11384 11373 11385 vim-flog = buildVimPluginFrom2Nix { 11374 11386 pname = "vim-flog"; 11375 - version = "2023-06-18"; 11387 + version = "2023-06-22"; 11376 11388 src = fetchFromGitHub { 11377 11389 owner = "rbong"; 11378 11390 repo = "vim-flog"; 11379 - rev = "54c1b1c0762762065736ab82b1f50ec069b50475"; 11380 - sha256 = "1j8miaw8hj6wv245sb2a9p4w54yac7b60zlsqzyqvj89qbkcq61x"; 11391 + rev = "72f80973021957741ceca35e488fce5b430faeea"; 11392 + sha256 = "1q7svpk0hq3rn335dxqz0l2nqxfgq5xid12955q2kxgvnq2nhc81"; 11381 11393 }; 11382 11394 meta.homepage = "https://github.com/rbong/vim-flog/"; 11383 11395 }; ··· 11576 11588 11577 11589 vim-go = buildVimPluginFrom2Nix { 11578 11590 pname = "vim-go"; 11579 - version = "2023-06-19"; 11591 + version = "2023-06-22"; 11580 11592 src = fetchFromGitHub { 11581 11593 owner = "fatih"; 11582 11594 repo = "vim-go"; 11583 - rev = "397a9c5796a5082b55b71dd3b55152dcf53261de"; 11584 - sha256 = "1nhcbzi80k9x2g8cf3l7072ln5b9a5vgfplpzhjj9q7iqswhg4bg"; 11595 + rev = "12de6c0bc0efce3cedc5e28d4fe0ecc3a4aaeb77"; 11596 + sha256 = "0y576h385h9m7d8wic2b2743v8l4vvpcly6fk5siwziqbq2j082h"; 11585 11597 }; 11586 11598 meta.homepage = "https://github.com/fatih/vim-go/"; 11587 11599 }; ··· 12406 12418 12407 12419 vim-lsp-settings = buildVimPluginFrom2Nix { 12408 12420 pname = "vim-lsp-settings"; 12409 - version = "2023-06-04"; 12421 + version = "2023-06-22"; 12410 12422 src = fetchFromGitHub { 12411 12423 owner = "mattn"; 12412 12424 repo = "vim-lsp-settings"; 12413 - rev = "b986f8c10056faf289d692ea816bfc22b780e425"; 12414 - sha256 = "0kz39yg96284fa33zsblg8bqb5snwx39slm8dv58w3mrifc1bkh1"; 12425 + rev = "da214dcc8d56ff1aa91f0661c8d16f6771e2231b"; 12426 + sha256 = "00wvfi39fpmn2zmn2hnamvi9m6fwp2vb12y73fjqldn483ml1hjl"; 12415 12427 }; 12416 12428 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 12417 12429 }; ··· 13703 13715 13704 13716 vim-slime = buildVimPluginFrom2Nix { 13705 13717 pname = "vim-slime"; 13706 - version = "2023-06-08"; 13718 + version = "2023-06-23"; 13707 13719 src = fetchFromGitHub { 13708 13720 owner = "jpalardy"; 13709 13721 repo = "vim-slime"; 13710 - rev = "69fd61ba2b1fe1e0c13d09fef24290ba5ed6a85f"; 13711 - sha256 = "1fzka877p9clfhh8jdf99c2d1wlyizgqdw6lzx1nrgsv53ayhd7l"; 13722 + rev = "a096a2969fcb807fd5c6a75d943c6227dd9e6a38"; 13723 + sha256 = "1jhkrir48kbdhd95659b7rmbavb75c05zqjvzz4f633i33j32bf3"; 13712 13724 }; 13713 13725 meta.homepage = "https://github.com/jpalardy/vim-slime/"; 13714 13726 }; ··· 14460 14472 14461 14473 vim-vsnip-integ = buildVimPluginFrom2Nix { 14462 14474 pname = "vim-vsnip-integ"; 14463 - version = "2023-03-12"; 14475 + version = "2023-06-23"; 14464 14476 src = fetchFromGitHub { 14465 14477 owner = "hrsh7th"; 14466 14478 repo = "vim-vsnip-integ"; 14467 - rev = "1930f0fc234521945afd48db2bff09d925211571"; 14468 - sha256 = "1am4r68awdvjk51r6cyvvkkzj9zpiz394kn6qbjgz9qdc3xbsf1k"; 14479 + rev = "6bb0fff309b0e87509915c6101808f41a16d6f48"; 14480 + sha256 = "0n0mxynfy176yn8nm7aafhmwvfg0l409cnf8d2ix1fa8c74b8lk6"; 14469 14481 }; 14470 14482 meta.homepage = "https://github.com/hrsh7th/vim-vsnip-integ/"; 14471 14483 }; ··· 14821 14833 14822 14834 vimtex = buildVimPluginFrom2Nix { 14823 14835 pname = "vimtex"; 14824 - version = "2023-06-21"; 14836 + version = "2023-06-23"; 14825 14837 src = fetchFromGitHub { 14826 14838 owner = "lervag"; 14827 14839 repo = "vimtex"; 14828 - rev = "2b31261b20e44c4b3c79ca7e42e2f9a5cdbe8cd3"; 14829 - sha256 = "1iv1qmbbz1q48x04l2d9cm10wrb4kf8xw9qnp2z2s4niy36w5345"; 14840 + rev = "efd8248abf7f2cdee13dd27c1d506ddfa788587c"; 14841 + sha256 = "09vnqcg52fnasdx2f3vqira0qph6icssf6kzg8gysjrbbg9kypxb"; 14830 14842 }; 14831 14843 meta.homepage = "https://github.com/lervag/vimtex/"; 14832 14844 }; ··· 14845 14857 14846 14858 vimwiki = buildVimPluginFrom2Nix { 14847 14859 pname = "vimwiki"; 14848 - version = "2023-06-16"; 14860 + version = "2023-06-22"; 14849 14861 src = fetchFromGitHub { 14850 14862 owner = "vimwiki"; 14851 14863 repo = "vimwiki"; 14852 - rev = "88620a2be0d47e74639b15c71f7e170bb3b2d432"; 14853 - sha256 = "1hw19wkrv98qvynak6ag79dffxafiv574bg52886wglrrimhl1y1"; 14864 + rev = "942da42b96251b5b9bef4e54bb79884ebf86c1f4"; 14865 + sha256 = "1kmjr26wyn1na9g7m6607vjk4g5yhdapsmlcv62myb9g58r0knpl"; 14854 14866 }; 14855 14867 meta.homepage = "https://github.com/vimwiki/vimwiki/"; 14856 14868 }; ··· 15266 15278 15267 15279 catppuccin-nvim = buildVimPluginFrom2Nix { 15268 15280 pname = "catppuccin-nvim"; 15269 - version = "2023-06-21"; 15281 + version = "2023-06-22"; 15270 15282 src = fetchFromGitHub { 15271 15283 owner = "catppuccin"; 15272 15284 repo = "nvim"; 15273 - rev = "d32b0bb5b1033920de5026e326869838aba856ee"; 15274 - sha256 = "15yc9ld6nybs9cfb2gncygxif1qd0g69nfppp2qcwgyhw7kynnij"; 15285 + rev = "506a4aa13443e0104ea49b99947cc09488d0791d"; 15286 + sha256 = "0694njpibbmnvlllvf42c7l350m33fxbjzdx9fjv6jz42a6zqwr5"; 15275 15287 }; 15276 15288 meta.homepage = "https://github.com/catppuccin/nvim/"; 15277 15289 }; ··· 15290 15302 15291 15303 chad = buildVimPluginFrom2Nix { 15292 15304 pname = "chad"; 15293 - version = "2023-06-18"; 15305 + version = "2023-06-23"; 15294 15306 src = fetchFromGitHub { 15295 15307 owner = "ms-jpq"; 15296 15308 repo = "chadtree"; 15297 - rev = "260312b5c60f5fc3299da4357690ba6bf4485387"; 15298 - sha256 = "0zcrq7hlmsjhcj0y5wjipafsxll5q8vj86cf1hcknvnq341sccxk"; 15309 + rev = "128b0f8fe46db9b696a747b7c70088ebfc0e0044"; 15310 + sha256 = "1ll2ihi42lvshxi7n7lmydyp32aglfsanqa72xa3b16say1y6a0q"; 15299 15311 }; 15300 15312 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 15301 15313 };
+39 -39
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 27 27 }; 28 28 arduino = buildGrammar { 29 29 language = "arduino"; 30 - version = "0.0.0+rev=2caedf3"; 30 + version = "0.0.0+rev=da8cae9"; 31 31 src = fetchFromGitHub { 32 32 owner = "ObserverOfTime"; 33 33 repo = "tree-sitter-arduino"; 34 - rev = "2caedf3e9eb314551a3a6cc9d3b6c4fcdee37747"; 35 - hash = "sha256-YLBgsYPx2nv0mTZ3KqNeeZ09ZqzPeiJ6i3VR3+iW/p0="; 34 + rev = "da8cae9ce365a81dcba25256f76c713674121017"; 35 + hash = "sha256-axsaq4znP4A57oGKZJrjLrq+Yx4zVV2IssjMYVCQ2cI="; 36 36 }; 37 37 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-arduino"; 38 38 }; ··· 137 137 }; 138 138 c_sharp = buildGrammar { 139 139 language = "c_sharp"; 140 - version = "0.0.0+rev=8acd38d"; 140 + version = "0.0.0+rev=1648e21"; 141 141 src = fetchFromGitHub { 142 142 owner = "tree-sitter"; 143 143 repo = "tree-sitter-c-sharp"; 144 - rev = "8acd38dae01bea4157f729325f5c69d0b47a75f2"; 145 - hash = "sha256-BaFM4bN0yAEKyYF0wQ+ZBDsSK1ObdOXA3sZ/9ZlD88w="; 144 + rev = "1648e21b4f087963abf0101ee5221bb413107b07"; 145 + hash = "sha256-WvkHtw8t14UNqiJvmS9dbGYQSVVzHS9mcWzxq+KLMnU="; 146 146 }; 147 147 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; 148 148 }; ··· 247 247 }; 248 248 cpp = buildGrammar { 249 249 language = "cpp"; 250 - version = "0.0.0+rev=2e29f23"; 250 + version = "0.0.0+rev=0e7b7a0"; 251 251 src = fetchFromGitHub { 252 252 owner = "tree-sitter"; 253 253 repo = "tree-sitter-cpp"; 254 - rev = "2e29f23abcb5f92ddffb22de8b292f09ed78db01"; 255 - hash = "sha256-qIblqwUpQNfW7v5EugXck8UucGU4n+OWsS8+KgEDtkM="; 254 + rev = "0e7b7a02b6074859b51c1973eb6a8275b3315b1d"; 255 + hash = "sha256-s5QRDs4W8TpB+kWtwXIvanP+Ii7hQgUI/yu0rvDUIg4="; 256 256 }; 257 257 meta.homepage = "https://github.com/tree-sitter/tree-sitter-cpp"; 258 258 }; ··· 986 986 }; 987 987 lalrpop = buildGrammar { 988 988 language = "lalrpop"; 989 - version = "0.0.0+rev=7744b56"; 989 + version = "0.0.0+rev=b7431e4"; 990 990 src = fetchFromGitHub { 991 991 owner = "traxys"; 992 992 repo = "tree-sitter-lalrpop"; 993 - rev = "7744b56f03ac1e5643fad23c9dd90837fe97291e"; 994 - hash = "sha256-xz+D1lS/bpHHu2rJEjalpMajSKl3yn+bQI9JN0Bm7tU="; 993 + rev = "b7431e4b64183a5d0d094895a4cd5daf51ed3103"; 994 + hash = "sha256-P7A/MFmnCHq5rn+QSogbRD3joT7OxC+F9v2oMQ+DZBE="; 995 995 }; 996 996 meta.homepage = "https://github.com/traxys/tree-sitter-lalrpop"; 997 997 }; ··· 1096 1096 }; 1097 1097 markdown = buildGrammar { 1098 1098 language = "markdown"; 1099 - version = "0.0.0+rev=231f316"; 1099 + version = "0.0.0+rev=936cc84"; 1100 1100 src = fetchFromGitHub { 1101 1101 owner = "MDeiml"; 1102 1102 repo = "tree-sitter-markdown"; 1103 - rev = "231f3163cd27d48f91a4517cfdf72d167a9ef164"; 1104 - hash = "sha256-Fcq99HcTOcZwXs0V2zpTiDDQVcGocZQ0we5On9p+Uck="; 1103 + rev = "936cc84289f6de83c263ae8e659fb342867ceb16"; 1104 + hash = "sha256-fDpZs/supQ4Mdlm3+birKodclcwPdsytB3+cRHM4NkM="; 1105 1105 }; 1106 1106 location = "tree-sitter-markdown"; 1107 1107 meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; 1108 1108 }; 1109 1109 markdown_inline = buildGrammar { 1110 1110 language = "markdown_inline"; 1111 - version = "0.0.0+rev=231f316"; 1111 + version = "0.0.0+rev=936cc84"; 1112 1112 src = fetchFromGitHub { 1113 1113 owner = "MDeiml"; 1114 1114 repo = "tree-sitter-markdown"; 1115 - rev = "231f3163cd27d48f91a4517cfdf72d167a9ef164"; 1116 - hash = "sha256-Fcq99HcTOcZwXs0V2zpTiDDQVcGocZQ0we5On9p+Uck="; 1115 + rev = "936cc84289f6de83c263ae8e659fb342867ceb16"; 1116 + hash = "sha256-fDpZs/supQ4Mdlm3+birKodclcwPdsytB3+cRHM4NkM="; 1117 1117 }; 1118 1118 location = "tree-sitter-markdown-inline"; 1119 1119 meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; 1120 1120 }; 1121 1121 matlab = buildGrammar { 1122 1122 language = "matlab"; 1123 - version = "0.0.0+rev=138f2ee"; 1123 + version = "0.0.0+rev=26c5255"; 1124 1124 src = fetchFromGitHub { 1125 1125 owner = "acristoffers"; 1126 1126 repo = "tree-sitter-matlab"; 1127 - rev = "138f2ee2eaadcff53ef1fce944713942af92c097"; 1128 - hash = "sha256-fVAchZULNxp8Jtl632hRClaR2FKWF5C5OW0QpjihGf0="; 1127 + rev = "26c525577c7349b8d9805d244cacd8ef98807b78"; 1128 + hash = "sha256-nvjqmyVcVfTkuMFyDWWJLZNN/SeiNwLrQU6qfvQqpmw="; 1129 1129 }; 1130 1130 meta.homepage = "https://github.com/acristoffers/tree-sitter-matlab"; 1131 1131 }; ··· 1231 1231 }; 1232 1232 ocaml = buildGrammar { 1233 1233 language = "ocaml"; 1234 - version = "0.0.0+rev=2da4930"; 1234 + version = "0.0.0+rev=82e103c"; 1235 1235 src = fetchFromGitHub { 1236 1236 owner = "tree-sitter"; 1237 1237 repo = "tree-sitter-ocaml"; 1238 - rev = "2da49308381b91e19e5d270ec5117616d0e4b135"; 1239 - hash = "sha256-seyVqMGRLM1aD+863AvGaDFAhFYLCbQx4eitBcohbWQ="; 1238 + rev = "82e103cee0ffb61ee59f9b654b8e1d4b8e9cab74"; 1239 + hash = "sha256-ukfW16Se3HH5n0NRPhp0oaCHULDpUqvOlvgeTMQUVwE="; 1240 1240 }; 1241 1241 location = "ocaml"; 1242 1242 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; 1243 1243 }; 1244 1244 ocaml_interface = buildGrammar { 1245 1245 language = "ocaml_interface"; 1246 - version = "0.0.0+rev=2da4930"; 1246 + version = "0.0.0+rev=82e103c"; 1247 1247 src = fetchFromGitHub { 1248 1248 owner = "tree-sitter"; 1249 1249 repo = "tree-sitter-ocaml"; 1250 - rev = "2da49308381b91e19e5d270ec5117616d0e4b135"; 1251 - hash = "sha256-seyVqMGRLM1aD+863AvGaDFAhFYLCbQx4eitBcohbWQ="; 1250 + rev = "82e103cee0ffb61ee59f9b654b8e1d4b8e9cab74"; 1251 + hash = "sha256-ukfW16Se3HH5n0NRPhp0oaCHULDpUqvOlvgeTMQUVwE="; 1252 1252 }; 1253 1253 location = "interface"; 1254 1254 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; ··· 1377 1377 }; 1378 1378 pony = buildGrammar { 1379 1379 language = "pony"; 1380 - version = "0.0.0+rev=5fd795a"; 1380 + version = "0.0.0+rev=16f930b"; 1381 1381 src = fetchFromGitHub { 1382 1382 owner = "amaanq"; 1383 1383 repo = "tree-sitter-pony"; 1384 - rev = "5fd795ae7597b568b0a356c5d243cc92162bc00c"; 1385 - hash = "sha256-uwxqbWK3Zy5heGQ3aSX73X6wY0FY3ewqjsQXgDl8nb0="; 1384 + rev = "16f930b250433cfcd4fb4144df92bb98ad344c20"; 1385 + hash = "sha256-UamgLmI1aI5e/JlGVZzFCPgDol8MnFomncrFKhQYLsk="; 1386 1386 }; 1387 1387 meta.homepage = "https://github.com/amaanq/tree-sitter-pony"; 1388 1388 }; ··· 1608 1608 }; 1609 1609 scala = buildGrammar { 1610 1610 language = "scala"; 1611 - version = "0.0.0+rev=a5c4c29"; 1611 + version = "0.0.0+rev=cda0de8"; 1612 1612 src = fetchFromGitHub { 1613 1613 owner = "tree-sitter"; 1614 1614 repo = "tree-sitter-scala"; 1615 - rev = "a5c4c29b95aca29dea71f34bf046ad0b36499045"; 1616 - hash = "sha256-R7503gLEWdktp/OKBc2hCAf6YzS4RInzYU99ohLJZ+g="; 1615 + rev = "cda0de8a038b0e4ad79a97f7aa281250fcf88560"; 1616 + hash = "sha256-739c8THPQchATVQqaE5sAAg2aW5x8NXyn7OUT5yDRQs="; 1617 1617 }; 1618 1618 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 1619 1619 }; ··· 1696 1696 }; 1697 1697 sql = buildGrammar { 1698 1698 language = "sql"; 1699 - version = "0.0.0+rev=7cbac04"; 1699 + version = "0.0.0+rev=d38db87"; 1700 1700 src = fetchFromGitHub { 1701 1701 owner = "derekstride"; 1702 1702 repo = "tree-sitter-sql"; 1703 - rev = "7cbac0472e5b8f8486ce64ffbcf1982d5cd5fc8d"; 1704 - hash = "sha256-jUetr81AvJr2igJqCKG1Mt6REDTeeyFpgQNRRRwMJXw="; 1703 + rev = "d38db87c3e979a692cd542be44524f7f5e46f965"; 1704 + hash = "sha256-PT7joV3kA8LqB6t/bhahxNsp8zfOKNWQIT8gQ4UnqY4="; 1705 1705 }; 1706 1706 meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; 1707 1707 }; ··· 1910 1910 }; 1911 1911 twig = buildGrammar { 1912 1912 language = "twig"; 1913 - version = "0.0.0+rev=2457993"; 1913 + version = "0.0.0+rev=779ee5a"; 1914 1914 src = fetchFromGitHub { 1915 1915 owner = "gbprod"; 1916 1916 repo = "tree-sitter-twig"; 1917 - rev = "2457993b13a06dec2706e6a6c3d5b65bb23024b8"; 1918 - hash = "sha256-8H2luJtjSZt2AWP1L0A64jm+DeEH8cFaC+yvIDLKk4o="; 1917 + rev = "779ee5ab1e065dcef7f51f253030dc875445b25f"; 1918 + hash = "sha256-4De6ETY0oqbvMXtTDyd1vwheJdfuIusNHjyqyspsz2A="; 1919 1919 }; 1920 1920 meta.homepage = "https://github.com/gbprod/tree-sitter-twig"; 1921 1921 };
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 271 271 https://github.com/bogado/file-line/,, 272 272 https://github.com/glacambre/firenvim/,HEAD, 273 273 https://github.com/andviro/flake8-vim/,, 274 + https://github.com/folke/flash.nvim/,HEAD, 274 275 https://github.com/willothy/flatten.nvim/,HEAD, 275 276 https://github.com/ggandor/flit.nvim/,HEAD, 276 277 https://github.com/ncm2/float-preview.nvim/,,
+2 -2
pkgs/applications/graphics/megapixels/default.nix
··· 29 29 in 30 30 stdenv.mkDerivation rec { 31 31 pname = "megapixels"; 32 - version = "1.6.0"; 32 + version = "1.6.1"; 33 33 34 34 src = fetchFromGitLab { 35 35 owner = "postmarketOS"; 36 36 repo = "megapixels"; 37 37 rev = version; 38 - hash = "sha256-xrO9Xr9DPjlDs4yaKy32yb4X8wFqLKfy8rsjtBuN+Rg="; 38 + hash = "sha256-ZkTDHDL5nhpR8PKqia12pbrEZLnRXEm8DwBYdYrP5Qo="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+7 -5
pkgs/applications/misc/brewtarget/default.nix
··· 3 3 , fetchFromGitHub 4 4 , bash 5 5 , cmake 6 + , boost 7 + , xercesc 8 + , xalanc 6 9 , qtbase 7 10 , qttools 8 11 , qtmultimedia 9 - , qtwebkit 10 12 , qtsvg 11 13 }: 12 14 13 15 mkDerivation rec { 14 16 pname = "brewtarget"; 15 - version = "2.3.1"; 17 + version = "3.0.5"; 16 18 17 19 src = fetchFromGitHub { 18 20 owner = "Brewtarget"; 19 21 repo = pname; 20 22 rev = "v${version}"; 21 - sha256 = "14xmm6f8xmvypagx4qdw8q9llzmyi9zzfhnzh4kbbflhjbcr7isz"; 23 + sha256 = "sha256-PqaiZ2eLH8+qRRkIolnQClTL9O9EgHMqFH/nUffosV8="; 22 24 }; 23 25 24 - nativeBuildInputs = [ cmake ]; 25 - buildInputs = [ qtbase qttools qtmultimedia qtwebkit qtsvg ]; 26 + nativeBuildInputs = [ cmake boost xercesc xalanc ]; 27 + buildInputs = [ qtbase qttools qtmultimedia qtsvg ]; 26 28 27 29 preConfigure = '' 28 30 chmod +x configure
+3 -1
pkgs/applications/misc/mupdf/default.nix
··· 64 64 substituteInPlace Makerules --replace "(shell pkg-config" "(shell $PKG_CONFIG" 65 65 ''; 66 66 67 + # Use shared libraries to decrease size 68 + buildFlags = [ "shared" ]; 69 + 67 70 makeFlags = [ 68 71 "prefix=$(out)" 69 - "shared=yes" 70 72 "USE_SYSTEM_LIBS=yes" 71 73 "PKG_CONFIG=${buildPackages.pkg-config}/bin/${buildPackages.pkg-config.targetPrefix}pkg-config" 72 74 ] ++ lib.optionals (!enableX11) [ "HAVE_X11=no" ]
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 29 29 30 30 firefox-beta = buildMozillaMach rec { 31 31 pname = "firefox-beta"; 32 - version = "115.0b7"; 32 + version = "115.0b9"; 33 33 applicationName = "Mozilla Firefox Beta"; 34 34 src = fetchurl { 35 35 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 36 - sha512 = "4ae6b74e7a47c06c3630c911d5bbcd6c390f1462f4335c8fd084cf455675c88872864390e22847da16564484b70fbac09625015fc6a4cf10a01ed8052016991e"; 36 + sha512 = "26e030143c09daef8fcdde55ebd020828025694d354e5f1e51308275af07b4c44aef325bb74e5e289b89d469822b2380a4abf47103972f46f12dfd9ac8fad830"; 37 37 }; 38 38 39 39 meta = { ··· 56 56 57 57 firefox-devedition = buildMozillaMach rec { 58 58 pname = "firefox-devedition"; 59 - version = "115.0b7"; 59 + version = "115.0b9"; 60 60 applicationName = "Mozilla Firefox Developer Edition"; 61 61 branding = "browser/branding/aurora"; 62 62 src = fetchurl { 63 63 url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz"; 64 - sha512 = "f360ca7c5eb69d16a54b37a95195f4981c19e7e081cf7d494dafc1838ec69f2beabae5eaed23b0b551e71b32e3d0213383bc43e63416d390aa453bfa8b0f1993"; 64 + sha512 = "8d2a0dc2c64f8fc846077165ea0c97cae04a85db9ffcd23fbf933b25f165ecd85727ba2f432842f2d2f41c5b5bef5eb4ae2536d8492888c334aba0dcec278c47"; 65 65 }; 66 66 67 67 meta = {
+21 -1
pkgs/applications/networking/cluster/karmor/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, installShellFiles, lib }: 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , installShellFiles 5 + , testers 6 + , karmor 7 + }: 2 8 3 9 buildGoModule rec { 4 10 pname = "karmor"; ··· 15 21 16 22 nativeBuildInputs = [ installShellFiles ]; 17 23 24 + ldflags = [ 25 + "-s" 26 + "-w" 27 + "-X=github.com/kubearmor/kubearmor-client/selfupdate.BuildDate=1970-01-01" 28 + "-X=github.com/kubearmor/kubearmor-client/selfupdate.GitSummary=${version}" 29 + ]; 30 + 18 31 # integration tests require network access 19 32 doCheck = false; 20 33 ··· 25 38 --fish <($out/bin/karmor completion fish) \ 26 39 --zsh <($out/bin/karmor completion zsh) 27 40 ''; 41 + 42 + passthru.tests = { 43 + version = testers.testVersion { 44 + package = karmor; 45 + command = "karmor version || true"; 46 + }; 47 + }; 28 48 29 49 meta = with lib; { 30 50 description = "A client tool to help manage KubeArmor";
-5827
pkgs/applications/networking/instant-messengers/deltachat-desktop/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "abao" 7 - version = "0.2.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "2daa0989489b05a455a9707adbbbc17443edf7bbc902ce499cd3b84148d68a40" 10 - dependencies = [ 11 - "arrayref", 12 - "arrayvec", 13 - "blake3", 14 - "futures", 15 - "tokio", 16 - ] 17 - 18 - [[package]] 19 - name = "addr2line" 20 - version = "0.19.0" 21 - source = "registry+https://github.com/rust-lang/crates.io-index" 22 - checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 23 - dependencies = [ 24 - "gimli", 25 - ] 26 - 27 - [[package]] 28 - name = "adler" 29 - version = "1.0.2" 30 - source = "registry+https://github.com/rust-lang/crates.io-index" 31 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 32 - 33 - [[package]] 34 - name = "aes" 35 - version = "0.8.2" 36 - source = "registry+https://github.com/rust-lang/crates.io-index" 37 - checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 38 - dependencies = [ 39 - "cfg-if", 40 - "cipher", 41 - "cpufeatures", 42 - ] 43 - 44 - [[package]] 45 - name = "ahash" 46 - version = "0.7.6" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 49 - dependencies = [ 50 - "getrandom 0.2.8", 51 - "once_cell", 52 - "version_check", 53 - ] 54 - 55 - [[package]] 56 - name = "aho-corasick" 57 - version = "1.0.1" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 60 - dependencies = [ 61 - "memchr", 62 - ] 63 - 64 - [[package]] 65 - name = "alloc-no-stdlib" 66 - version = "2.0.4" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 69 - 70 - [[package]] 71 - name = "alloc-stdlib" 72 - version = "0.2.2" 73 - source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 75 - dependencies = [ 76 - "alloc-no-stdlib", 77 - ] 78 - 79 - [[package]] 80 - name = "android-tzdata" 81 - version = "0.1.1" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 84 - 85 - [[package]] 86 - name = "android_system_properties" 87 - version = "0.1.5" 88 - source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 90 - dependencies = [ 91 - "libc", 92 - ] 93 - 94 - [[package]] 95 - name = "anes" 96 - version = "0.1.6" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 99 - 100 - [[package]] 101 - name = "ansi_term" 102 - version = "0.12.1" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 105 - dependencies = [ 106 - "winapi", 107 - ] 108 - 109 - [[package]] 110 - name = "anstyle" 111 - version = "1.0.0" 112 - source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 114 - 115 - [[package]] 116 - name = "anyhow" 117 - version = "1.0.71" 118 - source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 120 - dependencies = [ 121 - "backtrace", 122 - ] 123 - 124 - [[package]] 125 - name = "arrayref" 126 - version = "0.3.6" 127 - source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 129 - 130 - [[package]] 131 - name = "arrayvec" 132 - version = "0.7.2" 133 - source = "registry+https://github.com/rust-lang/crates.io-index" 134 - checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 135 - 136 - [[package]] 137 - name = "ascii_utils" 138 - version = "0.9.3" 139 - source = "registry+https://github.com/rust-lang/crates.io-index" 140 - checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a" 141 - 142 - [[package]] 143 - name = "asn1-rs" 144 - version = "0.5.1" 145 - source = "registry+https://github.com/rust-lang/crates.io-index" 146 - checksum = "cf6690c370453db30743b373a60ba498fc0d6d83b11f4abfd87a84a075db5dd4" 147 - dependencies = [ 148 - "asn1-rs-derive", 149 - "asn1-rs-impl", 150 - "displaydoc", 151 - "nom", 152 - "num-traits", 153 - "rusticata-macros", 154 - "thiserror", 155 - "time 0.3.20", 156 - ] 157 - 158 - [[package]] 159 - name = "asn1-rs-derive" 160 - version = "0.4.0" 161 - source = "registry+https://github.com/rust-lang/crates.io-index" 162 - checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" 163 - dependencies = [ 164 - "proc-macro2", 165 - "quote", 166 - "syn 1.0.109", 167 - "synstructure", 168 - ] 169 - 170 - [[package]] 171 - name = "asn1-rs-impl" 172 - version = "0.1.0" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" 175 - dependencies = [ 176 - "proc-macro2", 177 - "quote", 178 - "syn 1.0.109", 179 - ] 180 - 181 - [[package]] 182 - name = "async-channel" 183 - version = "1.8.0" 184 - source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 186 - dependencies = [ 187 - "concurrent-queue", 188 - "event-listener", 189 - "futures-core", 190 - ] 191 - 192 - [[package]] 193 - name = "async-compression" 194 - version = "0.3.15" 195 - source = "registry+https://github.com/rust-lang/crates.io-index" 196 - checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 197 - dependencies = [ 198 - "flate2", 199 - "futures-core", 200 - "memchr", 201 - "pin-project-lite", 202 - "tokio", 203 - ] 204 - 205 - [[package]] 206 - name = "async-imap" 207 - version = "0.9.0" 208 - source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "da93622739d458dd9a6abc1abf0e38e81965a5824a3b37f9500437c82a8bb572" 210 - dependencies = [ 211 - "async-channel", 212 - "base64 0.21.2", 213 - "byte-pool", 214 - "chrono", 215 - "futures", 216 - "imap-proto", 217 - "log", 218 - "nom", 219 - "once_cell", 220 - "pin-utils", 221 - "self_cell", 222 - "stop-token", 223 - "thiserror", 224 - "tokio", 225 - ] 226 - 227 - [[package]] 228 - name = "async-mutex" 229 - version = "1.4.0" 230 - source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e" 232 - dependencies = [ 233 - "event-listener", 234 - ] 235 - 236 - [[package]] 237 - name = "async-native-tls" 238 - version = "0.5.0" 239 - source = "registry+https://github.com/rust-lang/crates.io-index" 240 - checksum = "9343dc5acf07e79ff82d0c37899f079db3534d99f189a1837c8e549c99405bec" 241 - dependencies = [ 242 - "native-tls", 243 - "thiserror", 244 - "tokio", 245 - "url", 246 - ] 247 - 248 - [[package]] 249 - name = "async-smtp" 250 - version = "0.9.0" 251 - source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "8709c0d4432be428a88a06746689a9cb543e8e27ef7f61ca4d0455003a3d8c5b" 253 - dependencies = [ 254 - "anyhow", 255 - "base64 0.13.1", 256 - "futures", 257 - "hostname", 258 - "log", 259 - "nom", 260 - "pin-project", 261 - "thiserror", 262 - "tokio", 263 - ] 264 - 265 - [[package]] 266 - name = "async-trait" 267 - version = "0.1.68" 268 - source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 270 - dependencies = [ 271 - "proc-macro2", 272 - "quote", 273 - "syn 2.0.18", 274 - ] 275 - 276 - [[package]] 277 - name = "async_zip" 278 - version = "0.0.12" 279 - source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "b2105142db9c6203b9dadc83b0553394589a6cb31b1449a3b46b42f47c3434d0" 281 - dependencies = [ 282 - "async-compression", 283 - "crc32fast", 284 - "log", 285 - "pin-project", 286 - "thiserror", 287 - "tokio", 288 - ] 289 - 290 - [[package]] 291 - name = "autocfg" 292 - version = "1.1.0" 293 - source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 295 - 296 - [[package]] 297 - name = "axum" 298 - version = "0.6.18" 299 - source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39" 301 - dependencies = [ 302 - "async-trait", 303 - "axum-core", 304 - "base64 0.21.2", 305 - "bitflags 1.3.2", 306 - "bytes", 307 - "futures-util", 308 - "http", 309 - "http-body", 310 - "hyper", 311 - "itoa", 312 - "matchit", 313 - "memchr", 314 - "mime", 315 - "percent-encoding", 316 - "pin-project-lite", 317 - "rustversion", 318 - "serde", 319 - "serde_json", 320 - "serde_path_to_error", 321 - "serde_urlencoded", 322 - "sha1", 323 - "sync_wrapper", 324 - "tokio", 325 - "tokio-tungstenite", 326 - "tower", 327 - "tower-layer", 328 - "tower-service", 329 - ] 330 - 331 - [[package]] 332 - name = "axum-core" 333 - version = "0.3.4" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 336 - dependencies = [ 337 - "async-trait", 338 - "bytes", 339 - "futures-util", 340 - "http", 341 - "http-body", 342 - "mime", 343 - "rustversion", 344 - "tower-layer", 345 - "tower-service", 346 - ] 347 - 348 - [[package]] 349 - name = "backtrace" 350 - version = "0.3.67" 351 - source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 353 - dependencies = [ 354 - "addr2line", 355 - "cc", 356 - "cfg-if", 357 - "libc", 358 - "miniz_oxide", 359 - "object", 360 - "rustc-demangle", 361 - ] 362 - 363 - [[package]] 364 - name = "base16ct" 365 - version = "0.1.1" 366 - source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 368 - 369 - [[package]] 370 - name = "base16ct" 371 - version = "0.2.0" 372 - source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 374 - 375 - [[package]] 376 - name = "base64" 377 - version = "0.11.0" 378 - source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" 380 - 381 - [[package]] 382 - name = "base64" 383 - version = "0.12.3" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 386 - 387 - [[package]] 388 - name = "base64" 389 - version = "0.13.1" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 392 - 393 - [[package]] 394 - name = "base64" 395 - version = "0.21.2" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 398 - 399 - [[package]] 400 - name = "base64ct" 401 - version = "1.6.0" 402 - source = "registry+https://github.com/rust-lang/crates.io-index" 403 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 404 - 405 - [[package]] 406 - name = "bincode" 407 - version = "1.3.3" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 410 - dependencies = [ 411 - "serde", 412 - ] 413 - 414 - [[package]] 415 - name = "bitfield" 416 - version = "0.14.0" 417 - source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "2d7e60934ceec538daadb9d8432424ed043a904d8e0243f3c6446bce549a46ac" 419 - 420 - [[package]] 421 - name = "bitflags" 422 - version = "1.3.2" 423 - source = "registry+https://github.com/rust-lang/crates.io-index" 424 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 425 - 426 - [[package]] 427 - name = "bitflags" 428 - version = "2.0.2" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1" 431 - 432 - [[package]] 433 - name = "blake3" 434 - version = "1.3.3" 435 - source = "registry+https://github.com/rust-lang/crates.io-index" 436 - checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" 437 - dependencies = [ 438 - "arrayref", 439 - "arrayvec", 440 - "cc", 441 - "cfg-if", 442 - "constant_time_eq", 443 - "digest 0.10.6", 444 - ] 445 - 446 - [[package]] 447 - name = "block-buffer" 448 - version = "0.9.0" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 451 - dependencies = [ 452 - "generic-array", 453 - ] 454 - 455 - [[package]] 456 - name = "block-buffer" 457 - version = "0.10.3" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 460 - dependencies = [ 461 - "generic-array", 462 - ] 463 - 464 - [[package]] 465 - name = "block-padding" 466 - version = "0.3.2" 467 - source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "0a90ec2df9600c28a01c56c4784c9207a96d2451833aeceb8cc97e4c9548bb78" 469 - dependencies = [ 470 - "generic-array", 471 - ] 472 - 473 - [[package]] 474 - name = "blowfish" 475 - version = "0.9.1" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" 478 - dependencies = [ 479 - "byteorder", 480 - "cipher", 481 - ] 482 - 483 - [[package]] 484 - name = "brotli" 485 - version = "3.3.4" 486 - source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 488 - dependencies = [ 489 - "alloc-no-stdlib", 490 - "alloc-stdlib", 491 - "brotli-decompressor", 492 - ] 493 - 494 - [[package]] 495 - name = "brotli-decompressor" 496 - version = "2.3.4" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 499 - dependencies = [ 500 - "alloc-no-stdlib", 501 - "alloc-stdlib", 502 - ] 503 - 504 - [[package]] 505 - name = "bstr" 506 - version = "1.4.0" 507 - source = "registry+https://github.com/rust-lang/crates.io-index" 508 - checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 509 - dependencies = [ 510 - "memchr", 511 - "serde", 512 - ] 513 - 514 - [[package]] 515 - name = "buffer-redux" 516 - version = "1.0.0" 517 - source = "registry+https://github.com/rust-lang/crates.io-index" 518 - checksum = "d2886ea01509598caac116942abd33ab5a88fa32acdf7e4abfa0fc489ca520c9" 519 - dependencies = [ 520 - "memchr", 521 - "safemem", 522 - ] 523 - 524 - [[package]] 525 - name = "bumpalo" 526 - version = "3.12.0" 527 - source = "registry+https://github.com/rust-lang/crates.io-index" 528 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 529 - 530 - [[package]] 531 - name = "byte-pool" 532 - version = "0.2.4" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "c2f1b21189f50b5625efa6227cf45e9d4cfdc2e73582df2b879e9689e78a7158" 535 - dependencies = [ 536 - "crossbeam-queue", 537 - "stable_deref_trait", 538 - ] 539 - 540 - [[package]] 541 - name = "bytemuck" 542 - version = "1.13.1" 543 - source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 545 - 546 - [[package]] 547 - name = "byteorder" 548 - version = "1.4.3" 549 - source = "registry+https://github.com/rust-lang/crates.io-index" 550 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 551 - 552 - [[package]] 553 - name = "bytes" 554 - version = "1.4.0" 555 - source = "registry+https://github.com/rust-lang/crates.io-index" 556 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 557 - 558 - [[package]] 559 - name = "camellia" 560 - version = "0.1.0" 561 - source = "registry+https://github.com/rust-lang/crates.io-index" 562 - checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30" 563 - dependencies = [ 564 - "byteorder", 565 - "cipher", 566 - ] 567 - 568 - [[package]] 569 - name = "camino" 570 - version = "1.1.3" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "6031a462f977dd38968b6f23378356512feeace69cef817e1a4475108093cec3" 573 - dependencies = [ 574 - "serde", 575 - ] 576 - 577 - [[package]] 578 - name = "cargo-platform" 579 - version = "0.1.2" 580 - source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" 582 - dependencies = [ 583 - "serde", 584 - ] 585 - 586 - [[package]] 587 - name = "cargo_metadata" 588 - version = "0.14.2" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 591 - dependencies = [ 592 - "camino", 593 - "cargo-platform", 594 - "semver", 595 - "serde", 596 - "serde_json", 597 - ] 598 - 599 - [[package]] 600 - name = "cast" 601 - version = "0.3.0" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 604 - 605 - [[package]] 606 - name = "cast5" 607 - version = "0.11.1" 608 - source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "26b07d673db1ccf000e90f54b819db9e75a8348d6eb056e9b8ab53231b7a9911" 610 - dependencies = [ 611 - "cipher", 612 - ] 613 - 614 - [[package]] 615 - name = "cc" 616 - version = "1.0.79" 617 - source = "registry+https://github.com/rust-lang/crates.io-index" 618 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 619 - 620 - [[package]] 621 - name = "cfb-mode" 622 - version = "0.8.2" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330" 625 - dependencies = [ 626 - "cipher", 627 - ] 628 - 629 - [[package]] 630 - name = "cfg-if" 631 - version = "1.0.0" 632 - source = "registry+https://github.com/rust-lang/crates.io-index" 633 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 634 - 635 - [[package]] 636 - name = "charset" 637 - version = "0.1.3" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "18e9079d1a12a2cc2bffb5db039c43661836ead4082120d5844f02555aca2d46" 640 - dependencies = [ 641 - "base64 0.13.1", 642 - "encoding_rs", 643 - ] 644 - 645 - [[package]] 646 - name = "chrono" 647 - version = "0.4.26" 648 - source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 650 - dependencies = [ 651 - "android-tzdata", 652 - "iana-time-zone", 653 - "js-sys", 654 - "num-traits", 655 - "time 0.1.45", 656 - "wasm-bindgen", 657 - "winapi", 658 - ] 659 - 660 - [[package]] 661 - name = "ciborium" 662 - version = "0.2.0" 663 - source = "registry+https://github.com/rust-lang/crates.io-index" 664 - checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 665 - dependencies = [ 666 - "ciborium-io", 667 - "ciborium-ll", 668 - "serde", 669 - ] 670 - 671 - [[package]] 672 - name = "ciborium-io" 673 - version = "0.2.0" 674 - source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 676 - 677 - [[package]] 678 - name = "ciborium-ll" 679 - version = "0.2.0" 680 - source = "registry+https://github.com/rust-lang/crates.io-index" 681 - checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 682 - dependencies = [ 683 - "ciborium-io", 684 - "half", 685 - ] 686 - 687 - [[package]] 688 - name = "cipher" 689 - version = "0.4.3" 690 - source = "registry+https://github.com/rust-lang/crates.io-index" 691 - checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" 692 - dependencies = [ 693 - "crypto-common", 694 - "inout", 695 - ] 696 - 697 - [[package]] 698 - name = "clap" 699 - version = "4.3.1" 700 - source = "registry+https://github.com/rust-lang/crates.io-index" 701 - checksum = "b4ed2379f8603fa2b7509891660e802b88c70a79a6427a70abb5968054de2c28" 702 - dependencies = [ 703 - "clap_builder", 704 - ] 705 - 706 - [[package]] 707 - name = "clap_builder" 708 - version = "4.3.1" 709 - source = "registry+https://github.com/rust-lang/crates.io-index" 710 - checksum = "72394f3339a76daf211e57d4bcb374410f3965dcc606dd0e03738c7888766980" 711 - dependencies = [ 712 - "anstyle", 713 - "bitflags 1.3.2", 714 - "clap_lex", 715 - ] 716 - 717 - [[package]] 718 - name = "clap_lex" 719 - version = "0.5.0" 720 - source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 722 - 723 - [[package]] 724 - name = "clipboard-win" 725 - version = "4.5.0" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" 728 - dependencies = [ 729 - "error-code", 730 - "str-buf", 731 - "winapi", 732 - ] 733 - 734 - [[package]] 735 - name = "cobs" 736 - version = "0.2.3" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15" 739 - 740 - [[package]] 741 - name = "codespan-reporting" 742 - version = "0.11.1" 743 - source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 745 - dependencies = [ 746 - "termcolor", 747 - "unicode-width", 748 - ] 749 - 750 - [[package]] 751 - name = "color_quant" 752 - version = "1.1.0" 753 - source = "registry+https://github.com/rust-lang/crates.io-index" 754 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 755 - 756 - [[package]] 757 - name = "concurrent-queue" 758 - version = "2.1.0" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 761 - dependencies = [ 762 - "crossbeam-utils", 763 - ] 764 - 765 - [[package]] 766 - name = "const-oid" 767 - version = "0.9.2" 768 - source = "registry+https://github.com/rust-lang/crates.io-index" 769 - checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913" 770 - 771 - [[package]] 772 - name = "const_format" 773 - version = "0.2.30" 774 - source = "registry+https://github.com/rust-lang/crates.io-index" 775 - checksum = "7309d9b4d3d2c0641e018d449232f2e28f1b22933c137f157d3dbc14228b8c0e" 776 - dependencies = [ 777 - "const_format_proc_macros", 778 - ] 779 - 780 - [[package]] 781 - name = "const_format_proc_macros" 782 - version = "0.2.29" 783 - source = "registry+https://github.com/rust-lang/crates.io-index" 784 - checksum = "d897f47bf7270cf70d370f8f98c1abb6d2d4cf60a6845d30e05bfb90c6568650" 785 - dependencies = [ 786 - "proc-macro2", 787 - "quote", 788 - "unicode-xid", 789 - ] 790 - 791 - [[package]] 792 - name = "constant_time_eq" 793 - version = "0.2.4" 794 - source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" 796 - 797 - [[package]] 798 - name = "convert_case" 799 - version = "0.4.0" 800 - source = "registry+https://github.com/rust-lang/crates.io-index" 801 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 802 - 803 - [[package]] 804 - name = "convert_case" 805 - version = "0.5.0" 806 - source = "registry+https://github.com/rust-lang/crates.io-index" 807 - checksum = "fb4a24b1aaf0fd0ce8b45161144d6f42cd91677fd5940fd431183eb023b3a2b8" 808 - 809 - [[package]] 810 - name = "core-foundation" 811 - version = "0.9.3" 812 - source = "registry+https://github.com/rust-lang/crates.io-index" 813 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 814 - dependencies = [ 815 - "core-foundation-sys", 816 - "libc", 817 - ] 818 - 819 - [[package]] 820 - name = "core-foundation-sys" 821 - version = "0.8.3" 822 - source = "registry+https://github.com/rust-lang/crates.io-index" 823 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 824 - 825 - [[package]] 826 - name = "cpufeatures" 827 - version = "0.2.5" 828 - source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 830 - dependencies = [ 831 - "libc", 832 - ] 833 - 834 - [[package]] 835 - name = "crc24" 836 - version = "0.1.6" 837 - source = "registry+https://github.com/rust-lang/crates.io-index" 838 - checksum = "fd121741cf3eb82c08dd3023eb55bf2665e5f60ec20f89760cf836ae4562e6a0" 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 - ] 848 - 849 - [[package]] 850 - name = "criterion" 851 - version = "0.5.1" 852 - source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 854 - dependencies = [ 855 - "anes", 856 - "cast", 857 - "ciborium", 858 - "clap", 859 - "criterion-plot", 860 - "futures", 861 - "is-terminal", 862 - "itertools", 863 - "num-traits", 864 - "once_cell", 865 - "oorandom", 866 - "plotters", 867 - "rayon", 868 - "regex", 869 - "serde", 870 - "serde_derive", 871 - "serde_json", 872 - "tinytemplate", 873 - "tokio", 874 - "walkdir", 875 - ] 876 - 877 - [[package]] 878 - name = "criterion-plot" 879 - version = "0.5.0" 880 - source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 882 - dependencies = [ 883 - "cast", 884 - "itertools", 885 - ] 886 - 887 - [[package]] 888 - name = "crossbeam-channel" 889 - version = "0.5.8" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 892 - dependencies = [ 893 - "cfg-if", 894 - "crossbeam-utils", 895 - ] 896 - 897 - [[package]] 898 - name = "crossbeam-deque" 899 - version = "0.8.3" 900 - source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 902 - dependencies = [ 903 - "cfg-if", 904 - "crossbeam-epoch", 905 - "crossbeam-utils", 906 - ] 907 - 908 - [[package]] 909 - name = "crossbeam-epoch" 910 - version = "0.9.14" 911 - source = "registry+https://github.com/rust-lang/crates.io-index" 912 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 913 - dependencies = [ 914 - "autocfg", 915 - "cfg-if", 916 - "crossbeam-utils", 917 - "memoffset", 918 - "scopeguard", 919 - ] 920 - 921 - [[package]] 922 - name = "crossbeam-queue" 923 - version = "0.3.8" 924 - source = "registry+https://github.com/rust-lang/crates.io-index" 925 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 926 - dependencies = [ 927 - "cfg-if", 928 - "crossbeam-utils", 929 - ] 930 - 931 - [[package]] 932 - name = "crossbeam-utils" 933 - version = "0.8.15" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 936 - dependencies = [ 937 - "cfg-if", 938 - ] 939 - 940 - [[package]] 941 - name = "crypto-bigint" 942 - version = "0.4.9" 943 - source = "registry+https://github.com/rust-lang/crates.io-index" 944 - checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 945 - dependencies = [ 946 - "generic-array", 947 - "rand_core 0.6.4", 948 - "subtle", 949 - "zeroize", 950 - ] 951 - 952 - [[package]] 953 - name = "crypto-bigint" 954 - version = "0.5.1" 955 - source = "registry+https://github.com/rust-lang/crates.io-index" 956 - checksum = "7c2538c4e68e52548bacb3e83ac549f903d44f011ac9d5abb5e132e67d0808f7" 957 - dependencies = [ 958 - "generic-array", 959 - "rand_core 0.6.4", 960 - "subtle", 961 - "zeroize", 962 - ] 963 - 964 - [[package]] 965 - name = "crypto-common" 966 - version = "0.1.6" 967 - source = "registry+https://github.com/rust-lang/crates.io-index" 968 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 969 - dependencies = [ 970 - "generic-array", 971 - "typenum", 972 - ] 973 - 974 - [[package]] 975 - name = "ctor" 976 - version = "0.1.26" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 979 - dependencies = [ 980 - "quote", 981 - "syn 1.0.109", 982 - ] 983 - 984 - [[package]] 985 - name = "curve25519-dalek" 986 - version = "3.2.0" 987 - source = "registry+https://github.com/rust-lang/crates.io-index" 988 - checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" 989 - dependencies = [ 990 - "byteorder", 991 - "digest 0.9.0", 992 - "rand_core 0.5.1", 993 - "subtle", 994 - "zeroize", 995 - ] 996 - 997 - [[package]] 998 - name = "curve25519-dalek" 999 - version = "4.0.0-rc.2" 1000 - source = "registry+https://github.com/rust-lang/crates.io-index" 1001 - checksum = "03d928d978dbec61a1167414f5ec534f24bea0d7a0d24dd9b6233d3d8223e585" 1002 - dependencies = [ 1003 - "cfg-if", 1004 - "digest 0.10.6", 1005 - "fiat-crypto", 1006 - "packed_simd_2", 1007 - "platforms", 1008 - "subtle", 1009 - "zeroize", 1010 - ] 1011 - 1012 - [[package]] 1013 - name = "cxx" 1014 - version = "1.0.91" 1015 - source = "registry+https://github.com/rust-lang/crates.io-index" 1016 - checksum = "86d3488e7665a7a483b57e25bdd90d0aeb2bc7608c8d0346acf2ad3f1caf1d62" 1017 - dependencies = [ 1018 - "cc", 1019 - "cxxbridge-flags", 1020 - "cxxbridge-macro", 1021 - "link-cplusplus", 1022 - ] 1023 - 1024 - [[package]] 1025 - name = "cxx-build" 1026 - version = "1.0.91" 1027 - source = "registry+https://github.com/rust-lang/crates.io-index" 1028 - checksum = "48fcaf066a053a41a81dfb14d57d99738b767febb8b735c3016e469fac5da690" 1029 - dependencies = [ 1030 - "cc", 1031 - "codespan-reporting", 1032 - "once_cell", 1033 - "proc-macro2", 1034 - "quote", 1035 - "scratch", 1036 - "syn 1.0.109", 1037 - ] 1038 - 1039 - [[package]] 1040 - name = "cxxbridge-flags" 1041 - version = "1.0.91" 1042 - source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "a2ef98b8b717a829ca5603af80e1f9e2e48013ab227b68ef37872ef84ee479bf" 1044 - 1045 - [[package]] 1046 - name = "cxxbridge-macro" 1047 - version = "1.0.91" 1048 - source = "registry+https://github.com/rust-lang/crates.io-index" 1049 - checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892" 1050 - dependencies = [ 1051 - "proc-macro2", 1052 - "quote", 1053 - "syn 1.0.109", 1054 - ] 1055 - 1056 - [[package]] 1057 - name = "darling" 1058 - version = "0.13.4" 1059 - source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 1061 - dependencies = [ 1062 - "darling_core 0.13.4", 1063 - "darling_macro 0.13.4", 1064 - ] 1065 - 1066 - [[package]] 1067 - name = "darling" 1068 - version = "0.14.3" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "c0808e1bd8671fb44a113a14e13497557533369847788fa2ae912b6ebfce9fa8" 1071 - dependencies = [ 1072 - "darling_core 0.14.3", 1073 - "darling_macro 0.14.3", 1074 - ] 1075 - 1076 - [[package]] 1077 - name = "darling_core" 1078 - version = "0.13.4" 1079 - source = "registry+https://github.com/rust-lang/crates.io-index" 1080 - checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 1081 - dependencies = [ 1082 - "fnv", 1083 - "ident_case", 1084 - "proc-macro2", 1085 - "quote", 1086 - "strsim", 1087 - "syn 1.0.109", 1088 - ] 1089 - 1090 - [[package]] 1091 - name = "darling_core" 1092 - version = "0.14.3" 1093 - source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "001d80444f28e193f30c2f293455da62dcf9a6b29918a4253152ae2b1de592cb" 1095 - dependencies = [ 1096 - "fnv", 1097 - "ident_case", 1098 - "proc-macro2", 1099 - "quote", 1100 - "strsim", 1101 - "syn 1.0.109", 1102 - ] 1103 - 1104 - [[package]] 1105 - name = "darling_macro" 1106 - version = "0.13.4" 1107 - source = "registry+https://github.com/rust-lang/crates.io-index" 1108 - checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 1109 - dependencies = [ 1110 - "darling_core 0.13.4", 1111 - "quote", 1112 - "syn 1.0.109", 1113 - ] 1114 - 1115 - [[package]] 1116 - name = "darling_macro" 1117 - version = "0.14.3" 1118 - source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685" 1120 - dependencies = [ 1121 - "darling_core 0.14.3", 1122 - "quote", 1123 - "syn 1.0.109", 1124 - ] 1125 - 1126 - [[package]] 1127 - name = "data-encoding" 1128 - version = "2.3.3" 1129 - source = "registry+https://github.com/rust-lang/crates.io-index" 1130 - checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" 1131 - 1132 - [[package]] 1133 - name = "default-net" 1134 - version = "0.14.1" 1135 - source = "registry+https://github.com/rust-lang/crates.io-index" 1136 - checksum = "a4898b43aed56499fad6b294d15b3e76a51df68079bf492e5daae38ca084e003" 1137 - dependencies = [ 1138 - "dlopen2", 1139 - "libc", 1140 - "memalloc", 1141 - "netlink-packet-core", 1142 - "netlink-packet-route", 1143 - "netlink-sys", 1144 - "once_cell", 1145 - "system-configuration", 1146 - "windows", 1147 - ] 1148 - 1149 - [[package]] 1150 - name = "deltachat" 1151 - version = "1.117.0" 1152 - dependencies = [ 1153 - "ansi_term", 1154 - "anyhow", 1155 - "async-channel", 1156 - "async-imap", 1157 - "async-native-tls", 1158 - "async-smtp", 1159 - "async_zip", 1160 - "backtrace", 1161 - "base64 0.21.2", 1162 - "brotli", 1163 - "chrono", 1164 - "criterion", 1165 - "deltachat_derive", 1166 - "email", 1167 - "encoded-words", 1168 - "escaper", 1169 - "fast-socks5", 1170 - "format-flowed", 1171 - "futures", 1172 - "futures-lite", 1173 - "hex", 1174 - "humansize", 1175 - "image", 1176 - "iroh", 1177 - "kamadak-exif", 1178 - "lettre_email", 1179 - "libc", 1180 - "log", 1181 - "mailparse", 1182 - "mime", 1183 - "num-derive", 1184 - "num-traits", 1185 - "num_cpus", 1186 - "once_cell", 1187 - "parking_lot", 1188 - "percent-encoding", 1189 - "pgp", 1190 - "pretty_assertions", 1191 - "pretty_env_logger", 1192 - "proptest", 1193 - "qrcodegen", 1194 - "quick-xml", 1195 - "rand 0.8.5", 1196 - "ratelimit", 1197 - "regex", 1198 - "reqwest", 1199 - "rusqlite", 1200 - "rust-hsluv", 1201 - "sanitize-filename", 1202 - "serde", 1203 - "serde_json", 1204 - "sha-1", 1205 - "sha2 0.10.6", 1206 - "smallvec", 1207 - "strum", 1208 - "strum_macros", 1209 - "tagger", 1210 - "tempfile", 1211 - "testdir", 1212 - "textwrap", 1213 - "thiserror", 1214 - "tokio", 1215 - "tokio-io-timeout", 1216 - "tokio-stream", 1217 - "tokio-tar", 1218 - "tokio-util", 1219 - "toml", 1220 - "trust-dns-resolver", 1221 - "url", 1222 - "uuid", 1223 - ] 1224 - 1225 - [[package]] 1226 - name = "deltachat-jsonrpc" 1227 - version = "1.117.0" 1228 - dependencies = [ 1229 - "anyhow", 1230 - "async-channel", 1231 - "axum", 1232 - "base64 0.21.2", 1233 - "deltachat", 1234 - "env_logger", 1235 - "futures", 1236 - "log", 1237 - "num-traits", 1238 - "sanitize-filename", 1239 - "schemars", 1240 - "serde", 1241 - "serde_json", 1242 - "tempfile", 1243 - "tokio", 1244 - "typescript-type-def", 1245 - "walkdir", 1246 - "yerpc", 1247 - ] 1248 - 1249 - [[package]] 1250 - name = "deltachat-repl" 1251 - version = "1.117.0" 1252 - dependencies = [ 1253 - "ansi_term", 1254 - "anyhow", 1255 - "deltachat", 1256 - "dirs", 1257 - "log", 1258 - "pretty_env_logger", 1259 - "rusqlite", 1260 - "rustyline", 1261 - "tokio", 1262 - ] 1263 - 1264 - [[package]] 1265 - name = "deltachat-rpc-server" 1266 - version = "1.117.0" 1267 - dependencies = [ 1268 - "anyhow", 1269 - "deltachat", 1270 - "deltachat-jsonrpc", 1271 - "env_logger", 1272 - "futures-lite", 1273 - "log", 1274 - "serde", 1275 - "serde_json", 1276 - "tokio", 1277 - "tokio-util", 1278 - "yerpc", 1279 - ] 1280 - 1281 - [[package]] 1282 - name = "deltachat_derive" 1283 - version = "2.0.0" 1284 - dependencies = [ 1285 - "quote", 1286 - "syn 2.0.18", 1287 - ] 1288 - 1289 - [[package]] 1290 - name = "deltachat_ffi" 1291 - version = "1.117.0" 1292 - dependencies = [ 1293 - "anyhow", 1294 - "deltachat", 1295 - "deltachat-jsonrpc", 1296 - "human-panic", 1297 - "libc", 1298 - "num-traits", 1299 - "once_cell", 1300 - "rand 0.8.5", 1301 - "serde_json", 1302 - "thiserror", 1303 - "tokio", 1304 - "yerpc", 1305 - ] 1306 - 1307 - [[package]] 1308 - name = "der" 1309 - version = "0.6.1" 1310 - source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 1312 - dependencies = [ 1313 - "const-oid", 1314 - "der_derive", 1315 - "pem-rfc7468 0.6.0", 1316 - "zeroize", 1317 - ] 1318 - 1319 - [[package]] 1320 - name = "der" 1321 - version = "0.7.1" 1322 - source = "registry+https://github.com/rust-lang/crates.io-index" 1323 - checksum = "bc906908ea6458456e5eaa160a9c08543ec3d1e6f71e2235cedd660cb65f9df0" 1324 - dependencies = [ 1325 - "const-oid", 1326 - "pem-rfc7468 0.7.0", 1327 - "zeroize", 1328 - ] 1329 - 1330 - [[package]] 1331 - name = "der-parser" 1332 - version = "8.1.0" 1333 - source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1" 1335 - dependencies = [ 1336 - "asn1-rs", 1337 - "displaydoc", 1338 - "nom", 1339 - "num-bigint", 1340 - "num-traits", 1341 - "rusticata-macros", 1342 - ] 1343 - 1344 - [[package]] 1345 - name = "der_derive" 1346 - version = "0.6.1" 1347 - source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "8ef71ddb5b3a1f53dee24817c8f70dfa1cb29e804c18d88c228d4bc9c86ee3b9" 1349 - dependencies = [ 1350 - "proc-macro-error", 1351 - "proc-macro2", 1352 - "quote", 1353 - "syn 1.0.109", 1354 - ] 1355 - 1356 - [[package]] 1357 - name = "derive_builder" 1358 - version = "0.12.0" 1359 - source = "registry+https://github.com/rust-lang/crates.io-index" 1360 - checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" 1361 - dependencies = [ 1362 - "derive_builder_macro", 1363 - ] 1364 - 1365 - [[package]] 1366 - name = "derive_builder_core" 1367 - version = "0.12.0" 1368 - source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" 1370 - dependencies = [ 1371 - "darling 0.14.3", 1372 - "proc-macro2", 1373 - "quote", 1374 - "syn 1.0.109", 1375 - ] 1376 - 1377 - [[package]] 1378 - name = "derive_builder_macro" 1379 - version = "0.12.0" 1380 - source = "registry+https://github.com/rust-lang/crates.io-index" 1381 - checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" 1382 - dependencies = [ 1383 - "derive_builder_core", 1384 - "syn 1.0.109", 1385 - ] 1386 - 1387 - [[package]] 1388 - name = "derive_more" 1389 - version = "0.99.17" 1390 - source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1392 - dependencies = [ 1393 - "convert_case 0.4.0", 1394 - "proc-macro2", 1395 - "quote", 1396 - "rustc_version", 1397 - "syn 1.0.109", 1398 - ] 1399 - 1400 - [[package]] 1401 - name = "des" 1402 - version = "0.8.1" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e" 1405 - dependencies = [ 1406 - "cipher", 1407 - ] 1408 - 1409 - [[package]] 1410 - name = "diff" 1411 - version = "0.1.13" 1412 - source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1414 - 1415 - [[package]] 1416 - name = "digest" 1417 - version = "0.9.0" 1418 - source = "registry+https://github.com/rust-lang/crates.io-index" 1419 - checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 1420 - dependencies = [ 1421 - "generic-array", 1422 - ] 1423 - 1424 - [[package]] 1425 - name = "digest" 1426 - version = "0.10.6" 1427 - source = "registry+https://github.com/rust-lang/crates.io-index" 1428 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1429 - dependencies = [ 1430 - "block-buffer 0.10.3", 1431 - "const-oid", 1432 - "crypto-common", 1433 - "subtle", 1434 - ] 1435 - 1436 - [[package]] 1437 - name = "dirs" 1438 - version = "5.0.1" 1439 - source = "registry+https://github.com/rust-lang/crates.io-index" 1440 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1441 - dependencies = [ 1442 - "dirs-sys", 1443 - ] 1444 - 1445 - [[package]] 1446 - name = "dirs-next" 1447 - version = "2.0.0" 1448 - source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 1450 - dependencies = [ 1451 - "cfg-if", 1452 - "dirs-sys-next", 1453 - ] 1454 - 1455 - [[package]] 1456 - name = "dirs-sys" 1457 - version = "0.4.1" 1458 - source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1460 - dependencies = [ 1461 - "libc", 1462 - "option-ext", 1463 - "redox_users", 1464 - "windows-sys 0.48.0", 1465 - ] 1466 - 1467 - [[package]] 1468 - name = "dirs-sys-next" 1469 - version = "0.1.2" 1470 - source = "registry+https://github.com/rust-lang/crates.io-index" 1471 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 1472 - dependencies = [ 1473 - "libc", 1474 - "redox_users", 1475 - "winapi", 1476 - ] 1477 - 1478 - [[package]] 1479 - name = "displaydoc" 1480 - version = "0.2.3" 1481 - source = "registry+https://github.com/rust-lang/crates.io-index" 1482 - checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 1483 - dependencies = [ 1484 - "proc-macro2", 1485 - "quote", 1486 - "syn 1.0.109", 1487 - ] 1488 - 1489 - [[package]] 1490 - name = "dlopen2" 1491 - version = "0.4.1" 1492 - source = "registry+https://github.com/rust-lang/crates.io-index" 1493 - checksum = "b121caccfc363e4d9a4589528f3bef7c71b83c6ed01c8dc68cbeeb7fd29ec698" 1494 - dependencies = [ 1495 - "dlopen2_derive", 1496 - "libc", 1497 - "once_cell", 1498 - "winapi", 1499 - ] 1500 - 1501 - [[package]] 1502 - name = "dlopen2_derive" 1503 - version = "0.2.0" 1504 - source = "registry+https://github.com/rust-lang/crates.io-index" 1505 - checksum = "3a09ac8bb8c16a282264c379dffba707b9c998afc7506009137f3c6136888078" 1506 - dependencies = [ 1507 - "proc-macro2", 1508 - "quote", 1509 - "syn 1.0.109", 1510 - ] 1511 - 1512 - [[package]] 1513 - name = "dyn-clone" 1514 - version = "1.0.11" 1515 - source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" 1517 - 1518 - [[package]] 1519 - name = "ecdsa" 1520 - version = "0.14.8" 1521 - source = "registry+https://github.com/rust-lang/crates.io-index" 1522 - checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 1523 - dependencies = [ 1524 - "der 0.6.1", 1525 - "elliptic-curve 0.12.3", 1526 - "rfc6979 0.3.1", 1527 - "signature 1.6.4", 1528 - ] 1529 - 1530 - [[package]] 1531 - name = "ecdsa" 1532 - version = "0.16.2" 1533 - source = "registry+https://github.com/rust-lang/crates.io-index" 1534 - checksum = "644d3b8674a5fc5b929ae435bca85c2323d85ccb013a5509c2ac9ee11a6284ba" 1535 - dependencies = [ 1536 - "der 0.7.1", 1537 - "elliptic-curve 0.13.2", 1538 - "rfc6979 0.4.0", 1539 - "signature 2.0.0", 1540 - ] 1541 - 1542 - [[package]] 1543 - name = "ed25519" 1544 - version = "1.5.3" 1545 - source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" 1547 - dependencies = [ 1548 - "serde", 1549 - "signature 1.6.4", 1550 - ] 1551 - 1552 - [[package]] 1553 - name = "ed25519" 1554 - version = "2.2.0" 1555 - source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "be522bee13fa6d8059f4903a4084aa3bd50725e18150202f0238deb615cd6371" 1557 - dependencies = [ 1558 - "pkcs8 0.10.1", 1559 - "signature 2.0.0", 1560 - ] 1561 - 1562 - [[package]] 1563 - name = "ed25519-dalek" 1564 - version = "1.0.1" 1565 - source = "registry+https://github.com/rust-lang/crates.io-index" 1566 - checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" 1567 - dependencies = [ 1568 - "curve25519-dalek 3.2.0", 1569 - "ed25519 1.5.3", 1570 - "rand 0.7.3", 1571 - "serde", 1572 - "serde_bytes", 1573 - "sha2 0.9.9", 1574 - "zeroize", 1575 - ] 1576 - 1577 - [[package]] 1578 - name = "ed25519-dalek" 1579 - version = "2.0.0-rc.2" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "798f704d128510932661a3489b08e3f4c934a01d61c5def59ae7b8e48f19665a" 1582 - dependencies = [ 1583 - "curve25519-dalek 4.0.0-rc.2", 1584 - "ed25519 2.2.0", 1585 - "serde", 1586 - "sha2 0.10.6", 1587 - "zeroize", 1588 - ] 1589 - 1590 - [[package]] 1591 - name = "educe" 1592 - version = "0.4.20" 1593 - source = "registry+https://github.com/rust-lang/crates.io-index" 1594 - checksum = "cb0188e3c3ba8df5753894d54461f0e39bc91741dc5b22e1c46999ec2c71f4e4" 1595 - dependencies = [ 1596 - "enum-ordinalize", 1597 - "proc-macro2", 1598 - "quote", 1599 - "syn 1.0.109", 1600 - ] 1601 - 1602 - [[package]] 1603 - name = "either" 1604 - version = "1.8.1" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1607 - 1608 - [[package]] 1609 - name = "elliptic-curve" 1610 - version = "0.12.3" 1611 - source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 1613 - dependencies = [ 1614 - "base16ct 0.1.1", 1615 - "crypto-bigint 0.4.9", 1616 - "der 0.6.1", 1617 - "digest 0.10.6", 1618 - "ff 0.12.1", 1619 - "generic-array", 1620 - "group 0.12.1", 1621 - "rand_core 0.6.4", 1622 - "sec1 0.3.0", 1623 - "subtle", 1624 - "zeroize", 1625 - ] 1626 - 1627 - [[package]] 1628 - name = "elliptic-curve" 1629 - version = "0.13.2" 1630 - source = "registry+https://github.com/rust-lang/crates.io-index" 1631 - checksum = "6ea5a92946e8614bb585254898bb7dd1ddad241ace60c52149e3765e34cc039d" 1632 - dependencies = [ 1633 - "base16ct 0.2.0", 1634 - "crypto-bigint 0.5.1", 1635 - "digest 0.10.6", 1636 - "ff 0.13.0", 1637 - "generic-array", 1638 - "group 0.13.0", 1639 - "hkdf", 1640 - "pem-rfc7468 0.7.0", 1641 - "pkcs8 0.10.1", 1642 - "rand_core 0.6.4", 1643 - "sec1 0.7.1", 1644 - "subtle", 1645 - "zeroize", 1646 - ] 1647 - 1648 - [[package]] 1649 - name = "email" 1650 - version = "0.0.21" 1651 - source = "git+https://github.com/deltachat/rust-email?branch=master#25702df99254d059483b41417cd80696a258df8e" 1652 - dependencies = [ 1653 - "base64 0.11.0", 1654 - "chrono", 1655 - "encoded-words", 1656 - "encoding", 1657 - "lazy_static", 1658 - "rand 0.7.3", 1659 - "time 0.1.45", 1660 - "version_check", 1661 - ] 1662 - 1663 - [[package]] 1664 - name = "encoded-words" 1665 - version = "0.2.0" 1666 - source = "git+https://github.com/async-email/encoded-words?branch=master#d55366b36f96e383f39c432aedce42ee8b43f796" 1667 - dependencies = [ 1668 - "base64 0.12.3", 1669 - "charset", 1670 - "encoding_rs", 1671 - "hex", 1672 - "lazy_static", 1673 - "regex", 1674 - "thiserror", 1675 - ] 1676 - 1677 - [[package]] 1678 - name = "encoding" 1679 - version = "0.2.33" 1680 - source = "registry+https://github.com/rust-lang/crates.io-index" 1681 - checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 1682 - dependencies = [ 1683 - "encoding-index-japanese", 1684 - "encoding-index-korean", 1685 - "encoding-index-simpchinese", 1686 - "encoding-index-singlebyte", 1687 - "encoding-index-tradchinese", 1688 - ] 1689 - 1690 - [[package]] 1691 - name = "encoding-index-japanese" 1692 - version = "1.20141219.5" 1693 - source = "registry+https://github.com/rust-lang/crates.io-index" 1694 - checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 1695 - dependencies = [ 1696 - "encoding_index_tests", 1697 - ] 1698 - 1699 - [[package]] 1700 - name = "encoding-index-korean" 1701 - version = "1.20141219.5" 1702 - source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 1704 - dependencies = [ 1705 - "encoding_index_tests", 1706 - ] 1707 - 1708 - [[package]] 1709 - name = "encoding-index-simpchinese" 1710 - version = "1.20141219.5" 1711 - source = "registry+https://github.com/rust-lang/crates.io-index" 1712 - checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 1713 - dependencies = [ 1714 - "encoding_index_tests", 1715 - ] 1716 - 1717 - [[package]] 1718 - name = "encoding-index-singlebyte" 1719 - version = "1.20141219.5" 1720 - source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 1722 - dependencies = [ 1723 - "encoding_index_tests", 1724 - ] 1725 - 1726 - [[package]] 1727 - name = "encoding-index-tradchinese" 1728 - version = "1.20141219.5" 1729 - source = "registry+https://github.com/rust-lang/crates.io-index" 1730 - checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 1731 - dependencies = [ 1732 - "encoding_index_tests", 1733 - ] 1734 - 1735 - [[package]] 1736 - name = "encoding_index_tests" 1737 - version = "0.1.4" 1738 - source = "registry+https://github.com/rust-lang/crates.io-index" 1739 - checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 1740 - 1741 - [[package]] 1742 - name = "encoding_rs" 1743 - version = "0.8.32" 1744 - source = "registry+https://github.com/rust-lang/crates.io-index" 1745 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1746 - dependencies = [ 1747 - "cfg-if", 1748 - ] 1749 - 1750 - [[package]] 1751 - name = "endian-type" 1752 - version = "0.1.2" 1753 - source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 1755 - 1756 - [[package]] 1757 - name = "entities" 1758 - version = "1.0.1" 1759 - source = "registry+https://github.com/rust-lang/crates.io-index" 1760 - checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca" 1761 - 1762 - [[package]] 1763 - name = "enum-as-inner" 1764 - version = "0.5.1" 1765 - source = "registry+https://github.com/rust-lang/crates.io-index" 1766 - checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" 1767 - dependencies = [ 1768 - "heck", 1769 - "proc-macro2", 1770 - "quote", 1771 - "syn 1.0.109", 1772 - ] 1773 - 1774 - [[package]] 1775 - name = "enum-ordinalize" 1776 - version = "3.1.12" 1777 - source = "registry+https://github.com/rust-lang/crates.io-index" 1778 - checksum = "a62bb1df8b45ecb7ffa78dca1c17a438fb193eb083db0b1b494d2a61bcb5096a" 1779 - dependencies = [ 1780 - "num-bigint", 1781 - "num-traits", 1782 - "proc-macro2", 1783 - "quote", 1784 - "rustc_version", 1785 - "syn 1.0.109", 1786 - ] 1787 - 1788 - [[package]] 1789 - name = "env_logger" 1790 - version = "0.10.0" 1791 - source = "registry+https://github.com/rust-lang/crates.io-index" 1792 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1793 - dependencies = [ 1794 - "humantime", 1795 - "is-terminal", 1796 - "log", 1797 - "regex", 1798 - "termcolor", 1799 - ] 1800 - 1801 - [[package]] 1802 - name = "errno" 1803 - version = "0.3.0" 1804 - source = "registry+https://github.com/rust-lang/crates.io-index" 1805 - checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 1806 - dependencies = [ 1807 - "errno-dragonfly", 1808 - "libc", 1809 - "windows-sys 0.45.0", 1810 - ] 1811 - 1812 - [[package]] 1813 - name = "errno-dragonfly" 1814 - version = "0.1.2" 1815 - source = "registry+https://github.com/rust-lang/crates.io-index" 1816 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1817 - dependencies = [ 1818 - "cc", 1819 - "libc", 1820 - ] 1821 - 1822 - [[package]] 1823 - name = "error-code" 1824 - version = "2.3.1" 1825 - source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 1827 - dependencies = [ 1828 - "libc", 1829 - "str-buf", 1830 - ] 1831 - 1832 - [[package]] 1833 - name = "escaper" 1834 - version = "0.1.1" 1835 - source = "registry+https://github.com/rust-lang/crates.io-index" 1836 - checksum = "a53eb97b7349ba1bdb31839eceafe9aaae8f1d8d944dc589b67fb0b26e1c1666" 1837 - dependencies = [ 1838 - "entities", 1839 - ] 1840 - 1841 - [[package]] 1842 - name = "event-listener" 1843 - version = "2.5.3" 1844 - source = "registry+https://github.com/rust-lang/crates.io-index" 1845 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1846 - 1847 - [[package]] 1848 - name = "fallible-iterator" 1849 - version = "0.2.0" 1850 - source = "registry+https://github.com/rust-lang/crates.io-index" 1851 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1852 - 1853 - [[package]] 1854 - name = "fallible-streaming-iterator" 1855 - version = "0.1.9" 1856 - source = "registry+https://github.com/rust-lang/crates.io-index" 1857 - checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1858 - 1859 - [[package]] 1860 - name = "fast-socks5" 1861 - version = "0.8.2" 1862 - source = "registry+https://github.com/rust-lang/crates.io-index" 1863 - checksum = "961ce1761191c157145a8c9f0c3ceabecd3a729d65c9a8d443674eaee3420f7e" 1864 - dependencies = [ 1865 - "anyhow", 1866 - "log", 1867 - "thiserror", 1868 - "tokio", 1869 - "tokio-stream", 1870 - ] 1871 - 1872 - [[package]] 1873 - name = "fast_chemail" 1874 - version = "0.9.6" 1875 - source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4" 1877 - dependencies = [ 1878 - "ascii_utils", 1879 - ] 1880 - 1881 - [[package]] 1882 - name = "fastrand" 1883 - version = "1.9.0" 1884 - source = "registry+https://github.com/rust-lang/crates.io-index" 1885 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1886 - dependencies = [ 1887 - "instant", 1888 - ] 1889 - 1890 - [[package]] 1891 - name = "fd-lock" 1892 - version = "3.0.11" 1893 - source = "registry+https://github.com/rust-lang/crates.io-index" 1894 - checksum = "9799aefb4a2e4a01cc47610b1dd47c18ab13d991f27bbcaed9296f5a53d5cbad" 1895 - dependencies = [ 1896 - "cfg-if", 1897 - "rustix", 1898 - "windows-sys 0.45.0", 1899 - ] 1900 - 1901 - [[package]] 1902 - name = "ff" 1903 - version = "0.12.1" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 1906 - dependencies = [ 1907 - "rand_core 0.6.4", 1908 - "subtle", 1909 - ] 1910 - 1911 - [[package]] 1912 - name = "ff" 1913 - version = "0.13.0" 1914 - source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 1916 - dependencies = [ 1917 - "rand_core 0.6.4", 1918 - "subtle", 1919 - ] 1920 - 1921 - [[package]] 1922 - name = "fiat-crypto" 1923 - version = "0.1.19" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "93ace6ec7cc19c8ed33a32eaa9ea692d7faea05006b5356b9e2b668ec4bc3955" 1926 - 1927 - [[package]] 1928 - name = "filetime" 1929 - version = "0.2.20" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 1932 - dependencies = [ 1933 - "cfg-if", 1934 - "libc", 1935 - "redox_syscall 0.2.16", 1936 - "windows-sys 0.45.0", 1937 - ] 1938 - 1939 - [[package]] 1940 - name = "flate2" 1941 - version = "1.0.25" 1942 - source = "registry+https://github.com/rust-lang/crates.io-index" 1943 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1944 - dependencies = [ 1945 - "crc32fast", 1946 - "miniz_oxide", 1947 - ] 1948 - 1949 - [[package]] 1950 - name = "flume" 1951 - version = "0.10.14" 1952 - source = "registry+https://github.com/rust-lang/crates.io-index" 1953 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1954 - dependencies = [ 1955 - "futures-core", 1956 - "futures-sink", 1957 - "nanorand", 1958 - "pin-project", 1959 - "spin 0.9.8", 1960 - ] 1961 - 1962 - [[package]] 1963 - name = "fnv" 1964 - version = "1.0.7" 1965 - source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1967 - 1968 - [[package]] 1969 - name = "foreign-types" 1970 - version = "0.3.2" 1971 - source = "registry+https://github.com/rust-lang/crates.io-index" 1972 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1973 - dependencies = [ 1974 - "foreign-types-shared", 1975 - ] 1976 - 1977 - [[package]] 1978 - name = "foreign-types-shared" 1979 - version = "0.1.1" 1980 - source = "registry+https://github.com/rust-lang/crates.io-index" 1981 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1982 - 1983 - [[package]] 1984 - name = "form_urlencoded" 1985 - version = "1.1.0" 1986 - source = "registry+https://github.com/rust-lang/crates.io-index" 1987 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1988 - dependencies = [ 1989 - "percent-encoding", 1990 - ] 1991 - 1992 - [[package]] 1993 - name = "format-flowed" 1994 - version = "1.0.0" 1995 - 1996 - [[package]] 1997 - name = "futures" 1998 - version = "0.3.28" 1999 - source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 2001 - dependencies = [ 2002 - "futures-channel", 2003 - "futures-core", 2004 - "futures-executor", 2005 - "futures-io", 2006 - "futures-sink", 2007 - "futures-task", 2008 - "futures-util", 2009 - ] 2010 - 2011 - [[package]] 2012 - name = "futures-channel" 2013 - version = "0.3.28" 2014 - source = "registry+https://github.com/rust-lang/crates.io-index" 2015 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 2016 - dependencies = [ 2017 - "futures-core", 2018 - "futures-sink", 2019 - ] 2020 - 2021 - [[package]] 2022 - name = "futures-core" 2023 - version = "0.3.28" 2024 - source = "registry+https://github.com/rust-lang/crates.io-index" 2025 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2026 - 2027 - [[package]] 2028 - name = "futures-executor" 2029 - version = "0.3.28" 2030 - source = "registry+https://github.com/rust-lang/crates.io-index" 2031 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 2032 - dependencies = [ 2033 - "futures-core", 2034 - "futures-task", 2035 - "futures-util", 2036 - ] 2037 - 2038 - [[package]] 2039 - name = "futures-io" 2040 - version = "0.3.28" 2041 - source = "registry+https://github.com/rust-lang/crates.io-index" 2042 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 2043 - 2044 - [[package]] 2045 - name = "futures-lite" 2046 - version = "1.13.0" 2047 - source = "registry+https://github.com/rust-lang/crates.io-index" 2048 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 2049 - dependencies = [ 2050 - "fastrand", 2051 - "futures-core", 2052 - "futures-io", 2053 - "memchr", 2054 - "parking", 2055 - "pin-project-lite", 2056 - "waker-fn", 2057 - ] 2058 - 2059 - [[package]] 2060 - name = "futures-macro" 2061 - version = "0.3.28" 2062 - source = "registry+https://github.com/rust-lang/crates.io-index" 2063 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2064 - dependencies = [ 2065 - "proc-macro2", 2066 - "quote", 2067 - "syn 2.0.18", 2068 - ] 2069 - 2070 - [[package]] 2071 - name = "futures-sink" 2072 - version = "0.3.28" 2073 - source = "registry+https://github.com/rust-lang/crates.io-index" 2074 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2075 - 2076 - [[package]] 2077 - name = "futures-task" 2078 - version = "0.3.28" 2079 - source = "registry+https://github.com/rust-lang/crates.io-index" 2080 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2081 - 2082 - [[package]] 2083 - name = "futures-util" 2084 - version = "0.3.28" 2085 - source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2087 - dependencies = [ 2088 - "futures-channel", 2089 - "futures-core", 2090 - "futures-io", 2091 - "futures-macro", 2092 - "futures-sink", 2093 - "futures-task", 2094 - "memchr", 2095 - "pin-project-lite", 2096 - "pin-utils", 2097 - "slab", 2098 - ] 2099 - 2100 - [[package]] 2101 - name = "generic-array" 2102 - version = "0.14.6" 2103 - source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 2105 - dependencies = [ 2106 - "typenum", 2107 - "version_check", 2108 - "zeroize", 2109 - ] 2110 - 2111 - [[package]] 2112 - name = "getrandom" 2113 - version = "0.1.16" 2114 - source = "registry+https://github.com/rust-lang/crates.io-index" 2115 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 2116 - dependencies = [ 2117 - "cfg-if", 2118 - "libc", 2119 - "wasi 0.9.0+wasi-snapshot-preview1", 2120 - ] 2121 - 2122 - [[package]] 2123 - name = "getrandom" 2124 - version = "0.2.8" 2125 - source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 2127 - dependencies = [ 2128 - "cfg-if", 2129 - "js-sys", 2130 - "libc", 2131 - "wasi 0.11.0+wasi-snapshot-preview1", 2132 - "wasm-bindgen", 2133 - ] 2134 - 2135 - [[package]] 2136 - name = "gif" 2137 - version = "0.12.0" 2138 - source = "registry+https://github.com/rust-lang/crates.io-index" 2139 - checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 2140 - dependencies = [ 2141 - "color_quant", 2142 - "weezl", 2143 - ] 2144 - 2145 - [[package]] 2146 - name = "gimli" 2147 - version = "0.27.2" 2148 - source = "registry+https://github.com/rust-lang/crates.io-index" 2149 - checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 2150 - 2151 - [[package]] 2152 - name = "group" 2153 - version = "0.12.1" 2154 - source = "registry+https://github.com/rust-lang/crates.io-index" 2155 - checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 2156 - dependencies = [ 2157 - "ff 0.12.1", 2158 - "rand_core 0.6.4", 2159 - "subtle", 2160 - ] 2161 - 2162 - [[package]] 2163 - name = "group" 2164 - version = "0.13.0" 2165 - source = "registry+https://github.com/rust-lang/crates.io-index" 2166 - checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2167 - dependencies = [ 2168 - "ff 0.13.0", 2169 - "rand_core 0.6.4", 2170 - "subtle", 2171 - ] 2172 - 2173 - [[package]] 2174 - name = "h2" 2175 - version = "0.3.19" 2176 - source = "registry+https://github.com/rust-lang/crates.io-index" 2177 - checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 2178 - dependencies = [ 2179 - "bytes", 2180 - "fnv", 2181 - "futures-core", 2182 - "futures-sink", 2183 - "futures-util", 2184 - "http", 2185 - "indexmap", 2186 - "slab", 2187 - "tokio", 2188 - "tokio-util", 2189 - "tracing", 2190 - ] 2191 - 2192 - [[package]] 2193 - name = "half" 2194 - version = "1.8.2" 2195 - source = "registry+https://github.com/rust-lang/crates.io-index" 2196 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2197 - 2198 - [[package]] 2199 - name = "hashbrown" 2200 - version = "0.12.3" 2201 - source = "registry+https://github.com/rust-lang/crates.io-index" 2202 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2203 - dependencies = [ 2204 - "ahash", 2205 - ] 2206 - 2207 - [[package]] 2208 - name = "hashlink" 2209 - version = "0.8.1" 2210 - source = "registry+https://github.com/rust-lang/crates.io-index" 2211 - checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" 2212 - dependencies = [ 2213 - "hashbrown", 2214 - ] 2215 - 2216 - [[package]] 2217 - name = "heck" 2218 - version = "0.4.1" 2219 - source = "registry+https://github.com/rust-lang/crates.io-index" 2220 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2221 - 2222 - [[package]] 2223 - name = "hermit-abi" 2224 - version = "0.2.6" 2225 - source = "registry+https://github.com/rust-lang/crates.io-index" 2226 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2227 - dependencies = [ 2228 - "libc", 2229 - ] 2230 - 2231 - [[package]] 2232 - name = "hermit-abi" 2233 - version = "0.3.1" 2234 - source = "registry+https://github.com/rust-lang/crates.io-index" 2235 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 2236 - 2237 - [[package]] 2238 - name = "hex" 2239 - version = "0.4.3" 2240 - source = "registry+https://github.com/rust-lang/crates.io-index" 2241 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2242 - 2243 - [[package]] 2244 - name = "hkdf" 2245 - version = "0.12.3" 2246 - source = "registry+https://github.com/rust-lang/crates.io-index" 2247 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 2248 - dependencies = [ 2249 - "hmac", 2250 - ] 2251 - 2252 - [[package]] 2253 - name = "hmac" 2254 - version = "0.12.1" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2257 - dependencies = [ 2258 - "digest 0.10.6", 2259 - ] 2260 - 2261 - [[package]] 2262 - name = "hostname" 2263 - version = "0.3.1" 2264 - source = "registry+https://github.com/rust-lang/crates.io-index" 2265 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 2266 - dependencies = [ 2267 - "libc", 2268 - "match_cfg", 2269 - "winapi", 2270 - ] 2271 - 2272 - [[package]] 2273 - name = "http" 2274 - version = "0.2.9" 2275 - source = "registry+https://github.com/rust-lang/crates.io-index" 2276 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2277 - dependencies = [ 2278 - "bytes", 2279 - "fnv", 2280 - "itoa", 2281 - ] 2282 - 2283 - [[package]] 2284 - name = "http-body" 2285 - version = "0.4.5" 2286 - source = "registry+https://github.com/rust-lang/crates.io-index" 2287 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2288 - dependencies = [ 2289 - "bytes", 2290 - "http", 2291 - "pin-project-lite", 2292 - ] 2293 - 2294 - [[package]] 2295 - name = "httparse" 2296 - version = "1.8.0" 2297 - source = "registry+https://github.com/rust-lang/crates.io-index" 2298 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2299 - 2300 - [[package]] 2301 - name = "httpdate" 2302 - version = "1.0.2" 2303 - source = "registry+https://github.com/rust-lang/crates.io-index" 2304 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2305 - 2306 - [[package]] 2307 - name = "human-panic" 2308 - version = "1.1.4" 2309 - source = "registry+https://github.com/rust-lang/crates.io-index" 2310 - checksum = "c16465f6227e18e5a64eba488245d7b2974d4db0c4404ca5a69b550defa18d0a" 2311 - dependencies = [ 2312 - "backtrace", 2313 - "os_info", 2314 - "serde", 2315 - "serde_derive", 2316 - "toml", 2317 - "uuid", 2318 - ] 2319 - 2320 - [[package]] 2321 - name = "humansize" 2322 - version = "2.1.3" 2323 - source = "registry+https://github.com/rust-lang/crates.io-index" 2324 - checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 2325 - dependencies = [ 2326 - "libm 0.2.6", 2327 - ] 2328 - 2329 - [[package]] 2330 - name = "humantime" 2331 - version = "2.1.0" 2332 - source = "registry+https://github.com/rust-lang/crates.io-index" 2333 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2334 - 2335 - [[package]] 2336 - name = "hyper" 2337 - version = "0.14.24" 2338 - source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 2340 - dependencies = [ 2341 - "bytes", 2342 - "futures-channel", 2343 - "futures-core", 2344 - "futures-util", 2345 - "h2", 2346 - "http", 2347 - "http-body", 2348 - "httparse", 2349 - "httpdate", 2350 - "itoa", 2351 - "pin-project-lite", 2352 - "socket2", 2353 - "tokio", 2354 - "tower-service", 2355 - "tracing", 2356 - "want", 2357 - ] 2358 - 2359 - [[package]] 2360 - name = "hyper-tls" 2361 - version = "0.5.0" 2362 - source = "registry+https://github.com/rust-lang/crates.io-index" 2363 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2364 - dependencies = [ 2365 - "bytes", 2366 - "hyper", 2367 - "native-tls", 2368 - "tokio", 2369 - "tokio-native-tls", 2370 - ] 2371 - 2372 - [[package]] 2373 - name = "iana-time-zone" 2374 - version = "0.1.53" 2375 - source = "registry+https://github.com/rust-lang/crates.io-index" 2376 - checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 2377 - dependencies = [ 2378 - "android_system_properties", 2379 - "core-foundation-sys", 2380 - "iana-time-zone-haiku", 2381 - "js-sys", 2382 - "wasm-bindgen", 2383 - "winapi", 2384 - ] 2385 - 2386 - [[package]] 2387 - name = "iana-time-zone-haiku" 2388 - version = "0.1.1" 2389 - source = "registry+https://github.com/rust-lang/crates.io-index" 2390 - checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 2391 - dependencies = [ 2392 - "cxx", 2393 - "cxx-build", 2394 - ] 2395 - 2396 - [[package]] 2397 - name = "idea" 2398 - version = "0.5.1" 2399 - source = "registry+https://github.com/rust-lang/crates.io-index" 2400 - checksum = "075557004419d7f2031b8bb7f44bb43e55a83ca7b63076a8fb8fe75753836477" 2401 - dependencies = [ 2402 - "cipher", 2403 - ] 2404 - 2405 - [[package]] 2406 - name = "ident_case" 2407 - version = "1.0.1" 2408 - source = "registry+https://github.com/rust-lang/crates.io-index" 2409 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2410 - 2411 - [[package]] 2412 - name = "idna" 2413 - version = "0.2.3" 2414 - source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 2416 - dependencies = [ 2417 - "matches", 2418 - "unicode-bidi", 2419 - "unicode-normalization", 2420 - ] 2421 - 2422 - [[package]] 2423 - name = "idna" 2424 - version = "0.3.0" 2425 - source = "registry+https://github.com/rust-lang/crates.io-index" 2426 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2427 - dependencies = [ 2428 - "unicode-bidi", 2429 - "unicode-normalization", 2430 - ] 2431 - 2432 - [[package]] 2433 - name = "image" 2434 - version = "0.24.6" 2435 - source = "registry+https://github.com/rust-lang/crates.io-index" 2436 - checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 2437 - dependencies = [ 2438 - "bytemuck", 2439 - "byteorder", 2440 - "color_quant", 2441 - "gif", 2442 - "jpeg-decoder", 2443 - "num-rational", 2444 - "num-traits", 2445 - "png", 2446 - ] 2447 - 2448 - [[package]] 2449 - name = "imap-proto" 2450 - version = "0.16.2" 2451 - source = "registry+https://github.com/rust-lang/crates.io-index" 2452 - checksum = "f73b1b63179418b20aa81002d616c5f21b4ba257da9bca6989ea64dc573933e0" 2453 - dependencies = [ 2454 - "nom", 2455 - ] 2456 - 2457 - [[package]] 2458 - name = "indexmap" 2459 - version = "1.9.2" 2460 - source = "registry+https://github.com/rust-lang/crates.io-index" 2461 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 2462 - dependencies = [ 2463 - "autocfg", 2464 - "hashbrown", 2465 - ] 2466 - 2467 - [[package]] 2468 - name = "inout" 2469 - version = "0.1.3" 2470 - source = "registry+https://github.com/rust-lang/crates.io-index" 2471 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2472 - dependencies = [ 2473 - "generic-array", 2474 - ] 2475 - 2476 - [[package]] 2477 - name = "instant" 2478 - version = "0.1.12" 2479 - source = "registry+https://github.com/rust-lang/crates.io-index" 2480 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2481 - dependencies = [ 2482 - "cfg-if", 2483 - ] 2484 - 2485 - [[package]] 2486 - name = "io-lifetimes" 2487 - version = "1.0.5" 2488 - source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 2490 - dependencies = [ 2491 - "libc", 2492 - "windows-sys 0.45.0", 2493 - ] 2494 - 2495 - [[package]] 2496 - name = "ipconfig" 2497 - version = "0.3.1" 2498 - source = "registry+https://github.com/rust-lang/crates.io-index" 2499 - checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be" 2500 - dependencies = [ 2501 - "socket2", 2502 - "widestring", 2503 - "winapi", 2504 - "winreg", 2505 - ] 2506 - 2507 - [[package]] 2508 - name = "ipnet" 2509 - version = "2.7.1" 2510 - source = "registry+https://github.com/rust-lang/crates.io-index" 2511 - checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 2512 - 2513 - [[package]] 2514 - name = "iroh" 2515 - version = "0.4.1" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "e4fb9858c8cd3dd924a5da5bc511363845a9bcfdfac066bb2ef8454eb6111546" 2518 - dependencies = [ 2519 - "abao", 2520 - "anyhow", 2521 - "base64 0.21.2", 2522 - "blake3", 2523 - "bytes", 2524 - "default-net", 2525 - "der 0.6.1", 2526 - "derive_more", 2527 - "dirs-next", 2528 - "ed25519-dalek 1.0.1", 2529 - "futures", 2530 - "hex", 2531 - "num_cpus", 2532 - "portable-atomic", 2533 - "postcard", 2534 - "quic-rpc", 2535 - "quinn", 2536 - "rand 0.7.3", 2537 - "rcgen", 2538 - "ring", 2539 - "rustls", 2540 - "serde", 2541 - "serde-error", 2542 - "ssh-key", 2543 - "tempfile", 2544 - "thiserror", 2545 - "tokio", 2546 - "tokio-stream", 2547 - "tokio-util", 2548 - "tracing", 2549 - "tracing-futures", 2550 - "tracing-subscriber", 2551 - "walkdir", 2552 - "webpki", 2553 - "x509-parser", 2554 - "zeroize", 2555 - ] 2556 - 2557 - [[package]] 2558 - name = "is-terminal" 2559 - version = "0.4.6" 2560 - source = "registry+https://github.com/rust-lang/crates.io-index" 2561 - checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" 2562 - dependencies = [ 2563 - "hermit-abi 0.3.1", 2564 - "io-lifetimes", 2565 - "rustix", 2566 - "windows-sys 0.45.0", 2567 - ] 2568 - 2569 - [[package]] 2570 - name = "itertools" 2571 - version = "0.10.5" 2572 - source = "registry+https://github.com/rust-lang/crates.io-index" 2573 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2574 - dependencies = [ 2575 - "either", 2576 - ] 2577 - 2578 - [[package]] 2579 - name = "itoa" 2580 - version = "1.0.5" 2581 - source = "registry+https://github.com/rust-lang/crates.io-index" 2582 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 2583 - 2584 - [[package]] 2585 - name = "jpeg-decoder" 2586 - version = "0.3.0" 2587 - source = "registry+https://github.com/rust-lang/crates.io-index" 2588 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2589 - 2590 - [[package]] 2591 - name = "js-sys" 2592 - version = "0.3.61" 2593 - source = "registry+https://github.com/rust-lang/crates.io-index" 2594 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 2595 - dependencies = [ 2596 - "wasm-bindgen", 2597 - ] 2598 - 2599 - [[package]] 2600 - name = "kamadak-exif" 2601 - version = "0.5.5" 2602 - source = "registry+https://github.com/rust-lang/crates.io-index" 2603 - checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077" 2604 - dependencies = [ 2605 - "mutate_once", 2606 - ] 2607 - 2608 - [[package]] 2609 - name = "keccak" 2610 - version = "0.1.3" 2611 - source = "registry+https://github.com/rust-lang/crates.io-index" 2612 - checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768" 2613 - dependencies = [ 2614 - "cpufeatures", 2615 - ] 2616 - 2617 - [[package]] 2618 - name = "lazy_static" 2619 - version = "1.4.0" 2620 - source = "registry+https://github.com/rust-lang/crates.io-index" 2621 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2622 - dependencies = [ 2623 - "spin 0.5.2", 2624 - ] 2625 - 2626 - [[package]] 2627 - name = "lettre" 2628 - version = "0.9.2" 2629 - source = "git+https://github.com/deltachat/lettre?branch=master#2ffdb5347f1255b4aed51cf87cda1f8207160f36" 2630 - dependencies = [ 2631 - "fast_chemail", 2632 - "log", 2633 - ] 2634 - 2635 - [[package]] 2636 - name = "lettre_email" 2637 - version = "0.9.2" 2638 - source = "git+https://github.com/deltachat/lettre?branch=master#2ffdb5347f1255b4aed51cf87cda1f8207160f36" 2639 - dependencies = [ 2640 - "base64 0.11.0", 2641 - "email", 2642 - "lazy_static", 2643 - "lettre", 2644 - "mime", 2645 - "regex", 2646 - "time 0.1.45", 2647 - "uuid", 2648 - ] 2649 - 2650 - [[package]] 2651 - name = "libc" 2652 - version = "0.2.146" 2653 - source = "registry+https://github.com/rust-lang/crates.io-index" 2654 - checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 2655 - 2656 - [[package]] 2657 - name = "libm" 2658 - version = "0.1.4" 2659 - source = "registry+https://github.com/rust-lang/crates.io-index" 2660 - checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a" 2661 - 2662 - [[package]] 2663 - name = "libm" 2664 - version = "0.2.6" 2665 - source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 2667 - 2668 - [[package]] 2669 - name = "libsqlite3-sys" 2670 - version = "0.26.0" 2671 - source = "registry+https://github.com/rust-lang/crates.io-index" 2672 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 2673 - dependencies = [ 2674 - "cc", 2675 - "openssl-sys", 2676 - "pkg-config", 2677 - "vcpkg", 2678 - ] 2679 - 2680 - [[package]] 2681 - name = "link-cplusplus" 2682 - version = "1.0.8" 2683 - source = "registry+https://github.com/rust-lang/crates.io-index" 2684 - checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 2685 - dependencies = [ 2686 - "cc", 2687 - ] 2688 - 2689 - [[package]] 2690 - name = "linked-hash-map" 2691 - version = "0.5.6" 2692 - source = "registry+https://github.com/rust-lang/crates.io-index" 2693 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2694 - 2695 - [[package]] 2696 - name = "linux-raw-sys" 2697 - version = "0.3.1" 2698 - source = "registry+https://github.com/rust-lang/crates.io-index" 2699 - checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" 2700 - 2701 - [[package]] 2702 - name = "lock_api" 2703 - version = "0.4.9" 2704 - source = "registry+https://github.com/rust-lang/crates.io-index" 2705 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2706 - dependencies = [ 2707 - "autocfg", 2708 - "scopeguard", 2709 - ] 2710 - 2711 - [[package]] 2712 - name = "log" 2713 - version = "0.4.18" 2714 - source = "registry+https://github.com/rust-lang/crates.io-index" 2715 - checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" 2716 - 2717 - [[package]] 2718 - name = "lru-cache" 2719 - version = "0.1.2" 2720 - source = "registry+https://github.com/rust-lang/crates.io-index" 2721 - checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2722 - dependencies = [ 2723 - "linked-hash-map", 2724 - ] 2725 - 2726 - [[package]] 2727 - name = "mailparse" 2728 - version = "0.14.0" 2729 - source = "registry+https://github.com/rust-lang/crates.io-index" 2730 - checksum = "6b56570f5f8c0047260d1c8b5b331f62eb9c660b9dd4071a8c46f8c7d3f280aa" 2731 - dependencies = [ 2732 - "charset", 2733 - "data-encoding", 2734 - "quoted_printable", 2735 - ] 2736 - 2737 - [[package]] 2738 - name = "match_cfg" 2739 - version = "0.1.0" 2740 - source = "registry+https://github.com/rust-lang/crates.io-index" 2741 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 2742 - 2743 - [[package]] 2744 - name = "matchers" 2745 - version = "0.1.0" 2746 - source = "registry+https://github.com/rust-lang/crates.io-index" 2747 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2748 - dependencies = [ 2749 - "regex-automata", 2750 - ] 2751 - 2752 - [[package]] 2753 - name = "matches" 2754 - version = "0.1.10" 2755 - source = "registry+https://github.com/rust-lang/crates.io-index" 2756 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2757 - 2758 - [[package]] 2759 - name = "matchit" 2760 - version = "0.7.0" 2761 - source = "registry+https://github.com/rust-lang/crates.io-index" 2762 - checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 2763 - 2764 - [[package]] 2765 - name = "md-5" 2766 - version = "0.10.5" 2767 - source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 2769 - dependencies = [ 2770 - "digest 0.10.6", 2771 - ] 2772 - 2773 - [[package]] 2774 - name = "memalloc" 2775 - version = "0.1.0" 2776 - source = "registry+https://github.com/rust-lang/crates.io-index" 2777 - checksum = "df39d232f5c40b0891c10216992c2f250c054105cb1e56f0fc9032db6203ecc1" 2778 - 2779 - [[package]] 2780 - name = "memchr" 2781 - version = "2.5.0" 2782 - source = "registry+https://github.com/rust-lang/crates.io-index" 2783 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2784 - 2785 - [[package]] 2786 - name = "memoffset" 2787 - version = "0.8.0" 2788 - source = "registry+https://github.com/rust-lang/crates.io-index" 2789 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2790 - dependencies = [ 2791 - "autocfg", 2792 - ] 2793 - 2794 - [[package]] 2795 - name = "mime" 2796 - version = "0.3.17" 2797 - source = "registry+https://github.com/rust-lang/crates.io-index" 2798 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2799 - 2800 - [[package]] 2801 - name = "minimal-lexical" 2802 - version = "0.2.1" 2803 - source = "registry+https://github.com/rust-lang/crates.io-index" 2804 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2805 - 2806 - [[package]] 2807 - name = "miniz_oxide" 2808 - version = "0.6.2" 2809 - source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 2811 - dependencies = [ 2812 - "adler", 2813 - ] 2814 - 2815 - [[package]] 2816 - name = "mio" 2817 - version = "0.8.6" 2818 - source = "registry+https://github.com/rust-lang/crates.io-index" 2819 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 2820 - dependencies = [ 2821 - "libc", 2822 - "log", 2823 - "wasi 0.11.0+wasi-snapshot-preview1", 2824 - "windows-sys 0.45.0", 2825 - ] 2826 - 2827 - [[package]] 2828 - name = "mutate_once" 2829 - version = "0.1.1" 2830 - source = "registry+https://github.com/rust-lang/crates.io-index" 2831 - checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b" 2832 - 2833 - [[package]] 2834 - name = "nanorand" 2835 - version = "0.7.0" 2836 - source = "registry+https://github.com/rust-lang/crates.io-index" 2837 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2838 - dependencies = [ 2839 - "getrandom 0.2.8", 2840 - ] 2841 - 2842 - [[package]] 2843 - name = "native-tls" 2844 - version = "0.2.11" 2845 - source = "registry+https://github.com/rust-lang/crates.io-index" 2846 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2847 - dependencies = [ 2848 - "lazy_static", 2849 - "libc", 2850 - "log", 2851 - "openssl", 2852 - "openssl-probe", 2853 - "openssl-sys", 2854 - "schannel", 2855 - "security-framework", 2856 - "security-framework-sys", 2857 - "tempfile", 2858 - ] 2859 - 2860 - [[package]] 2861 - name = "netlink-packet-core" 2862 - version = "0.5.0" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "7e5cf0b54effda4b91615c40ff0fd12d0d4c9a6e0f5116874f03941792ff535a" 2865 - dependencies = [ 2866 - "anyhow", 2867 - "byteorder", 2868 - "libc", 2869 - "netlink-packet-utils", 2870 - ] 2871 - 2872 - [[package]] 2873 - name = "netlink-packet-route" 2874 - version = "0.15.0" 2875 - source = "registry+https://github.com/rust-lang/crates.io-index" 2876 - checksum = "ea993e32c77d87f01236c38f572ecb6c311d592e56a06262a007fd2a6e31253c" 2877 - dependencies = [ 2878 - "anyhow", 2879 - "bitflags 1.3.2", 2880 - "byteorder", 2881 - "libc", 2882 - "netlink-packet-core", 2883 - "netlink-packet-utils", 2884 - ] 2885 - 2886 - [[package]] 2887 - name = "netlink-packet-utils" 2888 - version = "0.5.2" 2889 - source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" 2891 - dependencies = [ 2892 - "anyhow", 2893 - "byteorder", 2894 - "paste", 2895 - "thiserror", 2896 - ] 2897 - 2898 - [[package]] 2899 - name = "netlink-sys" 2900 - version = "0.8.5" 2901 - source = "registry+https://github.com/rust-lang/crates.io-index" 2902 - checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" 2903 - dependencies = [ 2904 - "bytes", 2905 - "libc", 2906 - "log", 2907 - ] 2908 - 2909 - [[package]] 2910 - name = "nibble_vec" 2911 - version = "0.1.0" 2912 - source = "registry+https://github.com/rust-lang/crates.io-index" 2913 - checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 2914 - dependencies = [ 2915 - "smallvec", 2916 - ] 2917 - 2918 - [[package]] 2919 - name = "nix" 2920 - version = "0.26.2" 2921 - source = "registry+https://github.com/rust-lang/crates.io-index" 2922 - checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 2923 - dependencies = [ 2924 - "bitflags 1.3.2", 2925 - "cfg-if", 2926 - "libc", 2927 - "static_assertions", 2928 - ] 2929 - 2930 - [[package]] 2931 - name = "nom" 2932 - version = "7.1.3" 2933 - source = "registry+https://github.com/rust-lang/crates.io-index" 2934 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2935 - dependencies = [ 2936 - "memchr", 2937 - "minimal-lexical", 2938 - ] 2939 - 2940 - [[package]] 2941 - name = "ntapi" 2942 - version = "0.4.0" 2943 - source = "registry+https://github.com/rust-lang/crates.io-index" 2944 - checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc" 2945 - dependencies = [ 2946 - "winapi", 2947 - ] 2948 - 2949 - [[package]] 2950 - name = "nu-ansi-term" 2951 - version = "0.46.0" 2952 - source = "registry+https://github.com/rust-lang/crates.io-index" 2953 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2954 - dependencies = [ 2955 - "overload", 2956 - "winapi", 2957 - ] 2958 - 2959 - [[package]] 2960 - name = "num-bigint" 2961 - version = "0.4.3" 2962 - source = "registry+https://github.com/rust-lang/crates.io-index" 2963 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 2964 - dependencies = [ 2965 - "autocfg", 2966 - "num-integer", 2967 - "num-traits", 2968 - ] 2969 - 2970 - [[package]] 2971 - name = "num-bigint-dig" 2972 - version = "0.8.2" 2973 - source = "registry+https://github.com/rust-lang/crates.io-index" 2974 - checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905" 2975 - dependencies = [ 2976 - "byteorder", 2977 - "lazy_static", 2978 - "libm 0.2.6", 2979 - "num-integer", 2980 - "num-iter", 2981 - "num-traits", 2982 - "rand 0.8.5", 2983 - "serde", 2984 - "smallvec", 2985 - "zeroize", 2986 - ] 2987 - 2988 - [[package]] 2989 - name = "num-derive" 2990 - version = "0.3.3" 2991 - source = "registry+https://github.com/rust-lang/crates.io-index" 2992 - checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 2993 - dependencies = [ 2994 - "proc-macro2", 2995 - "quote", 2996 - "syn 1.0.109", 2997 - ] 2998 - 2999 - [[package]] 3000 - name = "num-integer" 3001 - version = "0.1.45" 3002 - source = "registry+https://github.com/rust-lang/crates.io-index" 3003 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3004 - dependencies = [ 3005 - "autocfg", 3006 - "num-traits", 3007 - ] 3008 - 3009 - [[package]] 3010 - name = "num-iter" 3011 - version = "0.1.43" 3012 - source = "registry+https://github.com/rust-lang/crates.io-index" 3013 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 3014 - dependencies = [ 3015 - "autocfg", 3016 - "num-integer", 3017 - "num-traits", 3018 - ] 3019 - 3020 - [[package]] 3021 - name = "num-rational" 3022 - version = "0.4.1" 3023 - source = "registry+https://github.com/rust-lang/crates.io-index" 3024 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 3025 - dependencies = [ 3026 - "autocfg", 3027 - "num-integer", 3028 - "num-traits", 3029 - ] 3030 - 3031 - [[package]] 3032 - name = "num-traits" 3033 - version = "0.2.15" 3034 - source = "registry+https://github.com/rust-lang/crates.io-index" 3035 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 3036 - dependencies = [ 3037 - "autocfg", 3038 - "libm 0.2.6", 3039 - ] 3040 - 3041 - [[package]] 3042 - name = "num_cpus" 3043 - version = "1.15.0" 3044 - source = "registry+https://github.com/rust-lang/crates.io-index" 3045 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 3046 - dependencies = [ 3047 - "hermit-abi 0.2.6", 3048 - "libc", 3049 - ] 3050 - 3051 - [[package]] 3052 - name = "object" 3053 - version = "0.30.3" 3054 - source = "registry+https://github.com/rust-lang/crates.io-index" 3055 - checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 3056 - dependencies = [ 3057 - "memchr", 3058 - ] 3059 - 3060 - [[package]] 3061 - name = "oid-registry" 3062 - version = "0.6.1" 3063 - source = "registry+https://github.com/rust-lang/crates.io-index" 3064 - checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" 3065 - dependencies = [ 3066 - "asn1-rs", 3067 - ] 3068 - 3069 - [[package]] 3070 - name = "once_cell" 3071 - version = "1.18.0" 3072 - source = "registry+https://github.com/rust-lang/crates.io-index" 3073 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 3074 - 3075 - [[package]] 3076 - name = "oorandom" 3077 - version = "11.1.3" 3078 - source = "registry+https://github.com/rust-lang/crates.io-index" 3079 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3080 - 3081 - [[package]] 3082 - name = "opaque-debug" 3083 - version = "0.3.0" 3084 - source = "registry+https://github.com/rust-lang/crates.io-index" 3085 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 3086 - 3087 - [[package]] 3088 - name = "openssl" 3089 - version = "0.10.48" 3090 - source = "registry+https://github.com/rust-lang/crates.io-index" 3091 - checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" 3092 - dependencies = [ 3093 - "bitflags 1.3.2", 3094 - "cfg-if", 3095 - "foreign-types", 3096 - "libc", 3097 - "once_cell", 3098 - "openssl-macros", 3099 - "openssl-sys", 3100 - ] 3101 - 3102 - [[package]] 3103 - name = "openssl-macros" 3104 - version = "0.1.0" 3105 - source = "registry+https://github.com/rust-lang/crates.io-index" 3106 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 3107 - dependencies = [ 3108 - "proc-macro2", 3109 - "quote", 3110 - "syn 1.0.109", 3111 - ] 3112 - 3113 - [[package]] 3114 - name = "openssl-probe" 3115 - version = "0.1.5" 3116 - source = "registry+https://github.com/rust-lang/crates.io-index" 3117 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3118 - 3119 - [[package]] 3120 - name = "openssl-src" 3121 - version = "111.25.1+1.1.1t" 3122 - source = "registry+https://github.com/rust-lang/crates.io-index" 3123 - checksum = "1ef9a9cc6ea7d9d5e7c4a913dc4b48d0e359eddf01af1dfec96ba7064b4aba10" 3124 - dependencies = [ 3125 - "cc", 3126 - ] 3127 - 3128 - [[package]] 3129 - name = "openssl-sys" 3130 - version = "0.9.83" 3131 - source = "registry+https://github.com/rust-lang/crates.io-index" 3132 - checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b" 3133 - dependencies = [ 3134 - "autocfg", 3135 - "cc", 3136 - "libc", 3137 - "openssl-src", 3138 - "pkg-config", 3139 - "vcpkg", 3140 - ] 3141 - 3142 - [[package]] 3143 - name = "option-ext" 3144 - version = "0.2.0" 3145 - source = "registry+https://github.com/rust-lang/crates.io-index" 3146 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3147 - 3148 - [[package]] 3149 - name = "os_info" 3150 - version = "3.6.0" 3151 - source = "registry+https://github.com/rust-lang/crates.io-index" 3152 - checksum = "5c424bc68d15e0778838ac013b5b3449544d8133633d8016319e7e05a820b8c0" 3153 - dependencies = [ 3154 - "log", 3155 - "serde", 3156 - "winapi", 3157 - ] 3158 - 3159 - [[package]] 3160 - name = "output_vt100" 3161 - version = "0.1.3" 3162 - source = "registry+https://github.com/rust-lang/crates.io-index" 3163 - checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 3164 - dependencies = [ 3165 - "winapi", 3166 - ] 3167 - 3168 - [[package]] 3169 - name = "overload" 3170 - version = "0.1.1" 3171 - source = "registry+https://github.com/rust-lang/crates.io-index" 3172 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3173 - 3174 - [[package]] 3175 - name = "p256" 3176 - version = "0.11.1" 3177 - source = "registry+https://github.com/rust-lang/crates.io-index" 3178 - checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 3179 - dependencies = [ 3180 - "ecdsa 0.14.8", 3181 - "elliptic-curve 0.12.3", 3182 - "sha2 0.10.6", 3183 - ] 3184 - 3185 - [[package]] 3186 - name = "p256" 3187 - version = "0.13.0" 3188 - source = "registry+https://github.com/rust-lang/crates.io-index" 3189 - checksum = "7270da3e5caa82afd3deb054cc237905853813aea3859544bc082c3fe55b8d47" 3190 - dependencies = [ 3191 - "ecdsa 0.16.2", 3192 - "elliptic-curve 0.13.2", 3193 - "primeorder", 3194 - "sha2 0.10.6", 3195 - ] 3196 - 3197 - [[package]] 3198 - name = "p384" 3199 - version = "0.11.2" 3200 - source = "registry+https://github.com/rust-lang/crates.io-index" 3201 - checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" 3202 - dependencies = [ 3203 - "ecdsa 0.14.8", 3204 - "elliptic-curve 0.12.3", 3205 - "sha2 0.10.6", 3206 - ] 3207 - 3208 - [[package]] 3209 - name = "p384" 3210 - version = "0.13.0" 3211 - source = "registry+https://github.com/rust-lang/crates.io-index" 3212 - checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 3213 - dependencies = [ 3214 - "ecdsa 0.16.2", 3215 - "elliptic-curve 0.13.2", 3216 - "primeorder", 3217 - "sha2 0.10.6", 3218 - ] 3219 - 3220 - [[package]] 3221 - name = "packed_simd_2" 3222 - version = "0.3.8" 3223 - source = "registry+https://github.com/rust-lang/crates.io-index" 3224 - checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282" 3225 - dependencies = [ 3226 - "cfg-if", 3227 - "libm 0.1.4", 3228 - ] 3229 - 3230 - [[package]] 3231 - name = "parking" 3232 - version = "2.0.0" 3233 - source = "registry+https://github.com/rust-lang/crates.io-index" 3234 - checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 3235 - 3236 - [[package]] 3237 - name = "parking_lot" 3238 - version = "0.12.1" 3239 - source = "registry+https://github.com/rust-lang/crates.io-index" 3240 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3241 - dependencies = [ 3242 - "lock_api", 3243 - "parking_lot_core", 3244 - ] 3245 - 3246 - [[package]] 3247 - name = "parking_lot_core" 3248 - version = "0.9.7" 3249 - source = "registry+https://github.com/rust-lang/crates.io-index" 3250 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 3251 - dependencies = [ 3252 - "cfg-if", 3253 - "libc", 3254 - "redox_syscall 0.2.16", 3255 - "smallvec", 3256 - "windows-sys 0.45.0", 3257 - ] 3258 - 3259 - [[package]] 3260 - name = "paste" 3261 - version = "1.0.12" 3262 - source = "registry+https://github.com/rust-lang/crates.io-index" 3263 - checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 3264 - 3265 - [[package]] 3266 - name = "pem" 3267 - version = "1.1.1" 3268 - source = "registry+https://github.com/rust-lang/crates.io-index" 3269 - checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 3270 - dependencies = [ 3271 - "base64 0.13.1", 3272 - ] 3273 - 3274 - [[package]] 3275 - name = "pem-rfc7468" 3276 - version = "0.6.0" 3277 - source = "registry+https://github.com/rust-lang/crates.io-index" 3278 - checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" 3279 - dependencies = [ 3280 - "base64ct", 3281 - ] 3282 - 3283 - [[package]] 3284 - name = "pem-rfc7468" 3285 - version = "0.7.0" 3286 - source = "registry+https://github.com/rust-lang/crates.io-index" 3287 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3288 - dependencies = [ 3289 - "base64ct", 3290 - ] 3291 - 3292 - [[package]] 3293 - name = "percent-encoding" 3294 - version = "2.3.0" 3295 - source = "registry+https://github.com/rust-lang/crates.io-index" 3296 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 3297 - 3298 - [[package]] 3299 - name = "pgp" 3300 - version = "0.10.1" 3301 - source = "registry+https://github.com/rust-lang/crates.io-index" 3302 - checksum = "37a79d6411154d1a9908e7a2c4bac60a5742f6125823c2c30780c7039aef02f0" 3303 - dependencies = [ 3304 - "aes", 3305 - "base64 0.21.2", 3306 - "bitfield", 3307 - "block-padding", 3308 - "blowfish", 3309 - "bstr", 3310 - "buffer-redux", 3311 - "byteorder", 3312 - "camellia", 3313 - "cast5", 3314 - "cfb-mode", 3315 - "chrono", 3316 - "cipher", 3317 - "crc24", 3318 - "derive_builder", 3319 - "des", 3320 - "digest 0.10.6", 3321 - "ed25519-dalek 2.0.0-rc.2", 3322 - "elliptic-curve 0.13.2", 3323 - "flate2", 3324 - "generic-array", 3325 - "hex", 3326 - "idea", 3327 - "log", 3328 - "md-5", 3329 - "nom", 3330 - "num-bigint-dig", 3331 - "num-derive", 3332 - "num-traits", 3333 - "p256 0.13.0", 3334 - "p384 0.13.0", 3335 - "rand 0.8.5", 3336 - "ripemd", 3337 - "rsa 0.9.0-pre.0", 3338 - "sha1", 3339 - "sha2 0.10.6", 3340 - "sha3", 3341 - "signature 2.0.0", 3342 - "smallvec", 3343 - "thiserror", 3344 - "twofish", 3345 - "x25519-dalek", 3346 - "zeroize", 3347 - ] 3348 - 3349 - [[package]] 3350 - name = "pin-project" 3351 - version = "1.0.12" 3352 - source = "registry+https://github.com/rust-lang/crates.io-index" 3353 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 3354 - dependencies = [ 3355 - "pin-project-internal", 3356 - ] 3357 - 3358 - [[package]] 3359 - name = "pin-project-internal" 3360 - version = "1.0.12" 3361 - source = "registry+https://github.com/rust-lang/crates.io-index" 3362 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 3363 - dependencies = [ 3364 - "proc-macro2", 3365 - "quote", 3366 - "syn 1.0.109", 3367 - ] 3368 - 3369 - [[package]] 3370 - name = "pin-project-lite" 3371 - version = "0.2.9" 3372 - source = "registry+https://github.com/rust-lang/crates.io-index" 3373 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3374 - 3375 - [[package]] 3376 - name = "pin-utils" 3377 - version = "0.1.0" 3378 - source = "registry+https://github.com/rust-lang/crates.io-index" 3379 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3380 - 3381 - [[package]] 3382 - name = "pkcs1" 3383 - version = "0.4.1" 3384 - source = "registry+https://github.com/rust-lang/crates.io-index" 3385 - checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" 3386 - dependencies = [ 3387 - "der 0.6.1", 3388 - "pkcs8 0.9.0", 3389 - "spki 0.6.0", 3390 - "zeroize", 3391 - ] 3392 - 3393 - [[package]] 3394 - name = "pkcs1" 3395 - version = "0.7.1" 3396 - source = "registry+https://github.com/rust-lang/crates.io-index" 3397 - checksum = "178ba28ece1961eafdff1991bd1744c29564cbab5d803f3ccb4a4895a6c550a7" 3398 - dependencies = [ 3399 - "der 0.7.1", 3400 - "pkcs8 0.10.1", 3401 - "spki 0.7.0", 3402 - "zeroize", 3403 - ] 3404 - 3405 - [[package]] 3406 - name = "pkcs8" 3407 - version = "0.9.0" 3408 - source = "registry+https://github.com/rust-lang/crates.io-index" 3409 - checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 3410 - dependencies = [ 3411 - "der 0.6.1", 3412 - "spki 0.6.0", 3413 - ] 3414 - 3415 - [[package]] 3416 - name = "pkcs8" 3417 - version = "0.10.1" 3418 - source = "registry+https://github.com/rust-lang/crates.io-index" 3419 - checksum = "3d2820d87d2b008616e5c27212dd9e0e694fb4c6b522de06094106813328cb49" 3420 - dependencies = [ 3421 - "der 0.7.1", 3422 - "spki 0.7.0", 3423 - ] 3424 - 3425 - [[package]] 3426 - name = "pkg-config" 3427 - version = "0.3.26" 3428 - source = "registry+https://github.com/rust-lang/crates.io-index" 3429 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 3430 - 3431 - [[package]] 3432 - name = "platforms" 3433 - version = "3.0.2" 3434 - source = "registry+https://github.com/rust-lang/crates.io-index" 3435 - checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" 3436 - 3437 - [[package]] 3438 - name = "plotters" 3439 - version = "0.3.4" 3440 - source = "registry+https://github.com/rust-lang/crates.io-index" 3441 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 3442 - dependencies = [ 3443 - "num-traits", 3444 - "plotters-backend", 3445 - "plotters-svg", 3446 - "wasm-bindgen", 3447 - "web-sys", 3448 - ] 3449 - 3450 - [[package]] 3451 - name = "plotters-backend" 3452 - version = "0.3.4" 3453 - source = "registry+https://github.com/rust-lang/crates.io-index" 3454 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 3455 - 3456 - [[package]] 3457 - name = "plotters-svg" 3458 - version = "0.3.3" 3459 - source = "registry+https://github.com/rust-lang/crates.io-index" 3460 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 3461 - dependencies = [ 3462 - "plotters-backend", 3463 - ] 3464 - 3465 - [[package]] 3466 - name = "png" 3467 - version = "0.17.7" 3468 - source = "registry+https://github.com/rust-lang/crates.io-index" 3469 - checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" 3470 - dependencies = [ 3471 - "bitflags 1.3.2", 3472 - "crc32fast", 3473 - "flate2", 3474 - "miniz_oxide", 3475 - ] 3476 - 3477 - [[package]] 3478 - name = "portable-atomic" 3479 - version = "1.0.1" 3480 - source = "registry+https://github.com/rust-lang/crates.io-index" 3481 - checksum = "39c00c8683a03bd4fe7db7dd64ab4abee6b42166bc81231da983486ce96be51a" 3482 - 3483 - [[package]] 3484 - name = "postcard" 3485 - version = "1.0.4" 3486 - source = "registry+https://github.com/rust-lang/crates.io-index" 3487 - checksum = "cfa512cd0d087cc9f99ad30a1bf64795b67871edbead083ffc3a4dfafa59aa00" 3488 - dependencies = [ 3489 - "cobs", 3490 - "const_format", 3491 - "postcard-derive", 3492 - "serde", 3493 - ] 3494 - 3495 - [[package]] 3496 - name = "postcard-derive" 3497 - version = "0.1.1" 3498 - source = "registry+https://github.com/rust-lang/crates.io-index" 3499 - checksum = "fc4b01218787dd4420daf63875163a787a78294ad48a24e9f6fa8c6507759a79" 3500 - dependencies = [ 3501 - "proc-macro2", 3502 - "quote", 3503 - "syn 1.0.109", 3504 - ] 3505 - 3506 - [[package]] 3507 - name = "ppv-lite86" 3508 - version = "0.2.17" 3509 - source = "registry+https://github.com/rust-lang/crates.io-index" 3510 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3511 - 3512 - [[package]] 3513 - name = "pretty_assertions" 3514 - version = "1.3.0" 3515 - source = "registry+https://github.com/rust-lang/crates.io-index" 3516 - checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 3517 - dependencies = [ 3518 - "ctor", 3519 - "diff", 3520 - "output_vt100", 3521 - "yansi", 3522 - ] 3523 - 3524 - [[package]] 3525 - name = "pretty_env_logger" 3526 - version = "0.5.0" 3527 - source = "registry+https://github.com/rust-lang/crates.io-index" 3528 - checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c" 3529 - dependencies = [ 3530 - "env_logger", 3531 - "log", 3532 - ] 3533 - 3534 - [[package]] 3535 - name = "primeorder" 3536 - version = "0.13.0" 3537 - source = "registry+https://github.com/rust-lang/crates.io-index" 3538 - checksum = "7613fdcc0831c10060fa69833ea8fa2caa94b6456f51e25356a885b530a2e3d0" 3539 - dependencies = [ 3540 - "elliptic-curve 0.13.2", 3541 - ] 3542 - 3543 - [[package]] 3544 - name = "proc-macro-error" 3545 - version = "1.0.4" 3546 - source = "registry+https://github.com/rust-lang/crates.io-index" 3547 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3548 - dependencies = [ 3549 - "proc-macro-error-attr", 3550 - "proc-macro2", 3551 - "quote", 3552 - "syn 1.0.109", 3553 - "version_check", 3554 - ] 3555 - 3556 - [[package]] 3557 - name = "proc-macro-error-attr" 3558 - version = "1.0.4" 3559 - source = "registry+https://github.com/rust-lang/crates.io-index" 3560 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3561 - dependencies = [ 3562 - "proc-macro2", 3563 - "quote", 3564 - "version_check", 3565 - ] 3566 - 3567 - [[package]] 3568 - name = "proc-macro2" 3569 - version = "1.0.59" 3570 - source = "registry+https://github.com/rust-lang/crates.io-index" 3571 - checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" 3572 - dependencies = [ 3573 - "unicode-ident", 3574 - ] 3575 - 3576 - [[package]] 3577 - name = "proptest" 3578 - version = "1.2.0" 3579 - source = "registry+https://github.com/rust-lang/crates.io-index" 3580 - checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65" 3581 - dependencies = [ 3582 - "bitflags 1.3.2", 3583 - "byteorder", 3584 - "lazy_static", 3585 - "num-traits", 3586 - "rand 0.8.5", 3587 - "rand_chacha 0.3.1", 3588 - "rand_xorshift", 3589 - "regex-syntax 0.6.29", 3590 - "unarray", 3591 - ] 3592 - 3593 - [[package]] 3594 - name = "qrcodegen" 3595 - version = "1.8.0" 3596 - source = "registry+https://github.com/rust-lang/crates.io-index" 3597 - checksum = "4339fc7a1021c9c1621d87f5e3505f2805c8c105420ba2f2a4df86814590c142" 3598 - 3599 - [[package]] 3600 - name = "quic-rpc" 3601 - version = "0.5.2" 3602 - source = "registry+https://github.com/rust-lang/crates.io-index" 3603 - checksum = "d453504fc3e456160ae3b9ebe4d83c1f6477af167aa9b67e2d7bf11a096f179d" 3604 - dependencies = [ 3605 - "bincode", 3606 - "flume", 3607 - "futures", 3608 - "pin-project", 3609 - "quinn", 3610 - "serde", 3611 - "tokio", 3612 - "tokio-serde", 3613 - "tokio-util", 3614 - "tracing", 3615 - ] 3616 - 3617 - [[package]] 3618 - name = "quick-error" 3619 - version = "1.2.3" 3620 - source = "registry+https://github.com/rust-lang/crates.io-index" 3621 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 3622 - 3623 - [[package]] 3624 - name = "quick-xml" 3625 - version = "0.28.2" 3626 - source = "registry+https://github.com/rust-lang/crates.io-index" 3627 - checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 3628 - dependencies = [ 3629 - "memchr", 3630 - ] 3631 - 3632 - [[package]] 3633 - name = "quinn" 3634 - version = "0.9.3" 3635 - source = "registry+https://github.com/rust-lang/crates.io-index" 3636 - checksum = "445cbfe2382fa023c4f2f3c7e1c95c03dcc1df2bf23cebcb2b13e1402c4394d1" 3637 - dependencies = [ 3638 - "bytes", 3639 - "pin-project-lite", 3640 - "quinn-proto", 3641 - "quinn-udp", 3642 - "rustc-hash", 3643 - "rustls", 3644 - "thiserror", 3645 - "tokio", 3646 - "tracing", 3647 - "webpki", 3648 - ] 3649 - 3650 - [[package]] 3651 - name = "quinn-proto" 3652 - version = "0.9.2" 3653 - source = "git+https://github.com/quinn-rs/quinn?branch=main#11b34a7b2652010cdbbd08b5dfa407832baff927" 3654 - dependencies = [ 3655 - "bytes", 3656 - "rand 0.8.5", 3657 - "ring", 3658 - "rustc-hash", 3659 - "rustls", 3660 - "rustls-native-certs", 3661 - "slab", 3662 - "thiserror", 3663 - "tinyvec", 3664 - "tracing", 3665 - "webpki", 3666 - ] 3667 - 3668 - [[package]] 3669 - name = "quinn-udp" 3670 - version = "0.3.2" 3671 - source = "git+https://github.com/quinn-rs/quinn?branch=main#11b34a7b2652010cdbbd08b5dfa407832baff927" 3672 - dependencies = [ 3673 - "libc", 3674 - "quinn-proto", 3675 - "socket2", 3676 - "tracing", 3677 - "windows-sys 0.45.0", 3678 - ] 3679 - 3680 - [[package]] 3681 - name = "quote" 3682 - version = "1.0.28" 3683 - source = "registry+https://github.com/rust-lang/crates.io-index" 3684 - checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 3685 - dependencies = [ 3686 - "proc-macro2", 3687 - ] 3688 - 3689 - [[package]] 3690 - name = "quoted_printable" 3691 - version = "0.4.7" 3692 - source = "registry+https://github.com/rust-lang/crates.io-index" 3693 - checksum = "a24039f627d8285853cc90dcddf8c1ebfaa91f834566948872b225b9a28ed1b6" 3694 - 3695 - [[package]] 3696 - name = "radix_trie" 3697 - version = "0.2.1" 3698 - source = "registry+https://github.com/rust-lang/crates.io-index" 3699 - checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 3700 - dependencies = [ 3701 - "endian-type", 3702 - "nibble_vec", 3703 - ] 3704 - 3705 - [[package]] 3706 - name = "rand" 3707 - version = "0.7.3" 3708 - source = "registry+https://github.com/rust-lang/crates.io-index" 3709 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3710 - dependencies = [ 3711 - "getrandom 0.1.16", 3712 - "libc", 3713 - "rand_chacha 0.2.2", 3714 - "rand_core 0.5.1", 3715 - "rand_hc", 3716 - ] 3717 - 3718 - [[package]] 3719 - name = "rand" 3720 - version = "0.8.5" 3721 - source = "registry+https://github.com/rust-lang/crates.io-index" 3722 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3723 - dependencies = [ 3724 - "libc", 3725 - "rand_chacha 0.3.1", 3726 - "rand_core 0.6.4", 3727 - ] 3728 - 3729 - [[package]] 3730 - name = "rand_chacha" 3731 - version = "0.2.2" 3732 - source = "registry+https://github.com/rust-lang/crates.io-index" 3733 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3734 - dependencies = [ 3735 - "ppv-lite86", 3736 - "rand_core 0.5.1", 3737 - ] 3738 - 3739 - [[package]] 3740 - name = "rand_chacha" 3741 - version = "0.3.1" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3744 - dependencies = [ 3745 - "ppv-lite86", 3746 - "rand_core 0.6.4", 3747 - ] 3748 - 3749 - [[package]] 3750 - name = "rand_core" 3751 - version = "0.5.1" 3752 - source = "registry+https://github.com/rust-lang/crates.io-index" 3753 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3754 - dependencies = [ 3755 - "getrandom 0.1.16", 3756 - ] 3757 - 3758 - [[package]] 3759 - name = "rand_core" 3760 - version = "0.6.4" 3761 - source = "registry+https://github.com/rust-lang/crates.io-index" 3762 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3763 - dependencies = [ 3764 - "getrandom 0.2.8", 3765 - ] 3766 - 3767 - [[package]] 3768 - name = "rand_hc" 3769 - version = "0.2.0" 3770 - source = "registry+https://github.com/rust-lang/crates.io-index" 3771 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3772 - dependencies = [ 3773 - "rand_core 0.5.1", 3774 - ] 3775 - 3776 - [[package]] 3777 - name = "rand_xorshift" 3778 - version = "0.3.0" 3779 - source = "registry+https://github.com/rust-lang/crates.io-index" 3780 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 3781 - dependencies = [ 3782 - "rand_core 0.6.4", 3783 - ] 3784 - 3785 - [[package]] 3786 - name = "ratelimit" 3787 - version = "1.0.0" 3788 - 3789 - [[package]] 3790 - name = "rayon" 3791 - version = "1.6.1" 3792 - source = "registry+https://github.com/rust-lang/crates.io-index" 3793 - checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 3794 - dependencies = [ 3795 - "either", 3796 - "rayon-core", 3797 - ] 3798 - 3799 - [[package]] 3800 - name = "rayon-core" 3801 - version = "1.10.2" 3802 - source = "registry+https://github.com/rust-lang/crates.io-index" 3803 - checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" 3804 - dependencies = [ 3805 - "crossbeam-channel", 3806 - "crossbeam-deque", 3807 - "crossbeam-utils", 3808 - "num_cpus", 3809 - ] 3810 - 3811 - [[package]] 3812 - name = "rcgen" 3813 - version = "0.10.0" 3814 - source = "registry+https://github.com/rust-lang/crates.io-index" 3815 - checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" 3816 - dependencies = [ 3817 - "pem", 3818 - "ring", 3819 - "time 0.3.20", 3820 - "yasna", 3821 - ] 3822 - 3823 - [[package]] 3824 - name = "redox_syscall" 3825 - version = "0.2.16" 3826 - source = "registry+https://github.com/rust-lang/crates.io-index" 3827 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3828 - dependencies = [ 3829 - "bitflags 1.3.2", 3830 - ] 3831 - 3832 - [[package]] 3833 - name = "redox_syscall" 3834 - version = "0.3.5" 3835 - source = "registry+https://github.com/rust-lang/crates.io-index" 3836 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3837 - dependencies = [ 3838 - "bitflags 1.3.2", 3839 - ] 3840 - 3841 - [[package]] 3842 - name = "redox_users" 3843 - version = "0.4.3" 3844 - source = "registry+https://github.com/rust-lang/crates.io-index" 3845 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3846 - dependencies = [ 3847 - "getrandom 0.2.8", 3848 - "redox_syscall 0.2.16", 3849 - "thiserror", 3850 - ] 3851 - 3852 - [[package]] 3853 - name = "regex" 3854 - version = "1.8.3" 3855 - source = "registry+https://github.com/rust-lang/crates.io-index" 3856 - checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" 3857 - dependencies = [ 3858 - "aho-corasick", 3859 - "memchr", 3860 - "regex-syntax 0.7.2", 3861 - ] 3862 - 3863 - [[package]] 3864 - name = "regex-automata" 3865 - version = "0.1.10" 3866 - source = "registry+https://github.com/rust-lang/crates.io-index" 3867 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3868 - dependencies = [ 3869 - "regex-syntax 0.6.29", 3870 - ] 3871 - 3872 - [[package]] 3873 - name = "regex-syntax" 3874 - version = "0.6.29" 3875 - source = "registry+https://github.com/rust-lang/crates.io-index" 3876 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3877 - 3878 - [[package]] 3879 - name = "regex-syntax" 3880 - version = "0.7.2" 3881 - source = "registry+https://github.com/rust-lang/crates.io-index" 3882 - checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 3883 - 3884 - [[package]] 3885 - name = "reqwest" 3886 - version = "0.11.18" 3887 - source = "registry+https://github.com/rust-lang/crates.io-index" 3888 - checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 3889 - dependencies = [ 3890 - "base64 0.21.2", 3891 - "bytes", 3892 - "encoding_rs", 3893 - "futures-core", 3894 - "futures-util", 3895 - "h2", 3896 - "http", 3897 - "http-body", 3898 - "hyper", 3899 - "hyper-tls", 3900 - "ipnet", 3901 - "js-sys", 3902 - "log", 3903 - "mime", 3904 - "native-tls", 3905 - "once_cell", 3906 - "percent-encoding", 3907 - "pin-project-lite", 3908 - "serde", 3909 - "serde_json", 3910 - "serde_urlencoded", 3911 - "tokio", 3912 - "tokio-native-tls", 3913 - "tower-service", 3914 - "url", 3915 - "wasm-bindgen", 3916 - "wasm-bindgen-futures", 3917 - "web-sys", 3918 - "winreg", 3919 - ] 3920 - 3921 - [[package]] 3922 - name = "resolv-conf" 3923 - version = "0.7.0" 3924 - source = "registry+https://github.com/rust-lang/crates.io-index" 3925 - checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 3926 - dependencies = [ 3927 - "hostname", 3928 - "quick-error", 3929 - ] 3930 - 3931 - [[package]] 3932 - name = "rfc6979" 3933 - version = "0.3.1" 3934 - source = "registry+https://github.com/rust-lang/crates.io-index" 3935 - checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 3936 - dependencies = [ 3937 - "crypto-bigint 0.4.9", 3938 - "hmac", 3939 - "zeroize", 3940 - ] 3941 - 3942 - [[package]] 3943 - name = "rfc6979" 3944 - version = "0.4.0" 3945 - source = "registry+https://github.com/rust-lang/crates.io-index" 3946 - checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 3947 - dependencies = [ 3948 - "hmac", 3949 - "subtle", 3950 - ] 3951 - 3952 - [[package]] 3953 - name = "ring" 3954 - version = "0.16.20" 3955 - source = "registry+https://github.com/rust-lang/crates.io-index" 3956 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3957 - dependencies = [ 3958 - "cc", 3959 - "libc", 3960 - "once_cell", 3961 - "spin 0.5.2", 3962 - "untrusted", 3963 - "web-sys", 3964 - "winapi", 3965 - ] 3966 - 3967 - [[package]] 3968 - name = "ripemd" 3969 - version = "0.1.3" 3970 - source = "registry+https://github.com/rust-lang/crates.io-index" 3971 - checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" 3972 - dependencies = [ 3973 - "digest 0.10.6", 3974 - ] 3975 - 3976 - [[package]] 3977 - name = "rsa" 3978 - version = "0.7.2" 3979 - source = "registry+https://github.com/rust-lang/crates.io-index" 3980 - checksum = "094052d5470cbcef561cb848a7209968c9f12dfa6d668f4bca048ac5de51099c" 3981 - dependencies = [ 3982 - "byteorder", 3983 - "digest 0.10.6", 3984 - "num-bigint-dig", 3985 - "num-integer", 3986 - "num-iter", 3987 - "num-traits", 3988 - "pkcs1 0.4.1", 3989 - "pkcs8 0.9.0", 3990 - "rand_core 0.6.4", 3991 - "signature 1.6.4", 3992 - "smallvec", 3993 - "subtle", 3994 - "zeroize", 3995 - ] 3996 - 3997 - [[package]] 3998 - name = "rsa" 3999 - version = "0.9.0-pre.0" 4000 - source = "registry+https://github.com/rust-lang/crates.io-index" 4001 - checksum = "a7bc1d34159d63536b4d89944e9ab5bb952f45db6fa0b8b03c2f8c09fb5b7171" 4002 - dependencies = [ 4003 - "byteorder", 4004 - "digest 0.10.6", 4005 - "num-bigint-dig", 4006 - "num-integer", 4007 - "num-iter", 4008 - "num-traits", 4009 - "pkcs1 0.7.1", 4010 - "pkcs8 0.10.1", 4011 - "rand_core 0.6.4", 4012 - "signature 2.0.0", 4013 - "subtle", 4014 - "zeroize", 4015 - ] 4016 - 4017 - [[package]] 4018 - name = "rusqlite" 4019 - version = "0.29.0" 4020 - source = "registry+https://github.com/rust-lang/crates.io-index" 4021 - checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" 4022 - dependencies = [ 4023 - "bitflags 2.0.2", 4024 - "fallible-iterator", 4025 - "fallible-streaming-iterator", 4026 - "hashlink", 4027 - "libsqlite3-sys", 4028 - "smallvec", 4029 - ] 4030 - 4031 - [[package]] 4032 - name = "rust-hsluv" 4033 - version = "0.1.4" 4034 - source = "registry+https://github.com/rust-lang/crates.io-index" 4035 - checksum = "efe2374f2385cdd8755a446f80b2a646de603c9d8539ca38734879b5c71e378b" 4036 - 4037 - [[package]] 4038 - name = "rustc-demangle" 4039 - version = "0.1.21" 4040 - source = "registry+https://github.com/rust-lang/crates.io-index" 4041 - checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 4042 - 4043 - [[package]] 4044 - name = "rustc-hash" 4045 - version = "1.1.0" 4046 - source = "registry+https://github.com/rust-lang/crates.io-index" 4047 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 4048 - 4049 - [[package]] 4050 - name = "rustc_version" 4051 - version = "0.4.0" 4052 - source = "registry+https://github.com/rust-lang/crates.io-index" 4053 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 4054 - dependencies = [ 4055 - "semver", 4056 - ] 4057 - 4058 - [[package]] 4059 - name = "rusticata-macros" 4060 - version = "4.1.0" 4061 - source = "registry+https://github.com/rust-lang/crates.io-index" 4062 - checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 4063 - dependencies = [ 4064 - "nom", 4065 - ] 4066 - 4067 - [[package]] 4068 - name = "rustix" 4069 - version = "0.37.6" 4070 - source = "registry+https://github.com/rust-lang/crates.io-index" 4071 - checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" 4072 - dependencies = [ 4073 - "bitflags 1.3.2", 4074 - "errno", 4075 - "io-lifetimes", 4076 - "libc", 4077 - "linux-raw-sys", 4078 - "windows-sys 0.45.0", 4079 - ] 4080 - 4081 - [[package]] 4082 - name = "rustls" 4083 - version = "0.20.8" 4084 - source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 4086 - dependencies = [ 4087 - "ring", 4088 - "sct", 4089 - "webpki", 4090 - ] 4091 - 4092 - [[package]] 4093 - name = "rustls-native-certs" 4094 - version = "0.6.2" 4095 - source = "registry+https://github.com/rust-lang/crates.io-index" 4096 - checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 4097 - dependencies = [ 4098 - "openssl-probe", 4099 - "rustls-pemfile", 4100 - "schannel", 4101 - "security-framework", 4102 - ] 4103 - 4104 - [[package]] 4105 - name = "rustls-pemfile" 4106 - version = "1.0.2" 4107 - source = "registry+https://github.com/rust-lang/crates.io-index" 4108 - checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 4109 - dependencies = [ 4110 - "base64 0.21.2", 4111 - ] 4112 - 4113 - [[package]] 4114 - name = "rustversion" 4115 - version = "1.0.11" 4116 - source = "registry+https://github.com/rust-lang/crates.io-index" 4117 - checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" 4118 - 4119 - [[package]] 4120 - name = "rustyline" 4121 - version = "11.0.0" 4122 - source = "registry+https://github.com/rust-lang/crates.io-index" 4123 - checksum = "5dfc8644681285d1fb67a467fb3021bfea306b99b4146b166a1fe3ada965eece" 4124 - dependencies = [ 4125 - "bitflags 1.3.2", 4126 - "cfg-if", 4127 - "clipboard-win", 4128 - "dirs-next", 4129 - "fd-lock", 4130 - "libc", 4131 - "log", 4132 - "memchr", 4133 - "nix", 4134 - "radix_trie", 4135 - "scopeguard", 4136 - "unicode-segmentation", 4137 - "unicode-width", 4138 - "utf8parse", 4139 - "winapi", 4140 - ] 4141 - 4142 - [[package]] 4143 - name = "ryu" 4144 - version = "1.0.12" 4145 - source = "registry+https://github.com/rust-lang/crates.io-index" 4146 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 4147 - 4148 - [[package]] 4149 - name = "safemem" 4150 - version = "0.3.3" 4151 - source = "registry+https://github.com/rust-lang/crates.io-index" 4152 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 4153 - 4154 - [[package]] 4155 - name = "same-file" 4156 - version = "1.0.6" 4157 - source = "registry+https://github.com/rust-lang/crates.io-index" 4158 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4159 - dependencies = [ 4160 - "winapi-util", 4161 - ] 4162 - 4163 - [[package]] 4164 - name = "sanitize-filename" 4165 - version = "0.4.0" 4166 - source = "registry+https://github.com/rust-lang/crates.io-index" 4167 - checksum = "08c502bdb638f1396509467cb0580ef3b29aa2a45c5d43e5d84928241280296c" 4168 - dependencies = [ 4169 - "lazy_static", 4170 - "regex", 4171 - ] 4172 - 4173 - [[package]] 4174 - name = "schannel" 4175 - version = "0.1.21" 4176 - source = "registry+https://github.com/rust-lang/crates.io-index" 4177 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 4178 - dependencies = [ 4179 - "windows-sys 0.42.0", 4180 - ] 4181 - 4182 - [[package]] 4183 - name = "schemars" 4184 - version = "0.8.12" 4185 - source = "registry+https://github.com/rust-lang/crates.io-index" 4186 - checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f" 4187 - dependencies = [ 4188 - "dyn-clone", 4189 - "schemars_derive", 4190 - "serde", 4191 - "serde_json", 4192 - ] 4193 - 4194 - [[package]] 4195 - name = "schemars_derive" 4196 - version = "0.8.12" 4197 - source = "registry+https://github.com/rust-lang/crates.io-index" 4198 - checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c" 4199 - dependencies = [ 4200 - "proc-macro2", 4201 - "quote", 4202 - "serde_derive_internals", 4203 - "syn 1.0.109", 4204 - ] 4205 - 4206 - [[package]] 4207 - name = "scopeguard" 4208 - version = "1.1.0" 4209 - source = "registry+https://github.com/rust-lang/crates.io-index" 4210 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 4211 - 4212 - [[package]] 4213 - name = "scratch" 4214 - version = "1.0.3" 4215 - source = "registry+https://github.com/rust-lang/crates.io-index" 4216 - checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" 4217 - 4218 - [[package]] 4219 - name = "sct" 4220 - version = "0.7.0" 4221 - source = "registry+https://github.com/rust-lang/crates.io-index" 4222 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 4223 - dependencies = [ 4224 - "ring", 4225 - "untrusted", 4226 - ] 4227 - 4228 - [[package]] 4229 - name = "sec1" 4230 - version = "0.3.0" 4231 - source = "registry+https://github.com/rust-lang/crates.io-index" 4232 - checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 4233 - dependencies = [ 4234 - "base16ct 0.1.1", 4235 - "der 0.6.1", 4236 - "generic-array", 4237 - "pkcs8 0.9.0", 4238 - "subtle", 4239 - "zeroize", 4240 - ] 4241 - 4242 - [[package]] 4243 - name = "sec1" 4244 - version = "0.7.1" 4245 - source = "registry+https://github.com/rust-lang/crates.io-index" 4246 - checksum = "48518a2b5775ba8ca5b46596aae011caa431e6ce7e4a67ead66d92f08884220e" 4247 - dependencies = [ 4248 - "base16ct 0.2.0", 4249 - "der 0.7.1", 4250 - "generic-array", 4251 - "pkcs8 0.10.1", 4252 - "subtle", 4253 - "zeroize", 4254 - ] 4255 - 4256 - [[package]] 4257 - name = "security-framework" 4258 - version = "2.8.2" 4259 - source = "registry+https://github.com/rust-lang/crates.io-index" 4260 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 4261 - dependencies = [ 4262 - "bitflags 1.3.2", 4263 - "core-foundation", 4264 - "core-foundation-sys", 4265 - "libc", 4266 - "security-framework-sys", 4267 - ] 4268 - 4269 - [[package]] 4270 - name = "security-framework-sys" 4271 - version = "2.8.0" 4272 - source = "registry+https://github.com/rust-lang/crates.io-index" 4273 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 4274 - dependencies = [ 4275 - "core-foundation-sys", 4276 - "libc", 4277 - ] 4278 - 4279 - [[package]] 4280 - name = "self_cell" 4281 - version = "1.0.1" 4282 - source = "registry+https://github.com/rust-lang/crates.io-index" 4283 - checksum = "4c309e515543e67811222dbc9e3dd7e1056279b782e1dacffe4242b718734fb6" 4284 - 4285 - [[package]] 4286 - name = "semver" 4287 - version = "1.0.16" 4288 - source = "registry+https://github.com/rust-lang/crates.io-index" 4289 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 4290 - dependencies = [ 4291 - "serde", 4292 - ] 4293 - 4294 - [[package]] 4295 - name = "serde" 4296 - version = "1.0.163" 4297 - source = "registry+https://github.com/rust-lang/crates.io-index" 4298 - checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 4299 - dependencies = [ 4300 - "serde_derive", 4301 - ] 4302 - 4303 - [[package]] 4304 - name = "serde-error" 4305 - version = "0.1.2" 4306 - source = "registry+https://github.com/rust-lang/crates.io-index" 4307 - checksum = "e988182713aeed6a619a88bca186f6d6407483485ffe44c869ee264f8eabd13f" 4308 - dependencies = [ 4309 - "serde", 4310 - ] 4311 - 4312 - [[package]] 4313 - name = "serde_bytes" 4314 - version = "0.11.9" 4315 - source = "registry+https://github.com/rust-lang/crates.io-index" 4316 - checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" 4317 - dependencies = [ 4318 - "serde", 4319 - ] 4320 - 4321 - [[package]] 4322 - name = "serde_derive" 4323 - version = "1.0.163" 4324 - source = "registry+https://github.com/rust-lang/crates.io-index" 4325 - checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 4326 - dependencies = [ 4327 - "proc-macro2", 4328 - "quote", 4329 - "syn 2.0.18", 4330 - ] 4331 - 4332 - [[package]] 4333 - name = "serde_derive_internals" 4334 - version = "0.26.0" 4335 - source = "registry+https://github.com/rust-lang/crates.io-index" 4336 - checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" 4337 - dependencies = [ 4338 - "proc-macro2", 4339 - "quote", 4340 - "syn 1.0.109", 4341 - ] 4342 - 4343 - [[package]] 4344 - name = "serde_json" 4345 - version = "1.0.96" 4346 - source = "registry+https://github.com/rust-lang/crates.io-index" 4347 - checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 4348 - dependencies = [ 4349 - "itoa", 4350 - "ryu", 4351 - "serde", 4352 - ] 4353 - 4354 - [[package]] 4355 - name = "serde_path_to_error" 4356 - version = "0.1.9" 4357 - source = "registry+https://github.com/rust-lang/crates.io-index" 4358 - checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" 4359 - dependencies = [ 4360 - "serde", 4361 - ] 4362 - 4363 - [[package]] 4364 - name = "serde_spanned" 4365 - version = "0.6.2" 4366 - source = "registry+https://github.com/rust-lang/crates.io-index" 4367 - checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" 4368 - dependencies = [ 4369 - "serde", 4370 - ] 4371 - 4372 - [[package]] 4373 - name = "serde_urlencoded" 4374 - version = "0.7.1" 4375 - source = "registry+https://github.com/rust-lang/crates.io-index" 4376 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4377 - dependencies = [ 4378 - "form_urlencoded", 4379 - "itoa", 4380 - "ryu", 4381 - "serde", 4382 - ] 4383 - 4384 - [[package]] 4385 - name = "sha-1" 4386 - version = "0.10.1" 4387 - source = "registry+https://github.com/rust-lang/crates.io-index" 4388 - checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 4389 - dependencies = [ 4390 - "cfg-if", 4391 - "cpufeatures", 4392 - "digest 0.10.6", 4393 - ] 4394 - 4395 - [[package]] 4396 - name = "sha1" 4397 - version = "0.10.5" 4398 - source = "registry+https://github.com/rust-lang/crates.io-index" 4399 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 4400 - dependencies = [ 4401 - "cfg-if", 4402 - "cpufeatures", 4403 - "digest 0.10.6", 4404 - ] 4405 - 4406 - [[package]] 4407 - name = "sha2" 4408 - version = "0.9.9" 4409 - source = "registry+https://github.com/rust-lang/crates.io-index" 4410 - checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 4411 - dependencies = [ 4412 - "block-buffer 0.9.0", 4413 - "cfg-if", 4414 - "cpufeatures", 4415 - "digest 0.9.0", 4416 - "opaque-debug", 4417 - ] 4418 - 4419 - [[package]] 4420 - name = "sha2" 4421 - version = "0.10.6" 4422 - source = "registry+https://github.com/rust-lang/crates.io-index" 4423 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 4424 - dependencies = [ 4425 - "cfg-if", 4426 - "cpufeatures", 4427 - "digest 0.10.6", 4428 - ] 4429 - 4430 - [[package]] 4431 - name = "sha3" 4432 - version = "0.10.6" 4433 - source = "registry+https://github.com/rust-lang/crates.io-index" 4434 - checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9" 4435 - dependencies = [ 4436 - "digest 0.10.6", 4437 - "keccak", 4438 - ] 4439 - 4440 - [[package]] 4441 - name = "sharded-slab" 4442 - version = "0.1.4" 4443 - source = "registry+https://github.com/rust-lang/crates.io-index" 4444 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 4445 - dependencies = [ 4446 - "lazy_static", 4447 - ] 4448 - 4449 - [[package]] 4450 - name = "signal-hook-registry" 4451 - version = "1.4.1" 4452 - source = "registry+https://github.com/rust-lang/crates.io-index" 4453 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4454 - dependencies = [ 4455 - "libc", 4456 - ] 4457 - 4458 - [[package]] 4459 - name = "signature" 4460 - version = "1.6.4" 4461 - source = "registry+https://github.com/rust-lang/crates.io-index" 4462 - checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 4463 - dependencies = [ 4464 - "digest 0.10.6", 4465 - "rand_core 0.6.4", 4466 - ] 4467 - 4468 - [[package]] 4469 - name = "signature" 4470 - version = "2.0.0" 4471 - source = "registry+https://github.com/rust-lang/crates.io-index" 4472 - checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d" 4473 - dependencies = [ 4474 - "digest 0.10.6", 4475 - "rand_core 0.6.4", 4476 - ] 4477 - 4478 - [[package]] 4479 - name = "slab" 4480 - version = "0.4.8" 4481 - source = "registry+https://github.com/rust-lang/crates.io-index" 4482 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 4483 - dependencies = [ 4484 - "autocfg", 4485 - ] 4486 - 4487 - [[package]] 4488 - name = "smallvec" 4489 - version = "1.10.0" 4490 - source = "registry+https://github.com/rust-lang/crates.io-index" 4491 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 4492 - 4493 - [[package]] 4494 - name = "smawk" 4495 - version = "0.3.1" 4496 - source = "registry+https://github.com/rust-lang/crates.io-index" 4497 - checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" 4498 - 4499 - [[package]] 4500 - name = "socket2" 4501 - version = "0.4.9" 4502 - source = "registry+https://github.com/rust-lang/crates.io-index" 4503 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 4504 - dependencies = [ 4505 - "libc", 4506 - "winapi", 4507 - ] 4508 - 4509 - [[package]] 4510 - name = "spin" 4511 - version = "0.5.2" 4512 - source = "registry+https://github.com/rust-lang/crates.io-index" 4513 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4514 - 4515 - [[package]] 4516 - name = "spin" 4517 - version = "0.9.8" 4518 - source = "registry+https://github.com/rust-lang/crates.io-index" 4519 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4520 - dependencies = [ 4521 - "lock_api", 4522 - ] 4523 - 4524 - [[package]] 4525 - name = "spki" 4526 - version = "0.6.0" 4527 - source = "registry+https://github.com/rust-lang/crates.io-index" 4528 - checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 4529 - dependencies = [ 4530 - "base64ct", 4531 - "der 0.6.1", 4532 - ] 4533 - 4534 - [[package]] 4535 - name = "spki" 4536 - version = "0.7.0" 4537 - source = "registry+https://github.com/rust-lang/crates.io-index" 4538 - checksum = "c0445c905640145c7ea8c1993555957f65e7c46d0535b91ba501bc9bfc85522f" 4539 - dependencies = [ 4540 - "base64ct", 4541 - "der 0.7.1", 4542 - ] 4543 - 4544 - [[package]] 4545 - name = "ssh-encoding" 4546 - version = "0.1.0" 4547 - source = "registry+https://github.com/rust-lang/crates.io-index" 4548 - checksum = "19cfdc32e0199062113edf41f344fbf784b8205a94600233c84eb838f45191e1" 4549 - dependencies = [ 4550 - "base64ct", 4551 - "pem-rfc7468 0.6.0", 4552 - "sha2 0.10.6", 4553 - ] 4554 - 4555 - [[package]] 4556 - name = "ssh-key" 4557 - version = "0.5.1" 4558 - source = "registry+https://github.com/rust-lang/crates.io-index" 4559 - checksum = "288d8f5562af5a3be4bda308dd374b2c807b940ac370b5efa1c99311da91d9a1" 4560 - dependencies = [ 4561 - "ed25519-dalek 1.0.1", 4562 - "p256 0.11.1", 4563 - "p384 0.11.2", 4564 - "rand_core 0.6.4", 4565 - "rsa 0.7.2", 4566 - "sec1 0.3.0", 4567 - "sha2 0.10.6", 4568 - "signature 1.6.4", 4569 - "ssh-encoding", 4570 - "zeroize", 4571 - ] 4572 - 4573 - [[package]] 4574 - name = "stable_deref_trait" 4575 - version = "1.2.0" 4576 - source = "registry+https://github.com/rust-lang/crates.io-index" 4577 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 4578 - 4579 - [[package]] 4580 - name = "static_assertions" 4581 - version = "1.1.0" 4582 - source = "registry+https://github.com/rust-lang/crates.io-index" 4583 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4584 - 4585 - [[package]] 4586 - name = "stop-token" 4587 - version = "0.7.0" 4588 - source = "registry+https://github.com/rust-lang/crates.io-index" 4589 - checksum = "af91f480ee899ab2d9f8435bfdfc14d08a5754bd9d3fef1f1a1c23336aad6c8b" 4590 - dependencies = [ 4591 - "async-channel", 4592 - "cfg-if", 4593 - "futures-core", 4594 - "pin-project-lite", 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" 4607 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4608 - 4609 - [[package]] 4610 - name = "strum" 4611 - version = "0.24.1" 4612 - source = "registry+https://github.com/rust-lang/crates.io-index" 4613 - checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 4614 - 4615 - [[package]] 4616 - name = "strum_macros" 4617 - version = "0.24.3" 4618 - source = "registry+https://github.com/rust-lang/crates.io-index" 4619 - checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 4620 - dependencies = [ 4621 - "heck", 4622 - "proc-macro2", 4623 - "quote", 4624 - "rustversion", 4625 - "syn 1.0.109", 4626 - ] 4627 - 4628 - [[package]] 4629 - name = "subtle" 4630 - version = "2.4.1" 4631 - source = "registry+https://github.com/rust-lang/crates.io-index" 4632 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 4633 - 4634 - [[package]] 4635 - name = "syn" 4636 - version = "1.0.109" 4637 - source = "registry+https://github.com/rust-lang/crates.io-index" 4638 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4639 - dependencies = [ 4640 - "proc-macro2", 4641 - "quote", 4642 - "unicode-ident", 4643 - ] 4644 - 4645 - [[package]] 4646 - name = "syn" 4647 - version = "2.0.18" 4648 - source = "registry+https://github.com/rust-lang/crates.io-index" 4649 - checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 4650 - dependencies = [ 4651 - "proc-macro2", 4652 - "quote", 4653 - "unicode-ident", 4654 - ] 4655 - 4656 - [[package]] 4657 - name = "sync_wrapper" 4658 - version = "0.1.2" 4659 - source = "registry+https://github.com/rust-lang/crates.io-index" 4660 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4661 - 4662 - [[package]] 4663 - name = "synstructure" 4664 - version = "0.12.6" 4665 - source = "registry+https://github.com/rust-lang/crates.io-index" 4666 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 4667 - dependencies = [ 4668 - "proc-macro2", 4669 - "quote", 4670 - "syn 1.0.109", 4671 - "unicode-xid", 4672 - ] 4673 - 4674 - [[package]] 4675 - name = "sysinfo" 4676 - version = "0.26.9" 4677 - source = "registry+https://github.com/rust-lang/crates.io-index" 4678 - checksum = "5c18a6156d1f27a9592ee18c1a846ca8dd5c258b7179fc193ae87c74ebb666f5" 4679 - dependencies = [ 4680 - "cfg-if", 4681 - "core-foundation-sys", 4682 - "libc", 4683 - "ntapi", 4684 - "once_cell", 4685 - "winapi", 4686 - ] 4687 - 4688 - [[package]] 4689 - name = "system-configuration" 4690 - version = "0.5.0" 4691 - source = "registry+https://github.com/rust-lang/crates.io-index" 4692 - checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd" 4693 - dependencies = [ 4694 - "bitflags 1.3.2", 4695 - "core-foundation", 4696 - "system-configuration-sys", 4697 - ] 4698 - 4699 - [[package]] 4700 - name = "system-configuration-sys" 4701 - version = "0.5.0" 4702 - source = "registry+https://github.com/rust-lang/crates.io-index" 4703 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 4704 - dependencies = [ 4705 - "core-foundation-sys", 4706 - "libc", 4707 - ] 4708 - 4709 - [[package]] 4710 - name = "tagger" 4711 - version = "4.3.4" 4712 - source = "registry+https://github.com/rust-lang/crates.io-index" 4713 - checksum = "6aaa6f5d645d1dae4cd0286e9f8bf15b75a31656348e5e106eb1a940abd34b63" 4714 - 4715 - [[package]] 4716 - name = "tempfile" 4717 - version = "3.5.0" 4718 - source = "registry+https://github.com/rust-lang/crates.io-index" 4719 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 4720 - dependencies = [ 4721 - "cfg-if", 4722 - "fastrand", 4723 - "redox_syscall 0.3.5", 4724 - "rustix", 4725 - "windows-sys 0.45.0", 4726 - ] 4727 - 4728 - [[package]] 4729 - name = "termcolor" 4730 - version = "1.2.0" 4731 - source = "registry+https://github.com/rust-lang/crates.io-index" 4732 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 4733 - dependencies = [ 4734 - "winapi-util", 4735 - ] 4736 - 4737 - [[package]] 4738 - name = "testdir" 4739 - version = "0.7.3" 4740 - source = "registry+https://github.com/rust-lang/crates.io-index" 4741 - checksum = "a45fc921e7c4ad1aedb3484811514f3e5cd187886e0bbf1302c175f7578ef552" 4742 - dependencies = [ 4743 - "anyhow", 4744 - "backtrace", 4745 - "cargo_metadata", 4746 - "once_cell", 4747 - "sysinfo", 4748 - "whoami", 4749 - ] 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", 4759 - "unicode-width", 4760 - ] 4761 - 4762 - [[package]] 4763 - name = "thiserror" 4764 - version = "1.0.40" 4765 - source = "registry+https://github.com/rust-lang/crates.io-index" 4766 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 4767 - dependencies = [ 4768 - "thiserror-impl", 4769 - ] 4770 - 4771 - [[package]] 4772 - name = "thiserror-impl" 4773 - version = "1.0.40" 4774 - source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 4776 - dependencies = [ 4777 - "proc-macro2", 4778 - "quote", 4779 - "syn 2.0.18", 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", 4790 - ] 4791 - 4792 - [[package]] 4793 - name = "time" 4794 - version = "0.1.45" 4795 - source = "registry+https://github.com/rust-lang/crates.io-index" 4796 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 4797 - dependencies = [ 4798 - "libc", 4799 - "wasi 0.10.0+wasi-snapshot-preview1", 4800 - "winapi", 4801 - ] 4802 - 4803 - [[package]] 4804 - name = "time" 4805 - version = "0.3.20" 4806 - source = "registry+https://github.com/rust-lang/crates.io-index" 4807 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 4808 - dependencies = [ 4809 - "itoa", 4810 - "serde", 4811 - "time-core", 4812 - "time-macros", 4813 - ] 4814 - 4815 - [[package]] 4816 - name = "time-core" 4817 - version = "0.1.0" 4818 - source = "registry+https://github.com/rust-lang/crates.io-index" 4819 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 4820 - 4821 - [[package]] 4822 - name = "time-macros" 4823 - version = "0.2.8" 4824 - source = "registry+https://github.com/rust-lang/crates.io-index" 4825 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 4826 - dependencies = [ 4827 - "time-core", 4828 - ] 4829 - 4830 - [[package]] 4831 - name = "tinytemplate" 4832 - version = "1.2.1" 4833 - source = "registry+https://github.com/rust-lang/crates.io-index" 4834 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 4835 - dependencies = [ 4836 - "serde", 4837 - "serde_json", 4838 - ] 4839 - 4840 - [[package]] 4841 - name = "tinyvec" 4842 - version = "1.6.0" 4843 - source = "registry+https://github.com/rust-lang/crates.io-index" 4844 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4845 - dependencies = [ 4846 - "tinyvec_macros", 4847 - ] 4848 - 4849 - [[package]] 4850 - name = "tinyvec_macros" 4851 - version = "0.1.1" 4852 - source = "registry+https://github.com/rust-lang/crates.io-index" 4853 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4854 - 4855 - [[package]] 4856 - name = "tokio" 4857 - version = "1.28.2" 4858 - source = "registry+https://github.com/rust-lang/crates.io-index" 4859 - checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" 4860 - dependencies = [ 4861 - "autocfg", 4862 - "bytes", 4863 - "libc", 4864 - "mio", 4865 - "num_cpus", 4866 - "parking_lot", 4867 - "pin-project-lite", 4868 - "signal-hook-registry", 4869 - "socket2", 4870 - "tokio-macros", 4871 - "windows-sys 0.48.0", 4872 - ] 4873 - 4874 - [[package]] 4875 - name = "tokio-io-timeout" 4876 - version = "1.2.0" 4877 - source = "registry+https://github.com/rust-lang/crates.io-index" 4878 - checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 4879 - dependencies = [ 4880 - "pin-project-lite", 4881 - "tokio", 4882 - ] 4883 - 4884 - [[package]] 4885 - name = "tokio-macros" 4886 - version = "2.1.0" 4887 - source = "registry+https://github.com/rust-lang/crates.io-index" 4888 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4889 - dependencies = [ 4890 - "proc-macro2", 4891 - "quote", 4892 - "syn 2.0.18", 4893 - ] 4894 - 4895 - [[package]] 4896 - name = "tokio-native-tls" 4897 - version = "0.3.1" 4898 - source = "registry+https://github.com/rust-lang/crates.io-index" 4899 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 4900 - dependencies = [ 4901 - "native-tls", 4902 - "tokio", 4903 - ] 4904 - 4905 - [[package]] 4906 - name = "tokio-serde" 4907 - version = "0.8.0" 4908 - source = "registry+https://github.com/rust-lang/crates.io-index" 4909 - checksum = "911a61637386b789af998ee23f50aa30d5fd7edcec8d6d3dedae5e5815205466" 4910 - dependencies = [ 4911 - "bincode", 4912 - "bytes", 4913 - "educe", 4914 - "futures-core", 4915 - "futures-sink", 4916 - "pin-project", 4917 - "serde", 4918 - ] 4919 - 4920 - [[package]] 4921 - name = "tokio-stream" 4922 - version = "0.1.14" 4923 - source = "registry+https://github.com/rust-lang/crates.io-index" 4924 - checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 4925 - dependencies = [ 4926 - "futures-core", 4927 - "pin-project-lite", 4928 - "tokio", 4929 - ] 4930 - 4931 - [[package]] 4932 - name = "tokio-tar" 4933 - version = "0.3.0" 4934 - source = "registry+https://github.com/rust-lang/crates.io-index" 4935 - checksum = "a50188549787c32c1c3d9c8c71ad7e003ccf2f102489c5a96e385c84760477f4" 4936 - dependencies = [ 4937 - "filetime", 4938 - "futures-core", 4939 - "libc", 4940 - "redox_syscall 0.2.16", 4941 - "tokio", 4942 - "tokio-stream", 4943 - "xattr", 4944 - ] 4945 - 4946 - [[package]] 4947 - name = "tokio-tungstenite" 4948 - version = "0.18.0" 4949 - source = "registry+https://github.com/rust-lang/crates.io-index" 4950 - checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" 4951 - dependencies = [ 4952 - "futures-util", 4953 - "log", 4954 - "tokio", 4955 - "tungstenite", 4956 - ] 4957 - 4958 - [[package]] 4959 - name = "tokio-util" 4960 - version = "0.7.8" 4961 - source = "registry+https://github.com/rust-lang/crates.io-index" 4962 - checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 4963 - dependencies = [ 4964 - "bytes", 4965 - "futures-core", 4966 - "futures-sink", 4967 - "pin-project-lite", 4968 - "tokio", 4969 - "tracing", 4970 - ] 4971 - 4972 - [[package]] 4973 - name = "toml" 4974 - version = "0.7.4" 4975 - source = "registry+https://github.com/rust-lang/crates.io-index" 4976 - checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" 4977 - dependencies = [ 4978 - "serde", 4979 - "serde_spanned", 4980 - "toml_datetime", 4981 - "toml_edit", 4982 - ] 4983 - 4984 - [[package]] 4985 - name = "toml_datetime" 4986 - version = "0.6.2" 4987 - source = "registry+https://github.com/rust-lang/crates.io-index" 4988 - checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 4989 - dependencies = [ 4990 - "serde", 4991 - ] 4992 - 4993 - [[package]] 4994 - name = "toml_edit" 4995 - version = "0.19.10" 4996 - source = "registry+https://github.com/rust-lang/crates.io-index" 4997 - checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 4998 - dependencies = [ 4999 - "indexmap", 5000 - "serde", 5001 - "serde_spanned", 5002 - "toml_datetime", 5003 - "winnow", 5004 - ] 5005 - 5006 - [[package]] 5007 - name = "tower" 5008 - version = "0.4.13" 5009 - source = "registry+https://github.com/rust-lang/crates.io-index" 5010 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 5011 - dependencies = [ 5012 - "futures-core", 5013 - "futures-util", 5014 - "pin-project", 5015 - "pin-project-lite", 5016 - "tokio", 5017 - "tower-layer", 5018 - "tower-service", 5019 - "tracing", 5020 - ] 5021 - 5022 - [[package]] 5023 - name = "tower-layer" 5024 - version = "0.3.2" 5025 - source = "registry+https://github.com/rust-lang/crates.io-index" 5026 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 5027 - 5028 - [[package]] 5029 - name = "tower-service" 5030 - version = "0.3.2" 5031 - source = "registry+https://github.com/rust-lang/crates.io-index" 5032 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 5033 - 5034 - [[package]] 5035 - name = "tracing" 5036 - version = "0.1.37" 5037 - source = "registry+https://github.com/rust-lang/crates.io-index" 5038 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 5039 - dependencies = [ 5040 - "cfg-if", 5041 - "log", 5042 - "pin-project-lite", 5043 - "tracing-attributes", 5044 - "tracing-core", 5045 - ] 5046 - 5047 - [[package]] 5048 - name = "tracing-attributes" 5049 - version = "0.1.23" 5050 - source = "registry+https://github.com/rust-lang/crates.io-index" 5051 - checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 5052 - dependencies = [ 5053 - "proc-macro2", 5054 - "quote", 5055 - "syn 1.0.109", 5056 - ] 5057 - 5058 - [[package]] 5059 - name = "tracing-core" 5060 - version = "0.1.30" 5061 - source = "registry+https://github.com/rust-lang/crates.io-index" 5062 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 5063 - dependencies = [ 5064 - "once_cell", 5065 - "valuable", 5066 - ] 5067 - 5068 - [[package]] 5069 - name = "tracing-futures" 5070 - version = "0.2.5" 5071 - source = "registry+https://github.com/rust-lang/crates.io-index" 5072 - checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 5073 - dependencies = [ 5074 - "pin-project", 5075 - "tracing", 5076 - ] 5077 - 5078 - [[package]] 5079 - name = "tracing-log" 5080 - version = "0.1.3" 5081 - source = "registry+https://github.com/rust-lang/crates.io-index" 5082 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 5083 - dependencies = [ 5084 - "lazy_static", 5085 - "log", 5086 - "tracing-core", 5087 - ] 5088 - 5089 - [[package]] 5090 - name = "tracing-subscriber" 5091 - version = "0.3.16" 5092 - source = "registry+https://github.com/rust-lang/crates.io-index" 5093 - checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 5094 - dependencies = [ 5095 - "matchers", 5096 - "nu-ansi-term", 5097 - "once_cell", 5098 - "regex", 5099 - "sharded-slab", 5100 - "smallvec", 5101 - "thread_local", 5102 - "tracing", 5103 - "tracing-core", 5104 - "tracing-log", 5105 - ] 5106 - 5107 - [[package]] 5108 - name = "trust-dns-proto" 5109 - version = "0.22.0" 5110 - source = "registry+https://github.com/rust-lang/crates.io-index" 5111 - checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" 5112 - dependencies = [ 5113 - "async-trait", 5114 - "cfg-if", 5115 - "data-encoding", 5116 - "enum-as-inner", 5117 - "futures-channel", 5118 - "futures-io", 5119 - "futures-util", 5120 - "idna 0.2.3", 5121 - "ipnet", 5122 - "lazy_static", 5123 - "rand 0.8.5", 5124 - "smallvec", 5125 - "thiserror", 5126 - "tinyvec", 5127 - "tokio", 5128 - "tracing", 5129 - "url", 5130 - ] 5131 - 5132 - [[package]] 5133 - name = "trust-dns-resolver" 5134 - version = "0.22.0" 5135 - source = "registry+https://github.com/rust-lang/crates.io-index" 5136 - checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" 5137 - dependencies = [ 5138 - "cfg-if", 5139 - "futures-util", 5140 - "ipconfig", 5141 - "lazy_static", 5142 - "lru-cache", 5143 - "parking_lot", 5144 - "resolv-conf", 5145 - "smallvec", 5146 - "thiserror", 5147 - "tokio", 5148 - "tracing", 5149 - "trust-dns-proto", 5150 - ] 5151 - 5152 - [[package]] 5153 - name = "try-lock" 5154 - version = "0.2.4" 5155 - source = "registry+https://github.com/rust-lang/crates.io-index" 5156 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 5157 - 5158 - [[package]] 5159 - name = "tungstenite" 5160 - version = "0.18.0" 5161 - source = "registry+https://github.com/rust-lang/crates.io-index" 5162 - checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788" 5163 - dependencies = [ 5164 - "base64 0.13.1", 5165 - "byteorder", 5166 - "bytes", 5167 - "http", 5168 - "httparse", 5169 - "log", 5170 - "rand 0.8.5", 5171 - "sha1", 5172 - "thiserror", 5173 - "url", 5174 - "utf-8", 5175 - ] 5176 - 5177 - [[package]] 5178 - name = "twofish" 5179 - version = "0.7.1" 5180 - source = "registry+https://github.com/rust-lang/crates.io-index" 5181 - checksum = "a78e83a30223c757c3947cd144a31014ff04298d8719ae10d03c31c0448c8013" 5182 - dependencies = [ 5183 - "cipher", 5184 - ] 5185 - 5186 - [[package]] 5187 - name = "typenum" 5188 - version = "1.16.0" 5189 - source = "registry+https://github.com/rust-lang/crates.io-index" 5190 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 5191 - 5192 - [[package]] 5193 - name = "typescript-type-def" 5194 - version = "0.5.6" 5195 - source = "registry+https://github.com/rust-lang/crates.io-index" 5196 - checksum = "4e6b74ffbd5684d318252bb7182051df8c4ecc098b542f63fddf792e7f42aa02" 5197 - dependencies = [ 5198 - "serde_json", 5199 - "typescript-type-def-derive", 5200 - ] 5201 - 5202 - [[package]] 5203 - name = "typescript-type-def-derive" 5204 - version = "0.5.6" 5205 - source = "registry+https://github.com/rust-lang/crates.io-index" 5206 - checksum = "b10a4f5dd87c279f90beef31edb7055bfd1ceb66e73148de107a5c9005e9f864" 5207 - dependencies = [ 5208 - "darling 0.13.4", 5209 - "ident_case", 5210 - "proc-macro-error", 5211 - "proc-macro2", 5212 - "quote", 5213 - "syn 1.0.109", 5214 - ] 5215 - 5216 - [[package]] 5217 - name = "unarray" 5218 - version = "0.1.4" 5219 - source = "registry+https://github.com/rust-lang/crates.io-index" 5220 - checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 5221 - 5222 - [[package]] 5223 - name = "unicode-bidi" 5224 - version = "0.3.10" 5225 - source = "registry+https://github.com/rust-lang/crates.io-index" 5226 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 5227 - 5228 - [[package]] 5229 - name = "unicode-ident" 5230 - version = "1.0.6" 5231 - source = "registry+https://github.com/rust-lang/crates.io-index" 5232 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 5233 - 5234 - [[package]] 5235 - name = "unicode-linebreak" 5236 - version = "0.1.4" 5237 - source = "registry+https://github.com/rust-lang/crates.io-index" 5238 - checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 5239 - dependencies = [ 5240 - "hashbrown", 5241 - "regex", 5242 - ] 5243 - 5244 - [[package]] 5245 - name = "unicode-normalization" 5246 - version = "0.1.22" 5247 - source = "registry+https://github.com/rust-lang/crates.io-index" 5248 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5249 - dependencies = [ 5250 - "tinyvec", 5251 - ] 5252 - 5253 - [[package]] 5254 - name = "unicode-segmentation" 5255 - version = "1.10.1" 5256 - source = "registry+https://github.com/rust-lang/crates.io-index" 5257 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 5258 - 5259 - [[package]] 5260 - name = "unicode-width" 5261 - version = "0.1.10" 5262 - source = "registry+https://github.com/rust-lang/crates.io-index" 5263 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 5264 - 5265 - [[package]] 5266 - name = "unicode-xid" 5267 - version = "0.2.4" 5268 - source = "registry+https://github.com/rust-lang/crates.io-index" 5269 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5270 - 5271 - [[package]] 5272 - name = "untrusted" 5273 - version = "0.7.1" 5274 - source = "registry+https://github.com/rust-lang/crates.io-index" 5275 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 5276 - 5277 - [[package]] 5278 - name = "url" 5279 - version = "2.3.1" 5280 - source = "registry+https://github.com/rust-lang/crates.io-index" 5281 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 5282 - dependencies = [ 5283 - "form_urlencoded", 5284 - "idna 0.3.0", 5285 - "percent-encoding", 5286 - ] 5287 - 5288 - [[package]] 5289 - name = "utf-8" 5290 - version = "0.7.6" 5291 - source = "registry+https://github.com/rust-lang/crates.io-index" 5292 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 5293 - 5294 - [[package]] 5295 - name = "utf8parse" 5296 - version = "0.2.0" 5297 - source = "registry+https://github.com/rust-lang/crates.io-index" 5298 - checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" 5299 - 5300 - [[package]] 5301 - name = "uuid" 5302 - version = "1.3.3" 5303 - source = "registry+https://github.com/rust-lang/crates.io-index" 5304 - checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" 5305 - dependencies = [ 5306 - "getrandom 0.2.8", 5307 - "serde", 5308 - ] 5309 - 5310 - [[package]] 5311 - name = "valuable" 5312 - version = "0.1.0" 5313 - source = "registry+https://github.com/rust-lang/crates.io-index" 5314 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 5315 - 5316 - [[package]] 5317 - name = "vcpkg" 5318 - version = "0.2.15" 5319 - source = "registry+https://github.com/rust-lang/crates.io-index" 5320 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5321 - 5322 - [[package]] 5323 - name = "version_check" 5324 - version = "0.9.4" 5325 - source = "registry+https://github.com/rust-lang/crates.io-index" 5326 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5327 - 5328 - [[package]] 5329 - name = "waker-fn" 5330 - version = "1.1.0" 5331 - source = "registry+https://github.com/rust-lang/crates.io-index" 5332 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 5333 - 5334 - [[package]] 5335 - name = "walkdir" 5336 - version = "2.3.3" 5337 - source = "registry+https://github.com/rust-lang/crates.io-index" 5338 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 5339 - dependencies = [ 5340 - "same-file", 5341 - "winapi-util", 5342 - ] 5343 - 5344 - [[package]] 5345 - name = "want" 5346 - version = "0.3.0" 5347 - source = "registry+https://github.com/rust-lang/crates.io-index" 5348 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 5349 - dependencies = [ 5350 - "log", 5351 - "try-lock", 5352 - ] 5353 - 5354 - [[package]] 5355 - name = "wasi" 5356 - version = "0.9.0+wasi-snapshot-preview1" 5357 - source = "registry+https://github.com/rust-lang/crates.io-index" 5358 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 5359 - 5360 - [[package]] 5361 - name = "wasi" 5362 - version = "0.10.0+wasi-snapshot-preview1" 5363 - source = "registry+https://github.com/rust-lang/crates.io-index" 5364 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 5365 - 5366 - [[package]] 5367 - name = "wasi" 5368 - version = "0.11.0+wasi-snapshot-preview1" 5369 - source = "registry+https://github.com/rust-lang/crates.io-index" 5370 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5371 - 5372 - [[package]] 5373 - name = "wasm-bindgen" 5374 - version = "0.2.84" 5375 - source = "registry+https://github.com/rust-lang/crates.io-index" 5376 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 5377 - dependencies = [ 5378 - "cfg-if", 5379 - "wasm-bindgen-macro", 5380 - ] 5381 - 5382 - [[package]] 5383 - name = "wasm-bindgen-backend" 5384 - version = "0.2.84" 5385 - source = "registry+https://github.com/rust-lang/crates.io-index" 5386 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 5387 - dependencies = [ 5388 - "bumpalo", 5389 - "log", 5390 - "once_cell", 5391 - "proc-macro2", 5392 - "quote", 5393 - "syn 1.0.109", 5394 - "wasm-bindgen-shared", 5395 - ] 5396 - 5397 - [[package]] 5398 - name = "wasm-bindgen-futures" 5399 - version = "0.4.34" 5400 - source = "registry+https://github.com/rust-lang/crates.io-index" 5401 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 5402 - dependencies = [ 5403 - "cfg-if", 5404 - "js-sys", 5405 - "wasm-bindgen", 5406 - "web-sys", 5407 - ] 5408 - 5409 - [[package]] 5410 - name = "wasm-bindgen-macro" 5411 - version = "0.2.84" 5412 - source = "registry+https://github.com/rust-lang/crates.io-index" 5413 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 5414 - dependencies = [ 5415 - "quote", 5416 - "wasm-bindgen-macro-support", 5417 - ] 5418 - 5419 - [[package]] 5420 - name = "wasm-bindgen-macro-support" 5421 - version = "0.2.84" 5422 - source = "registry+https://github.com/rust-lang/crates.io-index" 5423 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 5424 - dependencies = [ 5425 - "proc-macro2", 5426 - "quote", 5427 - "syn 1.0.109", 5428 - "wasm-bindgen-backend", 5429 - "wasm-bindgen-shared", 5430 - ] 5431 - 5432 - [[package]] 5433 - name = "wasm-bindgen-shared" 5434 - version = "0.2.84" 5435 - source = "registry+https://github.com/rust-lang/crates.io-index" 5436 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 5437 - 5438 - [[package]] 5439 - name = "web-sys" 5440 - version = "0.3.61" 5441 - source = "registry+https://github.com/rust-lang/crates.io-index" 5442 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 5443 - dependencies = [ 5444 - "js-sys", 5445 - "wasm-bindgen", 5446 - ] 5447 - 5448 - [[package]] 5449 - name = "webpki" 5450 - version = "0.22.0" 5451 - source = "registry+https://github.com/rust-lang/crates.io-index" 5452 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 5453 - dependencies = [ 5454 - "ring", 5455 - "untrusted", 5456 - ] 5457 - 5458 - [[package]] 5459 - name = "weezl" 5460 - version = "0.1.7" 5461 - source = "registry+https://github.com/rust-lang/crates.io-index" 5462 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 5463 - 5464 - [[package]] 5465 - name = "whoami" 5466 - version = "1.3.0" 5467 - source = "registry+https://github.com/rust-lang/crates.io-index" 5468 - checksum = "45dbc71f0cdca27dc261a9bd37ddec174e4a0af2b900b890f378460f745426e3" 5469 - dependencies = [ 5470 - "wasm-bindgen", 5471 - "web-sys", 5472 - ] 5473 - 5474 - [[package]] 5475 - name = "widestring" 5476 - version = "0.5.1" 5477 - source = "registry+https://github.com/rust-lang/crates.io-index" 5478 - checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" 5479 - 5480 - [[package]] 5481 - name = "winapi" 5482 - version = "0.3.9" 5483 - source = "registry+https://github.com/rust-lang/crates.io-index" 5484 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5485 - dependencies = [ 5486 - "winapi-i686-pc-windows-gnu", 5487 - "winapi-x86_64-pc-windows-gnu", 5488 - ] 5489 - 5490 - [[package]] 5491 - name = "winapi-i686-pc-windows-gnu" 5492 - version = "0.4.0" 5493 - source = "registry+https://github.com/rust-lang/crates.io-index" 5494 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5495 - 5496 - [[package]] 5497 - name = "winapi-util" 5498 - version = "0.1.5" 5499 - source = "registry+https://github.com/rust-lang/crates.io-index" 5500 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 5501 - dependencies = [ 5502 - "winapi", 5503 - ] 5504 - 5505 - [[package]] 5506 - name = "winapi-x86_64-pc-windows-gnu" 5507 - version = "0.4.0" 5508 - source = "registry+https://github.com/rust-lang/crates.io-index" 5509 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5510 - 5511 - [[package]] 5512 - name = "windows" 5513 - version = "0.32.0" 5514 - source = "registry+https://github.com/rust-lang/crates.io-index" 5515 - checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec" 5516 - dependencies = [ 5517 - "windows_aarch64_msvc 0.32.0", 5518 - "windows_i686_gnu 0.32.0", 5519 - "windows_i686_msvc 0.32.0", 5520 - "windows_x86_64_gnu 0.32.0", 5521 - "windows_x86_64_msvc 0.32.0", 5522 - ] 5523 - 5524 - [[package]] 5525 - name = "windows-sys" 5526 - version = "0.42.0" 5527 - source = "registry+https://github.com/rust-lang/crates.io-index" 5528 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 5529 - dependencies = [ 5530 - "windows_aarch64_gnullvm 0.42.1", 5531 - "windows_aarch64_msvc 0.42.1", 5532 - "windows_i686_gnu 0.42.1", 5533 - "windows_i686_msvc 0.42.1", 5534 - "windows_x86_64_gnu 0.42.1", 5535 - "windows_x86_64_gnullvm 0.42.1", 5536 - "windows_x86_64_msvc 0.42.1", 5537 - ] 5538 - 5539 - [[package]] 5540 - name = "windows-sys" 5541 - version = "0.45.0" 5542 - source = "registry+https://github.com/rust-lang/crates.io-index" 5543 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5544 - dependencies = [ 5545 - "windows-targets 0.42.1", 5546 - ] 5547 - 5548 - [[package]] 5549 - name = "windows-sys" 5550 - version = "0.48.0" 5551 - source = "registry+https://github.com/rust-lang/crates.io-index" 5552 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5553 - dependencies = [ 5554 - "windows-targets 0.48.0", 5555 - ] 5556 - 5557 - [[package]] 5558 - name = "windows-targets" 5559 - version = "0.42.1" 5560 - source = "registry+https://github.com/rust-lang/crates.io-index" 5561 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 5562 - dependencies = [ 5563 - "windows_aarch64_gnullvm 0.42.1", 5564 - "windows_aarch64_msvc 0.42.1", 5565 - "windows_i686_gnu 0.42.1", 5566 - "windows_i686_msvc 0.42.1", 5567 - "windows_x86_64_gnu 0.42.1", 5568 - "windows_x86_64_gnullvm 0.42.1", 5569 - "windows_x86_64_msvc 0.42.1", 5570 - ] 5571 - 5572 - [[package]] 5573 - name = "windows-targets" 5574 - version = "0.48.0" 5575 - source = "registry+https://github.com/rust-lang/crates.io-index" 5576 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 5577 - dependencies = [ 5578 - "windows_aarch64_gnullvm 0.48.0", 5579 - "windows_aarch64_msvc 0.48.0", 5580 - "windows_i686_gnu 0.48.0", 5581 - "windows_i686_msvc 0.48.0", 5582 - "windows_x86_64_gnu 0.48.0", 5583 - "windows_x86_64_gnullvm 0.48.0", 5584 - "windows_x86_64_msvc 0.48.0", 5585 - ] 5586 - 5587 - [[package]] 5588 - name = "windows_aarch64_gnullvm" 5589 - version = "0.42.1" 5590 - source = "registry+https://github.com/rust-lang/crates.io-index" 5591 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 5592 - 5593 - [[package]] 5594 - name = "windows_aarch64_gnullvm" 5595 - version = "0.48.0" 5596 - source = "registry+https://github.com/rust-lang/crates.io-index" 5597 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 5598 - 5599 - [[package]] 5600 - name = "windows_aarch64_msvc" 5601 - version = "0.32.0" 5602 - source = "registry+https://github.com/rust-lang/crates.io-index" 5603 - checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" 5604 - 5605 - [[package]] 5606 - name = "windows_aarch64_msvc" 5607 - version = "0.42.1" 5608 - source = "registry+https://github.com/rust-lang/crates.io-index" 5609 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 5610 - 5611 - [[package]] 5612 - name = "windows_aarch64_msvc" 5613 - version = "0.48.0" 5614 - source = "registry+https://github.com/rust-lang/crates.io-index" 5615 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 5616 - 5617 - [[package]] 5618 - name = "windows_i686_gnu" 5619 - version = "0.32.0" 5620 - source = "registry+https://github.com/rust-lang/crates.io-index" 5621 - checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" 5622 - 5623 - [[package]] 5624 - name = "windows_i686_gnu" 5625 - version = "0.42.1" 5626 - source = "registry+https://github.com/rust-lang/crates.io-index" 5627 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 5628 - 5629 - [[package]] 5630 - name = "windows_i686_gnu" 5631 - version = "0.48.0" 5632 - source = "registry+https://github.com/rust-lang/crates.io-index" 5633 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 5634 - 5635 - [[package]] 5636 - name = "windows_i686_msvc" 5637 - version = "0.32.0" 5638 - source = "registry+https://github.com/rust-lang/crates.io-index" 5639 - checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" 5640 - 5641 - [[package]] 5642 - name = "windows_i686_msvc" 5643 - version = "0.42.1" 5644 - source = "registry+https://github.com/rust-lang/crates.io-index" 5645 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 5646 - 5647 - [[package]] 5648 - name = "windows_i686_msvc" 5649 - version = "0.48.0" 5650 - source = "registry+https://github.com/rust-lang/crates.io-index" 5651 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 5652 - 5653 - [[package]] 5654 - name = "windows_x86_64_gnu" 5655 - version = "0.32.0" 5656 - source = "registry+https://github.com/rust-lang/crates.io-index" 5657 - checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" 5658 - 5659 - [[package]] 5660 - name = "windows_x86_64_gnu" 5661 - version = "0.42.1" 5662 - source = "registry+https://github.com/rust-lang/crates.io-index" 5663 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 5664 - 5665 - [[package]] 5666 - name = "windows_x86_64_gnu" 5667 - version = "0.48.0" 5668 - source = "registry+https://github.com/rust-lang/crates.io-index" 5669 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 5670 - 5671 - [[package]] 5672 - name = "windows_x86_64_gnullvm" 5673 - version = "0.42.1" 5674 - source = "registry+https://github.com/rust-lang/crates.io-index" 5675 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 5676 - 5677 - [[package]] 5678 - name = "windows_x86_64_gnullvm" 5679 - version = "0.48.0" 5680 - source = "registry+https://github.com/rust-lang/crates.io-index" 5681 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 5682 - 5683 - [[package]] 5684 - name = "windows_x86_64_msvc" 5685 - version = "0.32.0" 5686 - source = "registry+https://github.com/rust-lang/crates.io-index" 5687 - checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" 5688 - 5689 - [[package]] 5690 - name = "windows_x86_64_msvc" 5691 - version = "0.42.1" 5692 - source = "registry+https://github.com/rust-lang/crates.io-index" 5693 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 5694 - 5695 - [[package]] 5696 - name = "windows_x86_64_msvc" 5697 - version = "0.48.0" 5698 - source = "registry+https://github.com/rust-lang/crates.io-index" 5699 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 5700 - 5701 - [[package]] 5702 - name = "winnow" 5703 - version = "0.4.6" 5704 - source = "registry+https://github.com/rust-lang/crates.io-index" 5705 - checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" 5706 - dependencies = [ 5707 - "memchr", 5708 - ] 5709 - 5710 - [[package]] 5711 - name = "winreg" 5712 - version = "0.10.1" 5713 - source = "registry+https://github.com/rust-lang/crates.io-index" 5714 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 5715 - dependencies = [ 5716 - "winapi", 5717 - ] 5718 - 5719 - [[package]] 5720 - name = "x25519-dalek" 5721 - version = "2.0.0-pre.1" 5722 - source = "registry+https://github.com/rust-lang/crates.io-index" 5723 - checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df" 5724 - dependencies = [ 5725 - "curve25519-dalek 3.2.0", 5726 - "rand_core 0.6.4", 5727 - "zeroize", 5728 - ] 5729 - 5730 - [[package]] 5731 - name = "x509-parser" 5732 - version = "0.14.0" 5733 - source = "registry+https://github.com/rust-lang/crates.io-index" 5734 - checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" 5735 - dependencies = [ 5736 - "asn1-rs", 5737 - "base64 0.13.1", 5738 - "data-encoding", 5739 - "der-parser", 5740 - "lazy_static", 5741 - "nom", 5742 - "oid-registry", 5743 - "rusticata-macros", 5744 - "thiserror", 5745 - "time 0.3.20", 5746 - ] 5747 - 5748 - [[package]] 5749 - name = "xattr" 5750 - version = "0.2.3" 5751 - source = "registry+https://github.com/rust-lang/crates.io-index" 5752 - checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 5753 - dependencies = [ 5754 - "libc", 5755 - ] 5756 - 5757 - [[package]] 5758 - name = "yansi" 5759 - version = "0.5.1" 5760 - source = "registry+https://github.com/rust-lang/crates.io-index" 5761 - checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 5762 - 5763 - [[package]] 5764 - name = "yasna" 5765 - version = "0.5.1" 5766 - source = "registry+https://github.com/rust-lang/crates.io-index" 5767 - checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" 5768 - dependencies = [ 5769 - "time 0.3.20", 5770 - ] 5771 - 5772 - [[package]] 5773 - name = "yerpc" 5774 - version = "0.5.1" 5775 - source = "registry+https://github.com/rust-lang/crates.io-index" 5776 - checksum = "30fc983d32883ecb563227a2dcdcbe8567decd9c533b5ecca7e3099e2f7d4c96" 5777 - dependencies = [ 5778 - "anyhow", 5779 - "async-channel", 5780 - "async-mutex", 5781 - "async-trait", 5782 - "axum", 5783 - "futures", 5784 - "futures-util", 5785 - "log", 5786 - "schemars", 5787 - "serde", 5788 - "serde_json", 5789 - "tokio", 5790 - "tracing", 5791 - "typescript-type-def", 5792 - "yerpc_derive", 5793 - ] 5794 - 5795 - [[package]] 5796 - name = "yerpc_derive" 5797 - version = "0.5.0" 5798 - source = "registry+https://github.com/rust-lang/crates.io-index" 5799 - checksum = "6d6b8ce490e8719fe84d7d80ad4d58572b2ea9d7a83d156f6afd6ab3ad5cfb94" 5800 - dependencies = [ 5801 - "convert_case 0.5.0", 5802 - "darling 0.14.3", 5803 - "proc-macro2", 5804 - "quote", 5805 - "syn 1.0.109", 5806 - ] 5807 - 5808 - [[package]] 5809 - name = "zeroize" 5810 - version = "1.5.7" 5811 - source = "registry+https://github.com/rust-lang/crates.io-index" 5812 - checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" 5813 - dependencies = [ 5814 - "zeroize_derive", 5815 - ] 5816 - 5817 - [[package]] 5818 - name = "zeroize_derive" 5819 - version = "1.3.3" 5820 - source = "registry+https://github.com/rust-lang/crates.io-index" 5821 - checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c" 5822 - dependencies = [ 5823 - "proc-macro2", 5824 - "quote", 5825 - "syn 1.0.109", 5826 - "synstructure", 5827 - ]
+3 -22
pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
··· 5 5 , buildGoModule 6 6 , esbuild 7 7 , fetchFromGitHub 8 - , fetchpatch 9 8 , libdeltachat 10 9 , makeDesktopItem 11 10 , makeWrapper ··· 13 12 , pkg-config 14 13 , python3 15 14 , roboto 16 - , rustPlatform 17 15 , sqlcipher 18 16 , stdenv 19 17 , CoreServices 20 18 }: 21 19 22 20 let 23 - libdeltachat' = libdeltachat.overrideAttrs (old: rec { 24 - version = "1.117.0"; 25 - src = fetchFromGitHub { 26 - owner = "deltachat"; 27 - repo = "deltachat-core-rust"; 28 - rev = "v${version}"; 29 - hash = "sha256-zKOhjV2q+jKoh5KVb+izbRzq0kAFp3pXdnPTf9PAhGs="; 30 - }; 31 - cargoDeps = rustPlatform.importCargoLock { 32 - lockFile = ./Cargo.lock; 33 - outputHashes = { 34 - "email-0.0.21" = "sha256-Ys47MiEwVZenRNfenT579Rb17ABQ4QizVFTWUq3+bAY="; 35 - "encoded-words-0.2.0" = "sha256-KK9st0hLFh4dsrnLd6D8lC6pRFFs8W+WpZSGMGJcosk="; 36 - "lettre-0.9.2" = "sha256-+hU1cFacyyeC9UGVBpS14BWlJjHy90i/3ynMkKAzclk="; 37 - "quinn-proto-0.9.2" = "sha256-N1gD5vMsBEHO4Fz4ZYEKZA8eE/VywXNXssGcK6hjvpg="; 38 - }; 39 - }; 40 - }); 41 21 esbuild' = esbuild.override { 42 22 buildGoModule = args: buildGoModule (args // rec { 43 23 version = "0.14.54"; ··· 50 30 vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 51 31 }); 52 32 }; 53 - in buildNpmPackage rec { 33 + in 34 + buildNpmPackage rec { 54 35 pname = "deltachat-desktop"; 55 36 version = "1.38.1"; 56 37 ··· 72 53 ]; 73 54 74 55 buildInputs = [ 75 - libdeltachat' 56 + libdeltachat 76 57 ] ++ lib.optionals stdenv.isDarwin [ 77 58 CoreServices 78 59 ];
+2 -2
pkgs/applications/office/gnucash/default.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "gnucash"; 29 - version = "5.1"; 29 + version = "5.2"; 30 30 31 31 # raw source code doesn't work out of box; fetchFromGitHub not usable 32 32 src = fetchurl { 33 33 url = "https://github.com/Gnucash/gnucash/releases/download/${version}/${pname}-${version}.tar.bz2"; 34 - hash = "sha256-imWB3ffHQJ22NlEGATUa9yTto2OrWbHV2o2YEDPyb3I="; 34 + hash = "sha256-SCYXa35wu4ifmcIG+v+t2JJijXhSVxXp9xKOz0ixRoA="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+2 -3
pkgs/applications/science/logic/tlaplus/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, adoptopenjdk-bin, jre }: 1 + { lib, stdenv, fetchurl, makeWrapper, jre }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tlaplus"; ··· 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; 13 - buildInputs = [ adoptopenjdk-bin ]; 14 13 15 14 dontUnpack = true; 16 15 installPhase = '' ··· 33 32 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 34 33 license = lib.licenses.mit; 35 34 platforms = lib.platforms.unix; 36 - maintainers = with lib.maintainers; [ florentc thoughtpolice ]; 35 + maintainers = with lib.maintainers; [ florentc thoughtpolice mgregson ]; 37 36 }; 38 37 }
+24
pkgs/applications/version-management/git-relevant-history/default.nix
··· 1 + { lib, fetchFromGitHub, python3, git, git-filter-repo }: 2 + 3 + python3.pkgs.buildPythonApplication rec { 4 + pname = "git-relevant-history"; 5 + version = "2022-09-15"; 6 + src = fetchFromGitHub { 7 + owner = "rainlabs-eu"; 8 + repo = pname; 9 + rev = "84552324d7cb4790db86282fc61bf98a05b7a4fd"; 10 + hash = "sha256-46a6TR1Hi3Lg2DTmOp1aV5Uhd4IukTojZkA3TVbTnRY="; 11 + }; 12 + propagatedBuildInputs = [ 13 + git git-filter-repo 14 + python3.pkgs.docopt 15 + ]; 16 + 17 + meta = with lib; { 18 + description = "Extract only relevant history from git repo"; 19 + homepage = "https://github.com/rainlabs-eu/git-relevant-history"; 20 + license = licenses.asl20; 21 + platforms = platforms.all; 22 + maintainers = [ maintainers.bendlas ]; 23 + }; 24 + }
+3 -3
pkgs/applications/version-management/srvc/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "srvc"; 5 - version = "0.19.1"; 5 + version = "0.20.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "insilica"; 9 9 repo = "rs-srvc"; 10 10 rev = "v${version}"; 11 - hash = "sha256-o6BX8NnBdHQ5FMD3Dm8gfHHtzvG+irn1wWAwswKKXQY="; 11 + hash = "sha256-pnlbMU/uoP9ZK8kzTRYTMY9+X9VIKJHwW2qMXXD8Udg="; 12 12 }; 13 13 14 - cargoHash = "sha256-WXHgJPOgGC8+/kgekiUmQv+1Z1+Y3mPw5MaaMVZlToA="; 14 + cargoHash = "sha256-+m8WJMn1aq3FBDO5c/ZwbcK2G+UE5pSwHTgOl2s6pDw="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 17 darwin.apple_sdk.frameworks.CoreServices
+6 -2
pkgs/build-support/kernel/compress-firmware-xz.nix
··· 1 - { runCommand }: 1 + { runCommand, lib }: 2 2 3 3 firmware: 4 4 5 - runCommand "${firmware.name}-xz" {} '' 5 + let 6 + args = lib.optionalAttrs (firmware ? meta) { inherit (firmware) meta; }; 7 + in 8 + 9 + runCommand "${firmware.name}-xz" args '' 6 10 mkdir -p $out/lib 7 11 (cd ${firmware} && find lib/firmware -type d -print0) | 8 12 (cd $out && xargs -0 mkdir -v --)
+4 -3
pkgs/data/icons/tela-icon-theme/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "tela-icon-theme"; 5 - version = "2023-02-03"; 5 + version = "2023-06-25"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vinceliuice"; 9 - repo = pname; 9 + repo = "tela-icon-theme"; 10 10 rev = version; 11 - sha256 = "sha256-W3gGn4ioTg/iOWTa5hfwx6FWzpFilpG8IXwaO5/YAvk="; 11 + hash = "sha256-tv0C4mW2A3dScUXBWa7a3lkG4lPIjZTsj5b1/oEVuiw="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ gtk3 jdupes ]; ··· 35 35 meta = with lib; { 36 36 description = "A flat colorful Design icon theme"; 37 37 homepage = "https://github.com/vinceliuice/tela-icon-theme"; 38 + changelog = "https://github.com/vinceliuice/Tela-icon-theme/releases/tag/${src.rev}"; 38 39 license = licenses.gpl3Only; 39 40 # darwin systems use case-insensitive filesystems that cause hash mismatches 40 41 platforms = subtractLists platforms.darwin platforms.unix;
+1 -1
pkgs/development/compilers/ligo/default.nix
··· 20 20 owner = "ligolang"; 21 21 repo = "ligo"; 22 22 rev = version; 23 - sha256 = "sha256-NGjys54VWzgy1SE93/zt8xooJhnZTst3jsjU36yp7Uk="; 23 + sha256 = "sha256-XHfpYX0lXzT15fuFQcmRBhhaKI9Y4bYOy6kXR320BV0="; 24 24 fetchSubmodules = true; 25 25 }; 26 26
+13 -11
pkgs/development/libraries/fastjson/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libtool, autoconf, automake }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 8 + pname = "fastjson"; 4 9 version = "1.2304.0"; 5 - pname = "fastjson"; 10 + 6 11 src = fetchFromGitHub { 7 - repo = "libfastjson"; 8 12 owner = "rsyslog"; 9 - rev = "v${version}"; 10 - sha256 = "sha256-WnM6lQjHz0n5BwWWZoDBavURokcaROXJW46RZen9vj4="; 13 + repo = "libfastjson"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-WnM6lQjHz0n5BwWWZoDBavURokcaROXJW46RZen9vj4="; 11 16 }; 12 17 13 - nativeBuildInputs = [ autoconf automake ]; 14 - buildInputs = [ libtool ]; 15 - 16 - preConfigure = '' 17 - sh autogen.sh 18 - ''; 18 + nativeBuildInputs = [ 19 + autoreconfHook 20 + ]; 19 21 20 22 meta = with lib; { 21 23 description = "A fast json library for C";
+3 -2
pkgs/development/libraries/ffmpeg/generic.nix
··· 542 542 # outputs where we don't want them. Patch the generated config.h to remove all 543 543 # such references except for data. 544 544 postConfigure = let 545 - toStrip = lib.remove "data" finalAttrs.outputs; # We want to keep references to the data dir. 545 + toStrip = map placeholder (lib.remove "data" finalAttrs.outputs) # We want to keep references to the data dir. 546 + ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) buildPackages.stdenv.cc; 546 547 in 547 - "remove-references-to ${lib.concatStringsSep " " (map (o: "-t ${placeholder o}") toStrip)} config.h"; 548 + "remove-references-to ${lib.concatStringsSep " " (map (o: "-t ${o}") toStrip)} config.h"; 548 549 549 550 nativeBuildInputs = [ removeReferencesTo addOpenGLRunpath perl pkg-config texinfo yasm ]; 550 551
+13 -1
pkgs/development/libraries/gstreamer/rs/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitLab 4 + , fetchpatch 4 5 , writeText 5 6 , rustPlatform 6 7 , meson ··· 112 113 ) (lib.attrNames validPlugins); 113 114 114 115 invalidPlugins = lib.subtractLists (lib.attrNames validPlugins) selectedPlugins; 116 + 117 + # TODO: figure out what must be done about this upstream - related lu-zero/cargo-c#323 lu-zero/cargo-c#138 118 + cargo-c' = cargo-c.overrideAttrs (oldAttrs: { 119 + patches = (oldAttrs.patches or []) ++ [ 120 + (fetchpatch { 121 + name = "cargo-c-test-rlib-fix.patch"; 122 + url = "https://github.com/lu-zero/cargo-c/commit/596c582deed419b0cf1f80b9be77ff705df20e01.diff"; 123 + hash = "sha256-GETjZwYqX7h51rxWznAg5Ojozdp1SOYnUh+iuRGA4/w="; 124 + }) 125 + ]; 126 + }); 115 127 in 116 128 assert lib.assertMsg (invalidPlugins == []) 117 129 "Invalid gst-plugins-rs plugin${lib.optionalString (lib.length invalidPlugins > 1) "s"}: ${lib.concatStringsSep ", " invalidPlugins}"; ··· 165 177 pkg-config 166 178 rustc 167 179 cargo 168 - cargo-c 180 + cargo-c' 169 181 nasm 170 182 ] ++ lib.optionals enableDocumentation [ 171 183 hotdoc
+2 -2
pkgs/development/libraries/libgbinder/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libgbinder"; 5 - version = "1.1.33"; 5 + version = "1.1.34"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mer-hybris"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-tVvW7cbgj2t251SzUchfVEnHgLVgdkTLyGpQfn6VYow="; 11 + sha256 = "sha256-e4J7K1AZyw3AvBNMj69VGKo7gtJ6Nr2ELjqgoqPlObU="; 12 12 }; 13 13 14 14 outputs = [ "out" "dev" ];
+14 -1
pkgs/development/libraries/libnatpmp/default.nix
··· 1 - { lib, stdenv, fetchurl, fixDarwinDylibNames }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fetchpatch 5 + , fixDarwinDylibNames 6 + }: 2 7 3 8 stdenv.mkDerivation rec { 4 9 pname = "libnatpmp"; ··· 8 13 url = "https://miniupnp.tuxfamily.org/files/${pname}-${version}.tar.gz"; 9 14 hash = "sha256-BoTtLIQGQ351GaG9IOqDeA24cbOjpddSMRuj6Inb/HA="; 10 15 }; 16 + 17 + patches = [ 18 + # install natpmp_declspec.h too, else nothing that uses this library will build 19 + (fetchpatch { 20 + url = "https://github.com/miniupnp/libnatpmp/commit/5f4a7c65837a56e62c133db33c28cd1ea71db662.patch"; 21 + hash = "sha256-tvoGFmo5AzUgb40bIs/EzikE0ex1SFzE5peLXhktnbc="; 22 + }) 23 + ]; 11 24 12 25 makeFlags = [ 13 26 "INSTALLPREFIX=$(out)"
+2 -2
pkgs/development/libraries/physics/fastjet/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "fastjet"; 10 - version = "3.4.0"; 10 + version = "3.4.1"; 11 11 12 12 src = fetchurl { 13 13 url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz"; 14 - hash = "sha256-7gfIdHyOrYbYjeSp5OjR6efXYUlz9WMbqCl/egJHi5E="; 14 + hash = "sha256-BWCMb/IT8G3Z3nI4E9a03M1R5mGsEwmPdL/J7q8ctao="; 15 15 }; 16 16 17 17 buildInputs = lib.optional withPython python;
+2 -2
pkgs/development/python-modules/env-canada/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "env-canada"; 18 - version = "0.5.34"; 18 + version = "0.5.35"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "michaeldavie"; 25 25 repo = "env_canada"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-gnNncWhrqGTWq8cNVmNMzkgqW0hoglzVGrLjqyUvOIc="; 27 + hash = "sha256-gHHLKviU1ZHrlBp4R3WqAwEGWiM7VuB7lOYiUIJ1J7A="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+4 -6
pkgs/development/python-modules/fastapi-mail/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "fastapi-mail"; 22 - version = "1.2.8"; 22 + version = "1.3.0"; 23 23 format = "pyproject"; 24 24 25 - disabled = pythonOlder "3.7"; 25 + disabled = pythonOlder "3.8"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "sabuhish"; 29 29 repo = pname; 30 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-9u7+TYO0TmzyLcCxZL86ibC3hNH5b722t5fWimRHaW0="; 31 + hash = "sha256-ttVzjmMZe1iWn2J7N5pcol4GFnKv3CB3DOQkZU2HnHg="; 32 32 }; 33 33 34 34 postPatch = '' 35 35 substituteInPlace pyproject.toml \ 36 - --replace 'version = "1.2.2"' 'version = "${version}"' \ 36 + --replace 'version = "1.2.5"' 'version = "${version}"' \ 37 37 --replace 'aiosmtplib = "^2.0"' 'aiosmtplib = "*"' \ 38 38 --replace 'pydantic = "^1.8"' 'pydantic = "*"' \ 39 - --replace 'starlette = "^0.22.0"' 'starlette = "*"' \ 40 - --replace 'black = "^22.12.0"' "" 41 39 ''; 42 40 43 41 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/hahomematic/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "hahomematic"; 19 - version = "2023.6.0"; 19 + version = "2023.6.1"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.9"; ··· 25 25 owner = "danielperna84"; 26 26 repo = pname; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-xpkQSQGwf4RZHKwLdrOLW4yzECKY1vwxHYo+o3eOrhE="; 28 + hash = "sha256-67zl530tvA7h4bpC9qasVsvjzoN9fxtPO9TZmxvABlc="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+64
pkgs/development/python-modules/matplotx/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , setuptools 6 + , matplotlib 7 + , numpy 8 + , networkx 9 + , pypng 10 + , scipy 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "matplotx"; 15 + version = "0.3.10"; 16 + format = "pyproject"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "nschloe"; 20 + repo = "matplotx"; 21 + rev = "v${version}"; 22 + hash = "sha256-EWEiEY23uFwd/vgWVLCH/buUmgRqz1rqqlJEdXINYMg="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + setuptools 27 + matplotlib 28 + numpy 29 + ]; 30 + 31 + passthru.optional-dependencies = { 32 + all = [ 33 + networkx 34 + pypng 35 + scipy 36 + ]; 37 + contour = [ networkx ]; 38 + spy = [ 39 + pypng 40 + scipy 41 + ]; 42 + }; 43 + 44 + checkInputs = passthru.optional-dependencies.all; 45 + 46 + nativeCheckInputs = [ 47 + pytestCheckHook 48 + ]; 49 + 50 + disabledTestPaths = [ 51 + "tests/test_spy.py" # Requires meshzoo (non-free) and pytest-codeblocks (not packaged) 52 + ]; 53 + 54 + pythonImportsCheck = [ "matplotx" ]; 55 + 56 + meta = { 57 + homepage = "https://github.com/nschloe/matplotx"; 58 + description = "More styles and useful extensions for Matplotlib"; 59 + changelog = "https://github.com/nschloe/matplotx/releases/tag/v${version}"; 60 + license = lib.licenses.mit; 61 + maintainers = with lib.maintainers; [ swflint ]; 62 + }; 63 + } 64 +
+33 -15
pkgs/development/python-modules/mt-940/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , enum34, pyyaml, pytest 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , pythonOlder 6 + , pyyaml 7 + , setuptools 3 8 }: 4 9 5 10 buildPythonPackage rec { 6 - version = "4.28.0"; 7 11 pname = "mt-940"; 12 + version = "4.30.0"; 13 + format = "setuptools"; 8 14 9 - src = fetchPypi { 10 - inherit pname version; 11 - hash = "sha256-ydTOaijDmA2ogIONzRMMoz+5jr99qxWM1zzGGzg7f2Q="; 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "wolph"; 19 + repo = "mt940"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-t6FOMu+KcEib+TZAv5uVAzvrUSt/k/RQn28jpdAY5Y0="; 12 22 }; 13 23 14 - propagatedBuildInputs = lib.optional (!isPy3k) enum34; 24 + postPatch = '' 25 + sed -i "/--cov/d" pytest.ini 26 + sed -i "/--no-cov/d" pytest.ini 27 + ''; 15 28 16 - nativeCheckInputs = [ pyyaml pytest ]; 29 + nativeBuildInputs = [ 30 + setuptools 31 + ]; 17 32 18 - # requires tests files that are not present 19 - doCheck = false; 20 - checkPhase = '' 21 - py.test 22 - ''; 33 + nativeCheckInputs = [ 34 + pyyaml 35 + pytestCheckHook 36 + ]; 23 37 24 - pythonImportsCheck = [ "mt940" ]; 38 + pythonImportsCheck = [ 39 + "mt940" 40 + ]; 25 41 26 42 meta = with lib; { 27 - description = "A library to parse MT940 files and returns smart Python collections for statistics and manipulation"; 43 + description = "Module to parse MT940 files and returns smart Python collections for statistics and manipulation"; 28 44 homepage = "https://github.com/WoLpH/mt940"; 45 + changelog = "https://github.com/wolph/mt940/releases/tag/v${version}"; 29 46 license = licenses.bsd3; 47 + maintainers = with maintainers; [ ]; 30 48 }; 31 49 }
+2 -2
pkgs/development/python-modules/pdm-backend/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "pdm-backend"; 18 - version = "2.1.0"; 18 + version = "2.1.1"; 19 19 format = "pyproject"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "pdm-project"; 23 23 repo = "pdm-backend"; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-asW5L9jS++9ovq7WFh0rU7aB7R2rwi5ce80Hxk9NrI4="; 25 + hash = "sha256-g8VL5nO180XplMgbbeeJIp6lmbWcMKdY/IftlkL6e5U="; 26 26 }; 27 27 28 28 env.PDM_BUILD_SCM_VERSION = version;
+2 -2
pkgs/development/python-modules/pydrive2/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pydrive2"; 13 - version = "1.15.4"; 13 + version = "1.16.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 18 18 src = fetchPypi { 19 19 pname = "PyDrive2"; 20 20 inherit version; 21 - hash = "sha256-DAEbdOvCTzxspyggYmt38d/groj1dAxaXPlug915upk="; 21 + hash = "sha256-u9yNLgAuT4fSD5vYSfk/1lieu0Da2X+UtvOCtP/Ws8E="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyezviz/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pyezviz"; 14 - version = "0.2.1.3"; 14 + version = "0.2.1.6"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 20 20 owner = "baqs"; 21 21 repo = "pyEzviz"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-myf8+yGXx9Ry1NuqRLYLh3I2ubS1DLfhQF1mvp5xiwc="; 23 + hash = "sha256-3NeXAqEoRJMzg/Io9WF93GFJHEjAaHNn4/lBVKc2Q3Q="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyglet/default.nix
··· 18 18 }: 19 19 20 20 buildPythonPackage rec { 21 - version = "2.0.7"; 21 + version = "2.0.8"; 22 22 pname = "pyglet"; 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-koL5SXwcDNyyzDnYwFCQz2ht7bnrvvSo3kmvIqCuDo8="; 27 + hash = "sha256-xc+aEywcAaZ/VL959aTNi0Rm1Cb1aFIDMHij9nzYg8Y="; 28 28 extension = "zip"; 29 29 }; 30 30
+2 -2
pkgs/development/python-modules/ytmusicapi/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "ytmusicapi"; 12 - version = "1.0.2"; 12 + version = "1.1.0"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.8"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-95i/7dSXOL7OgqrBWy2X8EV4zLFXLzR6NQy3BN9NDhA="; 19 + hash = "sha256-MobeeelKkU5KFIFP/+Ny0ktzTnhKzX+fpzTuODrfjG0="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
-3
pkgs/development/tools/continuous-integration/buildbot/master.nix
··· 120 120 substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)" 121 121 ''; 122 122 123 - # Silence the depreciation warning from SqlAlchemy 124 - SQLALCHEMY_SILENCE_UBER_WARNING = 1; 125 - 126 123 # TimeoutErrors on slow machines -> aarch64 127 124 doCheck = !stdenv.isAarch64; 128 125
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.18.8"; 5 + version = "0.18.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - hash = "sha256-yFMPUvRh+sP45qGf65QXmrqy2mBlGZsSizeeV53DvP0="; 11 + hash = "sha256-sNVRn80IKG14OVaBGy58f+WXCMwRCZC4hAh+sN3ulR4="; 12 12 }; 13 13 14 14 vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
+3 -3
pkgs/development/tools/language-servers/gopls/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gopls"; 5 - version = "0.12.2"; 5 + version = "0.12.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golang"; 9 9 repo = "tools"; 10 10 rev = "gopls/v${version}"; 11 - sha256 = "sha256-mbJ9CzJxhAxYByfNpNux/zOWBGaiH4fvIRIh+BMprMk="; 11 + sha256 = "sha256-OieIbWgc5l7HS6otkRxsKYQmNIjPbADQ+C3A6qJr2h0="; 12 12 }; 13 13 14 14 modRoot = "gopls"; 15 - vendorSha256 = "sha256-Wx0tXrw3Y3Of3aZNYiD9EVYKFpqA3kqe5tFqppoe0A0="; 15 + vendorSha256 = "sha256-0Svz0VFmNW/f8Po+DpIQi0bJB1ICLcSJM1sG/Nju+ZY="; 16 16 17 17 doCheck = false; 18 18
+4 -4
pkgs/development/tools/rust/cargo-guppy/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "cargo-guppy"; 12 - version = "unstable-2023-06-19"; 12 + version = "unstable-2023-06-26"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "guppy-rs"; 16 16 repo = "guppy"; 17 - rev = "23b1c804cb4a6d9d38d093ca3400e90805d4c36c"; 18 - sha256 = "sha256-cKnu28L8tjndjtHuClLIpiwTzf6YoN37vw1sE7xrNzQ="; 17 + rev = "c05b95997a127cebef76d3b238e0341086e59e32"; 18 + sha256 = "sha256-CQ0bpc5pmPMQMQ+8mcrUwo19zqyfkk5pE/lWRr9azXs="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-fCIBv8FOUBPzf7I7CdVBDvbHVyuNQRURxNQ7B7cgoKE="; 21 + cargoSha256 = "sha256-OHtg3za8EyQVYQ6XQzLK7UgvGSl8ObfeKURFL6vBDnE="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
+3 -3
pkgs/development/tools/rust/cargo-hakari/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-hakari"; 5 - version = "0.9.25"; 5 + version = "0.9.26"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "guppy-rs"; 9 9 repo = "guppy"; 10 10 rev = "cargo-hakari-${version}"; 11 - sha256 = "sha256-cKnu28L8tjndjtHuClLIpiwTzf6YoN37vw1sE7xrNzQ="; 11 + sha256 = "sha256-CQ0bpc5pmPMQMQ+8mcrUwo19zqyfkk5pE/lWRr9azXs="; 12 12 }; 13 13 14 - cargoHash = "sha256-PoTwS9oS8Nmkdp3ZvdZRdk028SIx6D7kfsiRksyTpKo="; 14 + cargoHash = "sha256-F6+GRn3l849vRVKE1KhLMnxwR5NWu1b78xTxrHi817A="; 15 15 16 16 cargoBuildFlags = [ "-p" "cargo-hakari" ]; 17 17 cargoTestFlags = [ "-p" "cargo-hakari" ];
+3 -3
pkgs/development/tools/rust/cargo-nextest/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-nextest"; 5 - version = "0.9.53"; 5 + version = "0.9.54"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nextest-rs"; 9 9 repo = "nextest"; 10 10 rev = "cargo-nextest-${version}"; 11 - hash = "sha256-oDkPURyVLOXSnRReCEkXubj0nNeMvHNH/WqG+Wp54ek="; 11 + hash = "sha256-HkDGW91XDoYMfknPg6td51KTYniCfGtGQd3dkzumRpo="; 12 12 }; 13 13 14 - cargoHash = "sha256-iXZy4pPYnf3A3mPg5Os00I//QJha68agvwhLU5vf320="; 14 + cargoHash = "sha256-McL5G/PtdOou17hWLiNTSJEjTh4YpT1GUPjTMAVNxQA="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 17
+3 -3
pkgs/development/tools/typos/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "typos"; 5 - version = "1.15.5"; 5 + version = "1.15.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "crate-ci"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-5QrUB7p78HmwTUagYKNbFxndUKdeGd51gpqIO1O/8H4="; 11 + hash = "sha256-J78EJi2PXa3a83gP05b+ufDyq+BT9e1h7E/QiYs5mls="; 12 12 }; 13 13 14 - cargoHash = "sha256-ZNWG3eKnT2LFywIQO1iLIhaUKrINdwbCsSbC55wFrF4="; 14 + cargoHash = "sha256-9WUzWWwZHC9OPw18Xi3krkIfNH/gdB6VPhrL80RLCvk="; 15 15 16 16 meta = with lib; { 17 17 description = "Source code spell checker";
+9 -3
pkgs/development/tools/unityhub/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "unityhub"; 13 - version = "3.4.2"; 13 + version = "3.5.0"; 14 14 15 15 src = fetchurl { 16 16 url = "https://hub-dist.unity3d.com/artifactory/hub-debian-prod-local/pool/main/u/unity/unityhub_amd64/unityhub-amd64-${version}.deb"; 17 - sha256 = "sha256-I1qtrD94IpMut0a6JUHErHaksoZ+z8/dDG8U68Y5zJE="; 17 + sha256 = "sha256-d5TUUhGqchkrCRqJWHEewurjsHxbfZ+5hv9w9Yv2EQ4="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ ··· 80 80 icu 81 81 libpulseaudio 82 82 83 - # Editor dependencies 83 + # Unity Editor dependencies 84 84 libglvnd # provides ligbl 85 85 xorg.libX11 86 86 xorg.libXcursor ··· 90 90 zlib 91 91 clang 92 92 git # for git-based packages in unity package manager 93 + 94 + # Unity Editor 2019 specific dependencies 95 + xorg.libXi 96 + xorg.libXrender 97 + gnome2.GConf 98 + libcap 93 99 ] ++ extraLibs pkgs; 94 100 }; 95 101
+8 -20
pkgs/development/tools/wasm-pack/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , rustPlatform 4 - , pkg-config 5 - , libressl 6 - , curl 7 - , Security 5 + , darwin 8 6 }: 9 7 10 8 rustPlatform.buildRustPackage rec { 11 9 pname = "wasm-pack"; 12 - version = "0.11.1"; 10 + version = "0.12.0"; 13 11 14 12 src = fetchFromGitHub { 15 13 owner = "rustwasm"; 16 14 repo = "wasm-pack"; 17 - rev = "v${version}"; 18 - sha256 = "sha256-oIMS0kln+HCW9kFfLU+Vi0/4EYKYzzlA1BQHZNQkJMI="; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-Sfcf/Dko2lAfkfYdeanLAqhbUgeKtGBxx4timZi2kCk="; 19 17 }; 20 18 21 - cargoHash = "sha256-l6zn714DMQ+frU9Mppz4LuGY6Zf9qmxZ9MuwIvYvQMU="; 22 - 23 - nativeBuildInputs = [ pkg-config ]; 24 - 25 - buildInputs = [ 26 - # LibreSSL works around segfault issues caused by OpenSSL being unable to 27 - # gracefully exit while doing work. 28 - # See: https://github.com/rustwasm/wasm-pack/issues/650 29 - libressl 30 - ] ++ lib.optionals stdenv.isDarwin [ curl Security ]; 19 + cargoHash = "sha256-bl1KDFNvpNtkbKqiBRbmQLo1/oqLl7u7gNHLhhm8ETI="; 31 20 32 - # Needed to get openssl-sys to use pkg-config. 33 - OPENSSL_NO_VENDOR = 1; 21 + buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; 34 22 35 23 # Most tests rely on external resources and build artifacts. 36 24 # Disabling check here to work with build sandboxing.
+3 -3
pkgs/games/aaaaxy/default.nix
··· 19 19 20 20 buildGoModule rec { 21 21 pname = "aaaaxy"; 22 - version = "1.4.8"; 22 + version = "1.4.18"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "divVerent"; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - hash = "sha256-WiU4pTIsgwkotKLvqTL/P1CZdW20y6VQbBjoPyMCd4E="; 28 + hash = "sha256-g2xUBh0zRB+9awYEr15ay0k+EyAiWmGG5UfZatE24/8="; 29 29 fetchSubmodules = true; 30 30 }; 31 31 32 - vendorHash = "sha256-On2J/9qnUGTysCWKRoU79mE1bFz275RWjJSfHqjsAoI="; 32 + vendorHash = "sha256-9SeNXOl1wEcG/CtNuuYQ8Y5XEw2GYAIQ2lXk5lgXsN8="; 33 33 34 34 buildInputs = [ 35 35 alsa-lib
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 3 3 let 4 4 # These names are how they are designated in https://xanmod.org. 5 5 ltsVariant = { 6 - version = "6.1.31"; 7 - hash = "sha256-quYsp6h7IV6gUT0e55FeBlS8rH9OGrqdbM1XSIYNRV4="; 6 + version = "6.1.35"; 7 + hash = "sha256-CfrM2CNaGUTfkVteudL8xnAuCdZJxD5pUEC1YW9LiuU="; 8 8 variant = "lts"; 9 9 }; 10 10 11 11 mainVariant = { 12 - version = "6.3.5"; 13 - hash = "sha256-2+8WDj1VdmIdC0DjmKyY/fMi5zoiXDAWy7EAmkImvXk="; 12 + version = "6.3.9"; 13 + hash = "sha256-t1fKPZ+giANPmhM4zGoGtYWJF6rDnbpJaoHILl3nyRI="; 14 14 variant = "main"; 15 15 }; 16 16
+2 -2
pkgs/os-specific/linux/sssd/default.nix
··· 13 13 in 14 14 stdenv.mkDerivation rec { 15 15 pname = "sssd"; 16 - version = "2.9.0"; 16 + version = "2.9.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "SSSD"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-H9Snh2RzbnjGPqvC9fJHeZvAkGX/O/vmVsl143yb194="; 22 + sha256 = "sha256-OafSo28MN92py33foE8oMkPUmV9WUUOkKWJgm0i7MJU="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -8
pkgs/servers/dns/knot-dns/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "knot-dns"; 10 - version = "3.2.7"; 10 + version = "3.2.8"; 11 11 12 12 src = fetchurl { 13 13 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 - sha256 = "d3b7872ac8aa80f7f54ddb1bb3b1e2f90ec55f7270a2c4a9338eab42b7d2767b"; 14 + sha256 = "ef419a428f327def77780bc90eda763b51e6121fe548543da84b9eb96a261a6e"; 15 15 }; 16 16 17 17 outputs = [ "bin" "out" "dev" ]; ··· 28 28 ./dont-create-run-time-dirs.patch 29 29 ./runtime-deps.patch 30 30 ]; 31 - 32 - # Upstream mistake in 3.2.7: too strict constraint. 33 - postPatch = '' 34 - substituteInPlace configure.ac \ 35 - --replace 'libngtcp2 = 0.13.0' 'libngtcp2 = 0.13.1' 36 - ''; 37 31 38 32 nativeBuildInputs = [ pkg-config autoreconfHook ]; 39 33 buildInputs = [
+1
pkgs/servers/monitoring/cockpit/default.nix
··· 149 149 "--enable-prefix-only=yes" 150 150 "--disable-pcp" # TODO: figure out how to package its dependency 151 151 "--with-default-session-path=/run/wrappers/bin:/run/current-system/sw/bin" 152 + "--with-admin-group=root" # TODO: really? Maybe "wheel"? 152 153 ]; 153 154 154 155 enableParallelBuilding = true;
+61
pkgs/servers/scaphandre/default.nix
··· 1 + { stdenv 2 + , lib 3 + , rustPlatform 4 + , fetchFromGitHub 5 + , pkg-config 6 + , openssl 7 + , powercap 8 + , runCommand 9 + , dieHook 10 + , nixosTests 11 + }: 12 + 13 + rustPlatform.buildRustPackage rec { 14 + pname = "scaphandre"; 15 + version = "0.5.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "hubblo-org"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + hash = "sha256-cXwgPYTgom4KrL/PH53Fk6ChtALuMYyJ/oTrUKHCrzE="; 22 + }; 23 + 24 + cargoSha256 = "sha256-Vdkq9ShbHWepvIgHPjhKY+LmhjS+Pl84QelgEpen7Qs="; 25 + 26 + nativeBuildInputs = [ pkg-config ]; 27 + buildInputs = [ openssl ]; 28 + 29 + checkPhase = '' 30 + runHook preCheck 31 + 32 + # Work around to pass test due to non existing path 33 + # https://github.com/hubblo-org/scaphandre/blob/v0.5.0/src/sensors/powercap_rapl.rs#L29 34 + export SCAPHANDRE_POWERCAP_PATH="$(mktemp -d)/scaphandre" 35 + 36 + mkdir -p "$SCAPHANDRE_POWERCAP_PATH" 37 + 38 + runHook postCheck 39 + ''; 40 + 41 + passthru.tests = { 42 + stdout = self: runCommand "${pname}-test" { 43 + buildInputs = [ 44 + self 45 + dieHook 46 + ]; 47 + } '' 48 + ${self}/bin/scaphandre stdout -t 4 > $out || die "Scaphandre failed to measure consumption" 49 + [ -s $out ] 50 + ''; 51 + vm = nixosTests.scaphandre; 52 + }; 53 + 54 + meta = with lib; { 55 + description = "Electrical power consumption metrology agent"; 56 + homepage = "https://github.com/hubblo-org/scaphandre"; 57 + license = licenses.asl20; 58 + platforms = platforms.linux; 59 + maintainers = with maintainers; [ gaelreyrol ]; 60 + }; 61 + }
+2 -2
pkgs/servers/snac2/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "snac2"; 13 - version = "2.31"; 13 + version = "2.35"; 14 14 15 15 src = fetchFromGitea { 16 16 domain = "codeberg.org"; 17 17 owner = "grunfink"; 18 18 repo = pname; 19 19 rev = version; 20 - hash = "sha256-zkeoj+l82aP3/rXn7JuNS4OvAGnHaVRz+xXxPEPMEs8="; 20 + hash = "sha256-V9Q9rjinFDFCi2snQ27R0Y9KFrYD/HLElnT8KV/3bP4="; 21 21 }; 22 22 23 23 buildInputs = [ curl openssl ];
+8 -5
pkgs/servers/sql/postgresql/ext/pgroonga.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, postgresql, msgpack, groonga }: 1 + { lib, stdenv, fetchurl, pkg-config, postgresql, msgpack-c, groonga }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgroonga"; 5 - version = "3.0.7"; 5 + version = "3.0.8"; 6 6 7 7 src = fetchurl { 8 8 url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz"; 9 - hash = "sha256-iF/zh4zDDpAw5fxW1WG8i2bfPt4VYsnYArwOoE/lwgM="; 9 + hash = "sha256-2/dInLG8isiSJHJgNyxgbUwMd/mtcUJxcTvSnVpBZ9M="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; 13 - buildInputs = [ postgresql msgpack groonga ]; 13 + buildInputs = [ postgresql msgpack-c groonga ]; 14 14 15 - makeFlags = [ "HAVE_MSGPACK=1" ]; 15 + makeFlags = [ 16 + "HAVE_MSGPACK=1" 17 + "MSGPACK_PACKAGE_NAME=msgpack-c" 18 + ]; 16 19 17 20 installPhase = '' 18 21 install -D pgroonga.so -t $out/lib/
+3 -2
pkgs/servers/sql/proxysql/default.nix
··· 33 33 34 34 stdenv.mkDerivation rec { 35 35 pname = "proxysql"; 36 - version = "2.5.2"; 36 + version = "2.5.3"; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "sysown"; 40 40 repo = pname; 41 41 rev = version; 42 - hash = "sha256-KPTvFbEreWQBAs5ofcdVzlVqL0t5pM/mMLv4+E4lJ5M="; 42 + hash = "sha256-D/AUjndpu4QJmlgLBXRqMj9gsHYitEYhHVMQzoab1ik="; 43 43 }; 44 44 45 45 patches = [ ··· 171 171 description = "High-performance MySQL proxy"; 172 172 license = with licenses; [ gpl3Only ]; 173 173 maintainers = with maintainers; [ ajs124 ]; 174 + platforms = platforms.unix; 174 175 }; 175 176 }
+22 -22
pkgs/servers/sql/proxysql/makefiles.patch
··· 1 1 diff --git a/Makefile b/Makefile 2 - index df7ed196..3a3b393d 100644 2 + index c053ab64..03f38a21 100644 3 3 --- a/Makefile 4 4 +++ b/Makefile 5 - @@ -57,11 +57,7 @@ endif 5 + @@ -59,11 +59,7 @@ endif 6 6 7 7 export MAKEOPT=-j ${NPROCS} 8 8 ··· 15 15 USERCHECK := $(shell getent passwd proxysql) 16 16 GROUPCHECK := $(shell getent group proxysql) 17 17 18 - @@ -784,16 +780,10 @@ cleanbuild: 18 + @@ -868,16 +864,10 @@ cleanbuild: 19 19 20 20 .PHONY: install 21 21 install: src/proxysql ··· 36 36 install -m 0755 etc/init.d/proxysql /etc/init.d 37 37 ifeq ($(DISTRO),"CentOS Linux") 38 38 diff --git a/deps/Makefile b/deps/Makefile 39 - index 47c0f3c3..80d33d11 100644 39 + index dbe495c0..9c50bab8 100644 40 40 --- a/deps/Makefile 41 41 +++ b/deps/Makefile 42 - @@ -66,10 +66,7 @@ endif 42 + @@ -69,10 +69,7 @@ default: $(tmpdefault) 43 43 44 44 45 45 libinjection/libinjection/src/libinjection.a: ··· 50 50 cd libinjection/libinjection && patch -p1 < ../libinjection_sqli.c.patch 51 51 endif 52 52 ifeq ($(UNAME_S),Darwin) 53 - @@ -83,8 +80,6 @@ libinjection: libinjection/libinjection/src/libinjection.a 54 - 53 + @@ -91,8 +88,6 @@ $(error Incompatible OpenSSL version: struct bio_st mismatch!) 54 + endif 55 55 56 56 libssl/openssl/libssl.a: 57 57 - cd libssl && rm -rf openssl-openssl-*/ openssl-3*/ || true ··· 59 59 # cd libssl/openssl && patch crypto/ec/curve448/curve448.c < ../curve448.c-multiplication-overflow.patch 60 60 # cd libssl/openssl && patch crypto/asn1/a_time.c < ../a_time.c-multiplication-overflow.patch 61 61 cd libssl/openssl && ./config no-ssl3 no-tests 62 - @@ -103,8 +98,6 @@ ifeq ($(MIN_VERSION),$(lastword $(SORTED_VERSIONS))) 62 + @@ -112,8 +107,6 @@ ifeq ($(MIN_VERSION),$(lastword $(SORTED_VERSIONS))) 63 63 endif 64 64 65 65 libhttpserver/libhttpserver/build/src/.libs/libhttpserver.a: libmicrohttpd/libmicrohttpd/src/microhttpd/.libs/libmicrohttpd.a re2/re2/obj/libre2.a ··· 68 68 #ifeq ($(REQUIRE_PATCH), true) 69 69 cd libhttpserver/libhttpserver && patch -p1 < ../noexcept.patch 70 70 cd libhttpserver/libhttpserver && patch -p1 < ../re2_regex.patch 71 - @@ -122,8 +115,6 @@ libhttpserver: libhttpserver/libhttpserver/build/src/.libs/libhttpserver.a 71 + @@ -131,8 +124,6 @@ libhttpserver: libhttpserver/libhttpserver/build/src/.libs/libhttpserver.a 72 72 73 73 74 74 libev/libev/.libs/libev.a: ··· 77 77 cd libev/libev && patch ev.c < ../ev.c-multiplication-overflow.patch 78 78 cd libev/libev && ./configure 79 79 cd libev/libev && CC=${CC} CXX=${CXX} ${MAKE} 80 - @@ -132,8 +123,6 @@ ev: libev/libev/.libs/libev.a 81 - 80 + @@ -148,8 +139,6 @@ coredumper/coredumper/src/libcoredumper.a: 81 + coredumper: coredumper/coredumper/src/libcoredumper.a 82 82 83 83 curl/curl/lib/.libs/libcurl.a: libssl/openssl/libssl.a 84 84 - cd curl && rm -rf curl-*/ || true 85 85 - cd curl && tar -zxf curl-*.tar.gz 86 86 # cd curl/curl && ./configure --disable-debug --disable-ftp --disable-ldap --disable-ldaps --disable-rtsp --disable-proxy --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-manual --disable-ipv6 --disable-sspi --disable-crypto-auth --disable-ntlm-wb --disable-tls-srp --without-nghttp2 --without-libidn2 --without-libssh2 --without-brotli --with-ssl=$(shell pwd)/../../libssl/openssl/ && CC=${CC} CXX=${CXX} ${MAKE} 87 - # cd curl/curl && patch configure < ../configure.patch 88 87 cd curl/curl && autoreconf -fi 89 - @@ -143,16 +132,6 @@ curl: curl/curl/lib/.libs/libcurl.a 88 + ifeq ($(UNAME_S),Darwin) 89 + @@ -161,16 +150,6 @@ curl: curl/curl/lib/.libs/libcurl.a 90 90 91 91 92 92 libmicrohttpd/libmicrohttpd/src/microhttpd/.libs/libmicrohttpd.a: ··· 100 100 - cd libmicrohttpd && tar -zxf libmicrohttpd-0.9.75.tar.gz 101 101 -# cd libmicrohttpd/libmicrohttpd && patch src/microhttpd/connection.c < ../connection.c-snprintf-overflow.patch 102 102 -endif 103 - ifeq ($(UNAME_S),Darwin) 104 - cd libmicrohttpd/libmicrohttpd && patch src/microhttpd/mhd_sockets.c < ../mhd_sockets.c-issue-5977.patch 105 - endif 106 - @@ -171,8 +150,6 @@ cityhash: cityhash/cityhash/src/.libs/libcityhash.a 103 + cd libmicrohttpd/libmicrohttpd && ./configure --enable-https && CC=${CC} CXX=${CXX} ${MAKE} 104 + 105 + microhttpd: libmicrohttpd/libmicrohttpd/src/microhttpd/.libs/libmicrohttpd.a 106 + @@ -186,8 +165,6 @@ cityhash: cityhash/cityhash/src/.libs/libcityhash.a 107 107 108 108 109 109 lz4/lz4/lib/liblz4.a: ··· 112 112 cd lz4/lz4 && CC=${CC} CXX=${CXX} ${MAKE} 113 113 114 114 lz4: lz4/lz4/lib/liblz4.a 115 - @@ -197,8 +174,6 @@ clickhouse-cpp: clickhouse-cpp/clickhouse-cpp/clickhouse/libclickhouse-cpp-lib-s 115 + @@ -213,8 +190,6 @@ clickhouse-cpp: clickhouse-cpp/clickhouse-cpp/clickhouse/libclickhouse-cpp-lib-s 116 116 117 117 118 118 libdaemon/libdaemon/libdaemon/.libs/libdaemon.a: ··· 121 121 cd libdaemon/libdaemon && cp ../config.guess . && chmod +x config.guess && cp ../config.sub . && chmod +x config.sub && ./configure --disable-examples 122 122 cd libdaemon/libdaemon && CC=${CC} CXX=${CXX} ${MAKE} 123 123 124 - @@ -282,8 +257,6 @@ sqlite3: sqlite3/sqlite3/sqlite3.o 124 + @@ -302,8 +277,6 @@ sqlite3: sqlite3/sqlite3/sqlite3.o 125 125 126 126 127 127 libconfig/libconfig/lib/.libs/libconfig++.a: ··· 130 130 cd libconfig/libconfig && ./configure --disable-examples 131 131 cd libconfig/libconfig && CC=${CC} CXX=${CXX} ${MAKE} 132 132 133 - @@ -291,9 +264,6 @@ libconfig: libconfig/libconfig/lib/.libs/libconfig++.a 133 + @@ -311,9 +284,6 @@ libconfig: libconfig/libconfig/lib/.libs/libconfig++.a 134 134 135 135 136 136 prometheus-cpp/prometheus-cpp/lib/libprometheus-cpp-core.a: ··· 140 140 cd prometheus-cpp/prometheus-cpp && patch -p1 < ../serial_exposer.patch 141 141 cd prometheus-cpp/prometheus-cpp && patch -p1 < ../registry_counters_reset.patch 142 142 cd prometheus-cpp/prometheus-cpp && patch -p1 < ../fix_old_distros.patch 143 - @@ -304,10 +274,6 @@ prometheus-cpp: prometheus-cpp/prometheus-cpp/lib/libprometheus-cpp-core.a 143 + @@ -324,10 +294,6 @@ prometheus-cpp: prometheus-cpp/prometheus-cpp/lib/libprometheus-cpp-core.a 144 144 145 145 146 146 re2/re2/obj/libre2.a: ··· 151 151 cd re2/re2 && patch re2/onepass.cc < ../onepass.cc-multiplication-overflow.patch 152 152 ifeq ($(UNAME_S),Darwin) 153 153 cd re2/re2 && sed -i '' -e 's/-O3 -g/-O3 -g -std=c++11 -fPIC -DMEMORY_SANITIZER -DRE2_ON_VALGRIND /' Makefile 154 - @@ -322,8 +288,6 @@ re2: re2/re2/obj/libre2.a 154 + @@ -342,8 +308,6 @@ re2: re2/re2/obj/libre2.a 155 155 156 156 157 157 pcre/pcre/.libs/libpcre.a:
+3 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 5 5 , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "2023-06-20"; 8 + version = "2023-06-26"; 9 9 pname = "oh-my-zsh"; 10 - rev = "8a6fc5c16d49368dc8f9ddd965a9e25ef652e129"; 10 + rev = "d5f1f50ad2d62363785464d5b6eef1a009243d7a"; 11 11 12 12 src = fetchFromGitHub { 13 13 inherit rev; 14 14 owner = "ohmyzsh"; 15 15 repo = "ohmyzsh"; 16 - sha256 = "sha256-/t4BUntSWNES8c+ePFOPniqYp2edlgc4IWW4RKfDZsU="; 16 + sha256 = "sha256-QN4UTsug7pA0VjA18n/Yek77lwooVaYHZDSCr579iAk="; 17 17 }; 18 18 19 19 strictDeps = true;
+2 -2
pkgs/tools/admin/lego/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "lego"; 5 - version = "4.12.1"; 5 + version = "4.12.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "go-acme"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-NmJQkNdqki1La6yt7cFY0sAEz9Ksrx3hWmWOTUMST+g="; 11 + sha256 = "sha256-H6JGeLE/fzbfo8/mn5hTKcr7XfvmjOojeXLxUKGzt4w="; 12 12 }; 13 13 14 14 vendorHash = "sha256-Pwtvv/qVX91yWx49IYdveVCySoVxekvHomfAzOdFj7w=";
+7 -1
pkgs/tools/audio/openai-whisper-cpp/default.nix
··· 6 6 , wget 7 7 , Accelerate 8 8 , CoreGraphics 9 + , CoreML 9 10 , CoreVideo 10 11 }: 11 12 ··· 28 29 29 30 nativeBuildInputs = [ makeWrapper ]; 30 31 31 - buildInputs = [ SDL2 ] ++ lib.optionals stdenv.isDarwin [ Accelerate CoreGraphics CoreVideo ]; 32 + buildInputs = [ SDL2 ] ++ lib.optionals stdenv.isDarwin [ Accelerate CoreGraphics CoreML CoreVideo ]; 33 + 34 + env = lib.optionalAttrs stdenv.isDarwin { 35 + WHISPER_COREML = "1"; 36 + WHISPER_COREML_ALLOW_FALLBACK = "1"; 37 + }; 32 38 33 39 makeFlags = [ "main" "stream" ]; 34 40
+3 -3
pkgs/tools/misc/fclones/gui.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "fclones-gui"; 15 - version = "0.1.2"; 15 + version = "0.1.3"; 16 16 17 17 src = fetchCrate { 18 18 inherit pname version; 19 - hash = "sha256-ge2l414kYHK3y4V837GTQ5sSxVRlU8ZYyGdBj4+vUL8="; 19 + hash = "sha256-SQJ6CZlvu4V9Rs+rhH4jMf0AVWs71KvRUnUxGPlgj80="; 20 20 }; 21 21 22 - cargoHash = "sha256-rDAUA75KCWlhf13bCucV5w9WAJ+Uw+s8sUCCeWBYJeA="; 22 + cargoHash = "sha256-8WLYbEbPrR8c0y+Uaxo6YGiFRt7FLHZM+1O/UZq0c7g="; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config
+6 -10
pkgs/tools/misc/tmuxp/default.nix
··· 1 1 { lib, python3Packages, fetchPypi, installShellFiles }: 2 2 3 - let 4 - pypkgs = python3Packages; 5 - 6 - in 7 - pypkgs.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 8 4 pname = "tmuxp"; 9 5 version = "1.28.1"; 10 6 ··· 19 15 format = "pyproject"; 20 16 21 17 nativeBuildInputs = [ 22 - pypkgs.poetry-core 18 + python3Packages.poetry-core 19 + python3Packages.shtab 23 20 installShellFiles 24 21 ]; 25 22 26 - propagatedBuildInputs = with pypkgs; [ 23 + propagatedBuildInputs = with python3Packages; [ 27 24 click 28 25 colorama 29 26 kaptan ··· 32 29 33 30 postInstall = '' 34 31 installShellCompletion --cmd tmuxp \ 35 - --bash <(_TMUXP_COMPLETE=bash_source $out/bin/tmuxp) \ 36 - --fish <(_TMUXP_COMPLETE=fish_source $out/bin/tmuxp) \ 37 - --zsh <(_TMUXP_COMPLETE=zsh_source $out/bin/tmuxp) 32 + --bash <(shtab --shell=bash -u tmuxp.cli.create_parser) \ 33 + --zsh <(shtab --shell=zsh -u tmuxp.cli.create_parser) 38 34 ''; 39 35 40 36 meta = with lib; {
+4 -4
pkgs/tools/security/bitwarden/default.nix
··· 26 26 buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_18; }; 27 27 electron = electron_24; 28 28 29 - version = "2023.5.0"; 29 + version = "2023.5.1"; 30 30 src = applyPatches { 31 31 src = fetchFromGitHub { 32 32 owner = "bitwarden"; 33 33 repo = "clients"; 34 34 rev = "desktop-v${version}"; 35 - sha256 = "sha256-ELKpGSY4ZbgSk4vJnTiB+IOa8RQU8Ahy3A1mYsKtthU="; 35 + sha256 = "sha256-dD9C6+GRjCMcfBse2Qq0ot8bVGyhjnd8VvpdNlrjRs4="; 36 36 }; 37 37 38 38 patches = [ ]; ··· 42 42 pname = "bitwarden-desktop-native"; 43 43 inherit src version; 44 44 sourceRoot = "source-patched/apps/desktop/desktop_native"; 45 - cargoSha256 = "sha256-SeK8Nbgenof9vXI2v7tJ5oHiX60kBoR+UNOSJTRHdzk="; 45 + cargoSha256 = "sha256-8U4E5q2OSZGXy2ZRn0y4Skm5Y+FiOJVU1mtzObO9UqY="; 46 46 47 47 nativeBuildInputs = [ 48 48 pkg-config ··· 95 95 npmBuildFlags = [ 96 96 "--workspace apps/desktop" 97 97 ]; 98 - npmDepsHash = "sha256-G8DEYPjEP3L4s0pr5n2ZTj8kkT0E7Po1BKhZ2hUdJuY="; 98 + npmDepsHash = "sha256-USXWA/7wuu3i9/+/pMXREgcB+4yOpQGG5RGuUyJvuQw="; 99 99 100 100 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 101 101
+2 -2
pkgs/tools/security/eid-mw/default.nix
··· 21 21 stdenv.mkDerivation rec { 22 22 pname = "eid-mw"; 23 23 # NOTE: Don't just blindly update to the latest version/tag. Releases are always for a specific OS. 24 - version = "5.1.10"; 24 + version = "5.1.11"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "Fedict"; 28 28 repo = "eid-mw"; 29 29 rev = "v${version}"; 30 - hash = "sha256-2Xru/s7KawZlIxON5nO679P+L3okofE054WDfRsE3ZI="; 30 + hash = "sha256-70UjfkH+rx1Q+2XEuAByoDsP5ZelyuGXaHdkjTe/sCY="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config makeWrapper ];
+1 -1
pkgs/tools/security/gnupg/22.nix
··· 80 80 81 81 enableParallelBuilding = true; 82 82 83 - passthru.tests.connman = lib.nixosTests.gnupg; 83 + passthru.tests = lib.nixosTests.gnupg; 84 84 85 85 meta = with lib; { 86 86 homepage = "https://gnupg.org";
+2 -1
pkgs/tools/security/gnupg/24.nix
··· 6 6 , withPcsc ? !enableMinimal, pcsclite 7 7 , guiSupport ? stdenv.isDarwin, pinentry 8 8 , withTpm2Tss ? !stdenv.isDarwin && !enableMinimal, tpm2-tss 9 + , nixosTests 9 10 }: 10 11 11 12 assert guiSupport -> enableMinimal == false; ··· 85 86 86 87 enableParallelBuilding = true; 87 88 88 - passthru.tests.connman = lib.nixosTests.gnupg; 89 + passthru.tests = nixosTests.gnupg; 89 90 90 91 meta = with lib; { 91 92 homepage = "https://gnupg.org";
+3 -3
pkgs/tools/security/saml2aws/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "saml2aws"; 5 - version = "2.36.8"; 5 + version = "2.36.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Versent"; 9 9 repo = "saml2aws"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-eBgyjiospcBzUCMSMRgL3V5YyybD6aqt7gQZ7VfrmZY="; 11 + sha256 = "sha256-eV922fUtNAHGFxuDwTKoakSzf1lMzVg+vOeaBbOP4V0="; 12 12 }; 13 13 14 - vendorHash = "sha256-wepAJ92IZbUZHO0HiX+JOtQ/WKydCImzHytXRUhjhAU="; 14 + vendorHash = "sha256-20IggKOPS+Pu4tQIdYU5SXQhu2FrW0MdCdB9dvmqs7E="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ AppKit ]; 17 17
+44
pkgs/tools/video/yaydl/default.nix
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + , pkg-config 6 + , makeWrapper 7 + , openssl 8 + , ffmpeg 9 + , Security 10 + }: 11 + 12 + rustPlatform.buildRustPackage rec { 13 + pname = "yaydl"; 14 + version = "0.13.0"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "dertuxmalwieder"; 18 + repo = pname; 19 + rev = "release-${version}"; 20 + sha256 = "sha256-JwyWWqbUNZyH6gymeScb9tMZoPvn/Igz9iW2pp0XvEI="; 21 + }; 22 + 23 + cargoSha256 = "sha256-jmqO0UvU6s+E5r6VFFjOvSe8oiLiTG5rPNHzoHVftWo="; 24 + 25 + nativeBuildInputs = [ 26 + pkg-config 27 + makeWrapper 28 + ]; 29 + 30 + buildInputs = [ openssl ] 31 + ++ lib.optional stdenv.isDarwin Security; 32 + 33 + postInstall = '' 34 + wrapProgram $out/bin/yaydl \ 35 + --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} 36 + ''; 37 + 38 + meta = with lib; { 39 + homepage = "https://code.rosaelefanten.org/yaydl"; 40 + description = "Yet another youtube down loader"; 41 + license = licenses.cddl; 42 + maintainers = with maintainers; [ earthengine ]; 43 + }; 44 + }
+11 -6
pkgs/top-level/all-packages.nix
··· 2105 2105 util-linux = if stdenv.isLinux then util-linuxMinimal else util-linux; 2106 2106 }; 2107 2107 2108 + git-relevant-history = callPackage ../applications/version-management/git-relevant-history { }; 2109 + 2108 2110 git-remote-codecommit = python3Packages.callPackage ../applications/version-management/git-remote-codecommit { }; 2109 2111 2110 2112 gitRepo = git-repo; ··· 14432 14434 14433 14435 yj = callPackage ../development/tools/yj { }; 14434 14436 14437 + yaydl = callPackage ../tools/video/yaydl { 14438 + inherit (darwin.apple_sdk.frameworks) Security; 14439 + }; 14440 + 14435 14441 zarchive = callPackage ../tools/archivers/zarchive { }; 14436 14442 14437 14443 zprint = callPackage ../development/tools/zprint { }; ··· 19168 19174 19169 19175 openai-whisper = with python3.pkgs; toPythonApplication openai-whisper; 19170 19176 19171 - openai-whisper-cpp = callPackage ../tools/audio/openai-whisper-cpp { 19172 - inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo; 19177 + openai-whisper-cpp = darwin.apple_sdk_11_0.callPackage ../tools/audio/openai-whisper-cpp { 19178 + inherit (darwin.apple_sdk_11_0.frameworks) Accelerate CoreGraphics CoreML CoreVideo; 19173 19179 }; 19174 19180 19175 19181 opengrok = callPackage ../development/tools/misc/opengrok { }; ··· 26544 26550 sampler = callPackage ../applications/misc/sampler { }; 26545 26551 26546 26552 scalr-cli = callPackage ../tools/admin/scalr-cli { }; 26553 + 26554 + scaphandre = callPackage ../servers/scaphandre { }; 26547 26555 26548 26556 shairplay = callPackage ../servers/shairplay { avahi = avahi-compat; }; 26549 26557 ··· 40336 40344 40337 40345 yabasic = callPackage ../development/interpreters/yabasic { }; 40338 40346 40339 - wasm-pack = callPackage ../development/tools/wasm-pack { 40340 - inherit (darwin.apple_sdk.frameworks) Security; 40341 - libressl = libressl_3_6; 40342 - }; 40347 + wasm-pack = callPackage ../development/tools/wasm-pack { }; 40343 40348 40344 40349 wasynth = callPackage ../development/tools/wasynth { }; 40345 40350
+2
pkgs/top-level/python-packages.nix
··· 6123 6123 6124 6124 matplotlib-inline = callPackage ../development/python-modules/matplotlib-inline { }; 6125 6125 6126 + matplotx = callPackage ../development/python-modules/matplotx { }; 6127 + 6126 6128 matrix-api-async = callPackage ../development/python-modules/matrix-api-async { }; 6127 6129 6128 6130 matrix-client = callPackage ../development/python-modules/matrix-client { };