nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
9f19e512 b492c343

+3005 -6891
+16
maintainers/maintainer-list.nix
··· 262 262 githubId = 12578560; 263 263 name = "Quinn Bohner"; 264 264 }; 265 + _71rd = { 266 + name = "71rd"; 267 + github = "71rd"; 268 + githubId = 69214273; 269 + }; 265 270 _71zenith = { 266 271 email = "71zenith@proton.me"; 267 272 github = "71zenith"; ··· 16537 16532 githubId = 7249506; 16538 16533 name = "oida"; 16539 16534 }; 16535 + oidro = { 16536 + github = "oidro"; 16537 + githubId = 31112680; 16538 + name = "oidro"; 16539 + }; 16540 16540 ok-nick = { 16541 16541 email = "nick.libraries@gmail.com"; 16542 16542 github = "ok-nick"; ··· 17015 17005 github = "parth"; 17016 17006 githubId = 821972; 17017 17007 name = "Parth Mehrotra"; 17008 + }; 17009 + paschoal = { 17010 + email = "paschoal@gmail.com"; 17011 + github = "paschoal"; 17012 + githubId = 64602; 17013 + name = "Matheus Paschoal"; 17018 17014 }; 17019 17015 pashashocky = { 17020 17016 email = "pashashocky@gmail.com";
+6 -3
nixos/modules/programs/fish.nix
··· 33 33 ''; 34 34 35 35 babelfishTranslate = path: name: 36 - pkgs.runCommandLocal "${name}.fish" { 36 + pkgs.runCommand "${name}.fish" { 37 + preferLocalBuild = true; 37 38 nativeBuildInputs = [ pkgs.babelfish ]; 38 39 } "babelfish < ${path} > $out;"; 39 40 ··· 259 258 preferLocalBuild = true; 260 259 allowSubstitutes = false; 261 260 }; 262 - generateCompletions = package: pkgs.runCommandLocal 261 + generateCompletions = package: pkgs.runCommand 263 262 ( with lib.strings; let 264 263 storeLength = stringLength storeDir + 34; # Nix' StorePath::HashLen + 2 for the separating slash and dash 265 264 pathName = substring storeLength (stringLength package - storeLength) package; 266 265 in (package.name or pathName) + "_fish-completions") 267 - ( { inherit package; } // 266 + ( { inherit package; 267 + preferLocalBuild = true; 268 + } // 268 269 lib.optionalAttrs (package ? meta.priority) { meta.priority = package.meta.priority; }) 269 270 '' 270 271 mkdir -p $out
+3 -3
nixos/modules/security/wrappers/default.nix
··· 321 321 }; 322 322 323 323 ###### wrappers consistency checks 324 - system.checks = lib.singleton (pkgs.runCommandLocal 325 - "ensure-all-wrappers-paths-exist" { } 326 - '' 324 + system.checks = lib.singleton (pkgs.runCommand "ensure-all-wrappers-paths-exist" { 325 + preferLocalBuild = true; 326 + } '' 327 327 # make sure we produce output 328 328 mkdir -p $out 329 329
+11 -13
nixos/modules/services/cluster/k3s/default.nix
··· 462 462 ++ (lib.optional (cfg.role != "server" && cfg.charts != { }) 463 463 "k3s: Helm charts are only made available to the cluster on server nodes (role == server), they will be ignored by this node." 464 464 ) 465 - ++ (lib.optional (cfg.disableAgent && cfg.images != [ ]) 466 - "k3s: Images are only imported on nodes with an enabled agent, they will be ignored by this node" 465 + ++ (lib.optional ( 466 + cfg.disableAgent && cfg.images != [ ] 467 + ) "k3s: Images are only imported on nodes with an enabled agent, they will be ignored by this node") 468 + ++ (lib.optional ( 469 + cfg.role == "agent" && cfg.configPath == null && cfg.serverAddr == "" 470 + ) "k3s: ServerAddr or configPath (with 'server' key) should be set if role is 'agent'") 471 + ++ (lib.optional 472 + (cfg.role == "agent" && cfg.configPath == null && cfg.tokenFile == null && cfg.token == "") 473 + "k3s: Token or tokenFile or configPath (with 'token' or 'token-file' keys) should be set if role is 'agent'" 467 474 ); 468 475 469 476 assertions = [ 470 477 { 471 - assertion = cfg.role == "agent" -> (cfg.configPath != null || cfg.serverAddr != ""); 472 - message = "serverAddr or configPath (with 'server' key) should be set if role is 'agent'"; 473 - } 474 - { 475 - assertion = 476 - cfg.role == "agent" -> cfg.configPath != null || cfg.tokenFile != null || cfg.token != ""; 477 - message = "token or tokenFile or configPath (with 'token' or 'token-file' keys) should be set if role is 'agent'"; 478 - } 479 - { 480 478 assertion = cfg.role == "agent" -> !cfg.disableAgent; 481 - message = "disableAgent must be false if role is 'agent'"; 479 + message = "k3s: disableAgent must be false if role is 'agent'"; 482 480 } 483 481 { 484 482 assertion = cfg.role == "agent" -> !cfg.clusterInit; 485 - message = "clusterInit must be false if role is 'agent'"; 483 + message = "k3s: clusterInit must be false if role is 'agent'"; 486 484 } 487 485 ]; 488 486
+3 -1
nixos/modules/services/continuous-integration/buildkite-agents.nix
··· 9 9 ln --symbolic ${pkgs.writeShellApplication { inherit name text; }}/bin/${name} $out/${name} 10 10 ''; 11 11 in 12 - pkgs.runCommandLocal "buildkite-agent-hooks" { } '' 12 + pkgs.runCommand "buildkite-agent-hooks" { 13 + preferLocalBuild = true; 14 + } '' 13 15 mkdir $out 14 16 ${lib.concatStringsSep "\n" (lib.mapAttrsToList mkHookEntry hooks)} 15 17 '';
+3 -1
nixos/modules/services/games/archisteamfarm.nix
··· 228 228 229 229 preStart = 230 230 let 231 - createBotsScript = pkgs.runCommandLocal "ASF-bots" { } '' 231 + createBotsScript = pkgs.runCommand "ASF-bots" { 232 + preferLocalBuild = true; 233 + } '' 232 234 mkdir -p $out 233 235 # clean potential removed bots 234 236 rm -rf $out/*.json
+3 -1
nixos/modules/services/home-automation/home-assistant.nix
··· 43 43 # secrets or includes, by naively unquoting strings with leading bangs 44 44 # and at least one space-separated parameter. 45 45 # https://www.home-assistant.io/docs/configuration/secrets/ 46 - renderYAMLFile = fn: yaml: pkgs.runCommandLocal fn { } '' 46 + renderYAMLFile = fn: yaml: pkgs.runCommand fn { 47 + preferLocalBuilds = true; 48 + } '' 47 49 cp ${format.generate fn yaml} $out 48 50 sed -i -e "s/'\!\([a-z_]\+\) \(.*\)'/\!\1 \2/;s/^\!\!/\!/;" $out 49 51 '';
+20 -15
nixos/modules/services/misc/ananicy.nix
··· 114 114 config = lib.mkIf cfg.enable { 115 115 environment = { 116 116 systemPackages = [ finalPackage ]; 117 - etc."ananicy.d".source = pkgs.runCommandLocal "ananicyfiles" { } '' 118 - mkdir -p $out 119 - # ananicy-cpp does not include rules or settings on purpose 120 - if [[ -d "${cfg.rulesProvider}/etc/ananicy.d/00-default" ]]; then 121 - cp -r ${cfg.rulesProvider}/etc/ananicy.d/* $out 122 - else 123 - cp -r ${cfg.rulesProvider}/* $out 124 - fi 117 + etc."ananicy.d".source = 118 + pkgs.runCommand "ananicyfiles" 119 + { 120 + preferLocalBuild = true; 121 + } 122 + '' 123 + mkdir -p $out 124 + # ananicy-cpp does not include rules or settings on purpose 125 + if [[ -d "${cfg.rulesProvider}/etc/ananicy.d/00-default" ]]; then 126 + cp -r ${cfg.rulesProvider}/etc/ananicy.d/* $out 127 + else 128 + cp -r ${cfg.rulesProvider}/* $out 129 + fi 125 130 126 - # configured through .setings 127 - rm -f $out/ananicy.conf 128 - cp ${configFile} $out/ananicy.conf 129 - ${lib.optionalString (cfg.extraRules != [ ]) "cp ${extraRules} $out/nixRules.rules"} 130 - ${lib.optionalString (cfg.extraTypes != [ ]) "cp ${extraTypes} $out/nixTypes.types"} 131 - ${lib.optionalString (cfg.extraCgroups != [ ]) "cp ${extraCgroups} $out/nixCgroups.cgroups"} 132 - ''; 131 + # configured through .setings 132 + rm -f $out/ananicy.conf 133 + cp ${configFile} $out/ananicy.conf 134 + ${lib.optionalString (cfg.extraRules != [ ]) "cp ${extraRules} $out/nixRules.rules"} 135 + ${lib.optionalString (cfg.extraTypes != [ ]) "cp ${extraTypes} $out/nixTypes.types"} 136 + ${lib.optionalString (cfg.extraCgroups != [ ]) "cp ${extraCgroups} $out/nixCgroups.cgroups"} 137 + ''; 133 138 }; 134 139 135 140 # ananicy and ananicy-cpp have different default settings
+8 -9
nixos/modules/services/misc/forgejo.nix
··· 784 784 environment = { 785 785 USER = cfg.user; 786 786 HOME = cfg.stateDir; 787 - # `GITEA_` prefix until https://codeberg.org/forgejo/forgejo/issues/497 788 - # is resolved. 789 - GITEA_WORK_DIR = cfg.stateDir; 790 - GITEA_CUSTOM = cfg.customDir; 787 + FORGEJO_WORK_DIR = cfg.stateDir; 788 + FORGEJO_CUSTOM = cfg.customDir; 791 789 } // lib.listToAttrs (map (e: lib.nameValuePair e.env "%d/${e.env}") secrets); 792 790 }; 793 791 794 - services.openssh.settings.AcceptEnv = mkIf (!cfg.settings.START_SSH_SERVER or false) "GIT_PROTOCOL"; 792 + services.openssh.settings.AcceptEnv = mkIf ( 793 + !cfg.settings.server.START_SSH_SERVER or false 794 + ) "GIT_PROTOCOL"; 795 795 796 796 users.users = mkIf (cfg.user == "forgejo") { 797 797 forgejo = { ··· 814 814 environment = { 815 815 USER = cfg.user; 816 816 HOME = cfg.stateDir; 817 - # `GITEA_` prefix until https://codeberg.org/forgejo/forgejo/issues/497 818 - # is resolved. 819 - GITEA_WORK_DIR = cfg.stateDir; 820 - GITEA_CUSTOM = cfg.customDir; 817 + FORGEJO_WORK_DIR = cfg.stateDir; 818 + FORGEJO_CUSTOM = cfg.customDir; 821 819 }; 822 820 823 821 serviceConfig = { ··· 840 842 meta.maintainers = with lib.maintainers; [ 841 843 bendlas 842 844 emilylange 845 + pyrox0 843 846 ]; 844 847 }
+4 -3
nixos/modules/services/monitoring/apcupsd.nix
··· 60 60 ); 61 61 62 62 # Ensure the CLI uses our generated configFile 63 - wrappedBinaries = pkgs.runCommandLocal "apcupsd-wrapped-binaries" 64 - { nativeBuildInputs = [ pkgs.makeWrapper ]; } 65 - '' 63 + wrappedBinaries = pkgs.runCommand "apcupsd-wrapped-binaries" { 64 + preferLocalBuild = true; 65 + nativeBuildInputs = [ pkgs.makeWrapper ]; 66 + } '' 66 67 for p in "${lib.getBin pkgs.apcupsd}/bin/"*; do 67 68 bname=$(basename "$p") 68 69 makeWrapper "$p" "$out/bin/$bname" --add-flags "-f ${configFile}"
+4 -3
nixos/modules/services/monitoring/prometheus/default.nix
··· 29 29 # a wrapper that verifies that the configuration is valid 30 30 promtoolCheck = what: name: file: 31 31 if checkConfigEnabled then 32 - pkgs.runCommandLocal 33 - "${name}-${replaceStrings [" "] [""] what}-checked" 34 - { nativeBuildInputs = [ cfg.package.cli ]; } '' 32 + pkgs.runCommand "${name}-${replaceStrings [" "] [""] what}-checked" { 33 + preferLocalBuild = true; 34 + nativeBuildInputs = [ cfg.package.cli ]; 35 + } '' 35 36 ln -s ${file} $out 36 37 promtool ${what} $out 37 38 '' else file;
+2 -1
nixos/modules/services/monitoring/prometheus/exporters/snmp.nix
··· 23 23 '' /. + file); 24 24 25 25 checkConfig = file: 26 - pkgs.runCommandLocal "checked-snmp-exporter-config.yml" { 26 + pkgs.runCommand "checked-snmp-exporter-config.yml" { 27 + preferLocalBuild = true; 27 28 nativeBuildInputs = [ pkgs.buildPackages.prometheus-snmp-exporter ]; 28 29 } '' 29 30 ln -s ${coerceConfigFile file} $out
+1 -1
nixos/modules/services/networking/resilio.nix
··· 272 272 group = "rslsync"; 273 273 }; 274 274 275 - users.groups.rslsync = {}; 275 + users.groups.rslsync.gid = config.ids.gids.rslsync; 276 276 277 277 systemd.services.resilio = with pkgs; { 278 278 description = "Resilio Sync Service";
+3 -1
nixos/modules/services/networking/thelounge.nix
··· 11 11 pluginManifest = { 12 12 dependencies = builtins.listToAttrs (builtins.map (pkg: { name = getName pkg; value = getVersion pkg; }) cfg.plugins); 13 13 }; 14 - plugins = pkgs.runCommandLocal "thelounge-plugins" { } '' 14 + plugins = pkgs.runCommand "thelounge-plugins" { 15 + preferLocalBuild = true; 16 + } '' 15 17 mkdir -p $out/node_modules 16 18 echo ${escapeShellArg (builtins.toJSON pluginManifest)} >> $out/package.json 17 19 ${concatMapStringsSep "\n" (pkg: ''
+3 -1
nixos/modules/services/networking/unbound.nix
··· 30 30 ${confServer} 31 31 ${confNoServer} 32 32 ''; 33 - confFile = if cfg.checkconf then pkgs.runCommandLocal "unbound-checkconf" { } '' 33 + confFile = if cfg.checkconf then pkgs.runCommand "unbound-checkconf" { 34 + preferLocalBuild = true; 35 + } '' 34 36 cp ${confFileUnchecked} unbound.conf 35 37 36 38 # fake stateDir which is not accessible in the sandbox
+6 -2
nixos/modules/services/web-apps/akkoma.nix
··· 336 336 exec "${cfg.package}/bin/$(basename "$0")" "$@" 337 337 ''; 338 338 }; 339 - in pkgs.runCommandLocal "akkoma-env" { } '' 339 + in pkgs.runCommand "akkoma-env" { 340 + preferLocalBuild = true; 341 + } '' 340 342 mkdir -p "$out/bin" 341 343 342 344 ln -r -s ${escapeShellArg script} "$out/bin/pleroma" ··· 381 379 staticDir = ex.":pleroma".":instance".static_dir; 382 380 uploadDir = ex.":pleroma".":instance".upload_dir; 383 381 384 - staticFiles = pkgs.runCommandLocal "akkoma-static" { } '' 382 + staticFiles = pkgs.runCommand "akkoma-static" { 383 + preferLocalBuild = true; 384 + } '' 385 385 ${concatStringsSep "\n" (mapAttrsToList (key: val: '' 386 386 mkdir -p $out/frontends/${escapeShellArg val.name}/ 387 387 ln -s ${escapeShellArg val.package} $out/frontends/${escapeShellArg val.name}/${escapeShellArg val.ref}
+3 -4
nixos/modules/services/web-apps/nextcloud.nix
··· 44 44 }; 45 45 }; 46 46 47 - webroot = pkgs.runCommandLocal 48 - "${cfg.package.name or "nextcloud"}-with-apps" 49 - { } 50 - '' 47 + webroot = pkgs.runCommand "${cfg.package.name or "nextcloud"}-with-apps" { 48 + preferLocalBuild = true; 49 + } '' 51 50 mkdir $out 52 51 ln -sfv "${cfg.package}"/* "$out" 53 52 ${concatStrings
+2 -1
nixos/modules/services/x11/window-managers/xmonad.nix
··· 24 24 inherit (cfg) ghcArgs; 25 25 } cfg.config; 26 26 in 27 - pkgs.runCommandLocal "xmonad" { 27 + pkgs.runCommand "xmonad" { 28 + preferLocalBuild = true; 28 29 nativeBuildInputs = [ pkgs.makeWrapper ]; 29 30 } ('' 30 31 install -D ${xmonadEnv}/share/man/man1/xmonad.1.gz $out/share/man/man1/xmonad.1.gz
+2 -2
pkgs/applications/audio/hydrogen/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "hydrogen"; 8 - version = "1.2.3"; 8 + version = "1.2.4"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "hydrogen-music"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "sha256-7dgckFscyms+HW3xrsr3+lMua/H82U2jLkm/OKw3YWE="; 14 + sha256 = "sha256-OMd8t043JVfMEfRjLdcE/R/4ymGp2yennkCjyX75r8Q="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
+7
pkgs/applications/editors/emacs/elisp-packages/melpa-packages.nix
··· 550 550 ''; 551 551 }); 552 552 553 + treemacs = super.treemacs.overrideAttrs (attrs: { 554 + postPatch = (attrs.postPatch or "") + '' 555 + substituteInPlace src/elisp/treemacs-customization.el \ 556 + --replace 'treemacs-python-executable (treemacs--find-python3)' 'treemacs-python-executable "${lib.getExe pkgs.python3}"' 557 + ''; 558 + }); 559 + 553 560 treemacs-magit = super.treemacs-magit.overrideAttrs (attrs: { 554 561 # searches for Git at build time 555 562 nativeBuildInputs =
+3 -3
pkgs/applications/editors/formiko/default.nix
··· 14 14 15 15 buildPythonApplication rec { 16 16 pname = "formiko"; 17 - version = "1.4.3"; 17 + version = "1.5.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "ondratu"; 21 21 repo = "formiko"; 22 - rev = version; 23 - sha256 = "0n7w585gbrpn2xcd5n04hivrjarpr2wj260y2kpxpgh93vn52sdi"; 22 + tag = version; 23 + sha256 = "sha256-slfpkckCvxHJ/jlBP7QAhzaf9TAcS6biDQBZcBTyTKI="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+4 -4
pkgs/applications/editors/vscode/extensions/default.nix
··· 2071 2071 mktplcRef = { 2072 2072 publisher = "github"; 2073 2073 name = "copilot"; 2074 - version = "1.246.1233"; # compatible with vscode ^1.95 2075 - hash = "sha256-Pz46qTCGtn7q7UqCzwkQbuEEkH6tKxZV1HKSUs9WA8M="; 2074 + version = "1.251.0"; # compatible with vscode ^1.96 2075 + hash = "sha256-nv6lTPTPcggwMgO8a4KAF0W7gpou1399f/axnH0sS4s="; 2076 2076 }; 2077 2077 2078 2078 meta = { ··· 2089 2089 publisher = "github"; 2090 2090 name = "copilot-chat"; 2091 2091 # Verify which version is available with nix run nixpkgs#vsce -- show github.copilot-chat --json 2092 - version = "0.23.2024102903"; # compatible with vscode ^1.95 2093 - hash = "sha256-FGvB+b24i23bdhpJpCQDvIHqqFvCJrWAKnX6fJgkr2E="; 2092 + version = "0.24.2024121201"; # compatible with vscode ^1.96 2093 + hash = "sha256-v3wdodDzYalz927KqqpL4IqEqLRmx1CLWdGBvZgNmpE="; 2094 2094 }; 2095 2095 meta = { 2096 2096 description = "GitHub Copilot Chat is a companion extension to GitHub Copilot that houses experimental chat features";
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 36 36 37 37 sha256 = 38 38 { 39 - x86_64-linux = "0ijv2y2brc05m45slsy24dp8r0733d89f082l3mbs64vkz76s748"; 40 - x86_64-darwin = "012lkaxq5cqcby6lzmgwxbhgr36mk5szqvnxkw9xf5bjcpmxllfz"; 41 - aarch64-linux = "1975pvzg9hvbwqri80sbzbrgr96h85fi22x1walgqw4px74lsa1d"; 42 - aarch64-darwin = "023an5g5lgjizdppv52lpsah8kr0y40dm2kl7rq7byvsfxjga0gy"; 43 - armv7l-linux = "1f871lafkfyjw57iwz5gzl3bjjhqdac32akj0n26lkl3zq86p417"; 39 + x86_64-linux = "07bnp0ywrpcpfqmr6h3adsv1gwng4fiyf2dqpj8g4dbwkgakalzk"; 40 + x86_64-darwin = "1k5wmhnr8dr3f76f65agkn2igzbi40qqz3df7fai1gk1ichsw0s2"; 41 + aarch64-linux = "0s8s5x3vhs3rv4kj86irprzp1pprx1npyv0sbgvd821h3bh6s6k9"; 42 + aarch64-darwin = "1li4s74lqj5qr4w2biz29r88dx741a85v5s3mfxxqvnlhi7rkmx5"; 43 + armv7l-linux = "028g7f7fhvni7kn2kvpn7q1n66r03jr8maxkxihwsxr0xh6srca0"; 44 44 } 45 45 .${system} or throwSystem; 46 46 in 47 47 callPackage ./generic.nix rec { 48 48 # Please backport all compatible updates to the stable release. 49 49 # This is important for the extension ecosystem. 50 - version = "1.95.3"; 50 + version = "1.96.0"; 51 51 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 52 52 53 53 # This is used for VS Code - Remote SSH test 54 - rev = "f1a4fb101478ce6ec82fe9627c43efbf9e98c813"; 54 + rev = "138f619c86f1199955d53b4166bef66ef252935c"; 55 55 56 56 executableName = "code" + lib.optionalString isInsiders "-insiders"; 57 57 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 75 75 src = fetchurl { 76 76 name = "vscode-server-${rev}.tar.gz"; 77 77 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 78 - sha256 = "1ij7qfp5z801ny3n397801fv3hw5yvss1wxl9cyjgmjxmi6id7c1"; 78 + sha256 = "1kjivqnc0abrnqjn9dw2l612z7qra7y2fvxxrallsrqmqiibzcdk"; 79 79 }; 80 80 stdenv = stdenvNoCC; 81 81 };
+2 -2
pkgs/applications/misc/klayout/default.nix
··· 5 5 6 6 mkDerivation rec { 7 7 pname = "klayout"; 8 - version = "0.29.8"; 8 + version = "0.29.10"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "KLayout"; 12 12 repo = "klayout"; 13 13 rev = "v${version}"; 14 - hash = "sha256-cWLekSfyAOWI0ID9SlxN8XxHQR9oo1y5tTBn2schCtI="; 14 + hash = "sha256-3YRWGIfBGgN3vlBlFoVbMWgkhoxs7OQli1qtKUXf0KA="; 15 15 }; 16 16 17 17 postPatch = ''
+3 -3
pkgs/applications/misc/polychromatic/default.nix
··· 18 18 19 19 python3Packages.buildPythonApplication rec { 20 20 pname = "polychromatic"; 21 - version = "0.9.2"; 21 + version = "0.9.3"; 22 22 format = "other"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "polychromatic"; 26 26 repo = "polychromatic"; 27 - rev = "refs/tags/v${version}"; 28 - hash = "sha256-eSfyoEu4qQv+R17wgTfATOE1uHkksNxo17btR6swuZo="; 27 + tag = "v${version}"; 28 + hash = "sha256-fw4XLaivf8kRkNaemHvd9zcVKn87ZZhP+ZDJsCJHv/4="; 29 29 }; 30 30 31 31 postPatch = ''
+7 -7
pkgs/applications/networking/cluster/k3s/1_30/images-versions.json
··· 1 1 { 2 2 "airgap-images-amd64": { 3 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.6%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 - "sha256": "02dpjxncil47ark7pim4gl32646y24a0lmsla153s6v3a89xp0iv" 3 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.7%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 + "sha256": "09czfci3c37phn89zzqnsxgxwclmzf03mxlh88v0d7fk4qjlqa4i" 5 5 }, 6 6 "airgap-images-arm": { 7 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.6%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 - "sha256": "1v8vwgm6xd5iav02j7qk68nhmd6irb0q96c8mxjjxv1s97hcr7il" 7 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.7%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 + "sha256": "1wdnfc0f17rjz5gd1gfngax9ghjxv4gpzq73gyd745j53f64wv7n" 9 9 }, 10 10 "airgap-images-arm64": { 11 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.6%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 - "sha256": "0h4cqg023p184y8glbiddang4kmg4znxl4kgzam6jajdvklvjxsh" 11 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.7%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 + "sha256": "04i8j4x26bia3sqc5ra23p0nyy1ncd57mifwakm8nrk8dayigm8d" 13 13 }, 14 14 "images-list": { 15 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.6%2Bk3s1/k3s-images.txt", 15 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.7%2Bk3s1/k3s-images.txt", 16 16 "sha256": "05229bfg174pvy525dcy7rvmgv9i9v1nnz5ngq80n7zkxj9cp8m8" 17 17 } 18 18 }
+10 -10
pkgs/applications/networking/cluster/k3s/1_30/versions.nix
··· 1 1 { 2 - k3sVersion = "1.30.6+k3s1"; 3 - k3sCommit = "1829eaae5250b78e24816a9088b0244c0332b369"; 4 - k3sRepoSha256 = "1p792g2sf6sfwkz9zj7s9zzb27z11s2g3lp0ww2k0srj4yg5llpk"; 5 - k3sVendorHash = "sha256-YYe1jzmYKCPVEZUKXOVufbOU2nSMrplkVXztZTKlZDI="; 2 + k3sVersion = "1.30.7+k3s1"; 3 + k3sCommit = "00f901803ada2af4adb0439804f98b6fb6379992"; 4 + k3sRepoSha256 = "0jvbd4g1kisyjs2hrz4aqwrg08b13pvdf10dyyavvw1bmzki26ih"; 5 + k3sVendorHash = "sha256-3kLD2oyeo1cC0qRD48sFbsARuD034wilcNQpGRa65aQ="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 imagesVersions = builtins.fromJSON (builtins.readFile ./images-versions.json); 8 - k3sRootVersion = "0.14.0"; 9 - k3sRootSha256 = "15cs9faw3jishsb5nhgmb5ldjc47hkwf7hz2126fp8ahf80m0fcl"; 10 - k3sCNIVersion = "1.5.1-k3s1"; 11 - k3sCNISha256 = "1bkz78p77aiw64hdvmlgc5zir9x8zha8qprfaab48jxbcsj3dfi7"; 12 - containerdVersion = "1.7.22-k3s1"; 13 - containerdSha256 = "031rapiynpm7zlzn42l8z4m125lww2vyspw02irs4q3qb6mpx3px"; 8 + k3sRootVersion = "0.14.1"; 9 + k3sRootSha256 = "0svbi42agqxqh5q2ri7xmaw2a2c70s7q5y587ls0qkflw5vx4sl7"; 10 + k3sCNIVersion = "1.6.0-k3s1"; 11 + k3sCNISha256 = "0g7zczvwba5xqawk37b0v96xysdwanyf1grxn3l3lhxsgjjsmkd7"; 12 + containerdVersion = "1.7.23-k3s2"; 13 + containerdSha256 = "0lp9vxq7xj74wa7hbivvl5hwg2wzqgsxav22wa0p1l7lc1dqw8dm"; 14 14 criCtlVersion = "1.29.0-k3s1"; 15 15 }
+2 -2
pkgs/applications/video/kodi/addons/radioparadise/default.nix
··· 3 3 buildKodiAddon rec { 4 4 pname = "radioparadise"; 5 5 namespace = "script.radioparadise"; 6 - version = "2.1.1"; 6 + version = "2.1.2"; 7 7 8 8 src = fetchzip { 9 9 url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/script.radioparadise/script.radioparadise-${version}.zip"; 10 - sha256 = "sha256-jlEwqHkc3iiwc31DRnVPh5/AuPys9g/QApRUDweFt+E="; 10 + sha256 = "sha256-bzUfP1n/6FF42rH8NvkU6LBLKmY6IyF5ddpC/0jbK1U="; 11 11 }; 12 12 13 13 propagatedBuildInputs = [
+3 -3
pkgs/applications/virtualization/qemu/default.nix
··· 75 75 + lib.optionalString nixosTestRunner "-for-vm-tests" 76 76 + lib.optionalString toolsOnly "-utils" 77 77 + lib.optionalString userOnly "-user"; 78 - version = "9.1.1"; 78 + version = "9.1.2"; 79 79 80 80 src = fetchurl { 81 81 url = "https://download.qemu.org/qemu-${finalAttrs.version}.tar.xz"; 82 - hash = "sha256-fcD52lSR/0SVAPMxAGOja2GfI27kVwb9CEbrN9S7qIk="; 82 + hash = "sha256-Gf2ddTWlTW4EThhkAqo7OxvfqHw5LsiISFVZLIUQyW8="; 83 83 }; 84 84 85 85 depsBuildBuild = [ buildPlatformStdenv.cc ] ··· 131 131 dontUseMesonConfigure = true; # meson's configurePhase isn't compatible with qemu build 132 132 dontAddStaticConfigureFlags = true; 133 133 134 - outputs = [ "out" ] ++ lib.optional guestAgentSupport "ga"; 134 + outputs = [ "out" ] ++ lib.optional enableDocs "doc" ++ lib.optional guestAgentSupport "ga"; 135 135 # On aarch64-linux we would shoot over the Hydra's 2G output limit. 136 136 separateDebugInfo = !(stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux); 137 137
+2 -2
pkgs/by-name/ar/arduino-ide/package.nix
··· 5 5 6 6 let 7 7 pname = "arduino-ide"; 8 - version = "2.3.3"; 8 + version = "2.3.4"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/arduino/arduino-ide/releases/download/${version}/arduino-ide_${version}_Linux_64bit.AppImage"; 12 - hash = "sha256-VJGO3X1PUKE0OLr5PKH5uTE3rX0SlyrD6vdYdFdzHxk="; 12 + hash = "sha256-PyW3fJPEQmo0+ZYi/HubW8J66KeAnoN2RhYr9Yu2WU8="; 13 13 }; 14 14 15 15 appimageContents = appimageTools.extractType2 { inherit pname version src; };
+3 -3
pkgs/by-name/bo/bolt-launcher/package.nix
··· 162 162 }); 163 163 in 164 164 buildFHSEnv { 165 - inherit (bolt) name version; 165 + inherit (bolt) pname version; 166 166 167 167 targetPkgs = 168 168 pkgs: ··· 198 198 ln -s ${bolt}/share/icons/hicolor/256x256/apps/*.png $out/share/icons/hicolor/256x256/apps/ 199 199 ''; 200 200 201 - runScript = "${bolt.name}"; 201 + runScript = "${bolt.pname}"; 202 202 203 203 meta = { 204 204 homepage = "https://github.com/Adamcake/Bolt"; ··· 209 209 license = lib.licenses.agpl3Plus; 210 210 maintainers = with lib.maintainers; [ nezia ]; 211 211 platforms = lib.platforms.linux; 212 - mainProgram = "${bolt.name}"; 212 + mainProgram = "${bolt.pname}"; 213 213 }; 214 214 }
+2 -2
pkgs/by-name/bo/bootstrap-studio/package.nix
··· 2 2 3 3 let 4 4 pname = "bootstrap-studio"; 5 - version = "6.7.3"; 5 + version = "7.0.0"; 6 6 src = fetchurl { 7 7 url = "https://releases.bootstrapstudio.io/${version}/Bootstrap%20Studio.AppImage"; 8 - sha256 = "sha256-Wcqhn4h5UZIYDkC5OcfWLc0hQ3liMD8tcppAva8t62A="; 8 + sha256 = "sha256-jmYyPTtgGX9Cptv4nCwKhuz+NOvcc17uARtIuvU9y/s="; 9 9 }; 10 10 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 11 11 in
+5 -5
pkgs/by-name/br/brave/package.nix
··· 3 3 4 4 let 5 5 pname = "brave"; 6 - version = "1.73.97"; 6 + version = "1.73.101"; 7 7 8 8 allArchives = { 9 9 aarch64-linux = { 10 10 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_arm64.deb"; 11 - hash = "sha256-plEH7YS6cPoC6fRiCPNH7TYaiqPpXofkSvVUvpw4cok="; 11 + hash = "sha256-0nV+NxiXM+m1GbAxECXC/8QWiOyVaMb63JmGtrIFcqM="; 12 12 }; 13 13 x86_64-linux = { 14 14 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 15 - hash = "sha256-as+mBaYd01RxZh/3t9jAMOubYqezyUy6f+kAMEp9pyU="; 15 + hash = "sha256-yz3EENDg0khJYVF/W6RAvO3qWoDqs9oFH22WxqWay78="; 16 16 }; 17 17 aarch64-darwin = { 18 18 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-v${version}-darwin-arm64.zip"; 19 - hash = "sha256-29FlepNisnR8O41yIrI9ksthlE9oCbpXQSan2fnXKkI="; 19 + hash = "sha256-EQjgQAI+limWvU/qcU/MaP4I2zWtqXz5R3zPvMlZnCc="; 20 20 }; 21 21 x86_64-darwin = { 22 22 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-v${version}-darwin-x64.zip"; 23 - hash = "sha256-EVyZu0Omm2sf6p0Dz+ddp3GE9LFTLq8apEs5x6ASM9g="; 23 + hash = "sha256-11oDvX3O20N2q6vKd7r9rfUhRTkMe1dRQSQZ27QKKDs="; 24 24 }; 25 25 }; 26 26
+38
pkgs/by-name/br/brygada-1918/package.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + }: 6 + 7 + stdenvNoCC.mkDerivation { 8 + pname = "brygada-1918"; 9 + version = "3.006"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "kosmynkab"; 13 + repo = "Brygada-1918"; 14 + rev = "8325dc36ca87b8c7b8909c3e048fe90fd7e46c4b"; 15 + hash = "sha256-ePehnBYFlm+iExf2Sy25PsIWvtHlys2hcCZ4cHT+H1k="; 16 + }; 17 + 18 + dontConfigure = true; 19 + dontBuild = true; 20 + 21 + installPhase = '' 22 + runHook preInstall 23 + 24 + install -Dm444 -t $out/share/fonts/opentype fonts/otf/*.otf 25 + install -Dm444 -t $out/share/fonts/truetype fonts/ttf/*.ttf 26 + install -Dm444 -t $out/share/fonts/variable fonts/variable/*.ttf 27 + 28 + runHook postInstall 29 + ''; 30 + 31 + meta = { 32 + description = "Digital revival of the Brygada serif typeface"; 33 + homepage = "https://brygada1918.eu/"; 34 + license = lib.licenses.ofl; 35 + platforms = lib.platforms.all; 36 + maintainers = with lib.maintainers; [ oidro ]; 37 + }; 38 + }
+2 -2
pkgs/by-name/ch/checkstyle/package.nix
··· 1 1 { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }: 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 - version = "10.20.0"; 4 + version = "10.20.2"; 5 5 pname = "checkstyle"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "sha256-WvC5UyLxW1WHlVRs0Ll2kGwXM/9Z98qdYtjKaG2w5is="; 9 + sha256 = "sha256-PBm1fBCo4S8pQId19p3gIr7zEXJ5V1tYr0qHdOk0yL4="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeBinaryWrapper ];
+2 -2
pkgs/by-name/co/cockpit/package.nix
··· 39 39 40 40 stdenv.mkDerivation rec { 41 41 pname = "cockpit"; 42 - version = "329.1"; 42 + version = "330"; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "cockpit-project"; 46 46 repo = "cockpit"; 47 47 rev = "refs/tags/${version}"; 48 - hash = "sha256-KQBCJ7u5Dk9CqU9aR96Xx3ShlONcacT1ABowguguI+Y="; 48 + hash = "sha256-tPoFa9/22WUO+N3Pc/7jdWIOsoImeru6/F+2yUi92iI="; 49 49 fetchSubmodules = true; 50 50 }; 51 51
+3 -3
pkgs/by-name/co/cosmic-edit/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "cosmic-edit"; 23 - version = "1.0.0-alpha.3"; 23 + version = "1.0.0-alpha.4"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "pop-os"; 27 27 repo = "cosmic-edit"; 28 28 rev = "epoch-${version}"; 29 - hash = "sha256-GCy/JyicPeCA7y9bfbVlyYiofRp0c82INPZi0zbnnxE="; 29 + hash = "sha256-IAIO5TggPGzZyfET2zBKpde/aePXR4FsSg/Da1y3saA="; 30 30 }; 31 31 32 32 useFetchCargoVendor = true; 33 - cargoHash = "sha256-mQSCUnCJ52iSekljNAvf7G+WefmXhhmZTxumvXl9Jyc="; 33 + cargoHash = "sha256-pRp6Bi9CcHg2tMAC86CZybpfGL2BTxzst3G31tXJA5A="; 34 34 35 35 # COSMIC applications now uses vergen for the About page 36 36 # Update the COMMIT_DATE to match when the commit was made
+2 -2
pkgs/by-name/ec/ecs-agent/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "amazon-ecs-agent"; 5 - version = "1.87.1"; 5 + version = "1.88.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "aws"; 10 10 repo = pname; 11 - hash = "sha256-thgFlfEyjetNciBCIx1XFW4U59BL9TpRT9E7v4bac6s="; 11 + hash = "sha256-ljTMfucHdcfDrpKKVguFlCM6S4ezBzM67C8SBdulYdY="; 12 12 }; 13 13 14 14 vendorHash = null;
+2 -2
pkgs/by-name/fi/fiji/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "fiji"; 16 - version = "20240614-2117"; 16 + version = "20241114-1317"; 17 17 18 18 src = fetchurl { 19 19 url = "https://downloads.imagej.net/fiji/archive/${version}/fiji-nojre.zip"; 20 - sha256 = "sha256-OCNnN8CYniNEIfKRHRBoJ3Fo+u5AwXoPJAzUCc4P+f0="; 20 + sha256 = "sha256-dNpscgZiiE2cuuo11YLs+mgoBRZ/MpUXDaAX3x+E/w8="; 21 21 }; 22 22 23 23 dontBuild = true;
+2 -2
pkgs/by-name/fi/filebot/package.nix
··· 24 24 in 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "filebot"; 27 - version = "5.1.5"; 27 + version = "5.1.6"; 28 28 29 29 src = fetchurl { 30 30 url = "https://web.archive.org/web/20230917142929/https://get.filebot.net/filebot/FileBot_${finalAttrs.version}/FileBot_${finalAttrs.version}-portable.tar.xz"; 31 - hash = "sha256-fwyo9J5O728xxWHWvq63bTJMV4IAMAHZR0yr3Pb6d7U="; 31 + hash = "sha256-9XRYhedCDWtNPjAKzK4lOprHwbJjOgF6HN2MZnlZ9IE="; 32 32 }; 33 33 34 34 unpackPhase = "tar xvf $src";
+1
pkgs/by-name/fo/forgejo/generic.nix
··· 195 195 bendlas 196 196 adamcstephens 197 197 marie 198 + pyrox0 198 199 ]; 199 200 broken = stdenv.hostPlatform.isDarwin; 200 201 mainProgram = "gitea";
+3 -3
pkgs/by-name/fo/forgejo/lts.nix
··· 1 1 import ./generic.nix { 2 - version = "7.0.11"; 3 - hash = "sha256-l2HuTwUu/hl86qsIw0F1AI3gYDy/WOZvg7kDP7dYHLE="; 2 + version = "7.0.12"; 3 + hash = "sha256-8rX/w4EqZwbs1xaHEkwN02+PQQD7e9VAXVrCqYwm3o0="; 4 4 npmDepsHash = "sha256-suPR7qcxXuK8AJfk47EcQRWtSo5V3jad4Ci122lbBR0="; 5 - vendorHash = "sha256-hfbNyCQMQzDzJxFc2MPAR4+v/qNcnORiQNbwbbIA4Nw="; 5 + vendorHash = "sha256-seC8HzndQ10LecU+ii3kCO3ZZeCc3lqAujWbMKwNbpI="; 6 6 lts = true; 7 7 nixUpdateExtraArgs = [ 8 8 "--override-filename"
+4 -4
pkgs/by-name/fo/forgejo/package.nix
··· 1 1 import ./generic.nix { 2 - version = "9.0.2"; 3 - hash = "sha256-ecPt1OQNAHzaGDEaYAcxplJq+gufb13y7vEV+dbV8C8="; 4 - npmDepsHash = "sha256-V7Ubhu3PlZyW0KCHMFqrQahSlWEh5856yMvt0iYlfz0="; 5 - vendorHash = "sha256-j3BY6fEXCL82TDna80vjL25FDFLUhyMtmQW8d6GLQdk="; 2 + version = "9.0.3"; 3 + hash = "sha256-Ig4iz/ZoRj4lyod73GWY2oRV3E3tx3S4rNqQtsTonzQ="; 4 + npmDepsHash = "sha256-yDNlD1l5xuLkkp6LbOlWj9OYHO+WtiAeiu9oIoQLFL8="; 5 + vendorHash = "sha256-JLruZi8mXR1f+o9Olhbz44ieEXVGinUNmVi24VEYj28="; 6 6 lts = false; 7 7 nixUpdateExtraArgs = [ 8 8 "--override-filename"
+2 -7
pkgs/by-name/fs/fsautocomplete/package.nix
··· 26 26 --replace-fail TargetFrameworks TargetFramework \ 27 27 ''; 28 28 29 - dotnet-sdk = 30 - with dotnetCorePackages; 31 - combinePackages [ 32 - sdk_8_0 33 - sdk_9_0 34 - ]; 35 - dotnet-runtime = dotnetCorePackages.sdk_9_0; 29 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 30 + dotnet-runtime = dotnetCorePackages.sdk_8_0; 36 31 37 32 projectFile = "src/FsAutoComplete/FsAutoComplete.fsproj"; 38 33 executables = [ "fsautocomplete" ];
+2 -2
pkgs/by-name/gl/glance/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "glance"; 11 - version = "0.6.2"; 11 + version = "0.6.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "glanceapp"; 15 15 repo = "glance"; 16 16 rev = "v${version}"; 17 - hash = "sha256-A2EFIDwJbIzRDAxFKW7znZFYKYpqOMEixUG0yUDx7zc="; 17 + hash = "sha256-yLcRdgxp4g4H6pxsv342ub3P4Hmg3+mtFALuVMh7/j0="; 18 18 }; 19 19 20 20 vendorHash = "sha256-BLWaYiWcLX+/DW7Zzp6/Mtw5uVxIVtfubB895hrZ+08=";
+2 -2
pkgs/by-name/gn/gnu-shepherd/package.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gnu-shepherd"; 5 - version = "0.9.3"; 5 + version = "1.0.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz"; 9 - sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32"; 9 + hash = "sha256-6OavM7AnkMwKVIDXWaQhGobRQdBzrNPJNGtM8BDtnnw="; 10 10 }; 11 11 12 12 configureFlags = [ "--localstatedir=/" ];
+2 -2
pkgs/by-name/ht/htcondor/package.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "htcondor"; 23 - version = "24.1.1"; 23 + version = "24.2.2"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "htcondor"; 27 27 repo = "htcondor"; 28 28 29 29 rev = "v${version}"; 30 - hash = "sha256-k3GXaBSeRl6GJDm5+NRkV0E18RDUBYuoy2/u3ENsEyM="; 30 + hash = "sha256-F8uI8Stvao7VKULTcOjv/nFUhFHxqd00gRNe6tkKgPE="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/ja/jay/package.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "jay"; 18 - version = "1.5.0"; 18 + version = "1.7.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "mahkoh"; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-cuXFkG2YwS0w4xzr7jpjr0QmVA5UJfk5SpjIQKxN/LY="; 24 + sha256 = "sha256-VAg59hmI38hJzkh/Vtv6LjrqQFLaq7rIGtk9sfQe1TA="; 25 25 }; 26 26 27 - cargoHash = "sha256-w3ARwQlehJq9uNSQmbUjiWik4a2W3Ax/6/BIsdDUfKM="; 27 + cargoHash = "sha256-qYyuVNYhsHjR4uGdQq83Ih5TMBdlKmG0l4MxDa9wgD8="; 28 28 29 29 SHADERC_LIB_DIR = "${lib.getLib shaderc}/lib"; 30 30
+3 -3
pkgs/by-name/ka/kando/package.nix
··· 24 24 25 25 buildNpmPackage rec { 26 26 pname = "kando"; 27 - version = "1.5.1"; 27 + version = "1.6.0"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "kando-menu"; 31 31 repo = "kando"; 32 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-0Y6JDTbzrtAU14soyQgnGTkdR/h52gX2ByNGIYCY38A="; 33 + hash = "sha256-OTNxK2D7lM8IluZa6Rydd3WSP3hPNcT9nkQm1smq4ms="; 34 34 }; 35 35 36 - npmDepsHash = "sha256-qmLaUd01Mk6yQYqd/rXy4aZoi6oYYY6eZ2kupGRb1z0="; 36 + npmDepsHash = "sha256-1LIfYwhLL8M2A4C6u9l5YUe7Y6xJeir8A5HQ7QghvhA="; 37 37 38 38 npmFlags = [ "--ignore-scripts" ]; 39 39
+2 -2
pkgs/by-name/kt/ktlint/package.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ktlint"; 5 - version = "1.4.0"; 5 + version = "1.5.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/pinterest/ktlint/releases/download/${version}/ktlint"; 9 - sha256 = "sha256-7HAiTr1hH7klYafbucYtnrDq+2lCenZA1o4XawqEqXw="; 9 + sha256 = "sha256-oWvgHcxICqsvVfREtiAUIVL2bjFWSzuTdlBtYkwooq0="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/li/libinput-gestures/package.nix
··· 12 12 }: 13 13 stdenv.mkDerivation (finalAttrs: { 14 14 pname = "libinput-gestures"; 15 - version = "2.77"; 15 + version = "2.78"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "bulletmark"; 19 19 repo = "libinput-gestures"; 20 20 rev = "refs/tags/${finalAttrs.version}"; 21 - hash = "sha256-eMXNlSgQSuN+/5SXJQjsylC1ygHS87sIEmnVGFk3pzA="; 21 + hash = "sha256-J9+KbaZYDPJzl/AE1gq6KNXIJns+XxoAL1oOSy7UTtY="; 22 22 }; 23 23 patches = [ 24 24 ./0001-hardcode-name.patch
+3 -3
pkgs/by-name/ll/lla/package.nix
··· 7 7 nix-update-script, 8 8 }: 9 9 let 10 - version = "0.2.10"; 10 + version = "0.3.1"; 11 11 in 12 12 rustPlatform.buildRustPackage { 13 13 pname = "lla"; ··· 17 17 owner = "triyanox"; 18 18 repo = "lla"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-zHtHlEAh170t05DO5b/vspODkqx5G9C3nt5G8dtm8wI="; 20 + hash = "sha256-0yPc/HJcPrHeokp4wQ3WOLL9gEIX/0udHUwY39LwvLc="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ makeBinaryWrapper ]; 24 24 25 - cargoHash = "sha256-ar7NEQKTdxM96dT9b9BBfYZA3zVlhN6OciKRo4ZhBSU="; 25 + cargoHash = "sha256-402FMy7I2NmzDUjsgQAG+iBKjgwtpX8OMdXWnst3Ao8="; 26 26 27 27 cargoBuildFlags = [ "--workspace" ]; 28 28
+2 -2
pkgs/by-name/mi/microsoft-edge/package.nix
··· 168 168 169 169 stdenv.mkDerivation (finalAttrs: { 170 170 pname = "microsoft-edge"; 171 - version = "131.0.2903.70"; 171 + version = "131.0.2903.86"; 172 172 173 173 src = fetchurl { 174 174 url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_${finalAttrs.version}-1_amd64.deb"; 175 - hash = "sha256-LcinHmzr3o5ILjGdr8uuiOGWok0J9G/kTdASfYQh/tM="; 175 + hash = "sha256-THhE5R/++/WllfPZPmM0gcYIHw/ZVNFcwIBm6iPdrPM="; 176 176 }; 177 177 178 178 # With strictDeps on, some shebangs were not being patched correctly
+13 -1
pkgs/by-name/na/naps2/package.nix
··· 26 26 27 27 executables = [ "naps2" ]; 28 28 29 - dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_8_0 ]; 29 + dotnet-sdk = 30 + with dotnetCorePackages; 31 + sdk_8_0 32 + // { 33 + inherit 34 + (combinePackages [ 35 + sdk_8_0 36 + sdk_6_0 37 + ]) 38 + packages 39 + targetPackages 40 + ; 41 + }; 30 42 dotnet-runtime = dotnetCorePackages.runtime_8_0; 31 43 selfContainedBuild = true; 32 44 runtimeDeps = [
+36
pkgs/by-name/na/navicat-premium/package.nix
··· 1 + { 2 + fetchurl, 3 + appimageTools, 4 + lib, 5 + }: 6 + let 7 + pname = "navicat-premium"; 8 + version = "17.1.6"; 9 + src = fetchurl { 10 + url = "https://web.archive.org/web/20241127151816/https://dn.navicat.com/download/navicat17-premium-en-x86_64.AppImage"; 11 + hash = "sha256-pH5hjHRuN29yBvsBrskCcwgXRUZ95iwEse2O3IiIvGo="; 12 + }; 13 + appimageContents = appimageTools.extractType2 { 14 + inherit pname version src; 15 + }; 16 + in 17 + appimageTools.wrapType2 { 18 + inherit pname version src; 19 + 20 + extraInstallCommands = '' 21 + cp -r ${appimageContents}/usr/share $out/share 22 + substituteInPlace $out/share/applications/navicat.desktop \ 23 + --replace-fail "Exec=navicat" "Exec=navicat-premium" 24 + ''; 25 + 26 + meta = { 27 + homepage = "https://www.navicat.com/products/navicat-premium"; 28 + changelog = "https://www.navicat.com/en/products/navicat-premium-release-note"; 29 + description = "Database development tool that allows you to simultaneously connect to many databases"; 30 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 31 + license = lib.licenses.unfree; 32 + maintainers = with lib.maintainers; [ aucub ]; 33 + platforms = [ "x86_64-linux" ]; 34 + mainProgram = "navicat-premium"; 35 + }; 36 + }
+2 -2
pkgs/by-name/ne/neo4j-desktop/package.nix
··· 1 1 { appimageTools, lib, fetchurl }: 2 2 let 3 3 pname = "neo4j-desktop"; 4 - version = "1.5.9"; 4 + version = "1.6.0"; 5 5 6 6 src = fetchurl { 7 7 url = "https://s3-eu-west-1.amazonaws.com/dist.neo4j.org/${pname}/linux-offline/${pname}-${version}-x86_64.AppImage"; 8 - hash = "sha256-04I1p5wtndIflHqS5qQVf3s8F9ORJ+oy4wi/5PQbnWk="; 8 + hash = "sha256-/ptMEU4BM5mPK4KWWRdor6N8gw3oaNgyzD0c4jI+3fI="; 9 9 }; 10 10 11 11 appimageContents = appimageTools.extract { inherit pname version src; };
+12
pkgs/by-name/nf/nfs-utils/package.nix
··· 60 60 url = "https://raw.githubusercontent.com/alpinelinux/aports/cb880042d48d77af412d4688f24b8310ae44f55f/main/nfs-utils/musl-getservbyport.patch"; 61 61 sha256 = "1fqws9dz8n1d9a418c54r11y3w330qgy2652dpwcy96cm44sqyhf"; 62 62 }) 63 + (fetchpatch { 64 + url = "https://raw.githubusercontent.com/void-linux/void-packages/bb636cdb1b274f44d92b1cb2fdf0dff6079f97aa/srcpkgs/nfs-utils/patches/nfs-utils-2.7.1-define_macros_for_musl.patch"; 65 + hash = "sha256-wsyioRjzs1PObMHwYgf5h/Ngv+s5MPsroAuUNGs9lR0="; 66 + }) 67 + (fetchpatch { 68 + url = "https://raw.githubusercontent.com/void-linux/void-packages/bb636cdb1b274f44d92b1cb2fdf0dff6079f97aa/srcpkgs/nfs-utils/patches/musl-svcgssd-sysconf.patch"; 69 + hash = "sha256-3TXgqswxlhFqXRPcjwo4MdqlTYl+dWVaa0E5r9Mnw18="; 70 + }) 71 + (fetchpatch { 72 + url = "https://raw.githubusercontent.com/void-linux/void-packages/bb636cdb1b274f44d92b1cb2fdf0dff6079f97aa/srcpkgs/nfs-utils/patches/musl-fix_long_unsigned_int.patch"; 73 + hash = "sha256-rS6sqqoGLIaPVq04+QiqP4qa88i1z4ZZCssM5k/XQ68="; 74 + }) 63 75 ]; 64 76 65 77 postPatch =
+2 -2
pkgs/by-name/ni/nix-snapshotter/package.nix
··· 5 5 }: 6 6 7 7 let 8 - version = "0.2.0"; 8 + version = "0.2.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "pdtpartners"; 12 12 repo = "nix-snapshotter"; 13 13 rev = "v${version}"; 14 - hash = "sha256-hQ2b9Yx8g8okVWGo/iuvY2sR6FWI8iKp74m4gdXeueI="; 14 + hash = "sha256-TCZdXCmnqCPsd3PjLv/LDSKJhTspLliL0DE+c/XP9BY="; 15 15 }; 16 16 17 17 nix-snapshotter-lib = callPackage "${src}/package.nix" {};
+994 -1338
pkgs/by-name/no/node-gyp/package-lock.json
··· 1 1 { 2 2 "name": "node-gyp", 3 - "version": "10.3.1", 3 + "version": "11.0.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "node-gyp", 9 - "version": "10.3.1", 9 + "version": "11.0.0", 10 10 "license": "MIT", 11 11 "dependencies": { 12 12 "env-paths": "^2.2.0", 13 13 "exponential-backoff": "^3.1.1", 14 14 "glob": "^10.3.10", 15 15 "graceful-fs": "^4.2.6", 16 - "make-fetch-happen": "^13.0.0", 17 - "nopt": "^7.0.0", 18 - "proc-log": "^4.1.0", 16 + "make-fetch-happen": "^14.0.3", 17 + "nopt": "^8.0.0", 18 + "proc-log": "^5.0.0", 19 19 "semver": "^7.3.5", 20 - "tar": "^6.2.1", 21 - "which": "^4.0.0" 20 + "tar": "^7.4.3", 21 + "which": "^5.0.0" 22 22 }, 23 23 "bin": { 24 24 "node-gyp": "bin/node-gyp.js" ··· 26 26 "devDependencies": { 27 27 "bindings": "^1.5.0", 28 28 "cross-env": "^7.0.3", 29 - "mocha": "^10.2.0", 29 + "eslint": "^9.16.0", 30 + "mocha": "^11.0.1", 30 31 "nan": "^2.14.2", 31 - "require-inject": "^1.4.4", 32 - "standard": "^17.0.0" 32 + "neostandard": "^0.11.9", 33 + "require-inject": "^1.4.4" 33 34 }, 34 35 "engines": { 35 - "node": "^16.14.0 || >=18.0.0" 36 + "node": "^18.17.0 || >=20.5.0" 36 37 } 37 38 }, 38 39 "node_modules/@eslint-community/eslint-utils": { ··· 55 54 "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 56 55 } 57 56 }, 57 + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 58 + "version": "3.4.3", 59 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 60 + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 61 + "dev": true, 62 + "license": "Apache-2.0", 63 + "engines": { 64 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 65 + }, 66 + "funding": { 67 + "url": "https://opencollective.com/eslint" 68 + } 69 + }, 58 70 "node_modules/@eslint-community/regexpp": { 59 71 "version": "4.12.1", 60 72 "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", ··· 78 64 "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 79 65 } 80 66 }, 67 + "node_modules/@eslint/config-array": { 68 + "version": "0.19.1", 69 + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", 70 + "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", 71 + "dev": true, 72 + "license": "Apache-2.0", 73 + "dependencies": { 74 + "@eslint/object-schema": "^2.1.5", 75 + "debug": "^4.3.1", 76 + "minimatch": "^3.1.2" 77 + }, 78 + "engines": { 79 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 80 + } 81 + }, 82 + "node_modules/@eslint/core": { 83 + "version": "0.9.1", 84 + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.1.tgz", 85 + "integrity": "sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==", 86 + "dev": true, 87 + "license": "Apache-2.0", 88 + "dependencies": { 89 + "@types/json-schema": "^7.0.15" 90 + }, 91 + "engines": { 92 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 93 + } 94 + }, 81 95 "node_modules/@eslint/eslintrc": { 82 - "version": "2.1.4", 83 - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 84 - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 96 + "version": "3.2.0", 97 + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", 98 + "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", 85 99 "dev": true, 86 100 "license": "MIT", 87 101 "dependencies": { 88 102 "ajv": "^6.12.4", 89 103 "debug": "^4.3.2", 90 - "espree": "^9.6.0", 91 - "globals": "^13.19.0", 104 + "espree": "^10.0.1", 105 + "globals": "^14.0.0", 92 106 "ignore": "^5.2.0", 93 107 "import-fresh": "^3.2.1", 94 108 "js-yaml": "^4.1.0", ··· 124 82 "strip-json-comments": "^3.1.1" 125 83 }, 126 84 "engines": { 127 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 85 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 128 86 }, 129 87 "funding": { 130 88 "url": "https://opencollective.com/eslint" 131 89 } 132 90 }, 133 - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 134 - "version": "1.1.11", 135 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 136 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 137 - "dev": true, 138 - "license": "MIT", 139 - "dependencies": { 140 - "balanced-match": "^1.0.0", 141 - "concat-map": "0.0.1" 142 - } 143 - }, 144 - "node_modules/@eslint/eslintrc/node_modules/minimatch": { 145 - "version": "3.1.2", 146 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 147 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 148 - "dev": true, 149 - "license": "ISC", 150 - "dependencies": { 151 - "brace-expansion": "^1.1.7" 152 - }, 153 - "engines": { 154 - "node": "*" 155 - } 156 - }, 157 91 "node_modules/@eslint/js": { 158 - "version": "8.57.1", 159 - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 160 - "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 92 + "version": "9.16.0", 93 + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.16.0.tgz", 94 + "integrity": "sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==", 161 95 "dev": true, 162 96 "license": "MIT", 163 97 "engines": { 164 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 98 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 165 99 } 166 100 }, 167 - "node_modules/@humanwhocodes/config-array": { 168 - "version": "0.13.0", 169 - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 170 - "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 171 - "deprecated": "Use @eslint/config-array instead", 101 + "node_modules/@eslint/object-schema": { 102 + "version": "2.1.5", 103 + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", 104 + "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", 105 + "dev": true, 106 + "license": "Apache-2.0", 107 + "engines": { 108 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 109 + } 110 + }, 111 + "node_modules/@eslint/plugin-kit": { 112 + "version": "0.2.4", 113 + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz", 114 + "integrity": "sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==", 172 115 "dev": true, 173 116 "license": "Apache-2.0", 174 117 "dependencies": { 175 - "@humanwhocodes/object-schema": "^2.0.3", 176 - "debug": "^4.3.1", 177 - "minimatch": "^3.0.5" 118 + "levn": "^0.4.1" 178 119 }, 179 120 "engines": { 180 - "node": ">=10.10.0" 121 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 181 122 } 182 123 }, 183 - "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 184 - "version": "1.1.11", 185 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 186 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 124 + "node_modules/@humanfs/core": { 125 + "version": "0.19.1", 126 + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 127 + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 187 128 "dev": true, 188 - "license": "MIT", 189 - "dependencies": { 190 - "balanced-match": "^1.0.0", 191 - "concat-map": "0.0.1" 129 + "license": "Apache-2.0", 130 + "engines": { 131 + "node": ">=18.18.0" 192 132 } 193 133 }, 194 - "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 195 - "version": "3.1.2", 196 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 197 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 134 + "node_modules/@humanfs/node": { 135 + "version": "0.16.6", 136 + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 137 + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 198 138 "dev": true, 199 - "license": "ISC", 139 + "license": "Apache-2.0", 200 140 "dependencies": { 201 - "brace-expansion": "^1.1.7" 141 + "@humanfs/core": "^0.19.1", 142 + "@humanwhocodes/retry": "^0.3.0" 202 143 }, 203 144 "engines": { 204 - "node": "*" 145 + "node": ">=18.18.0" 146 + } 147 + }, 148 + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 149 + "version": "0.3.1", 150 + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 151 + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 152 + "dev": true, 153 + "license": "Apache-2.0", 154 + "engines": { 155 + "node": ">=18.18" 156 + }, 157 + "funding": { 158 + "type": "github", 159 + "url": "https://github.com/sponsors/nzakas" 160 + } 161 + }, 162 + "node_modules/@humanwhocodes/gitignore-to-minimatch": { 163 + "version": "1.0.2", 164 + "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz", 165 + "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==", 166 + "dev": true, 167 + "license": "Apache-2.0", 168 + "funding": { 169 + "type": "github", 170 + "url": "https://github.com/sponsors/nzakas" 205 171 } 206 172 }, 207 173 "node_modules/@humanwhocodes/module-importer": { ··· 226 176 "url": "https://github.com/sponsors/nzakas" 227 177 } 228 178 }, 229 - "node_modules/@humanwhocodes/object-schema": { 230 - "version": "2.0.3", 231 - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 232 - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 233 - "deprecated": "Use @eslint/object-schema instead", 179 + "node_modules/@humanwhocodes/retry": { 180 + "version": "0.4.1", 181 + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", 182 + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", 234 183 "dev": true, 235 - "license": "BSD-3-Clause" 184 + "license": "Apache-2.0", 185 + "engines": { 186 + "node": ">=18.18" 187 + }, 188 + "funding": { 189 + "type": "github", 190 + "url": "https://github.com/sponsors/nzakas" 191 + } 236 192 }, 237 193 "node_modules/@isaacs/cliui": { 238 194 "version": "8.0.2", ··· 255 199 }, 256 200 "engines": { 257 201 "node": ">=12" 202 + } 203 + }, 204 + "node_modules/@isaacs/fs-minipass": { 205 + "version": "4.0.1", 206 + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", 207 + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", 208 + "license": "ISC", 209 + "dependencies": { 210 + "minipass": "^7.0.4" 211 + }, 212 + "engines": { 213 + "node": ">=18.0.0" 258 214 } 259 215 }, 260 216 "node_modules/@nodelib/fs.scandir": { ··· 308 240 } 309 241 }, 310 242 "node_modules/@npmcli/agent": { 311 - "version": "2.2.2", 312 - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz", 313 - "integrity": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==", 243 + "version": "3.0.0", 244 + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz", 245 + "integrity": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==", 314 246 "license": "ISC", 315 247 "dependencies": { 316 248 "agent-base": "^7.1.0", ··· 320 252 "socks-proxy-agent": "^8.0.3" 321 253 }, 322 254 "engines": { 323 - "node": "^16.14.0 || >=18.0.0" 255 + "node": "^18.17.0 || >=20.5.0" 324 256 } 325 257 }, 326 258 "node_modules/@npmcli/fs": { 327 - "version": "3.1.1", 328 - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", 329 - "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", 259 + "version": "4.0.0", 260 + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-4.0.0.tgz", 261 + "integrity": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==", 330 262 "license": "ISC", 331 263 "dependencies": { 332 264 "semver": "^7.3.5" 333 265 }, 334 266 "engines": { 335 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 267 + "node": "^18.17.0 || >=20.5.0" 336 268 } 337 269 }, 338 270 "node_modules/@pkgjs/parseargs": { ··· 345 277 "node": ">=14" 346 278 } 347 279 }, 348 - "node_modules/@rtsao/scc": { 349 - "version": "1.1.0", 350 - "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", 351 - "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", 280 + "node_modules/@stylistic/eslint-plugin": { 281 + "version": "2.12.0", 282 + "resolved": "https://registry.npmjs.org/@stylistic/eslint-plugin/-/eslint-plugin-2.12.0.tgz", 283 + "integrity": "sha512-IvD2WXbOoSp0zNpyYbjdSyEjZtut78RYfj2WIlbChE7HFuposTK5X1hc5+4AyqYcjLXYdD5oo/sJtqMGFNRb1w==", 284 + "dev": true, 285 + "license": "MIT", 286 + "dependencies": { 287 + "@typescript-eslint/utils": "^8.13.0", 288 + "eslint-visitor-keys": "^4.2.0", 289 + "espree": "^10.3.0", 290 + "estraverse": "^5.3.0", 291 + "picomatch": "^4.0.2" 292 + }, 293 + "engines": { 294 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 295 + }, 296 + "peerDependencies": { 297 + "eslint": ">=8.40.0" 298 + } 299 + }, 300 + "node_modules/@stylistic/eslint-plugin/node_modules/picomatch": { 301 + "version": "4.0.2", 302 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 303 + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 304 + "dev": true, 305 + "license": "MIT", 306 + "engines": { 307 + "node": ">=12" 308 + }, 309 + "funding": { 310 + "url": "https://github.com/sponsors/jonschlinkert" 311 + } 312 + }, 313 + "node_modules/@types/estree": { 314 + "version": "1.0.6", 315 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 316 + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 352 317 "dev": true, 353 318 "license": "MIT" 354 319 }, 355 - "node_modules/@types/json5": { 356 - "version": "0.0.29", 357 - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 358 - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", 320 + "node_modules/@types/json-schema": { 321 + "version": "7.0.15", 322 + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 323 + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 359 324 "dev": true, 360 325 "license": "MIT" 361 326 }, 362 - "node_modules/@ungap/structured-clone": { 363 - "version": "1.2.0", 364 - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 365 - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 327 + "node_modules/@typescript-eslint/eslint-plugin": { 328 + "version": "8.18.0", 329 + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.18.0.tgz", 330 + "integrity": "sha512-NR2yS7qUqCL7AIxdJUQf2MKKNDVNaig/dEB0GBLU7D+ZdHgK1NoH/3wsgO3OnPVipn51tG3MAwaODEGil70WEw==", 366 331 "dev": true, 367 - "license": "ISC" 332 + "license": "MIT", 333 + "dependencies": { 334 + "@eslint-community/regexpp": "^4.10.0", 335 + "@typescript-eslint/scope-manager": "8.18.0", 336 + "@typescript-eslint/type-utils": "8.18.0", 337 + "@typescript-eslint/utils": "8.18.0", 338 + "@typescript-eslint/visitor-keys": "8.18.0", 339 + "graphemer": "^1.4.0", 340 + "ignore": "^5.3.1", 341 + "natural-compare": "^1.4.0", 342 + "ts-api-utils": "^1.3.0" 343 + }, 344 + "engines": { 345 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 346 + }, 347 + "funding": { 348 + "type": "opencollective", 349 + "url": "https://opencollective.com/typescript-eslint" 350 + }, 351 + "peerDependencies": { 352 + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 353 + "eslint": "^8.57.0 || ^9.0.0", 354 + "typescript": ">=4.8.4 <5.8.0" 355 + } 356 + }, 357 + "node_modules/@typescript-eslint/parser": { 358 + "version": "8.18.0", 359 + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.18.0.tgz", 360 + "integrity": "sha512-hgUZ3kTEpVzKaK3uNibExUYm6SKKOmTU2BOxBSvOYwtJEPdVQ70kZJpPjstlnhCHcuc2WGfSbpKlb/69ttyN5Q==", 361 + "dev": true, 362 + "license": "MITClause", 363 + "dependencies": { 364 + "@typescript-eslint/scope-manager": "8.18.0", 365 + "@typescript-eslint/types": "8.18.0", 366 + "@typescript-eslint/typescript-estree": "8.18.0", 367 + "@typescript-eslint/visitor-keys": "8.18.0", 368 + "debug": "^4.3.4" 369 + }, 370 + "engines": { 371 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 372 + }, 373 + "funding": { 374 + "type": "opencollective", 375 + "url": "https://opencollective.com/typescript-eslint" 376 + }, 377 + "peerDependencies": { 378 + "eslint": "^8.57.0 || ^9.0.0", 379 + "typescript": ">=4.8.4 <5.8.0" 380 + } 381 + }, 382 + "node_modules/@typescript-eslint/scope-manager": { 383 + "version": "8.18.0", 384 + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.18.0.tgz", 385 + "integrity": "sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw==", 386 + "dev": true, 387 + "license": "MIT", 388 + "dependencies": { 389 + "@typescript-eslint/types": "8.18.0", 390 + "@typescript-eslint/visitor-keys": "8.18.0" 391 + }, 392 + "engines": { 393 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 394 + }, 395 + "funding": { 396 + "type": "opencollective", 397 + "url": "https://opencollective.com/typescript-eslint" 398 + } 399 + }, 400 + "node_modules/@typescript-eslint/type-utils": { 401 + "version": "8.18.0", 402 + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.18.0.tgz", 403 + "integrity": "sha512-er224jRepVAVLnMF2Q7MZJCq5CsdH2oqjP4dT7K6ij09Kyd+R21r7UVJrF0buMVdZS5QRhDzpvzAxHxabQadow==", 404 + "dev": true, 405 + "license": "MIT", 406 + "dependencies": { 407 + "@typescript-eslint/typescript-estree": "8.18.0", 408 + "@typescript-eslint/utils": "8.18.0", 409 + "debug": "^4.3.4", 410 + "ts-api-utils": "^1.3.0" 411 + }, 412 + "engines": { 413 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 414 + }, 415 + "funding": { 416 + "type": "opencollective", 417 + "url": "https://opencollective.com/typescript-eslint" 418 + }, 419 + "peerDependencies": { 420 + "eslint": "^8.57.0 || ^9.0.0", 421 + "typescript": ">=4.8.4 <5.8.0" 422 + } 423 + }, 424 + "node_modules/@typescript-eslint/types": { 425 + "version": "8.18.0", 426 + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.18.0.tgz", 427 + "integrity": "sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA==", 428 + "dev": true, 429 + "license": "MIT", 430 + "engines": { 431 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 432 + }, 433 + "funding": { 434 + "type": "opencollective", 435 + "url": "https://opencollective.com/typescript-eslint" 436 + } 437 + }, 438 + "node_modules/@typescript-eslint/typescript-estree": { 439 + "version": "8.18.0", 440 + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.0.tgz", 441 + "integrity": "sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg==", 442 + "dev": true, 443 + "license": "MIT", 444 + "dependencies": { 445 + "@typescript-eslint/types": "8.18.0", 446 + "@typescript-eslint/visitor-keys": "8.18.0", 447 + "debug": "^4.3.4", 448 + "fast-glob": "^3.3.2", 449 + "is-glob": "^4.0.3", 450 + "minimatch": "^9.0.4", 451 + "semver": "^7.6.0", 452 + "ts-api-utils": "^1.3.0" 453 + }, 454 + "engines": { 455 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 456 + }, 457 + "funding": { 458 + "type": "opencollective", 459 + "url": "https://opencollective.com/typescript-eslint" 460 + }, 461 + "peerDependencies": { 462 + "typescript": ">=4.8.4 <5.8.0" 463 + } 464 + }, 465 + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 466 + "version": "2.0.1", 467 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 468 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 469 + "dev": true, 470 + "license": "MIT", 471 + "dependencies": { 472 + "balanced-match": "^1.0.0" 473 + } 474 + }, 475 + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 476 + "version": "9.0.5", 477 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 478 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 479 + "dev": true, 480 + "license": "ISC", 481 + "dependencies": { 482 + "brace-expansion": "^2.0.1" 483 + }, 484 + "engines": { 485 + "node": ">=16 || 14 >=14.17" 486 + }, 487 + "funding": { 488 + "url": "https://github.com/sponsors/isaacs" 489 + } 490 + }, 491 + "node_modules/@typescript-eslint/utils": { 492 + "version": "8.18.0", 493 + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.18.0.tgz", 494 + "integrity": "sha512-p6GLdY383i7h5b0Qrfbix3Vc3+J2k6QWw6UMUeY5JGfm3C5LbZ4QIZzJNoNOfgyRe0uuYKjvVOsO/jD4SJO+xg==", 495 + "dev": true, 496 + "license": "MIT", 497 + "dependencies": { 498 + "@eslint-community/eslint-utils": "^4.4.0", 499 + "@typescript-eslint/scope-manager": "8.18.0", 500 + "@typescript-eslint/types": "8.18.0", 501 + "@typescript-eslint/typescript-estree": "8.18.0" 502 + }, 503 + "engines": { 504 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 505 + }, 506 + "funding": { 507 + "type": "opencollective", 508 + "url": "https://opencollective.com/typescript-eslint" 509 + }, 510 + "peerDependencies": { 511 + "eslint": "^8.57.0 || ^9.0.0", 512 + "typescript": ">=4.8.4 <5.8.0" 513 + } 514 + }, 515 + "node_modules/@typescript-eslint/visitor-keys": { 516 + "version": "8.18.0", 517 + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.0.tgz", 518 + "integrity": "sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw==", 519 + "dev": true, 520 + "license": "MIT", 521 + "dependencies": { 522 + "@typescript-eslint/types": "8.18.0", 523 + "eslint-visitor-keys": "^4.2.0" 524 + }, 525 + "engines": { 526 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 527 + }, 528 + "funding": { 529 + "type": "opencollective", 530 + "url": "https://opencollective.com/typescript-eslint" 531 + } 368 532 }, 369 533 "node_modules/abbrev": { 370 534 "version": "2.0.0", ··· 631 331 } 632 332 }, 633 333 "node_modules/agent-base": { 634 - "version": "7.1.1", 635 - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", 636 - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", 334 + "version": "7.1.3", 335 + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", 336 + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", 637 337 "license": "MIT", 638 - "dependencies": { 639 - "debug": "^4.3.4" 640 - }, 641 338 "engines": { 642 339 "node": ">= 14" 643 - } 644 - }, 645 - "node_modules/aggregate-error": { 646 - "version": "3.1.0", 647 - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", 648 - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", 649 - "license": "MIT", 650 - "dependencies": { 651 - "clean-stack": "^2.0.0", 652 - "indent-string": "^4.0.0" 653 - }, 654 - "engines": { 655 - "node": ">=8" 656 340 } 657 341 }, 658 342 "node_modules/ajv": { ··· 756 472 "version": "1.2.5", 757 473 "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", 758 474 "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", 759 - "dev": true, 760 - "license": "MIT", 761 - "dependencies": { 762 - "call-bind": "^1.0.7", 763 - "define-properties": "^1.2.1", 764 - "es-abstract": "^1.23.2", 765 - "es-errors": "^1.3.0", 766 - "es-object-atoms": "^1.0.0", 767 - "es-shim-unscopables": "^1.0.2" 768 - }, 769 - "engines": { 770 - "node": ">= 0.4" 771 - }, 772 - "funding": { 773 - "url": "https://github.com/sponsors/ljharb" 774 - } 775 - }, 776 - "node_modules/array.prototype.findlastindex": { 777 - "version": "1.2.5", 778 - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", 779 - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", 780 475 "dev": true, 781 476 "license": "MIT", 782 477 "dependencies": { ··· 897 634 } 898 635 }, 899 636 "node_modules/brace-expansion": { 900 - "version": "2.0.1", 901 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 902 - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 637 + "version": "1.1.11", 638 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 639 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 640 + "dev": true, 903 641 "license": "MIT", 904 642 "dependencies": { 905 - "balanced-match": "^1.0.0" 643 + "balanced-match": "^1.0.0", 644 + "concat-map": "0.0.1" 906 645 } 907 646 }, 908 647 "node_modules/braces": { ··· 927 662 "dev": true, 928 663 "license": "ISC" 929 664 }, 930 - "node_modules/builtins": { 931 - "version": "5.1.0", 932 - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz", 933 - "integrity": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==", 934 - "dev": true, 935 - "license": "MIT", 936 - "dependencies": { 937 - "semver": "^7.0.0" 938 - } 939 - }, 940 665 "node_modules/cacache": { 941 - "version": "18.0.4", 942 - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", 943 - "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", 666 + "version": "19.0.1", 667 + "resolved": "https://registry.npmjs.org/cacache/-/cacache-19.0.1.tgz", 668 + "integrity": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==", 944 669 "license": "ISC", 945 670 "dependencies": { 946 - "@npmcli/fs": "^3.1.0", 671 + "@npmcli/fs": "^4.0.0", 947 672 "fs-minipass": "^3.0.0", 948 673 "glob": "^10.2.2", 949 674 "lru-cache": "^10.0.1", ··· 941 686 "minipass-collect": "^2.0.1", 942 687 "minipass-flush": "^1.0.5", 943 688 "minipass-pipeline": "^1.2.4", 944 - "p-map": "^4.0.0", 945 - "ssri": "^10.0.0", 946 - "tar": "^6.1.11", 947 - "unique-filename": "^3.0.0" 689 + "p-map": "^7.0.2", 690 + "ssri": "^12.0.0", 691 + "tar": "^7.4.3", 692 + "unique-filename": "^4.0.0" 948 693 }, 949 694 "engines": { 950 - "node": "^16.14.0 || >=18.0.0" 695 + "node": "^18.17.0 || >=20.5.0" 951 696 } 952 697 }, 953 698 "node_modules/call-bind": { 954 - "version": "1.0.7", 955 - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 956 - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 699 + "version": "1.0.8", 700 + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", 701 + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", 957 702 "dev": true, 958 703 "license": "MIT", 959 704 "dependencies": { 705 + "call-bind-apply-helpers": "^1.0.0", 960 706 "es-define-property": "^1.0.0", 961 - "es-errors": "^1.3.0", 962 - "function-bind": "^1.1.2", 963 707 "get-intrinsic": "^1.2.4", 964 - "set-function-length": "^1.2.1" 708 + "set-function-length": "^1.2.2" 965 709 }, 966 710 "engines": { 967 711 "node": ">= 0.4" 968 712 }, 969 713 "funding": { 970 714 "url": "https://github.com/sponsors/ljharb" 715 + } 716 + }, 717 + "node_modules/call-bind-apply-helpers": { 718 + "version": "1.0.1", 719 + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", 720 + "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", 721 + "dev": true, 722 + "license": "MIT", 723 + "dependencies": { 724 + "es-errors": "^1.3.0", 725 + "function-bind": "^1.1.2" 726 + }, 727 + "engines": { 728 + "node": ">= 0.4" 971 729 } 972 730 }, 973 731 "node_modules/caller": { ··· 1030 762 "url": "https://github.com/chalk/chalk?sponsor=1" 1031 763 } 1032 764 }, 1033 - "node_modules/chalk/node_modules/supports-color": { 1034 - "version": "7.2.0", 1035 - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1036 - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1037 - "dev": true, 1038 - "license": "MIT", 1039 - "dependencies": { 1040 - "has-flag": "^4.0.0" 1041 - }, 1042 - "engines": { 1043 - "node": ">=8" 1044 - } 1045 - }, 1046 765 "node_modules/chokidar": { 1047 766 "version": "3.6.0", 1048 767 "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", ··· 1055 800 "fsevents": "~2.3.2" 1056 801 } 1057 802 }, 1058 - "node_modules/chownr": { 1059 - "version": "2.0.0", 1060 - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 1061 - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 803 + "node_modules/chokidar/node_modules/glob-parent": { 804 + "version": "5.1.2", 805 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 806 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 807 + "dev": true, 1062 808 "license": "ISC", 809 + "dependencies": { 810 + "is-glob": "^4.0.1" 811 + }, 1063 812 "engines": { 1064 - "node": ">=10" 813 + "node": ">= 6" 1065 814 } 1066 815 }, 1067 - "node_modules/clean-stack": { 1068 - "version": "2.2.0", 1069 - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", 1070 - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", 1071 - "license": "MIT", 816 + "node_modules/chownr": { 817 + "version": "3.0.0", 818 + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", 819 + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", 820 + "license": "BlueOak-1.0.0", 1072 821 "engines": { 1073 - "node": ">=6" 822 + "node": ">=18" 1074 823 } 1075 824 }, 1076 825 "node_modules/cliui": { ··· 1286 1027 } 1287 1028 }, 1288 1029 "node_modules/debug": { 1289 - "version": "4.3.7", 1290 - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1291 - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1030 + "version": "4.4.0", 1031 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1032 + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1292 1033 "license": "MIT", 1293 1034 "dependencies": { 1294 1035 "ms": "^2.1.3" ··· 1369 1110 } 1370 1111 }, 1371 1112 "node_modules/doctrine": { 1372 - "version": "3.0.0", 1373 - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1374 - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1113 + "version": "2.1.0", 1114 + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1115 + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1375 1116 "dev": true, 1376 1117 "license": "Apache-2.0", 1377 1118 "dependencies": { 1378 1119 "esutils": "^2.0.2" 1379 1120 }, 1380 1121 "engines": { 1381 - "node": ">=6.0.0" 1122 + "node": ">=0.10.0" 1123 + } 1124 + }, 1125 + "node_modules/dunder-proto": { 1126 + "version": "1.0.0", 1127 + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz", 1128 + "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==", 1129 + "dev": true, 1130 + "license": "MIT", 1131 + "dependencies": { 1132 + "call-bind-apply-helpers": "^1.0.0", 1133 + "es-errors": "^1.3.0", 1134 + "gopd": "^1.2.0" 1135 + }, 1136 + "engines": { 1137 + "node": ">= 0.4" 1382 1138 } 1383 1139 }, 1384 1140 "node_modules/eastasianwidth": { ··· 1418 1144 "iconv-lite": "^0.6.2" 1419 1145 } 1420 1146 }, 1147 + "node_modules/enhanced-resolve": { 1148 + "version": "5.17.1", 1149 + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", 1150 + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", 1151 + "dev": true, 1152 + "license": "MIT", 1153 + "dependencies": { 1154 + "graceful-fs": "^4.2.4", 1155 + "tapable": "^2.2.0" 1156 + }, 1157 + "engines": { 1158 + "node": ">=10.13.0" 1159 + } 1160 + }, 1421 1161 "node_modules/env-paths": { 1422 1162 "version": "2.2.1", 1423 1163 "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", ··· 1446 1158 "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", 1447 1159 "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", 1448 1160 "license": "MIT" 1449 - }, 1450 - "node_modules/error-ex": { 1451 - "version": "1.3.2", 1452 - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1453 - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1454 - "dev": true, 1455 - "license": "MIT", 1456 - "dependencies": { 1457 - "is-arrayish": "^0.2.1" 1458 - } 1459 1161 }, 1460 1162 "node_modules/es-abstract": { 1461 1163 "version": "1.23.5", ··· 1509 1231 } 1510 1232 }, 1511 1233 "node_modules/es-define-property": { 1512 - "version": "1.0.0", 1513 - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1514 - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1234 + "version": "1.0.1", 1235 + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1236 + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1515 1237 "dev": true, 1516 1238 "license": "MIT", 1517 - "dependencies": { 1518 - "get-intrinsic": "^1.2.4" 1519 - }, 1520 1239 "engines": { 1521 1240 "node": ">= 0.4" 1522 1241 } ··· 1635 1360 } 1636 1361 }, 1637 1362 "node_modules/eslint": { 1638 - "version": "8.57.1", 1639 - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 1640 - "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 1641 - "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 1363 + "version": "9.16.0", 1364 + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.16.0.tgz", 1365 + "integrity": "sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==", 1642 1366 "dev": true, 1643 1367 "license": "MIT", 1644 1368 "dependencies": { 1645 1369 "@eslint-community/eslint-utils": "^4.2.0", 1646 - "@eslint-community/regexpp": "^4.6.1", 1647 - "@eslint/eslintrc": "^2.1.4", 1648 - "@eslint/js": "8.57.1", 1649 - "@humanwhocodes/config-array": "^0.13.0", 1370 + "@eslint-community/regexpp": "^4.12.1", 1371 + "@eslint/config-array": "^0.19.0", 1372 + "@eslint/core": "^0.9.0", 1373 + "@eslint/eslintrc": "^3.2.0", 1374 + "@eslint/js": "9.16.0", 1375 + "@eslint/plugin-kit": "^0.2.3", 1376 + "@humanfs/node": "^0.16.6", 1650 1377 "@humanwhocodes/module-importer": "^1.0.1", 1651 - "@nodelib/fs.walk": "^1.2.8", 1652 - "@ungap/structured-clone": "^1.2.0", 1378 + "@humanwhocodes/retry": "^0.4.1", 1379 + "@types/estree": "^1.0.6", 1380 + "@types/json-schema": "^7.0.15", 1653 1381 "ajv": "^6.12.4", 1654 1382 "chalk": "^4.0.0", 1655 - "cross-spawn": "^7.0.2", 1383 + "cross-spawn": "^7.0.5", 1656 1384 "debug": "^4.3.2", 1657 - "doctrine": "^3.0.0", 1658 1385 "escape-string-regexp": "^4.0.0", 1659 - "eslint-scope": "^7.2.2", 1660 - "eslint-visitor-keys": "^3.4.3", 1661 - "espree": "^9.6.1", 1662 - "esquery": "^1.4.2", 1386 + "eslint-scope": "^8.2.0", 1387 + "eslint-visitor-keys": "^4.2.0", 1388 + "espree": "^10.3.0", 1389 + "esquery": "^1.5.0", 1663 1390 "esutils": "^2.0.2", 1664 1391 "fast-deep-equal": "^3.1.3", 1665 - "file-entry-cache": "^6.0.1", 1392 + "file-entry-cache": "^8.0.0", 1666 1393 "find-up": "^5.0.0", 1667 1394 "glob-parent": "^6.0.2", 1668 - "globals": "^13.19.0", 1669 - "graphemer": "^1.4.0", 1670 1395 "ignore": "^5.2.0", 1671 1396 "imurmurhash": "^0.1.4", 1672 1397 "is-glob": "^4.0.0", 1673 - "is-path-inside": "^3.0.3", 1674 - "js-yaml": "^4.1.0", 1675 1398 "json-stable-stringify-without-jsonify": "^1.0.1", 1676 - "levn": "^0.4.1", 1677 1399 "lodash.merge": "^4.6.2", 1678 1400 "minimatch": "^3.1.2", 1679 1401 "natural-compare": "^1.4.0", 1680 - "optionator": "^0.9.3", 1681 - "strip-ansi": "^6.0.1", 1682 - "text-table": "^0.2.0" 1402 + "optionator": "^0.9.3" 1683 1403 }, 1684 1404 "bin": { 1685 1405 "eslint": "bin/eslint.js" 1686 1406 }, 1687 1407 "engines": { 1688 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1408 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1689 1409 }, 1690 1410 "funding": { 1691 - "url": "https://opencollective.com/eslint" 1692 - } 1693 - }, 1694 - "node_modules/eslint-config-standard": { 1695 - "version": "17.1.0", 1696 - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", 1697 - "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", 1698 - "dev": true, 1699 - "funding": [ 1700 - { 1701 - "type": "github", 1702 - "url": "https://github.com/sponsors/feross" 1703 - }, 1704 - { 1705 - "type": "patreon", 1706 - "url": "https://www.patreon.com/feross" 1707 - }, 1708 - { 1709 - "type": "consulting", 1710 - "url": "https://feross.org/support" 1711 - } 1712 - ], 1713 - "license": "MIT", 1714 - "engines": { 1715 - "node": ">=12.0.0" 1411 + "url": "https://eslint.org/donate" 1716 1412 }, 1717 1413 "peerDependencies": { 1718 - "eslint": "^8.0.1", 1719 - "eslint-plugin-import": "^2.25.2", 1720 - "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", 1721 - "eslint-plugin-promise": "^6.0.0" 1722 - } 1723 - }, 1724 - "node_modules/eslint-config-standard-jsx": { 1725 - "version": "11.0.0", 1726 - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", 1727 - "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", 1728 - "dev": true, 1729 - "funding": [ 1730 - { 1731 - "type": "github", 1732 - "url": "https://github.com/sponsors/feross" 1733 - }, 1734 - { 1735 - "type": "patreon", 1736 - "url": "https://www.patreon.com/feross" 1737 - }, 1738 - { 1739 - "type": "consulting", 1740 - "url": "https://feross.org/support" 1741 - } 1742 - ], 1743 - "license": "MIT", 1744 - "peerDependencies": { 1745 - "eslint": "^8.8.0", 1746 - "eslint-plugin-react": "^7.28.0" 1747 - } 1748 - }, 1749 - "node_modules/eslint-import-resolver-node": { 1750 - "version": "0.3.9", 1751 - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", 1752 - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", 1753 - "dev": true, 1754 - "license": "MIT", 1755 - "dependencies": { 1756 - "debug": "^3.2.7", 1757 - "is-core-module": "^2.13.0", 1758 - "resolve": "^1.22.4" 1759 - } 1760 - }, 1761 - "node_modules/eslint-import-resolver-node/node_modules/debug": { 1762 - "version": "3.2.7", 1763 - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1764 - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1765 - "dev": true, 1766 - "license": "MIT", 1767 - "dependencies": { 1768 - "ms": "^2.1.1" 1769 - } 1770 - }, 1771 - "node_modules/eslint-module-utils": { 1772 - "version": "2.12.0", 1773 - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", 1774 - "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", 1775 - "dev": true, 1776 - "license": "MIT", 1777 - "dependencies": { 1778 - "debug": "^3.2.7" 1779 - }, 1780 - "engines": { 1781 - "node": ">=4" 1414 + "jiti": "*" 1782 1415 }, 1783 1416 "peerDependenciesMeta": { 1784 - "eslint": { 1417 + "jiti": { 1785 1418 "optional": true 1786 1419 } 1787 1420 } 1788 1421 }, 1789 - "node_modules/eslint-module-utils/node_modules/debug": { 1790 - "version": "3.2.7", 1791 - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1792 - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1422 + "node_modules/eslint-compat-utils": { 1423 + "version": "0.5.1", 1424 + "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz", 1425 + "integrity": "sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==", 1793 1426 "dev": true, 1794 1427 "license": "MIT", 1795 1428 "dependencies": { 1796 - "ms": "^2.1.1" 1797 - } 1798 - }, 1799 - "node_modules/eslint-plugin-es": { 1800 - "version": "4.1.0", 1801 - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", 1802 - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", 1803 - "dev": true, 1804 - "license": "MIT", 1805 - "dependencies": { 1806 - "eslint-utils": "^2.0.0", 1807 - "regexpp": "^3.0.0" 1429 + "semver": "^7.5.4" 1808 1430 }, 1809 1431 "engines": { 1810 - "node": ">=8.10.0" 1811 - }, 1812 - "funding": { 1813 - "url": "https://github.com/sponsors/mysticatea" 1432 + "node": ">=12" 1814 1433 }, 1815 1434 "peerDependencies": { 1816 - "eslint": ">=4.19.1" 1435 + "eslint": ">=6.0.0" 1817 1436 } 1818 1437 }, 1819 - "node_modules/eslint-plugin-es/node_modules/eslint-utils": { 1820 - "version": "2.1.0", 1821 - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", 1822 - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", 1438 + "node_modules/eslint-plugin-es-x": { 1439 + "version": "7.8.0", 1440 + "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz", 1441 + "integrity": "sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==", 1823 1442 "dev": true, 1443 + "funding": [ 1444 + "https://github.com/sponsors/ota-meshi", 1445 + "https://opencollective.com/eslint" 1446 + ], 1824 1447 "license": "MIT", 1825 1448 "dependencies": { 1826 - "eslint-visitor-keys": "^1.1.0" 1449 + "@eslint-community/eslint-utils": "^4.1.2", 1450 + "@eslint-community/regexpp": "^4.11.0", 1451 + "eslint-compat-utils": "^0.5.1" 1827 1452 }, 1828 1453 "engines": { 1829 - "node": ">=6" 1830 - }, 1831 - "funding": { 1832 - "url": "https://github.com/sponsors/mysticatea" 1833 - } 1834 - }, 1835 - "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { 1836 - "version": "1.3.0", 1837 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", 1838 - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", 1839 - "dev": true, 1840 - "license": "Apache-2.0", 1841 - "engines": { 1842 - "node": ">=4" 1843 - } 1844 - }, 1845 - "node_modules/eslint-plugin-import": { 1846 - "version": "2.31.0", 1847 - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", 1848 - "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", 1849 - "dev": true, 1850 - "license": "MIT", 1851 - "dependencies": { 1852 - "@rtsao/scc": "^1.1.0", 1853 - "array-includes": "^3.1.8", 1854 - "array.prototype.findlastindex": "^1.2.5", 1855 - "array.prototype.flat": "^1.3.2", 1856 - "array.prototype.flatmap": "^1.3.2", 1857 - "debug": "^3.2.7", 1858 - "doctrine": "^2.1.0", 1859 - "eslint-import-resolver-node": "^0.3.9", 1860 - "eslint-module-utils": "^2.12.0", 1861 - "hasown": "^2.0.2", 1862 - "is-core-module": "^2.15.1", 1863 - "is-glob": "^4.0.3", 1864 - "minimatch": "^3.1.2", 1865 - "object.fromentries": "^2.0.8", 1866 - "object.groupby": "^1.0.3", 1867 - "object.values": "^1.2.0", 1868 - "semver": "^6.3.1", 1869 - "string.prototype.trimend": "^1.0.8", 1870 - "tsconfig-paths": "^3.15.0" 1871 - }, 1872 - "engines": { 1873 - "node": ">=4" 1454 + "node": "^14.18.0 || >=16.0.0" 1874 1455 }, 1875 1456 "peerDependencies": { 1876 - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" 1877 - } 1878 - }, 1879 - "node_modules/eslint-plugin-import/node_modules/brace-expansion": { 1880 - "version": "1.1.11", 1881 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1882 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1883 - "dev": true, 1884 - "license": "MIT", 1885 - "dependencies": { 1886 - "balanced-match": "^1.0.0", 1887 - "concat-map": "0.0.1" 1888 - } 1889 - }, 1890 - "node_modules/eslint-plugin-import/node_modules/debug": { 1891 - "version": "3.2.7", 1892 - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1893 - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1894 - "dev": true, 1895 - "license": "MIT", 1896 - "dependencies": { 1897 - "ms": "^2.1.1" 1898 - } 1899 - }, 1900 - "node_modules/eslint-plugin-import/node_modules/doctrine": { 1901 - "version": "2.1.0", 1902 - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1903 - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1904 - "dev": true, 1905 - "license": "Apache-2.0", 1906 - "dependencies": { 1907 - "esutils": "^2.0.2" 1908 - }, 1909 - "engines": { 1910 - "node": ">=0.10.0" 1911 - } 1912 - }, 1913 - "node_modules/eslint-plugin-import/node_modules/minimatch": { 1914 - "version": "3.1.2", 1915 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1916 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1917 - "dev": true, 1918 - "license": "ISC", 1919 - "dependencies": { 1920 - "brace-expansion": "^1.1.7" 1921 - }, 1922 - "engines": { 1923 - "node": "*" 1924 - } 1925 - }, 1926 - "node_modules/eslint-plugin-import/node_modules/semver": { 1927 - "version": "6.3.1", 1928 - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1929 - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1930 - "dev": true, 1931 - "license": "ISC", 1932 - "bin": { 1933 - "semver": "bin/semver.js" 1457 + "eslint": ">=8" 1934 1458 } 1935 1459 }, 1936 1460 "node_modules/eslint-plugin-n": { 1937 - "version": "15.7.0", 1938 - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", 1939 - "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", 1461 + "version": "17.15.0", 1462 + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-17.15.0.tgz", 1463 + "integrity": "sha512-xF3zJkOfLlFOm5TvmqmsnA9/fO+/z2pYs0dkuKXKN/ymS6UB1yEcaoIkqxLKQ9Dw/WmLX/Tdh6/5ZS5azVixFQ==", 1940 1464 "dev": true, 1941 1465 "license": "MIT", 1942 1466 "dependencies": { 1943 - "builtins": "^5.0.1", 1944 - "eslint-plugin-es": "^4.1.0", 1945 - "eslint-utils": "^3.0.0", 1946 - "ignore": "^5.1.1", 1947 - "is-core-module": "^2.11.0", 1948 - "minimatch": "^3.1.2", 1949 - "resolve": "^1.22.1", 1950 - "semver": "^7.3.8" 1467 + "@eslint-community/eslint-utils": "^4.4.1", 1468 + "enhanced-resolve": "^5.17.1", 1469 + "eslint-plugin-es-x": "^7.8.0", 1470 + "get-tsconfig": "^4.8.1", 1471 + "globals": "^15.11.0", 1472 + "ignore": "^5.3.2", 1473 + "minimatch": "^9.0.5", 1474 + "semver": "^7.6.3" 1951 1475 }, 1952 1476 "engines": { 1953 - "node": ">=12.22.0" 1477 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1954 1478 }, 1955 1479 "funding": { 1956 - "url": "https://github.com/sponsors/mysticatea" 1480 + "url": "https://opencollective.com/eslint" 1957 1481 }, 1958 1482 "peerDependencies": { 1959 - "eslint": ">=7.0.0" 1483 + "eslint": ">=8.23.0" 1960 1484 } 1961 1485 }, 1962 1486 "node_modules/eslint-plugin-n/node_modules/brace-expansion": { 1963 - "version": "1.1.11", 1964 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1965 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1487 + "version": "2.0.1", 1488 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1489 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1966 1490 "dev": true, 1967 1491 "license": "MIT", 1968 1492 "dependencies": { 1969 - "balanced-match": "^1.0.0", 1970 - "concat-map": "0.0.1" 1493 + "balanced-match": "^1.0.0" 1494 + } 1495 + }, 1496 + "node_modules/eslint-plugin-n/node_modules/globals": { 1497 + "version": "15.13.0", 1498 + "resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz", 1499 + "integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==", 1500 + "dev": true, 1501 + "license": "MIT", 1502 + "engines": { 1503 + "node": ">=18" 1504 + }, 1505 + "funding": { 1506 + "url": "https://github.com/sponsors/sindresorhus" 1971 1507 } 1972 1508 }, 1973 1509 "node_modules/eslint-plugin-n/node_modules/minimatch": { 1974 - "version": "3.1.2", 1975 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1976 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1510 + "version": "9.0.5", 1511 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1512 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1977 1513 "dev": true, 1978 1514 "license": "ISC", 1979 1515 "dependencies": { 1980 - "brace-expansion": "^1.1.7" 1516 + "brace-expansion": "^2.0.1" 1981 1517 }, 1982 1518 "engines": { 1983 - "node": "*" 1519 + "node": ">=16 || 14 >=14.17" 1520 + }, 1521 + "funding": { 1522 + "url": "https://github.com/sponsors/isaacs" 1984 1523 } 1985 1524 }, 1986 1525 "node_modules/eslint-plugin-promise": { 1987 - "version": "6.6.0", 1988 - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.6.0.tgz", 1989 - "integrity": "sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==", 1526 + "version": "7.2.1", 1527 + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-7.2.1.tgz", 1528 + "integrity": "sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==", 1990 1529 "dev": true, 1991 1530 "license": "ISC", 1531 + "dependencies": { 1532 + "@eslint-community/eslint-utils": "^4.4.0" 1533 + }, 1992 1534 "engines": { 1993 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1535 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1994 1536 }, 1995 1537 "funding": { 1996 1538 "url": "https://opencollective.com/eslint" ··· 1849 1757 "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" 1850 1758 } 1851 1759 }, 1852 - "node_modules/eslint-plugin-react/node_modules/brace-expansion": { 1853 - "version": "1.1.11", 1854 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1855 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1856 - "dev": true, 1857 - "license": "MIT", 1858 - "dependencies": { 1859 - "balanced-match": "^1.0.0", 1860 - "concat-map": "0.0.1" 1861 - } 1862 - }, 1863 - "node_modules/eslint-plugin-react/node_modules/doctrine": { 1864 - "version": "2.1.0", 1865 - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1866 - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1867 - "dev": true, 1868 - "license": "Apache-2.0", 1869 - "dependencies": { 1870 - "esutils": "^2.0.2" 1871 - }, 1872 - "engines": { 1873 - "node": ">=0.10.0" 1874 - } 1875 - }, 1876 - "node_modules/eslint-plugin-react/node_modules/minimatch": { 1877 - "version": "3.1.2", 1878 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1879 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1880 - "dev": true, 1881 - "license": "ISC", 1882 - "dependencies": { 1883 - "brace-expansion": "^1.1.7" 1884 - }, 1885 - "engines": { 1886 - "node": "*" 1887 - } 1888 - }, 1889 - "node_modules/eslint-plugin-react/node_modules/resolve": { 1890 - "version": "2.0.0-next.5", 1891 - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", 1892 - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", 1893 - "dev": true, 1894 - "license": "MIT", 1895 - "dependencies": { 1896 - "is-core-module": "^2.13.0", 1897 - "path-parse": "^1.0.7", 1898 - "supports-preserve-symlinks-flag": "^1.0.0" 1899 - }, 1900 - "bin": { 1901 - "resolve": "bin/resolve" 1902 - }, 1903 - "funding": { 1904 - "url": "https://github.com/sponsors/ljharb" 1905 - } 1906 - }, 1907 1760 "node_modules/eslint-plugin-react/node_modules/semver": { 1908 1761 "version": "6.3.1", 1909 1762 "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", ··· 1860 1823 } 1861 1824 }, 1862 1825 "node_modules/eslint-scope": { 1863 - "version": "7.2.2", 1864 - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1865 - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1826 + "version": "8.2.0", 1827 + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 1828 + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 1866 1829 "dev": true, 1867 1830 "license": "BSD-2-Clause", 1868 1831 "dependencies": { ··· 1870 1833 "estraverse": "^5.2.0" 1871 1834 }, 1872 1835 "engines": { 1873 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1836 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1874 1837 }, 1875 1838 "funding": { 1876 1839 "url": "https://opencollective.com/eslint" 1877 - } 1878 - }, 1879 - "node_modules/eslint-utils": { 1880 - "version": "3.0.0", 1881 - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 1882 - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 1883 - "dev": true, 1884 - "license": "MIT", 1885 - "dependencies": { 1886 - "eslint-visitor-keys": "^2.0.0" 1887 - }, 1888 - "engines": { 1889 - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 1890 - }, 1891 - "funding": { 1892 - "url": "https://github.com/sponsors/mysticatea" 1893 - }, 1894 - "peerDependencies": { 1895 - "eslint": ">=5" 1896 - } 1897 - }, 1898 - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 1899 - "version": "2.1.0", 1900 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 1901 - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 1902 - "dev": true, 1903 - "license": "Apache-2.0", 1904 - "engines": { 1905 - "node": ">=10" 1906 1840 } 1907 1841 }, 1908 1842 "node_modules/eslint-visitor-keys": { 1909 - "version": "3.4.3", 1910 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1911 - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1843 + "version": "4.2.0", 1844 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1845 + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1912 1846 "dev": true, 1913 1847 "license": "Apache-2.0", 1914 1848 "engines": { 1915 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1849 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1916 1850 }, 1917 1851 "funding": { 1918 1852 "url": "https://opencollective.com/eslint" 1919 1853 } 1920 1854 }, 1921 - "node_modules/eslint/node_modules/ansi-regex": { 1922 - "version": "5.0.1", 1923 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1924 - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1925 - "dev": true, 1926 - "license": "MIT", 1927 - "engines": { 1928 - "node": ">=8" 1929 - } 1930 - }, 1931 - "node_modules/eslint/node_modules/brace-expansion": { 1932 - "version": "1.1.11", 1933 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1934 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1935 - "dev": true, 1936 - "license": "MIT", 1937 - "dependencies": { 1938 - "balanced-match": "^1.0.0", 1939 - "concat-map": "0.0.1" 1940 - } 1941 - }, 1942 - "node_modules/eslint/node_modules/glob-parent": { 1943 - "version": "6.0.2", 1944 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1945 - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1946 - "dev": true, 1947 - "license": "ISC", 1948 - "dependencies": { 1949 - "is-glob": "^4.0.3" 1950 - }, 1951 - "engines": { 1952 - "node": ">=10.13.0" 1953 - } 1954 - }, 1955 - "node_modules/eslint/node_modules/minimatch": { 1956 - "version": "3.1.2", 1957 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1958 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1959 - "dev": true, 1960 - "license": "ISC", 1961 - "dependencies": { 1962 - "brace-expansion": "^1.1.7" 1963 - }, 1964 - "engines": { 1965 - "node": "*" 1966 - } 1967 - }, 1968 - "node_modules/eslint/node_modules/strip-ansi": { 1969 - "version": "6.0.1", 1970 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1971 - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1972 - "dev": true, 1973 - "license": "MIT", 1974 - "dependencies": { 1975 - "ansi-regex": "^5.0.1" 1976 - }, 1977 - "engines": { 1978 - "node": ">=8" 1979 - } 1980 - }, 1981 1855 "node_modules/espree": { 1982 - "version": "9.6.1", 1983 - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1984 - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1856 + "version": "10.3.0", 1857 + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1858 + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1985 1859 "dev": true, 1986 1860 "license": "BSD-2-Clause", 1987 1861 "dependencies": { 1988 - "acorn": "^8.9.0", 1862 + "acorn": "^8.14.0", 1989 1863 "acorn-jsx": "^5.3.2", 1990 - "eslint-visitor-keys": "^3.4.1" 1864 + "eslint-visitor-keys": "^4.2.0" 1991 1865 }, 1992 1866 "engines": { 1993 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1867 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1994 1868 }, 1995 1869 "funding": { 1996 1870 "url": "https://opencollective.com/eslint" ··· 1966 2018 "dev": true, 1967 2019 "license": "MIT" 1968 2020 }, 2021 + "node_modules/fast-glob": { 2022 + "version": "3.3.2", 2023 + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 2024 + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 2025 + "dev": true, 2026 + "license": "MIT", 2027 + "dependencies": { 2028 + "@nodelib/fs.stat": "^2.0.2", 2029 + "@nodelib/fs.walk": "^1.2.3", 2030 + "glob-parent": "^5.1.2", 2031 + "merge2": "^1.3.0", 2032 + "micromatch": "^4.0.4" 2033 + }, 2034 + "engines": { 2035 + "node": ">=8.6.0" 2036 + } 2037 + }, 2038 + "node_modules/fast-glob/node_modules/glob-parent": { 2039 + "version": "5.1.2", 2040 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2041 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2042 + "dev": true, 2043 + "license": "ISC", 2044 + "dependencies": { 2045 + "is-glob": "^4.0.1" 2046 + }, 2047 + "engines": { 2048 + "node": ">= 6" 2049 + } 2050 + }, 1969 2051 "node_modules/fast-json-stable-stringify": { 1970 2052 "version": "2.1.0", 1971 2053 "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", ··· 2021 2043 } 2022 2044 }, 2023 2045 "node_modules/file-entry-cache": { 2024 - "version": "6.0.1", 2025 - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 2026 - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 2046 + "version": "8.0.0", 2047 + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2048 + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2027 2049 "dev": true, 2028 2050 "license": "MIT", 2029 2051 "dependencies": { 2030 - "flat-cache": "^3.0.4" 2052 + "flat-cache": "^4.0.0" 2031 2053 }, 2032 2054 "engines": { 2033 - "node": "^10.12.0 || >=12.0.0" 2055 + "node": ">=16.0.0" 2034 2056 } 2035 2057 }, 2036 2058 "node_modules/file-uri-to-path": { ··· 2081 2103 } 2082 2104 }, 2083 2105 "node_modules/flat-cache": { 2084 - "version": "3.2.0", 2085 - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 2086 - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 2106 + "version": "4.0.1", 2107 + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2108 + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2087 2109 "dev": true, 2088 2110 "license": "MIT", 2089 2111 "dependencies": { 2090 2112 "flatted": "^3.2.9", 2091 - "keyv": "^4.5.3", 2092 - "rimraf": "^3.0.2" 2113 + "keyv": "^4.5.4" 2093 2114 }, 2094 2115 "engines": { 2095 - "node": "^10.12.0 || >=12.0.0" 2116 + "node": ">=16" 2096 2117 } 2097 2118 }, 2098 2119 "node_modules/flatted": { ··· 2138 2161 "engines": { 2139 2162 "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 2140 2163 } 2141 - }, 2142 - "node_modules/fs.realpath": { 2143 - "version": "1.0.0", 2144 - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2145 - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2146 - "dev": true, 2147 - "license": "ISC" 2148 2164 }, 2149 2165 "node_modules/fsevents": { 2150 2166 "version": "2.3.3", ··· 2204 2234 } 2205 2235 }, 2206 2236 "node_modules/get-intrinsic": { 2207 - "version": "1.2.4", 2208 - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 2209 - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 2237 + "version": "1.2.5", 2238 + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.5.tgz", 2239 + "integrity": "sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg==", 2210 2240 "dev": true, 2211 2241 "license": "MIT", 2212 2242 "dependencies": { 2243 + "call-bind-apply-helpers": "^1.0.0", 2244 + "dunder-proto": "^1.0.0", 2245 + "es-define-property": "^1.0.1", 2213 2246 "es-errors": "^1.3.0", 2214 2247 "function-bind": "^1.1.2", 2215 - "has-proto": "^1.0.1", 2216 - "has-symbols": "^1.0.3", 2217 - "hasown": "^2.0.0" 2248 + "gopd": "^1.2.0", 2249 + "has-symbols": "^1.1.0", 2250 + "hasown": "^2.0.2" 2218 2251 }, 2219 2252 "engines": { 2220 2253 "node": ">= 0.4" 2221 2254 }, 2222 2255 "funding": { 2223 2256 "url": "https://github.com/sponsors/ljharb" 2224 - } 2225 - }, 2226 - "node_modules/get-stdin": { 2227 - "version": "8.0.0", 2228 - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", 2229 - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", 2230 - "dev": true, 2231 - "license": "MIT", 2232 - "engines": { 2233 - "node": ">=10" 2234 - }, 2235 - "funding": { 2236 - "url": "https://github.com/sponsors/sindresorhus" 2237 2257 } 2238 2258 }, 2239 2259 "node_modules/get-symbol-description": { ··· 2242 2282 }, 2243 2283 "funding": { 2244 2284 "url": "https://github.com/sponsors/ljharb" 2285 + } 2286 + }, 2287 + "node_modules/get-tsconfig": { 2288 + "version": "4.8.1", 2289 + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", 2290 + "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", 2291 + "dev": true, 2292 + "license": "MIT", 2293 + "dependencies": { 2294 + "resolve-pkg-maps": "^1.0.0" 2295 + }, 2296 + "funding": { 2297 + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2245 2298 } 2246 2299 }, 2247 2300 "node_modules/glob": { ··· 2278 2305 } 2279 2306 }, 2280 2307 "node_modules/glob-parent": { 2281 - "version": "5.1.2", 2282 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2283 - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2308 + "version": "6.0.2", 2309 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2310 + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2284 2311 "dev": true, 2285 2312 "license": "ISC", 2286 2313 "dependencies": { 2287 - "is-glob": "^4.0.1" 2314 + "is-glob": "^4.0.3" 2288 2315 }, 2289 2316 "engines": { 2290 - "node": ">= 6" 2317 + "node": ">=10.13.0" 2318 + } 2319 + }, 2320 + "node_modules/glob/node_modules/brace-expansion": { 2321 + "version": "2.0.1", 2322 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 2323 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 2324 + "license": "MIT", 2325 + "dependencies": { 2326 + "balanced-match": "^1.0.0" 2327 + } 2328 + }, 2329 + "node_modules/glob/node_modules/minimatch": { 2330 + "version": "9.0.5", 2331 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2332 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2333 + "license": "ISC", 2334 + "dependencies": { 2335 + "brace-expansion": "^2.0.1" 2336 + }, 2337 + "engines": { 2338 + "node": ">=16 || 14 >=14.17" 2339 + }, 2340 + "funding": { 2341 + "url": "https://github.com/sponsors/isaacs" 2291 2342 } 2292 2343 }, 2293 2344 "node_modules/globals": { 2294 - "version": "13.24.0", 2295 - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2296 - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2345 + "version": "14.0.0", 2346 + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 2347 + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 2297 2348 "dev": true, 2298 2349 "license": "MIT", 2299 - "dependencies": { 2300 - "type-fest": "^0.20.2" 2301 - }, 2302 2350 "engines": { 2303 - "node": ">=8" 2351 + "node": ">=18" 2304 2352 }, 2305 2353 "funding": { 2306 2354 "url": "https://github.com/sponsors/sindresorhus" ··· 2345 2351 } 2346 2352 }, 2347 2353 "node_modules/gopd": { 2348 - "version": "1.1.0", 2349 - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.1.0.tgz", 2350 - "integrity": "sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==", 2354 + "version": "1.2.0", 2355 + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 2356 + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 2351 2357 "dev": true, 2352 2358 "license": "MIT", 2353 - "dependencies": { 2354 - "get-intrinsic": "^1.2.4" 2355 - }, 2356 2359 "engines": { 2357 2360 "node": ">= 0.4" 2358 2361 }, ··· 2404 2413 } 2405 2414 }, 2406 2415 "node_modules/has-proto": { 2407 - "version": "1.1.0", 2408 - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.1.0.tgz", 2409 - "integrity": "sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==", 2416 + "version": "1.2.0", 2417 + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", 2418 + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", 2410 2419 "dev": true, 2411 2420 "license": "MIT", 2412 2421 "dependencies": { 2413 - "call-bind": "^1.0.7" 2422 + "dunder-proto": "^1.0.0" 2414 2423 }, 2415 2424 "engines": { 2416 2425 "node": ">= 0.4" ··· 2491 2500 } 2492 2501 }, 2493 2502 "node_modules/https-proxy-agent": { 2494 - "version": "7.0.5", 2495 - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", 2496 - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", 2503 + "version": "7.0.6", 2504 + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", 2505 + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", 2497 2506 "license": "MIT", 2498 2507 "dependencies": { 2499 - "agent-base": "^7.0.2", 2508 + "agent-base": "^7.1.2", 2500 2509 "debug": "4" 2501 2510 }, 2502 2511 "engines": { ··· 2552 2561 "node": ">=0.8.19" 2553 2562 } 2554 2563 }, 2555 - "node_modules/indent-string": { 2556 - "version": "4.0.0", 2557 - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", 2558 - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", 2559 - "license": "MIT", 2560 - "engines": { 2561 - "node": ">=8" 2562 - } 2563 - }, 2564 - "node_modules/inflight": { 2565 - "version": "1.0.6", 2566 - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2567 - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2568 - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 2569 - "dev": true, 2570 - "license": "ISC", 2571 - "dependencies": { 2572 - "once": "^1.3.0", 2573 - "wrappy": "1" 2574 - } 2575 - }, 2576 - "node_modules/inherits": { 2577 - "version": "2.0.4", 2578 - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2579 - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2580 - "dev": true, 2581 - "license": "ISC" 2582 - }, 2583 2564 "node_modules/internal-slot": { 2584 2565 "version": "1.0.7", 2585 2566 "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", ··· 2596 2633 "funding": { 2597 2634 "url": "https://github.com/sponsors/ljharb" 2598 2635 } 2599 - }, 2600 - "node_modules/is-arrayish": { 2601 - "version": "0.2.1", 2602 - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2603 - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2604 - "dev": true, 2605 - "license": "MIT" 2606 2636 }, 2607 2637 "node_modules/is-async-function": { 2608 2638 "version": "2.0.0", ··· 2784 2828 "node": ">=0.10.0" 2785 2829 } 2786 2830 }, 2787 - "node_modules/is-lambda": { 2788 - "version": "1.0.1", 2789 - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", 2790 - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", 2791 - "license": "MIT" 2792 - }, 2793 2831 "node_modules/is-map": { 2794 2832 "version": "2.0.3", 2795 2833 "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", ··· 2835 2885 }, 2836 2886 "funding": { 2837 2887 "url": "https://github.com/sponsors/ljharb" 2838 - } 2839 - }, 2840 - "node_modules/is-path-inside": { 2841 - "version": "3.0.3", 2842 - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2843 - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2844 - "dev": true, 2845 - "license": "MIT", 2846 - "engines": { 2847 - "node": ">=8" 2848 2888 } 2849 2889 }, 2850 2890 "node_modules/is-plain-obj": { ··· 3083 3143 "dev": true, 3084 3144 "license": "MIT" 3085 3145 }, 3086 - "node_modules/json-parse-better-errors": { 3087 - "version": "1.0.2", 3088 - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", 3089 - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", 3090 - "dev": true, 3091 - "license": "MIT" 3092 - }, 3093 3146 "node_modules/json-schema-traverse": { 3094 3147 "version": "0.4.1", 3095 3148 "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ··· 3096 3163 "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3097 3164 "dev": true, 3098 3165 "license": "MIT" 3099 - }, 3100 - "node_modules/json5": { 3101 - "version": "1.0.2", 3102 - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 3103 - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 3104 - "dev": true, 3105 - "license": "MIT", 3106 - "dependencies": { 3107 - "minimist": "^1.2.0" 3108 - }, 3109 - "bin": { 3110 - "json5": "lib/cli.js" 3111 - } 3112 3166 }, 3113 3167 "node_modules/jsx-ast-utils": { 3114 3168 "version": "3.3.5", ··· 3135 3215 }, 3136 3216 "engines": { 3137 3217 "node": ">= 0.8.0" 3138 - } 3139 - }, 3140 - "node_modules/load-json-file": { 3141 - "version": "5.3.0", 3142 - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", 3143 - "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", 3144 - "dev": true, 3145 - "license": "MIT", 3146 - "dependencies": { 3147 - "graceful-fs": "^4.1.15", 3148 - "parse-json": "^4.0.0", 3149 - "pify": "^4.0.1", 3150 - "strip-bom": "^3.0.0", 3151 - "type-fest": "^0.3.0" 3152 - }, 3153 - "engines": { 3154 - "node": ">=6" 3155 - } 3156 - }, 3157 - "node_modules/load-json-file/node_modules/type-fest": { 3158 - "version": "0.3.1", 3159 - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", 3160 - "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", 3161 - "dev": true, 3162 - "license": "(MIT OR CC0-1.0)", 3163 - "engines": { 3164 - "node": ">=6" 3165 3218 } 3166 3219 }, 3167 3220 "node_modules/locate-path": { ··· 3197 3304 "license": "ISC" 3198 3305 }, 3199 3306 "node_modules/make-fetch-happen": { 3200 - "version": "13.0.1", 3201 - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz", 3202 - "integrity": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==", 3307 + "version": "14.0.3", 3308 + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz", 3309 + "integrity": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==", 3203 3310 "license": "ISC", 3204 3311 "dependencies": { 3205 - "@npmcli/agent": "^2.0.0", 3206 - "cacache": "^18.0.0", 3312 + "@npmcli/agent": "^3.0.0", 3313 + "cacache": "^19.0.1", 3207 3314 "http-cache-semantics": "^4.1.1", 3208 - "is-lambda": "^1.0.1", 3209 3315 "minipass": "^7.0.2", 3210 - "minipass-fetch": "^3.0.0", 3316 + "minipass-fetch": "^4.0.0", 3211 3317 "minipass-flush": "^1.0.5", 3212 3318 "minipass-pipeline": "^1.2.4", 3213 - "negotiator": "^0.6.3", 3214 - "proc-log": "^4.2.0", 3319 + "negotiator": "^1.0.0", 3320 + "proc-log": "^5.0.0", 3215 3321 "promise-retry": "^2.0.1", 3216 - "ssri": "^10.0.0" 3322 + "ssri": "^12.0.0" 3217 3323 }, 3218 3324 "engines": { 3219 - "node": "^16.14.0 || >=18.0.0" 3325 + "node": "^18.17.0 || >=20.5.0" 3326 + } 3327 + }, 3328 + "node_modules/merge2": { 3329 + "version": "1.4.1", 3330 + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 3331 + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 3332 + "dev": true, 3333 + "license": "MIT", 3334 + "engines": { 3335 + "node": ">= 8" 3336 + } 3337 + }, 3338 + "node_modules/micromatch": { 3339 + "version": "4.0.8", 3340 + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 3341 + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 3342 + "dev": true, 3343 + "license": "MIT", 3344 + "dependencies": { 3345 + "braces": "^3.0.3", 3346 + "picomatch": "^2.3.1" 3347 + }, 3348 + "engines": { 3349 + "node": ">=8.6" 3220 3350 } 3221 3351 }, 3222 3352 "node_modules/minimatch": { 3223 - "version": "9.0.5", 3224 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 3225 - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 3353 + "version": "3.1.2", 3354 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3355 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3356 + "dev": true, 3226 3357 "license": "ISC", 3227 3358 "dependencies": { 3228 - "brace-expansion": "^2.0.1" 3359 + "brace-expansion": "^1.1.7" 3229 3360 }, 3230 3361 "engines": { 3231 - "node": ">=16 || 14 >=14.17" 3232 - }, 3233 - "funding": { 3234 - "url": "https://github.com/sponsors/isaacs" 3235 - } 3236 - }, 3237 - "node_modules/minimist": { 3238 - "version": "1.2.8", 3239 - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 3240 - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 3241 - "dev": true, 3242 - "license": "MIT", 3243 - "funding": { 3244 - "url": "https://github.com/sponsors/ljharb" 3362 + "node": "*" 3245 3363 } 3246 3364 }, 3247 3365 "node_modules/minipass": { ··· 3277 3373 } 3278 3374 }, 3279 3375 "node_modules/minipass-fetch": { 3280 - "version": "3.0.5", 3281 - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz", 3282 - "integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==", 3376 + "version": "4.0.0", 3377 + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.0.tgz", 3378 + "integrity": "sha512-2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w==", 3283 3379 "license": "MIT", 3284 3380 "dependencies": { 3285 3381 "minipass": "^7.0.3", 3286 3382 "minipass-sized": "^1.0.3", 3287 - "minizlib": "^2.1.2" 3383 + "minizlib": "^3.0.1" 3288 3384 }, 3289 3385 "engines": { 3290 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 3386 + "node": "^18.17.0 || >=20.5.0" 3291 3387 }, 3292 3388 "optionalDependencies": { 3293 3389 "encoding": "^0.1.13" ··· 3317 3413 "node": ">=8" 3318 3414 } 3319 3415 }, 3416 + "node_modules/minipass-flush/node_modules/yallist": { 3417 + "version": "4.0.0", 3418 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3419 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3420 + "license": "ISC" 3421 + }, 3320 3422 "node_modules/minipass-pipeline": { 3321 3423 "version": "1.2.4", 3322 3424 "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", ··· 3346 3436 "engines": { 3347 3437 "node": ">=8" 3348 3438 } 3439 + }, 3440 + "node_modules/minipass-pipeline/node_modules/yallist": { 3441 + "version": "4.0.0", 3442 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3443 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3444 + "license": "ISC" 3349 3445 }, 3350 3446 "node_modules/minipass-sized": { 3351 3447 "version": "1.0.3", ··· 3377 3461 "node": ">=8" 3378 3462 } 3379 3463 }, 3464 + "node_modules/minipass-sized/node_modules/yallist": { 3465 + "version": "4.0.0", 3466 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3467 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3468 + "license": "ISC" 3469 + }, 3380 3470 "node_modules/minizlib": { 3381 - "version": "2.1.2", 3382 - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 3383 - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 3471 + "version": "3.0.1", 3472 + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz", 3473 + "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==", 3384 3474 "license": "MIT", 3385 3475 "dependencies": { 3386 - "minipass": "^3.0.0", 3387 - "yallist": "^4.0.0" 3476 + "minipass": "^7.0.4", 3477 + "rimraf": "^5.0.5" 3388 3478 }, 3389 3479 "engines": { 3390 - "node": ">= 8" 3391 - } 3392 - }, 3393 - "node_modules/minizlib/node_modules/minipass": { 3394 - "version": "3.3.6", 3395 - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 3396 - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 3397 - "license": "ISC", 3398 - "dependencies": { 3399 - "yallist": "^4.0.0" 3400 - }, 3401 - "engines": { 3402 - "node": ">=8" 3480 + "node": ">= 18" 3403 3481 } 3404 3482 }, 3405 3483 "node_modules/mkdirp": { 3406 - "version": "1.0.4", 3407 - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 3408 - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 3484 + "version": "3.0.1", 3485 + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", 3486 + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", 3409 3487 "license": "MIT", 3410 3488 "bin": { 3411 - "mkdirp": "bin/cmd.js" 3489 + "mkdirp": "dist/cjs/src/bin.js" 3412 3490 }, 3413 3491 "engines": { 3414 3492 "node": ">=10" 3493 + }, 3494 + "funding": { 3495 + "url": "https://github.com/sponsors/isaacs" 3415 3496 } 3416 3497 }, 3417 3498 "node_modules/mocha": { 3418 - "version": "10.8.2", 3419 - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.8.2.tgz", 3420 - "integrity": "sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==", 3499 + "version": "11.0.1", 3500 + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.0.1.tgz", 3501 + "integrity": "sha512-+3GkODfsDG71KSCQhc4IekSW+ItCK/kiez1Z28ksWvYhKXV/syxMlerR/sC7whDp7IyreZ4YxceMLdTs5hQE8A==", 3421 3502 "dev": true, 3422 3503 "license": "MIT", 3423 3504 "dependencies": { ··· 3425 3512 "diff": "^5.2.0", 3426 3513 "escape-string-regexp": "^4.0.0", 3427 3514 "find-up": "^5.0.0", 3428 - "glob": "^8.1.0", 3515 + "glob": "^10.4.5", 3429 3516 "he": "^1.2.0", 3430 3517 "js-yaml": "^4.1.0", 3431 3518 "log-symbols": "^4.1.0", ··· 3444 3531 "mocha": "bin/mocha.js" 3445 3532 }, 3446 3533 "engines": { 3447 - "node": ">= 14.0.0" 3534 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3448 3535 } 3449 3536 }, 3450 - "node_modules/mocha/node_modules/glob": { 3451 - "version": "8.1.0", 3452 - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 3453 - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 3454 - "deprecated": "Glob versions prior to v9 are no longer supported", 3537 + "node_modules/mocha/node_modules/brace-expansion": { 3538 + "version": "2.0.1", 3539 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 3540 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 3455 3541 "dev": true, 3456 - "license": "ISC", 3542 + "license": "MIT", 3457 3543 "dependencies": { 3458 - "fs.realpath": "^1.0.0", 3459 - "inflight": "^1.0.4", 3460 - "inherits": "2", 3461 - "minimatch": "^5.0.1", 3462 - "once": "^1.3.0" 3463 - }, 3464 - "engines": { 3465 - "node": ">=12" 3466 - }, 3467 - "funding": { 3468 - "url": "https://github.com/sponsors/isaacs" 3544 + "balanced-match": "^1.0.0" 3469 3545 } 3470 3546 }, 3471 3547 "node_modules/mocha/node_modules/minimatch": { ··· 3468 3566 }, 3469 3567 "engines": { 3470 3568 "node": ">=10" 3569 + } 3570 + }, 3571 + "node_modules/mocha/node_modules/supports-color": { 3572 + "version": "8.1.1", 3573 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 3574 + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 3575 + "dev": true, 3576 + "license": "MIT", 3577 + "dependencies": { 3578 + "has-flag": "^4.0.0" 3579 + }, 3580 + "engines": { 3581 + "node": ">=10" 3582 + }, 3583 + "funding": { 3584 + "url": "https://github.com/chalk/supports-color?sponsor=1" 3471 3585 } 3472 3586 }, 3473 3587 "node_modules/ms": { ··· 3507 3589 "license": "MIT" 3508 3590 }, 3509 3591 "node_modules/negotiator": { 3510 - "version": "0.6.4", 3511 - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", 3512 - "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", 3592 + "version": "1.0.0", 3593 + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", 3594 + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", 3513 3595 "license": "MIT", 3514 3596 "engines": { 3515 3597 "node": ">= 0.6" 3516 3598 } 3517 3599 }, 3600 + "node_modules/neostandard": { 3601 + "version": "0.11.9", 3602 + "resolved": "https://registry.npmjs.org/neostandard/-/neostandard-0.11.9.tgz", 3603 + "integrity": "sha512-kRhckW3lC8PbaxfmTG0DKNvqnSCo7q9LeaKHTgPxfSjP21FwHN3Ovzvy+nEW//7HDq3fhFN7nxYibirHnes0iw==", 3604 + "dev": true, 3605 + "license": "MIT", 3606 + "dependencies": { 3607 + "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", 3608 + "@stylistic/eslint-plugin": "^2.11.0", 3609 + "eslint-plugin-n": "^17.14.0", 3610 + "eslint-plugin-promise": "^7.1.0", 3611 + "eslint-plugin-react": "^7.36.1", 3612 + "find-up": "^5.0.0", 3613 + "globals": "^15.12.0", 3614 + "peowly": "^1.3.2", 3615 + "typescript-eslint": "^8.15.0" 3616 + }, 3617 + "bin": { 3618 + "neostandard": "cli.mjs" 3619 + }, 3620 + "engines": { 3621 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3622 + }, 3623 + "peerDependencies": { 3624 + "eslint": "^9.0.0" 3625 + } 3626 + }, 3627 + "node_modules/neostandard/node_modules/globals": { 3628 + "version": "15.13.0", 3629 + "resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz", 3630 + "integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==", 3631 + "dev": true, 3632 + "license": "MIT", 3633 + "engines": { 3634 + "node": ">=18" 3635 + }, 3636 + "funding": { 3637 + "url": "https://github.com/sponsors/sindresorhus" 3638 + } 3639 + }, 3518 3640 "node_modules/nopt": { 3519 - "version": "7.2.1", 3520 - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", 3521 - "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", 3641 + "version": "8.0.0", 3642 + "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.0.0.tgz", 3643 + "integrity": "sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==", 3522 3644 "license": "ISC", 3523 3645 "dependencies": { 3524 3646 "abbrev": "^2.0.0" ··· 3567 3609 "nopt": "bin/nopt.js" 3568 3610 }, 3569 3611 "engines": { 3570 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 3612 + "node": "^18.17.0 || >=20.5.0" 3571 3613 } 3572 3614 }, 3573 3615 "node_modules/normalize-path": { ··· 3666 3708 "url": "https://github.com/sponsors/ljharb" 3667 3709 } 3668 3710 }, 3669 - "node_modules/object.groupby": { 3670 - "version": "1.0.3", 3671 - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", 3672 - "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", 3673 - "dev": true, 3674 - "license": "MIT", 3675 - "dependencies": { 3676 - "call-bind": "^1.0.7", 3677 - "define-properties": "^1.2.1", 3678 - "es-abstract": "^1.23.2" 3679 - }, 3680 - "engines": { 3681 - "node": ">= 0.4" 3682 - } 3683 - }, 3684 3711 "node_modules/object.values": { 3685 3712 "version": "1.2.0", 3686 3713 "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", ··· 3682 3739 }, 3683 3740 "funding": { 3684 3741 "url": "https://github.com/sponsors/ljharb" 3685 - } 3686 - }, 3687 - "node_modules/once": { 3688 - "version": "1.4.0", 3689 - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3690 - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3691 - "dev": true, 3692 - "license": "ISC", 3693 - "dependencies": { 3694 - "wrappy": "1" 3695 3742 } 3696 3743 }, 3697 3744 "node_modules/optionator": { ··· 3735 3802 } 3736 3803 }, 3737 3804 "node_modules/p-map": { 3738 - "version": "4.0.0", 3739 - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", 3740 - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", 3805 + "version": "7.0.3", 3806 + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", 3807 + "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", 3741 3808 "license": "MIT", 3742 - "dependencies": { 3743 - "aggregate-error": "^3.0.0" 3744 - }, 3745 3809 "engines": { 3746 - "node": ">=10" 3810 + "node": ">=18" 3747 3811 }, 3748 3812 "funding": { 3749 3813 "url": "https://github.com/sponsors/sindresorhus" 3750 - } 3751 - }, 3752 - "node_modules/p-try": { 3753 - "version": "2.2.0", 3754 - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3755 - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3756 - "dev": true, 3757 - "license": "MIT", 3758 - "engines": { 3759 - "node": ">=6" 3760 3814 } 3761 3815 }, 3762 3816 "node_modules/package-json-from-dist": { ··· 3765 3845 "node": ">=6" 3766 3846 } 3767 3847 }, 3768 - "node_modules/parse-json": { 3769 - "version": "4.0.0", 3770 - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", 3771 - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", 3772 - "dev": true, 3773 - "license": "MIT", 3774 - "dependencies": { 3775 - "error-ex": "^1.3.1", 3776 - "json-parse-better-errors": "^1.0.1" 3777 - }, 3778 - "engines": { 3779 - "node": ">=4" 3780 - } 3781 - }, 3782 3848 "node_modules/path-exists": { 3783 3849 "version": "4.0.0", 3784 3850 "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ··· 3773 3867 "license": "MIT", 3774 3868 "engines": { 3775 3869 "node": ">=8" 3776 - } 3777 - }, 3778 - "node_modules/path-is-absolute": { 3779 - "version": "1.0.1", 3780 - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3781 - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3782 - "dev": true, 3783 - "license": "MIT", 3784 - "engines": { 3785 - "node": ">=0.10.0" 3786 3870 } 3787 3871 }, 3788 3872 "node_modules/path-key": { ··· 3807 3911 "url": "https://github.com/sponsors/isaacs" 3808 3912 } 3809 3913 }, 3914 + "node_modules/peowly": { 3915 + "version": "1.3.2", 3916 + "resolved": "https://registry.npmjs.org/peowly/-/peowly-1.3.2.tgz", 3917 + "integrity": "sha512-BYIrwr8JCXY49jUZscgw311w9oGEKo7ux/s+BxrhKTQbiQ0iYNdZNJ5LgagaeercQdFHwnR7Z5IxxFWVQ+BasQ==", 3918 + "dev": true, 3919 + "license": "MIT", 3920 + "engines": { 3921 + "node": ">=18.6.0" 3922 + } 3923 + }, 3810 3924 "node_modules/picomatch": { 3811 3925 "version": "2.3.1", 3812 3926 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", ··· 3828 3922 }, 3829 3923 "funding": { 3830 3924 "url": "https://github.com/sponsors/jonschlinkert" 3831 - } 3832 - }, 3833 - "node_modules/pify": { 3834 - "version": "4.0.1", 3835 - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", 3836 - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", 3837 - "dev": true, 3838 - "license": "MIT", 3839 - "engines": { 3840 - "node": ">=6" 3841 - } 3842 - }, 3843 - "node_modules/pkg-conf": { 3844 - "version": "3.1.0", 3845 - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", 3846 - "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", 3847 - "dev": true, 3848 - "license": "MIT", 3849 - "dependencies": { 3850 - "find-up": "^3.0.0", 3851 - "load-json-file": "^5.2.0" 3852 - }, 3853 - "engines": { 3854 - "node": ">=6" 3855 - } 3856 - }, 3857 - "node_modules/pkg-conf/node_modules/find-up": { 3858 - "version": "3.0.0", 3859 - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 3860 - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 3861 - "dev": true, 3862 - "license": "MIT", 3863 - "dependencies": { 3864 - "locate-path": "^3.0.0" 3865 - }, 3866 - "engines": { 3867 - "node": ">=6" 3868 - } 3869 - }, 3870 - "node_modules/pkg-conf/node_modules/locate-path": { 3871 - "version": "3.0.0", 3872 - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 3873 - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 3874 - "dev": true, 3875 - "license": "MIT", 3876 - "dependencies": { 3877 - "p-locate": "^3.0.0", 3878 - "path-exists": "^3.0.0" 3879 - }, 3880 - "engines": { 3881 - "node": ">=6" 3882 - } 3883 - }, 3884 - "node_modules/pkg-conf/node_modules/p-limit": { 3885 - "version": "2.3.0", 3886 - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3887 - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3888 - "dev": true, 3889 - "license": "MIT", 3890 - "dependencies": { 3891 - "p-try": "^2.0.0" 3892 - }, 3893 - "engines": { 3894 - "node": ">=6" 3895 - }, 3896 - "funding": { 3897 - "url": "https://github.com/sponsors/sindresorhus" 3898 - } 3899 - }, 3900 - "node_modules/pkg-conf/node_modules/p-locate": { 3901 - "version": "3.0.0", 3902 - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 3903 - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 3904 - "dev": true, 3905 - "license": "MIT", 3906 - "dependencies": { 3907 - "p-limit": "^2.0.0" 3908 - }, 3909 - "engines": { 3910 - "node": ">=6" 3911 - } 3912 - }, 3913 - "node_modules/pkg-conf/node_modules/path-exists": { 3914 - "version": "3.0.0", 3915 - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 3916 - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", 3917 - "dev": true, 3918 - "license": "MIT", 3919 - "engines": { 3920 - "node": ">=4" 3921 3925 } 3922 3926 }, 3923 3927 "node_modules/possible-typed-array-names": { ··· 3851 4035 } 3852 4036 }, 3853 4037 "node_modules/proc-log": { 3854 - "version": "4.2.0", 3855 - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", 3856 - "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", 4038 + "version": "5.0.0", 4039 + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-5.0.0.tgz", 4040 + "integrity": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==", 3857 4041 "license": "ISC", 3858 4042 "engines": { 3859 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 4043 + "node": "^18.17.0 || >=20.5.0" 3860 4044 } 3861 4045 }, 3862 4046 "node_modules/promise-retry": { ··· 3946 4130 } 3947 4131 }, 3948 4132 "node_modules/reflect.getprototypeof": { 3949 - "version": "1.0.7", 3950 - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz", 3951 - "integrity": "sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==", 4133 + "version": "1.0.8", 4134 + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz", 4135 + "integrity": "sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==", 3952 4136 "dev": true, 3953 4137 "license": "MIT", 3954 4138 "dependencies": { 3955 - "call-bind": "^1.0.7", 4139 + "call-bind": "^1.0.8", 3956 4140 "define-properties": "^1.2.1", 4141 + "dunder-proto": "^1.0.0", 3957 4142 "es-abstract": "^1.23.5", 3958 4143 "es-errors": "^1.3.0", 3959 4144 "get-intrinsic": "^1.2.4", 3960 - "gopd": "^1.0.1", 3961 - "which-builtin-type": "^1.1.4" 4145 + "gopd": "^1.2.0", 4146 + "which-builtin-type": "^1.2.0" 3962 4147 }, 3963 4148 "engines": { 3964 4149 "node": ">= 0.4" ··· 3987 4170 "url": "https://github.com/sponsors/ljharb" 3988 4171 } 3989 4172 }, 3990 - "node_modules/regexpp": { 3991 - "version": "3.2.0", 3992 - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 3993 - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 3994 - "dev": true, 3995 - "license": "MIT", 3996 - "engines": { 3997 - "node": ">=8" 3998 - }, 3999 - "funding": { 4000 - "url": "https://github.com/sponsors/mysticatea" 4001 - } 4002 - }, 4003 4173 "node_modules/require-directory": { 4004 4174 "version": "2.1.1", 4005 4175 "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", ··· 4008 4204 } 4009 4205 }, 4010 4206 "node_modules/resolve": { 4011 - "version": "1.22.8", 4012 - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 4013 - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 4207 + "version": "2.0.0-next.5", 4208 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", 4209 + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", 4014 4210 "dev": true, 4015 4211 "license": "MIT", 4016 4212 "dependencies": { ··· 4035 4231 "node": ">=4" 4036 4232 } 4037 4233 }, 4234 + "node_modules/resolve-pkg-maps": { 4235 + "version": "1.0.0", 4236 + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 4237 + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 4238 + "dev": true, 4239 + "license": "MIT", 4240 + "funding": { 4241 + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 4242 + } 4243 + }, 4038 4244 "node_modules/retry": { 4039 4245 "version": "0.12.0", 4040 4246 "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", ··· 4066 4252 } 4067 4253 }, 4068 4254 "node_modules/rimraf": { 4069 - "version": "3.0.2", 4070 - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 4071 - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 4072 - "deprecated": "Rimraf versions prior to v4 are no longer supported", 4073 - "dev": true, 4255 + "version": "5.0.10", 4256 + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", 4257 + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", 4074 4258 "license": "ISC", 4075 4259 "dependencies": { 4076 - "glob": "^7.1.3" 4260 + "glob": "^10.3.7" 4077 4261 }, 4078 4262 "bin": { 4079 - "rimraf": "bin.js" 4263 + "rimraf": "dist/esm/bin.mjs" 4080 4264 }, 4081 4265 "funding": { 4082 4266 "url": "https://github.com/sponsors/isaacs" 4083 - } 4084 - }, 4085 - "node_modules/rimraf/node_modules/brace-expansion": { 4086 - "version": "1.1.11", 4087 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 4088 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 4089 - "dev": true, 4090 - "license": "MIT", 4091 - "dependencies": { 4092 - "balanced-match": "^1.0.0", 4093 - "concat-map": "0.0.1" 4094 - } 4095 - }, 4096 - "node_modules/rimraf/node_modules/glob": { 4097 - "version": "7.2.3", 4098 - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 4099 - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 4100 - "deprecated": "Glob versions prior to v9 are no longer supported", 4101 - "dev": true, 4102 - "license": "ISC", 4103 - "dependencies": { 4104 - "fs.realpath": "^1.0.0", 4105 - "inflight": "^1.0.4", 4106 - "inherits": "2", 4107 - "minimatch": "^3.1.1", 4108 - "once": "^1.3.0", 4109 - "path-is-absolute": "^1.0.0" 4110 - }, 4111 - "engines": { 4112 - "node": "*" 4113 - }, 4114 - "funding": { 4115 - "url": "https://github.com/sponsors/isaacs" 4116 - } 4117 - }, 4118 - "node_modules/rimraf/node_modules/minimatch": { 4119 - "version": "3.1.2", 4120 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 4121 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 4122 - "dev": true, 4123 - "license": "ISC", 4124 - "dependencies": { 4125 - "brace-expansion": "^1.1.7" 4126 - }, 4127 - "engines": { 4128 - "node": "*" 4129 4267 } 4130 4268 }, 4131 4269 "node_modules/run-parallel": { ··· 4302 4536 } 4303 4537 }, 4304 4538 "node_modules/socks-proxy-agent": { 4305 - "version": "8.0.4", 4306 - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", 4307 - "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", 4539 + "version": "8.0.5", 4540 + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz", 4541 + "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==", 4308 4542 "license": "MIT", 4309 4543 "dependencies": { 4310 - "agent-base": "^7.1.1", 4544 + "agent-base": "^7.1.2", 4311 4545 "debug": "^4.3.4", 4312 4546 "socks": "^2.8.3" 4313 4547 }, ··· 4322 4556 "license": "BSD-3-Clause" 4323 4557 }, 4324 4558 "node_modules/ssri": { 4325 - "version": "10.0.6", 4326 - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", 4327 - "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", 4559 + "version": "12.0.0", 4560 + "resolved": "https://registry.npmjs.org/ssri/-/ssri-12.0.0.tgz", 4561 + "integrity": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==", 4328 4562 "license": "ISC", 4329 4563 "dependencies": { 4330 4564 "minipass": "^7.0.3" 4331 4565 }, 4332 4566 "engines": { 4333 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 4334 - } 4335 - }, 4336 - "node_modules/standard": { 4337 - "version": "17.1.2", 4338 - "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.2.tgz", 4339 - "integrity": "sha512-WLm12WoXveKkvnPnPnaFUUHuOB2cUdAsJ4AiGHL2G0UNMrcRAWY2WriQaV8IQ3oRmYr0AWUbLNr94ekYFAHOrA==", 4340 - "dev": true, 4341 - "funding": [ 4342 - { 4343 - "type": "github", 4344 - "url": "https://github.com/sponsors/feross" 4345 - }, 4346 - { 4347 - "type": "patreon", 4348 - "url": "https://www.patreon.com/feross" 4349 - }, 4350 - { 4351 - "type": "consulting", 4352 - "url": "https://feross.org/support" 4353 - } 4354 - ], 4355 - "license": "MIT", 4356 - "dependencies": { 4357 - "eslint": "^8.41.0", 4358 - "eslint-config-standard": "17.1.0", 4359 - "eslint-config-standard-jsx": "^11.0.0", 4360 - "eslint-plugin-import": "^2.27.5", 4361 - "eslint-plugin-n": "^15.7.0", 4362 - "eslint-plugin-promise": "^6.1.1", 4363 - "eslint-plugin-react": "^7.36.1", 4364 - "standard-engine": "^15.1.0", 4365 - "version-guard": "^1.1.1" 4366 - }, 4367 - "bin": { 4368 - "standard": "bin/cmd.cjs" 4369 - }, 4370 - "engines": { 4371 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 4372 - } 4373 - }, 4374 - "node_modules/standard-engine": { 4375 - "version": "15.1.0", 4376 - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", 4377 - "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", 4378 - "dev": true, 4379 - "funding": [ 4380 - { 4381 - "type": "github", 4382 - "url": "https://github.com/sponsors/feross" 4383 - }, 4384 - { 4385 - "type": "patreon", 4386 - "url": "https://www.patreon.com/feross" 4387 - }, 4388 - { 4389 - "type": "consulting", 4390 - "url": "https://feross.org/support" 4391 - } 4392 - ], 4393 - "license": "MIT", 4394 - "dependencies": { 4395 - "get-stdin": "^8.0.0", 4396 - "minimist": "^1.2.6", 4397 - "pkg-conf": "^3.1.0", 4398 - "xdg-basedir": "^4.0.0" 4399 - }, 4400 - "engines": { 4401 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 4567 + "node": "^18.17.0 || >=20.5.0" 4402 4568 } 4403 4569 }, 4404 4570 "node_modules/string-width": { ··· 4519 4821 "node": ">=8" 4520 4822 } 4521 4823 }, 4522 - "node_modules/strip-bom": { 4523 - "version": "3.0.0", 4524 - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 4525 - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 4526 - "dev": true, 4527 - "license": "MIT", 4528 - "engines": { 4529 - "node": ">=4" 4530 - } 4531 - }, 4532 4824 "node_modules/strip-json-comments": { 4533 4825 "version": "3.1.1", 4534 4826 "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", ··· 4533 4845 } 4534 4846 }, 4535 4847 "node_modules/supports-color": { 4536 - "version": "8.1.1", 4537 - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 4538 - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 4848 + "version": "7.2.0", 4849 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4850 + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4539 4851 "dev": true, 4540 4852 "license": "MIT", 4541 4853 "dependencies": { 4542 4854 "has-flag": "^4.0.0" 4543 4855 }, 4544 4856 "engines": { 4545 - "node": ">=10" 4546 - }, 4547 - "funding": { 4548 - "url": "https://github.com/chalk/supports-color?sponsor=1" 4857 + "node": ">=8" 4549 4858 } 4550 4859 }, 4551 4860 "node_modules/supports-preserve-symlinks-flag": { ··· 4558 4873 "url": "https://github.com/sponsors/ljharb" 4559 4874 } 4560 4875 }, 4561 - "node_modules/tar": { 4562 - "version": "6.2.1", 4563 - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", 4564 - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", 4565 - "license": "ISC", 4566 - "dependencies": { 4567 - "chownr": "^2.0.0", 4568 - "fs-minipass": "^2.0.0", 4569 - "minipass": "^5.0.0", 4570 - "minizlib": "^2.1.1", 4571 - "mkdirp": "^1.0.3", 4572 - "yallist": "^4.0.0" 4573 - }, 4574 - "engines": { 4575 - "node": ">=10" 4576 - } 4577 - }, 4578 - "node_modules/tar/node_modules/fs-minipass": { 4579 - "version": "2.1.0", 4580 - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 4581 - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 4582 - "license": "ISC", 4583 - "dependencies": { 4584 - "minipass": "^3.0.0" 4585 - }, 4586 - "engines": { 4587 - "node": ">= 8" 4588 - } 4589 - }, 4590 - "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { 4591 - "version": "3.3.6", 4592 - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 4593 - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 4594 - "license": "ISC", 4595 - "dependencies": { 4596 - "yallist": "^4.0.0" 4597 - }, 4598 - "engines": { 4599 - "node": ">=8" 4600 - } 4601 - }, 4602 - "node_modules/tar/node_modules/minipass": { 4603 - "version": "5.0.0", 4604 - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 4605 - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 4606 - "license": "ISC", 4607 - "engines": { 4608 - "node": ">=8" 4609 - } 4610 - }, 4611 - "node_modules/text-table": { 4612 - "version": "0.2.0", 4613 - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4614 - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 4876 + "node_modules/tapable": { 4877 + "version": "2.2.1", 4878 + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 4879 + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 4615 4880 "dev": true, 4616 - "license": "MIT" 4881 + "license": "MIT", 4882 + "engines": { 4883 + "node": ">=6" 4884 + } 4885 + }, 4886 + "node_modules/tar": { 4887 + "version": "7.4.3", 4888 + "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", 4889 + "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", 4890 + "license": "ISC", 4891 + "dependencies": { 4892 + "@isaacs/fs-minipass": "^4.0.0", 4893 + "chownr": "^3.0.0", 4894 + "minipass": "^7.1.2", 4895 + "minizlib": "^3.0.1", 4896 + "mkdirp": "^3.0.1", 4897 + "yallist": "^5.0.0" 4898 + }, 4899 + "engines": { 4900 + "node": ">=18" 4901 + } 4617 4902 }, 4618 4903 "node_modules/to-regex-range": { 4619 4904 "version": "5.0.1", ··· 4598 4943 "node": ">=8.0" 4599 4944 } 4600 4945 }, 4601 - "node_modules/tsconfig-paths": { 4602 - "version": "3.15.0", 4603 - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", 4604 - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", 4946 + "node_modules/ts-api-utils": { 4947 + "version": "1.4.3", 4948 + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", 4949 + "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", 4605 4950 "dev": true, 4606 4951 "license": "MIT", 4607 - "dependencies": { 4608 - "@types/json5": "^0.0.29", 4609 - "json5": "^1.0.2", 4610 - "minimist": "^1.2.6", 4611 - "strip-bom": "^3.0.0" 4952 + "engines": { 4953 + "node": ">=16" 4954 + }, 4955 + "peerDependencies": { 4956 + "typescript": ">=4.2.0" 4612 4957 } 4613 4958 }, 4614 4959 "node_modules/type-check": { ··· 4622 4967 }, 4623 4968 "engines": { 4624 4969 "node": ">= 0.8.0" 4625 - } 4626 - }, 4627 - "node_modules/type-fest": { 4628 - "version": "0.20.2", 4629 - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4630 - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4631 - "dev": true, 4632 - "license": "(MIT OR CC0-1.0)", 4633 - "engines": { 4634 - "node": ">=10" 4635 - }, 4636 - "funding": { 4637 - "url": "https://github.com/sponsors/sindresorhus" 4638 4970 } 4639 4971 }, 4640 4972 "node_modules/typed-array-buffer": { ··· 4702 5060 "url": "https://github.com/sponsors/ljharb" 4703 5061 } 4704 5062 }, 5063 + "node_modules/typescript": { 5064 + "version": "5.7.2", 5065 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", 5066 + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", 5067 + "dev": true, 5068 + "license": "Apache-2.0", 5069 + "peer": true, 5070 + "bin": { 5071 + "tsc": "bin/tsc", 5072 + "tsserver": "bin/tsserver" 5073 + }, 5074 + "engines": { 5075 + "node": ">=14.17" 5076 + } 5077 + }, 5078 + "node_modules/typescript-eslint": { 5079 + "version": "8.18.0", 5080 + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.18.0.tgz", 5081 + "integrity": "sha512-Xq2rRjn6tzVpAyHr3+nmSg1/9k9aIHnJ2iZeOH7cfGOWqTkXTm3kwpQglEuLGdNrYvPF+2gtAs+/KF5rjVo+WQ==", 5082 + "dev": true, 5083 + "license": "MIT", 5084 + "dependencies": { 5085 + "@typescript-eslint/eslint-plugin": "8.18.0", 5086 + "@typescript-eslint/parser": "8.18.0", 5087 + "@typescript-eslint/utils": "8.18.0" 5088 + }, 5089 + "engines": { 5090 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 5091 + }, 5092 + "funding": { 5093 + "type": "opencollective", 5094 + "url": "https://opencollective.com/typescript-eslint" 5095 + }, 5096 + "peerDependencies": { 5097 + "eslint": "^8.57.0 || ^9.0.0", 5098 + "typescript": ">=4.8.4 <5.8.0" 5099 + } 5100 + }, 4705 5101 "node_modules/unbox-primitive": { 4706 5102 "version": "1.0.2", 4707 5103 "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", ··· 4757 5077 } 4758 5078 }, 4759 5079 "node_modules/unique-filename": { 4760 - "version": "3.0.0", 4761 - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", 4762 - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", 5080 + "version": "4.0.0", 5081 + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-4.0.0.tgz", 5082 + "integrity": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==", 4763 5083 "license": "ISC", 4764 5084 "dependencies": { 4765 - "unique-slug": "^4.0.0" 5085 + "unique-slug": "^5.0.0" 4766 5086 }, 4767 5087 "engines": { 4768 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 5088 + "node": "^18.17.0 || >=20.5.0" 4769 5089 } 4770 5090 }, 4771 5091 "node_modules/unique-slug": { 4772 - "version": "4.0.0", 4773 - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", 4774 - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", 5092 + "version": "5.0.0", 5093 + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-5.0.0.tgz", 5094 + "integrity": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==", 4775 5095 "license": "ISC", 4776 5096 "dependencies": { 4777 5097 "imurmurhash": "^0.1.4" 4778 5098 }, 4779 5099 "engines": { 4780 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 5100 + "node": "^18.17.0 || >=20.5.0" 4781 5101 } 4782 5102 }, 4783 5103 "node_modules/uri-js": { ··· 4790 5110 "punycode": "^2.1.0" 4791 5111 } 4792 5112 }, 4793 - "node_modules/version-guard": { 4794 - "version": "1.1.3", 4795 - "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.3.tgz", 4796 - "integrity": "sha512-JwPr6erhX53EWH/HCSzfy1tTFrtPXUe927wdM1jqBBeYp1OM+qPHjWbsvv6pIBduqdgxxS+ScfG7S28pzyr2DQ==", 4797 - "dev": true, 4798 - "license": "0BSD", 4799 - "engines": { 4800 - "node": ">=0.10.48" 4801 - } 4802 - }, 4803 5113 "node_modules/which": { 4804 - "version": "4.0.0", 4805 - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", 4806 - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", 5114 + "version": "5.0.0", 5115 + "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", 5116 + "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", 4807 5117 "license": "ISC", 4808 5118 "dependencies": { 4809 5119 "isexe": "^3.1.1" ··· 4802 5132 "node-which": "bin/which.js" 4803 5133 }, 4804 5134 "engines": { 4805 - "node": "^16.13.0 || >=18.0.0" 5135 + "node": "^18.17.0 || >=20.5.0" 4806 5136 } 4807 5137 }, 4808 5138 "node_modules/which-boxed-primitive": { ··· 4997 5327 "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4998 5328 } 4999 5329 }, 5000 - "node_modules/wrappy": { 5001 - "version": "1.0.2", 5002 - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 5003 - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 5004 - "dev": true, 5005 - "license": "ISC" 5006 - }, 5007 - "node_modules/xdg-basedir": { 5008 - "version": "4.0.0", 5009 - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", 5010 - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", 5011 - "dev": true, 5012 - "license": "MIT", 5013 - "engines": { 5014 - "node": ">=8" 5015 - } 5016 - }, 5017 5330 "node_modules/y18n": { 5018 5331 "version": "5.0.8", 5019 5332 "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", ··· 5008 5355 } 5009 5356 }, 5010 5357 "node_modules/yallist": { 5011 - "version": "4.0.0", 5012 - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 5013 - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 5014 - "license": "ISC" 5358 + "version": "5.0.0", 5359 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", 5360 + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", 5361 + "license": "BlueOak-1.0.0", 5362 + "engines": { 5363 + "node": ">=18" 5364 + } 5015 5365 }, 5016 5366 "node_modules/yargs": { 5017 5367 "version": "16.2.0",
+3 -3
pkgs/by-name/no/node-gyp/package.nix
··· 7 7 8 8 (buildNpmPackage.override { inherit nodejs; }) rec { 9 9 pname = "node-gyp"; 10 - version = "10.3.1"; 10 + version = "11.0.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "nodejs"; 14 14 repo = "node-gyp"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-Emq8JC6URFHSigRm+6yY/xX4SeZJKsBE2dXN1aWYxOU="; 16 + hash = "sha256-uC75nDZPSDLsRIXyFs1hwhRMcECQB8iycNe9wtZjJ/E="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-/ERbWveCePkKQjeArSYN/tK6c6Op5wtI/2RxBV0ylo4="; 19 + npmDepsHash = "sha256-RR6thRyl+tz0xQPwzTb03Zbt+IQTYZhnii3lrQXaZpI="; 20 20 21 21 postPatch = '' 22 22 ln -s ${./package-lock.json} package-lock.json
+3 -3
pkgs/by-name/nw/nwg-hello/package.nix
··· 9 9 10 10 python3Packages.buildPythonApplication rec { 11 11 pname = "nwg-hello"; 12 - version = "0.2.4"; 12 + version = "0.3.0"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "nwg-piotr"; 17 17 repo = "nwg-hello"; 18 - rev = "refs/tags/v${version}"; 19 - hash = "sha256-WE6jtVZfsWJREZghU93v8EAq16MiERYnq3Y0g2caYPs="; 18 + tag = "v${version}"; 19 + hash = "sha256-cIRHvDTEaKHwOg9F/roE+8axl2f0hZIqVNe3xs/T9Ag="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+3 -3
pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix
··· 7 7 8 8 let 9 9 bits = if stdenv.hostPlatform.is64bit then "x64" else "ia32"; 10 - version = "0.93.0"; 10 + version = "0.94.0"; 11 11 in 12 12 stdenv.mkDerivation { 13 13 pname = "nwjs-ffmpeg-prebuilt"; ··· 16 16 src = 17 17 let 18 18 hashes = { 19 - "x64" = "sha256-8FcoZ9pN/FKun3QuoFSKKreKCfj8tp2IgkRiDajT5ms="; 20 - "ia32" = "sha256-8FcoZ9pN/FKun3QuoFSKKreKCfj8tp2IgkRiDajT5ms="; 19 + "x64" = "sha256-lepsr2/sCEUrq+an/z2g4Auj7MZcDT5I9PAKlFIbkpQ="; 20 + "ia32" = "sha256-lepsr2/sCEUrq+an/z2g4Auj7MZcDT5I9PAKlFIbkpQ="; 21 21 }; 22 22 in 23 23 fetchurl {
+2 -2
pkgs/by-name/nz/nzbhydra2/package.nix
··· 10 10 }: 11 11 stdenv.mkDerivation rec { 12 12 pname = "nzbhydra2"; 13 - version = "7.8.0"; 13 + version = "7.10.2"; 14 14 15 15 src = fetchzip { 16 16 url = "https://github.com/theotherp/nzbhydra2/releases/download/v${version}/nzbhydra2-${version}-generic.zip"; 17 - hash = "sha256-xE43ACFF9B5YMPjcSDcG2I3YlTSLR5oD3UdAL9XXUWI="; 17 + hash = "sha256-MyhIirrqyv+S1qHrZ0h69Yhvu5tJQNQLs2Pqopy3kuM="; 18 18 stripRoot = false; 19 19 }; 20 20
+5
pkgs/by-name/op/openslide/package.nix
··· 1 1 { 2 + buildPackages, 2 3 lib, 3 4 stdenv, 4 5 fetchFromGitHub, ··· 31 30 rev = "refs/tags/v${finalAttrs.version}"; 32 31 hash = "sha256-9LvQ7FG/0E0WpFyIUyrL4Fvn60iYWejjbgdKHMVOFdI="; 33 32 }; 33 + 34 + depsBuildBuild = [ 35 + buildPackages.stdenv.cc 36 + ]; 34 37 35 38 nativeBuildInputs = [ 36 39 meson
+80
pkgs/by-name/ou/outfly/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitea, 4 + rustPlatform, 5 + makeDesktopItem, 6 + pkg-config, 7 + libxkbcommon, 8 + alsa-lib, 9 + libGL, 10 + vulkan-loader, 11 + wayland, 12 + libXrandr, 13 + libXcursor, 14 + libX11, 15 + libXi, 16 + }: 17 + 18 + rustPlatform.buildRustPackage rec { 19 + pname = "outfly"; 20 + version = "0.14.0"; 21 + src = fetchFromGitea { 22 + domain = "codeberg.org"; 23 + owner = "outfly"; 24 + repo = "outfly"; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-FRvu3FgbT3i5888ll573nhb7naYx04Oi8nrcfgEHxUo="; 27 + }; 28 + 29 + runtimeInputs = [ 30 + libxkbcommon 31 + libGL 32 + libXrandr 33 + libX11 34 + vulkan-loader 35 + ]; 36 + 37 + buildInputs = [ 38 + alsa-lib.dev 39 + libXcursor 40 + libXi 41 + wayland 42 + ]; 43 + 44 + nativeBuildInputs = [ pkg-config ]; 45 + doCheck = false; # no meaningful tests 46 + 47 + postFixup = '' 48 + patchelf $out/bin/outfly \ 49 + --add-rpath ${lib.makeLibraryPath runtimeInputs} 50 + ''; 51 + 52 + cargoHash = "sha256-Hs7IxDildYzDYMUjv7fN1cUArKNehX2al++g/DoZ7rk="; 53 + 54 + desktopItems = [ 55 + (makeDesktopItem { 56 + name = "outfly"; 57 + exec = "outfly"; 58 + desktopName = "OutFly"; 59 + categories = [ "Game" ]; 60 + }) 61 + ]; 62 + meta = { 63 + description = "Breathtaking 3D space game in the rings of Jupiter"; 64 + homepage = "https://yunicode.itch.io/outfly"; 65 + downloadPage = "https://codeberg.org/outfly/outfly/releases"; 66 + changelog = "https://codeberg.org/outfly/outfly/releases/tag/v${version}"; 67 + license = with lib.licenses; [ 68 + cc-by-30 69 + cc-by-40 70 + cc-by-sa-20 71 + cc-by-sa-30 72 + cc0 73 + gpl3 74 + ofl 75 + publicDomain 76 + ]; 77 + maintainers = with lib.maintainers; [ _71rd ]; 78 + mainProgram = "outfly"; 79 + }; 80 + }
+2 -2
pkgs/by-name/pg/pgpool/package.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "pgpool-II"; 13 - version = "4.5.4"; 13 + version = "4.5.5"; 14 14 15 15 src = fetchurl { 16 16 url = "https://www.pgpool.net/mediawiki/download.php?f=pgpool-II-${version}.tar.gz"; 17 17 name = "pgpool-II-${version}.tar.gz"; 18 - hash = "sha256-0TkudM4oB/iuYohyyxq3kUJJkhGA3JnfQKHWAmR6EP0="; 18 + hash = "sha256-lf/urrawzr6oA04w/Bkz/sc4SyJ61REwXqzMXQkP+Zg="; 19 19 }; 20 20 21 21 buildInputs = [
+3 -3
pkgs/by-name/ph/phpactor/package.nix
··· 7 7 8 8 php.buildComposerProject2 (finalAttrs: { 9 9 pname = "phpactor"; 10 - version = "2024.11.28.0"; 10 + version = "2024.11.28.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "phpactor"; 14 14 repo = "phpactor"; 15 15 rev = finalAttrs.version; 16 - hash = "sha256-1n5b5qmyVSBEptRGX+G4O79Ibm+MHGNWLtOcQIRhr+A="; 16 + hash = "sha256-s/2Dcz7xrJJxun/KOQ+o+TFKHQT9D8uK1SXsLlKplT4="; 17 17 }; 18 18 19 - vendorHash = "sha256-TuHZkZLklBgI56mEHRZOLRFBGjHqWe2sVAA33IyqdH4="; 19 + vendorHash = "sha256-vEw1RiZnMKtVo2pl0M7dTTs/TtNc9Vt8osAYptD46uA="; 20 20 21 21 nativeBuildInputs = [ installShellFiles ]; 22 22
+3 -3
pkgs/by-name/pi/picom-pijulius/package.nix
··· 8 8 9 9 picom.overrideAttrs (previousAttrs: { 10 10 pname = "picom-pijulius"; 11 - version = "8.2-unstable-2024-11-15"; 11 + version = "8.2-unstable-2024-12-05"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pijulius"; 15 15 repo = "picom"; 16 - rev = "4a55916e1f10d459a1f89ebb858b6b86b9fb284c"; 17 - hash = "sha256-TY7EbVEiTzjNjAj5mOIDXp3sQcIO3shG3vVFIonBPqc="; 16 + rev = "9b7d7bdaee0c697f416e3d6b41f1453aeaa07c78"; 17 + hash = "sha256-9HCtbRwDrjB/i89O5igPdyxHo8AKiznltrjTdBjenlk="; 18 18 }; 19 19 20 20 dontVersionCheck = true;
+102 -9
pkgs/by-name/py/pyfa/package.nix
··· 1 1 { 2 2 lib, 3 - appimageTools, 4 - fetchurl, 3 + python3Packages, 4 + fetchFromGitHub, 5 + gsettings-desktop-schemas, 6 + adwaita-icon-theme, 7 + wrapGAppsHook3, 8 + gdk-pixbuf, 5 9 }: 6 10 let 7 - version = "2.60.2"; 11 + version = "2.61.0"; 8 12 in 9 - appimageTools.wrapType2 { 13 + python3Packages.buildPythonApplication rec { 10 14 inherit version; 11 15 pname = "pyfa"; 16 + format = "other"; 12 17 13 - src = fetchurl { 14 - name = "pyfa-appimage-${version}"; 15 - url = "https://github.com/pyfa-org/Pyfa/releases/download/v${version}/pyfa-v${version}-linux.AppImage"; 16 - hash = "sha256-6doetQ6E1Occ/SqewfxRqPEX1MnUuFomm+8VmetIz4Y="; 18 + src = fetchFromGitHub { 19 + owner = "pyfa-org"; 20 + repo = "Pyfa"; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-VSuRQugUODc+LbhKbzsA09pnqPEIAt0pQS2An/p7r9A="; 17 23 }; 24 + 25 + build-system = [ python3Packages.setuptools ]; 26 + dependencies = with python3Packages; [ 27 + wxpython 28 + logbook 29 + matplotlib 30 + python-dateutil 31 + requests 32 + sqlalchemy_1_4 33 + cryptography 34 + markdown2 35 + beautifulsoup4 36 + pyaml 37 + roman 38 + numpy 39 + python-jose 40 + requests-cache 41 + ]; 42 + 43 + buildInputs = [ 44 + gsettings-desktop-schemas 45 + adwaita-icon-theme 46 + gdk-pixbuf 47 + ]; 48 + 49 + dontWrapGApps = true; 50 + nativeBuildInputs = [ 51 + python3Packages.pyinstaller 52 + wrapGAppsHook3 53 + ]; 54 + 55 + # 56 + # upstream does not include setup.py 57 + # 58 + patchPhase = '' 59 + cat > setup.py <<EOF 60 + from setuptools import setup 61 + setup( 62 + name = "${pname}", 63 + version = "${version}", 64 + scripts = ["pyfa.py"], 65 + packages = setuptools.find_packages(), 66 + ) 67 + EOF 68 + ''; 69 + 70 + configurePhase = '' 71 + runHook preConfigure 72 + 73 + python3 db_update.py 74 + 75 + runHook postConfigure 76 + ''; 77 + 78 + buildPhase = '' 79 + runHook preBuild 80 + 81 + pyinstaller --clean --noconfirm pyfa.spec 82 + 83 + runHook postBuild 84 + ''; 85 + 86 + # 87 + # pyinstaller builds up dist/pyfa/pyfa binary and 88 + # dist/pyfa/apps directory with libraries and everything else. 89 + # creating a symbolic link out in $out/bin to $out/share/pyfa to avoid 90 + # exposing the innards of pyfa to the rest of the env. 91 + # 92 + installPhase = '' 93 + mkdir -p $out/bin 94 + mkdir -p $out/share/pixmaps 95 + 96 + cp -r dist/pyfa $out/share/ 97 + cp imgs/gui/pyfa64.png $out/share/pixmaps/pyfa.png 98 + ln -sf $out/share/pyfa/pyfa $out/bin/pyfa 99 + ''; 100 + 101 + fixupPhase = '' 102 + runHook preFixup 103 + 104 + wrapProgramShell $out/share/pyfa/pyfa \ 105 + ''${gappsWrapperArgs[@]} \ 106 + 107 + runHook postFixup 108 + ''; 109 + 110 + doCheck = true; 18 111 19 112 meta = { 20 113 description = "Python fitting assistant, cross-platform fitting tool for EVE Online"; ··· 116 23 maintainers = with lib.maintainers; [ 117 24 toasteruwu 118 25 cholli 26 + paschoal 119 27 ]; 120 28 mainProgram = "pyfa"; 121 - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 122 29 platforms = lib.platforms.linux; 123 30 }; 124 31 }
+2 -2
pkgs/by-name/sq/sqlcl/package.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "sqlcl"; 5 - version = "24.3.0.285.0530"; 5 + version = "24.3.2.330.1718"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-${finalAttrs.version}.zip"; 9 - hash = "sha256-WUGPFJENRvSOTOPtkxEjITZASajWrNgsVJbuMEKm1SI="; 9 + hash = "sha256-7+cC7RJ4fXtNwEoZvTc2pVPpChQXxhp2XafrTLny6pw="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper unzip ];
+2 -2
pkgs/by-name/ve/verifast/package.nix
··· 20 20 in 21 21 stdenv.mkDerivation rec { 22 22 pname = "verifast"; 23 - version = "24.08.30"; 23 + version = "24.12"; 24 24 25 25 src = fetchurl { 26 26 url = "https://github.com/verifast/verifast/releases/download/${version}/${pname}-${version}-linux.tar.gz"; 27 - sha256 = "sha256-hIS5e+zVlxSOqr1/ZDy0PangyWjB9uLCvN8Qr688msg="; 27 + sha256 = "sha256-Ub6/mQ8xZmq802dQAOdxTvebQXOQ6TCVPvJTg+jVlCE="; 28 28 }; 29 29 30 30 dontConfigure = true;
+2 -2
pkgs/by-name/vp/vpl-gpu-rt/package.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "vpl-gpu-rt"; 12 - version = "24.3.3"; 12 + version = "24.4.3"; 13 13 14 14 outputs = [ "out" "dev" ]; 15 15 ··· 17 17 owner = "intel"; 18 18 repo = "vpl-gpu-rt"; 19 19 rev = "intel-onevpl-${version}"; 20 - hash = "sha256-aTVSkkSQmcnRcx1J0zqdT6Z6f2GQVRTR8b2JFov6DFE="; 20 + hash = "sha256-XkW59tdVObwRc7bIGoAaOGoK8CyB/My9a0uOeez4DK8="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ cmake pkg-config ];
+2 -2
pkgs/by-name/vp/vpp/package.nix
··· 45 45 in 46 46 stdenv.mkDerivation rec { 47 47 pname = "vpp"; 48 - version = "24.06"; 48 + version = "24.10"; 49 49 50 50 src = fetchFromGitHub { 51 51 owner = "FDio"; 52 52 repo = "vpp"; 53 53 rev = "v${version}"; 54 - hash = "sha256-AbdtH3ha/Bzj9tAkp4OhjRcUZilUEt+At0LukWN2LJU="; 54 + hash = "sha256-GcmblIAu/BDbqZRycmnBsHkvzJe07qB2lSfDnO7ZYtg="; 55 55 }; 56 56 57 57 postPatch = ''
+2 -2
pkgs/by-name/xl/xlockmore/package.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "xlockmore"; 6 - version = "5.80"; 6 + version = "5.81"; 7 7 8 8 src = fetchurl { 9 9 url = "http://sillycycle.com/xlock/xlockmore-${version}.tar.xz"; 10 - sha256 = "sha256-UC12U2jTbYFOy3d/1DnHWXkLPdNNXuNfdIB/cbqkdiE="; 10 + sha256 = "sha256-BTAYEyinxmi217JMDPoyqpO0u64jwMTwnx07NH7Jipc="; 11 11 curlOpts = "--user-agent 'Mozilla/5.0'"; 12 12 }; 13 13
+2 -2
pkgs/by-name/za/zabbix-agent2-plugin-postgresql/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "zabbix-agent2-plugin-postgresql"; 9 - version = "7.0.4"; 9 + version = "7.0.6"; 10 10 11 11 src = fetchurl { 12 12 url = "https://cdn.zabbix.com/zabbix-agent2-plugins/sources/postgresql/zabbix-agent2-plugin-postgresql-${version}.tar.gz"; 13 - hash = "sha256-BgCdy+0VVe2+NTwZII3ASaxGGAT7zGiQUppI9whJtQ8="; 13 + hash = "sha256-35w2KIiECaVBUw5PGXyc9T6l1ATMeAntOf+KrxK7PaY="; 14 14 }; 15 15 16 16 vendorHash = null;
+12 -6
pkgs/development/libraries/hamlib/4.nix
··· 12 12 , pkg-config 13 13 , boost 14 14 , libtool 15 - , perlPackages 16 15 , pythonBindings ? true 17 16 , tclBindings ? true 18 - , perlBindings ? true 17 + , perlBindings ? stdenv.buildPlatform == stdenv.hostPlatform 18 + , buildPackages 19 19 }: 20 20 let 21 21 python3 = python311; # needs distutils and imp ··· 29 29 sha256 = "sha256-YByJ8y7SJelSet49ZNDQXSMgLAWuIf+nflnXDuRZf80="; 30 30 }; 31 31 32 + strictDeps = true; 33 + depsBuildBuild = [ buildPackages.stdenv.cc ]; 32 34 nativeBuildInputs = [ 33 35 swig 34 36 pkg-config 35 37 libtool 36 - ]; 38 + ] ++ lib.optionals pythonBindings [ python3 ] 39 + ++ lib.optionals tclBindings [ tcl ] 40 + ++ lib.optionals perlBindings [ perl ]; 37 41 38 42 buildInputs = [ 39 43 gd ··· 45 41 libusb-compat-0_1 46 42 boost 47 43 ] ++ lib.optionals pythonBindings [ python3 ncurses ] 48 - ++ lib.optionals tclBindings [ tcl ] 49 - ++ lib.optionals perlBindings [ perl perlPackages.ExtUtilsMakeMaker ]; 44 + ++ lib.optionals tclBindings [ tcl ]; 50 45 51 - configureFlags = lib.optionals perlBindings [ "--with-perl-binding" ] 46 + 47 + configureFlags = [ 48 + "CC_FOR_BUILD=${stdenv.cc.targetPrefix}cc" 49 + ] ++ lib.optionals perlBindings [ "--with-perl-binding" ] 52 50 ++ lib.optionals tclBindings [ "--with-tcl-binding" "--with-tcl=${tcl}/lib/" ] 53 51 ++ lib.optionals pythonBindings [ "--with-python-binding" ]; 54 52
+1283
pkgs/development/python-modules/aiotarfile/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 = "adler" 7 + version = "1.0.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 + 11 + [[package]] 12 + name = "aiotarfile" 13 + version = "0.5.1-dev.1" 14 + dependencies = [ 15 + "async-compression", 16 + "async-std", 17 + "async-tar", 18 + "futures", 19 + "futures-core", 20 + "futures-util", 21 + "pin-project-lite", 22 + "pyo3", 23 + "pyo3-asyncio", 24 + "replace_with", 25 + ] 26 + 27 + [[package]] 28 + name = "async-channel" 29 + version = "1.9.0" 30 + source = "registry+https://github.com/rust-lang/crates.io-index" 31 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 32 + dependencies = [ 33 + "concurrent-queue", 34 + "event-listener 2.5.3", 35 + "futures-core", 36 + ] 37 + 38 + [[package]] 39 + name = "async-channel" 40 + version = "2.1.1" 41 + source = "registry+https://github.com/rust-lang/crates.io-index" 42 + checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 43 + dependencies = [ 44 + "concurrent-queue", 45 + "event-listener 4.0.3", 46 + "event-listener-strategy", 47 + "futures-core", 48 + "pin-project-lite", 49 + ] 50 + 51 + [[package]] 52 + name = "async-compression" 53 + version = "0.4.6" 54 + source = "registry+https://github.com/rust-lang/crates.io-index" 55 + checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" 56 + dependencies = [ 57 + "bzip2", 58 + "flate2", 59 + "futures-core", 60 + "futures-io", 61 + "memchr", 62 + "pin-project-lite", 63 + "xz2", 64 + ] 65 + 66 + [[package]] 67 + name = "async-executor" 68 + version = "1.8.0" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 71 + dependencies = [ 72 + "async-lock 3.3.0", 73 + "async-task", 74 + "concurrent-queue", 75 + "fastrand 2.0.1", 76 + "futures-lite 2.2.0", 77 + "slab", 78 + ] 79 + 80 + [[package]] 81 + name = "async-global-executor" 82 + version = "2.4.1" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 85 + dependencies = [ 86 + "async-channel 2.1.1", 87 + "async-executor", 88 + "async-io 2.3.0", 89 + "async-lock 3.3.0", 90 + "blocking", 91 + "futures-lite 2.2.0", 92 + "once_cell", 93 + ] 94 + 95 + [[package]] 96 + name = "async-io" 97 + version = "1.13.0" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 100 + dependencies = [ 101 + "async-lock 2.8.0", 102 + "autocfg", 103 + "cfg-if", 104 + "concurrent-queue", 105 + "futures-lite 1.13.0", 106 + "log", 107 + "parking", 108 + "polling 2.8.0", 109 + "rustix 0.37.27", 110 + "slab", 111 + "socket2", 112 + "waker-fn", 113 + ] 114 + 115 + [[package]] 116 + name = "async-io" 117 + version = "2.3.0" 118 + source = "registry+https://github.com/rust-lang/crates.io-index" 119 + checksum = "fb41eb19024a91746eba0773aa5e16036045bbf45733766661099e182ea6a744" 120 + dependencies = [ 121 + "async-lock 3.3.0", 122 + "cfg-if", 123 + "concurrent-queue", 124 + "futures-io", 125 + "futures-lite 2.2.0", 126 + "parking", 127 + "polling 3.3.2", 128 + "rustix 0.38.30", 129 + "slab", 130 + "tracing", 131 + "windows-sys 0.52.0", 132 + ] 133 + 134 + [[package]] 135 + name = "async-lock" 136 + version = "2.8.0" 137 + source = "registry+https://github.com/rust-lang/crates.io-index" 138 + checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 139 + dependencies = [ 140 + "event-listener 2.5.3", 141 + ] 142 + 143 + [[package]] 144 + name = "async-lock" 145 + version = "3.3.0" 146 + source = "registry+https://github.com/rust-lang/crates.io-index" 147 + checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 148 + dependencies = [ 149 + "event-listener 4.0.3", 150 + "event-listener-strategy", 151 + "pin-project-lite", 152 + ] 153 + 154 + [[package]] 155 + name = "async-process" 156 + version = "1.8.1" 157 + source = "registry+https://github.com/rust-lang/crates.io-index" 158 + checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 159 + dependencies = [ 160 + "async-io 1.13.0", 161 + "async-lock 2.8.0", 162 + "async-signal", 163 + "blocking", 164 + "cfg-if", 165 + "event-listener 3.1.0", 166 + "futures-lite 1.13.0", 167 + "rustix 0.38.30", 168 + "windows-sys 0.48.0", 169 + ] 170 + 171 + [[package]] 172 + name = "async-signal" 173 + version = "0.2.5" 174 + source = "registry+https://github.com/rust-lang/crates.io-index" 175 + checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 176 + dependencies = [ 177 + "async-io 2.3.0", 178 + "async-lock 2.8.0", 179 + "atomic-waker", 180 + "cfg-if", 181 + "futures-core", 182 + "futures-io", 183 + "rustix 0.38.30", 184 + "signal-hook-registry", 185 + "slab", 186 + "windows-sys 0.48.0", 187 + ] 188 + 189 + [[package]] 190 + name = "async-std" 191 + version = "1.12.0" 192 + source = "registry+https://github.com/rust-lang/crates.io-index" 193 + checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 194 + dependencies = [ 195 + "async-channel 1.9.0", 196 + "async-global-executor", 197 + "async-io 1.13.0", 198 + "async-lock 2.8.0", 199 + "async-process", 200 + "crossbeam-utils", 201 + "futures-channel", 202 + "futures-core", 203 + "futures-io", 204 + "futures-lite 1.13.0", 205 + "gloo-timers", 206 + "kv-log-macro", 207 + "log", 208 + "memchr", 209 + "once_cell", 210 + "pin-project-lite", 211 + "pin-utils", 212 + "slab", 213 + "wasm-bindgen-futures", 214 + ] 215 + 216 + [[package]] 217 + name = "async-tar" 218 + version = "0.4.2" 219 + source = "git+https://github.com/sky1e/async-tar?branch=master#76b0b33b768a65cd8212cd17c5a83c1c0d34af38" 220 + dependencies = [ 221 + "async-std", 222 + "filetime", 223 + "libc", 224 + "pin-project", 225 + "redox_syscall 0.2.16", 226 + "xattr", 227 + ] 228 + 229 + [[package]] 230 + name = "async-task" 231 + version = "4.7.0" 232 + source = "registry+https://github.com/rust-lang/crates.io-index" 233 + checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 234 + 235 + [[package]] 236 + name = "atomic-waker" 237 + version = "1.1.2" 238 + source = "registry+https://github.com/rust-lang/crates.io-index" 239 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 240 + 241 + [[package]] 242 + name = "autocfg" 243 + version = "1.1.0" 244 + source = "registry+https://github.com/rust-lang/crates.io-index" 245 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 246 + 247 + [[package]] 248 + name = "bitflags" 249 + version = "1.3.2" 250 + source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 252 + 253 + [[package]] 254 + name = "bitflags" 255 + version = "2.4.2" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 258 + 259 + [[package]] 260 + name = "blocking" 261 + version = "1.5.1" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 264 + dependencies = [ 265 + "async-channel 2.1.1", 266 + "async-lock 3.3.0", 267 + "async-task", 268 + "fastrand 2.0.1", 269 + "futures-io", 270 + "futures-lite 2.2.0", 271 + "piper", 272 + "tracing", 273 + ] 274 + 275 + [[package]] 276 + name = "bumpalo" 277 + version = "3.14.0" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 280 + 281 + [[package]] 282 + name = "bzip2" 283 + version = "0.4.4" 284 + source = "registry+https://github.com/rust-lang/crates.io-index" 285 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 286 + dependencies = [ 287 + "bzip2-sys", 288 + "libc", 289 + ] 290 + 291 + [[package]] 292 + name = "bzip2-sys" 293 + version = "0.1.11+1.0.8" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 296 + dependencies = [ 297 + "cc", 298 + "libc", 299 + "pkg-config", 300 + ] 301 + 302 + [[package]] 303 + name = "cc" 304 + version = "1.0.83" 305 + source = "registry+https://github.com/rust-lang/crates.io-index" 306 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 307 + dependencies = [ 308 + "libc", 309 + ] 310 + 311 + [[package]] 312 + name = "cfg-if" 313 + version = "1.0.0" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 316 + 317 + [[package]] 318 + name = "concurrent-queue" 319 + version = "2.4.0" 320 + source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 322 + dependencies = [ 323 + "crossbeam-utils", 324 + ] 325 + 326 + [[package]] 327 + name = "crc32fast" 328 + version = "1.3.2" 329 + source = "registry+https://github.com/rust-lang/crates.io-index" 330 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 331 + dependencies = [ 332 + "cfg-if", 333 + ] 334 + 335 + [[package]] 336 + name = "crossbeam-utils" 337 + version = "0.8.19" 338 + source = "registry+https://github.com/rust-lang/crates.io-index" 339 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 340 + 341 + [[package]] 342 + name = "errno" 343 + version = "0.3.8" 344 + source = "registry+https://github.com/rust-lang/crates.io-index" 345 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 346 + dependencies = [ 347 + "libc", 348 + "windows-sys 0.52.0", 349 + ] 350 + 351 + [[package]] 352 + name = "event-listener" 353 + version = "2.5.3" 354 + source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 356 + 357 + [[package]] 358 + name = "event-listener" 359 + version = "3.1.0" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 362 + dependencies = [ 363 + "concurrent-queue", 364 + "parking", 365 + "pin-project-lite", 366 + ] 367 + 368 + [[package]] 369 + name = "event-listener" 370 + version = "4.0.3" 371 + source = "registry+https://github.com/rust-lang/crates.io-index" 372 + checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 373 + dependencies = [ 374 + "concurrent-queue", 375 + "parking", 376 + "pin-project-lite", 377 + ] 378 + 379 + [[package]] 380 + name = "event-listener-strategy" 381 + version = "0.4.0" 382 + source = "registry+https://github.com/rust-lang/crates.io-index" 383 + checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 384 + dependencies = [ 385 + "event-listener 4.0.3", 386 + "pin-project-lite", 387 + ] 388 + 389 + [[package]] 390 + name = "fastrand" 391 + version = "1.9.0" 392 + source = "registry+https://github.com/rust-lang/crates.io-index" 393 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 394 + dependencies = [ 395 + "instant", 396 + ] 397 + 398 + [[package]] 399 + name = "fastrand" 400 + version = "2.0.1" 401 + source = "registry+https://github.com/rust-lang/crates.io-index" 402 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 403 + 404 + [[package]] 405 + name = "filetime" 406 + version = "0.2.23" 407 + source = "registry+https://github.com/rust-lang/crates.io-index" 408 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 409 + dependencies = [ 410 + "cfg-if", 411 + "libc", 412 + "redox_syscall 0.4.1", 413 + "windows-sys 0.52.0", 414 + ] 415 + 416 + [[package]] 417 + name = "flate2" 418 + version = "1.0.28" 419 + source = "registry+https://github.com/rust-lang/crates.io-index" 420 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 421 + dependencies = [ 422 + "crc32fast", 423 + "miniz_oxide", 424 + ] 425 + 426 + [[package]] 427 + name = "futures" 428 + version = "0.3.30" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 431 + dependencies = [ 432 + "futures-channel", 433 + "futures-core", 434 + "futures-executor", 435 + "futures-io", 436 + "futures-sink", 437 + "futures-task", 438 + "futures-util", 439 + ] 440 + 441 + [[package]] 442 + name = "futures-channel" 443 + version = "0.3.30" 444 + source = "registry+https://github.com/rust-lang/crates.io-index" 445 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 446 + dependencies = [ 447 + "futures-core", 448 + "futures-sink", 449 + ] 450 + 451 + [[package]] 452 + name = "futures-core" 453 + version = "0.3.30" 454 + source = "registry+https://github.com/rust-lang/crates.io-index" 455 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 456 + 457 + [[package]] 458 + name = "futures-executor" 459 + version = "0.3.30" 460 + source = "registry+https://github.com/rust-lang/crates.io-index" 461 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 462 + dependencies = [ 463 + "futures-core", 464 + "futures-task", 465 + "futures-util", 466 + ] 467 + 468 + [[package]] 469 + name = "futures-io" 470 + version = "0.3.30" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 473 + 474 + [[package]] 475 + name = "futures-lite" 476 + version = "1.13.0" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 479 + dependencies = [ 480 + "fastrand 1.9.0", 481 + "futures-core", 482 + "futures-io", 483 + "memchr", 484 + "parking", 485 + "pin-project-lite", 486 + "waker-fn", 487 + ] 488 + 489 + [[package]] 490 + name = "futures-lite" 491 + version = "2.2.0" 492 + source = "registry+https://github.com/rust-lang/crates.io-index" 493 + checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 494 + dependencies = [ 495 + "fastrand 2.0.1", 496 + "futures-core", 497 + "futures-io", 498 + "parking", 499 + "pin-project-lite", 500 + ] 501 + 502 + [[package]] 503 + name = "futures-macro" 504 + version = "0.3.30" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 507 + dependencies = [ 508 + "proc-macro2", 509 + "quote", 510 + "syn", 511 + ] 512 + 513 + [[package]] 514 + name = "futures-sink" 515 + version = "0.3.30" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 518 + 519 + [[package]] 520 + name = "futures-task" 521 + version = "0.3.30" 522 + source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 524 + 525 + [[package]] 526 + name = "futures-util" 527 + version = "0.3.30" 528 + source = "registry+https://github.com/rust-lang/crates.io-index" 529 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 530 + dependencies = [ 531 + "futures-channel", 532 + "futures-core", 533 + "futures-io", 534 + "futures-macro", 535 + "futures-sink", 536 + "futures-task", 537 + "memchr", 538 + "pin-project-lite", 539 + "pin-utils", 540 + "slab", 541 + ] 542 + 543 + [[package]] 544 + name = "gloo-timers" 545 + version = "0.2.6" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 548 + dependencies = [ 549 + "futures-channel", 550 + "futures-core", 551 + "js-sys", 552 + "wasm-bindgen", 553 + ] 554 + 555 + [[package]] 556 + name = "heck" 557 + version = "0.4.1" 558 + source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 560 + 561 + [[package]] 562 + name = "hermit-abi" 563 + version = "0.3.4" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 566 + 567 + [[package]] 568 + name = "indoc" 569 + version = "2.0.4" 570 + source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" 572 + 573 + [[package]] 574 + name = "instant" 575 + version = "0.1.12" 576 + source = "registry+https://github.com/rust-lang/crates.io-index" 577 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 578 + dependencies = [ 579 + "cfg-if", 580 + ] 581 + 582 + [[package]] 583 + name = "io-lifetimes" 584 + version = "1.0.11" 585 + source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 587 + dependencies = [ 588 + "hermit-abi", 589 + "libc", 590 + "windows-sys 0.48.0", 591 + ] 592 + 593 + [[package]] 594 + name = "js-sys" 595 + version = "0.3.67" 596 + source = "registry+https://github.com/rust-lang/crates.io-index" 597 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 598 + dependencies = [ 599 + "wasm-bindgen", 600 + ] 601 + 602 + [[package]] 603 + name = "kv-log-macro" 604 + version = "1.0.7" 605 + source = "registry+https://github.com/rust-lang/crates.io-index" 606 + checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 607 + dependencies = [ 608 + "log", 609 + ] 610 + 611 + [[package]] 612 + name = "libc" 613 + version = "0.2.152" 614 + source = "registry+https://github.com/rust-lang/crates.io-index" 615 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 616 + 617 + [[package]] 618 + name = "linux-raw-sys" 619 + version = "0.3.8" 620 + source = "registry+https://github.com/rust-lang/crates.io-index" 621 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 622 + 623 + [[package]] 624 + name = "linux-raw-sys" 625 + version = "0.4.13" 626 + source = "registry+https://github.com/rust-lang/crates.io-index" 627 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 628 + 629 + [[package]] 630 + name = "lock_api" 631 + version = "0.4.11" 632 + source = "registry+https://github.com/rust-lang/crates.io-index" 633 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 634 + dependencies = [ 635 + "autocfg", 636 + "scopeguard", 637 + ] 638 + 639 + [[package]] 640 + name = "log" 641 + version = "0.4.20" 642 + source = "registry+https://github.com/rust-lang/crates.io-index" 643 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 644 + dependencies = [ 645 + "value-bag", 646 + ] 647 + 648 + [[package]] 649 + name = "lzma-sys" 650 + version = "0.1.20" 651 + source = "registry+https://github.com/rust-lang/crates.io-index" 652 + checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 653 + dependencies = [ 654 + "cc", 655 + "libc", 656 + "pkg-config", 657 + ] 658 + 659 + [[package]] 660 + name = "memchr" 661 + version = "2.7.1" 662 + source = "registry+https://github.com/rust-lang/crates.io-index" 663 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 664 + 665 + [[package]] 666 + name = "memoffset" 667 + version = "0.9.0" 668 + source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 670 + dependencies = [ 671 + "autocfg", 672 + ] 673 + 674 + [[package]] 675 + name = "miniz_oxide" 676 + version = "0.7.1" 677 + source = "registry+https://github.com/rust-lang/crates.io-index" 678 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 679 + dependencies = [ 680 + "adler", 681 + ] 682 + 683 + [[package]] 684 + name = "once_cell" 685 + version = "1.19.0" 686 + source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 688 + 689 + [[package]] 690 + name = "parking" 691 + version = "2.2.0" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 694 + 695 + [[package]] 696 + name = "parking_lot" 697 + version = "0.12.1" 698 + source = "registry+https://github.com/rust-lang/crates.io-index" 699 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 700 + dependencies = [ 701 + "lock_api", 702 + "parking_lot_core", 703 + ] 704 + 705 + [[package]] 706 + name = "parking_lot_core" 707 + version = "0.9.9" 708 + source = "registry+https://github.com/rust-lang/crates.io-index" 709 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 710 + dependencies = [ 711 + "cfg-if", 712 + "libc", 713 + "redox_syscall 0.4.1", 714 + "smallvec", 715 + "windows-targets 0.48.5", 716 + ] 717 + 718 + [[package]] 719 + name = "pin-project" 720 + version = "1.1.3" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 723 + dependencies = [ 724 + "pin-project-internal", 725 + ] 726 + 727 + [[package]] 728 + name = "pin-project-internal" 729 + version = "1.1.3" 730 + source = "registry+https://github.com/rust-lang/crates.io-index" 731 + checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 732 + dependencies = [ 733 + "proc-macro2", 734 + "quote", 735 + "syn", 736 + ] 737 + 738 + [[package]] 739 + name = "pin-project-lite" 740 + version = "0.2.13" 741 + source = "registry+https://github.com/rust-lang/crates.io-index" 742 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 743 + 744 + [[package]] 745 + name = "pin-utils" 746 + version = "0.1.0" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 749 + 750 + [[package]] 751 + name = "piper" 752 + version = "0.2.1" 753 + source = "registry+https://github.com/rust-lang/crates.io-index" 754 + checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 755 + dependencies = [ 756 + "atomic-waker", 757 + "fastrand 2.0.1", 758 + "futures-io", 759 + ] 760 + 761 + [[package]] 762 + name = "pkg-config" 763 + version = "0.3.29" 764 + source = "registry+https://github.com/rust-lang/crates.io-index" 765 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 766 + 767 + [[package]] 768 + name = "polling" 769 + version = "2.8.0" 770 + source = "registry+https://github.com/rust-lang/crates.io-index" 771 + checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 772 + dependencies = [ 773 + "autocfg", 774 + "bitflags 1.3.2", 775 + "cfg-if", 776 + "concurrent-queue", 777 + "libc", 778 + "log", 779 + "pin-project-lite", 780 + "windows-sys 0.48.0", 781 + ] 782 + 783 + [[package]] 784 + name = "polling" 785 + version = "3.3.2" 786 + source = "registry+https://github.com/rust-lang/crates.io-index" 787 + checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" 788 + dependencies = [ 789 + "cfg-if", 790 + "concurrent-queue", 791 + "pin-project-lite", 792 + "rustix 0.38.30", 793 + "tracing", 794 + "windows-sys 0.52.0", 795 + ] 796 + 797 + [[package]] 798 + name = "proc-macro2" 799 + version = "1.0.76" 800 + source = "registry+https://github.com/rust-lang/crates.io-index" 801 + checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 802 + dependencies = [ 803 + "unicode-ident", 804 + ] 805 + 806 + [[package]] 807 + name = "pyo3" 808 + version = "0.20.2" 809 + source = "registry+https://github.com/rust-lang/crates.io-index" 810 + checksum = "9a89dc7a5850d0e983be1ec2a463a171d20990487c3cfcd68b5363f1ee3d6fe0" 811 + dependencies = [ 812 + "cfg-if", 813 + "indoc", 814 + "libc", 815 + "memoffset", 816 + "parking_lot", 817 + "pyo3-build-config", 818 + "pyo3-ffi", 819 + "pyo3-macros", 820 + "unindent", 821 + ] 822 + 823 + [[package]] 824 + name = "pyo3-asyncio" 825 + version = "0.20.0" 826 + source = "registry+https://github.com/rust-lang/crates.io-index" 827 + checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995" 828 + dependencies = [ 829 + "async-std", 830 + "futures", 831 + "once_cell", 832 + "pin-project-lite", 833 + "pyo3", 834 + ] 835 + 836 + [[package]] 837 + name = "pyo3-build-config" 838 + version = "0.20.2" 839 + source = "registry+https://github.com/rust-lang/crates.io-index" 840 + checksum = "07426f0d8fe5a601f26293f300afd1a7b1ed5e78b2a705870c5f30893c5163be" 841 + dependencies = [ 842 + "once_cell", 843 + "target-lexicon", 844 + ] 845 + 846 + [[package]] 847 + name = "pyo3-ffi" 848 + version = "0.20.2" 849 + source = "registry+https://github.com/rust-lang/crates.io-index" 850 + checksum = "dbb7dec17e17766b46bca4f1a4215a85006b4c2ecde122076c562dd058da6cf1" 851 + dependencies = [ 852 + "libc", 853 + "pyo3-build-config", 854 + ] 855 + 856 + [[package]] 857 + name = "pyo3-macros" 858 + version = "0.20.2" 859 + source = "registry+https://github.com/rust-lang/crates.io-index" 860 + checksum = "05f738b4e40d50b5711957f142878cfa0f28e054aa0ebdfc3fd137a843f74ed3" 861 + dependencies = [ 862 + "proc-macro2", 863 + "pyo3-macros-backend", 864 + "quote", 865 + "syn", 866 + ] 867 + 868 + [[package]] 869 + name = "pyo3-macros-backend" 870 + version = "0.20.2" 871 + source = "registry+https://github.com/rust-lang/crates.io-index" 872 + checksum = "0fc910d4851847827daf9d6cdd4a823fbdaab5b8818325c5e97a86da79e8881f" 873 + dependencies = [ 874 + "heck", 875 + "proc-macro2", 876 + "quote", 877 + "syn", 878 + ] 879 + 880 + [[package]] 881 + name = "quote" 882 + version = "1.0.35" 883 + source = "registry+https://github.com/rust-lang/crates.io-index" 884 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 885 + dependencies = [ 886 + "proc-macro2", 887 + ] 888 + 889 + [[package]] 890 + name = "redox_syscall" 891 + version = "0.2.16" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 894 + dependencies = [ 895 + "bitflags 1.3.2", 896 + ] 897 + 898 + [[package]] 899 + name = "redox_syscall" 900 + version = "0.4.1" 901 + source = "registry+https://github.com/rust-lang/crates.io-index" 902 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 903 + dependencies = [ 904 + "bitflags 1.3.2", 905 + ] 906 + 907 + [[package]] 908 + name = "replace_with" 909 + version = "0.1.7" 910 + source = "registry+https://github.com/rust-lang/crates.io-index" 911 + checksum = "e3a8614ee435691de62bcffcf4a66d91b3594bf1428a5722e79103249a095690" 912 + 913 + [[package]] 914 + name = "rustix" 915 + version = "0.37.27" 916 + source = "registry+https://github.com/rust-lang/crates.io-index" 917 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 918 + dependencies = [ 919 + "bitflags 1.3.2", 920 + "errno", 921 + "io-lifetimes", 922 + "libc", 923 + "linux-raw-sys 0.3.8", 924 + "windows-sys 0.48.0", 925 + ] 926 + 927 + [[package]] 928 + name = "rustix" 929 + version = "0.38.30" 930 + source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 932 + dependencies = [ 933 + "bitflags 2.4.2", 934 + "errno", 935 + "libc", 936 + "linux-raw-sys 0.4.13", 937 + "windows-sys 0.52.0", 938 + ] 939 + 940 + [[package]] 941 + name = "scopeguard" 942 + version = "1.2.0" 943 + source = "registry+https://github.com/rust-lang/crates.io-index" 944 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 945 + 946 + [[package]] 947 + name = "signal-hook-registry" 948 + version = "1.4.1" 949 + source = "registry+https://github.com/rust-lang/crates.io-index" 950 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 951 + dependencies = [ 952 + "libc", 953 + ] 954 + 955 + [[package]] 956 + name = "slab" 957 + version = "0.4.9" 958 + source = "registry+https://github.com/rust-lang/crates.io-index" 959 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 960 + dependencies = [ 961 + "autocfg", 962 + ] 963 + 964 + [[package]] 965 + name = "smallvec" 966 + version = "1.13.0" 967 + source = "registry+https://github.com/rust-lang/crates.io-index" 968 + checksum = "3b187f0231d56fe41bfb12034819dd2bf336422a5866de41bc3fec4b2e3883e8" 969 + 970 + [[package]] 971 + name = "socket2" 972 + version = "0.4.10" 973 + source = "registry+https://github.com/rust-lang/crates.io-index" 974 + checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 975 + dependencies = [ 976 + "libc", 977 + "winapi", 978 + ] 979 + 980 + [[package]] 981 + name = "syn" 982 + version = "2.0.48" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 985 + dependencies = [ 986 + "proc-macro2", 987 + "quote", 988 + "unicode-ident", 989 + ] 990 + 991 + [[package]] 992 + name = "target-lexicon" 993 + version = "0.12.13" 994 + source = "registry+https://github.com/rust-lang/crates.io-index" 995 + checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 996 + 997 + [[package]] 998 + name = "tracing" 999 + version = "0.1.40" 1000 + source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1002 + dependencies = [ 1003 + "pin-project-lite", 1004 + "tracing-core", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "tracing-core" 1009 + version = "0.1.32" 1010 + source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1012 + 1013 + [[package]] 1014 + name = "unicode-ident" 1015 + version = "1.0.12" 1016 + source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1018 + 1019 + [[package]] 1020 + name = "unindent" 1021 + version = "0.2.3" 1022 + source = "registry+https://github.com/rust-lang/crates.io-index" 1023 + checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" 1024 + 1025 + [[package]] 1026 + name = "value-bag" 1027 + version = "1.6.0" 1028 + source = "registry+https://github.com/rust-lang/crates.io-index" 1029 + checksum = "7cdbaf5e132e593e9fc1de6a15bbec912395b11fb9719e061cf64f804524c503" 1030 + 1031 + [[package]] 1032 + name = "waker-fn" 1033 + version = "1.1.1" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 1036 + 1037 + [[package]] 1038 + name = "wasm-bindgen" 1039 + version = "0.2.90" 1040 + source = "registry+https://github.com/rust-lang/crates.io-index" 1041 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 1042 + dependencies = [ 1043 + "cfg-if", 1044 + "wasm-bindgen-macro", 1045 + ] 1046 + 1047 + [[package]] 1048 + name = "wasm-bindgen-backend" 1049 + version = "0.2.90" 1050 + source = "registry+https://github.com/rust-lang/crates.io-index" 1051 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 1052 + dependencies = [ 1053 + "bumpalo", 1054 + "log", 1055 + "once_cell", 1056 + "proc-macro2", 1057 + "quote", 1058 + "syn", 1059 + "wasm-bindgen-shared", 1060 + ] 1061 + 1062 + [[package]] 1063 + name = "wasm-bindgen-futures" 1064 + version = "0.4.40" 1065 + source = "registry+https://github.com/rust-lang/crates.io-index" 1066 + checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 1067 + dependencies = [ 1068 + "cfg-if", 1069 + "js-sys", 1070 + "wasm-bindgen", 1071 + "web-sys", 1072 + ] 1073 + 1074 + [[package]] 1075 + name = "wasm-bindgen-macro" 1076 + version = "0.2.90" 1077 + source = "registry+https://github.com/rust-lang/crates.io-index" 1078 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 1079 + dependencies = [ 1080 + "quote", 1081 + "wasm-bindgen-macro-support", 1082 + ] 1083 + 1084 + [[package]] 1085 + name = "wasm-bindgen-macro-support" 1086 + version = "0.2.90" 1087 + source = "registry+https://github.com/rust-lang/crates.io-index" 1088 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 1089 + dependencies = [ 1090 + "proc-macro2", 1091 + "quote", 1092 + "syn", 1093 + "wasm-bindgen-backend", 1094 + "wasm-bindgen-shared", 1095 + ] 1096 + 1097 + [[package]] 1098 + name = "wasm-bindgen-shared" 1099 + version = "0.2.90" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 1102 + 1103 + [[package]] 1104 + name = "web-sys" 1105 + version = "0.3.67" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 1108 + dependencies = [ 1109 + "js-sys", 1110 + "wasm-bindgen", 1111 + ] 1112 + 1113 + [[package]] 1114 + name = "winapi" 1115 + version = "0.3.9" 1116 + source = "registry+https://github.com/rust-lang/crates.io-index" 1117 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1118 + dependencies = [ 1119 + "winapi-i686-pc-windows-gnu", 1120 + "winapi-x86_64-pc-windows-gnu", 1121 + ] 1122 + 1123 + [[package]] 1124 + name = "winapi-i686-pc-windows-gnu" 1125 + version = "0.4.0" 1126 + source = "registry+https://github.com/rust-lang/crates.io-index" 1127 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1128 + 1129 + [[package]] 1130 + name = "winapi-x86_64-pc-windows-gnu" 1131 + version = "0.4.0" 1132 + source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1134 + 1135 + [[package]] 1136 + name = "windows-sys" 1137 + version = "0.48.0" 1138 + source = "registry+https://github.com/rust-lang/crates.io-index" 1139 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1140 + dependencies = [ 1141 + "windows-targets 0.48.5", 1142 + ] 1143 + 1144 + [[package]] 1145 + name = "windows-sys" 1146 + version = "0.52.0" 1147 + source = "registry+https://github.com/rust-lang/crates.io-index" 1148 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1149 + dependencies = [ 1150 + "windows-targets 0.52.0", 1151 + ] 1152 + 1153 + [[package]] 1154 + name = "windows-targets" 1155 + version = "0.48.5" 1156 + source = "registry+https://github.com/rust-lang/crates.io-index" 1157 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1158 + dependencies = [ 1159 + "windows_aarch64_gnullvm 0.48.5", 1160 + "windows_aarch64_msvc 0.48.5", 1161 + "windows_i686_gnu 0.48.5", 1162 + "windows_i686_msvc 0.48.5", 1163 + "windows_x86_64_gnu 0.48.5", 1164 + "windows_x86_64_gnullvm 0.48.5", 1165 + "windows_x86_64_msvc 0.48.5", 1166 + ] 1167 + 1168 + [[package]] 1169 + name = "windows-targets" 1170 + version = "0.52.0" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 1173 + dependencies = [ 1174 + "windows_aarch64_gnullvm 0.52.0", 1175 + "windows_aarch64_msvc 0.52.0", 1176 + "windows_i686_gnu 0.52.0", 1177 + "windows_i686_msvc 0.52.0", 1178 + "windows_x86_64_gnu 0.52.0", 1179 + "windows_x86_64_gnullvm 0.52.0", 1180 + "windows_x86_64_msvc 0.52.0", 1181 + ] 1182 + 1183 + [[package]] 1184 + name = "windows_aarch64_gnullvm" 1185 + version = "0.48.5" 1186 + source = "registry+https://github.com/rust-lang/crates.io-index" 1187 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1188 + 1189 + [[package]] 1190 + name = "windows_aarch64_gnullvm" 1191 + version = "0.52.0" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 1194 + 1195 + [[package]] 1196 + name = "windows_aarch64_msvc" 1197 + version = "0.48.5" 1198 + source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1200 + 1201 + [[package]] 1202 + name = "windows_aarch64_msvc" 1203 + version = "0.52.0" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 1206 + 1207 + [[package]] 1208 + name = "windows_i686_gnu" 1209 + version = "0.48.5" 1210 + source = "registry+https://github.com/rust-lang/crates.io-index" 1211 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1212 + 1213 + [[package]] 1214 + name = "windows_i686_gnu" 1215 + version = "0.52.0" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 1218 + 1219 + [[package]] 1220 + name = "windows_i686_msvc" 1221 + version = "0.48.5" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1224 + 1225 + [[package]] 1226 + name = "windows_i686_msvc" 1227 + version = "0.52.0" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 1230 + 1231 + [[package]] 1232 + name = "windows_x86_64_gnu" 1233 + version = "0.48.5" 1234 + source = "registry+https://github.com/rust-lang/crates.io-index" 1235 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1236 + 1237 + [[package]] 1238 + name = "windows_x86_64_gnu" 1239 + version = "0.52.0" 1240 + source = "registry+https://github.com/rust-lang/crates.io-index" 1241 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 1242 + 1243 + [[package]] 1244 + name = "windows_x86_64_gnullvm" 1245 + version = "0.48.5" 1246 + source = "registry+https://github.com/rust-lang/crates.io-index" 1247 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1248 + 1249 + [[package]] 1250 + name = "windows_x86_64_gnullvm" 1251 + version = "0.52.0" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 1254 + 1255 + [[package]] 1256 + name = "windows_x86_64_msvc" 1257 + version = "0.48.5" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1260 + 1261 + [[package]] 1262 + name = "windows_x86_64_msvc" 1263 + version = "0.52.0" 1264 + source = "registry+https://github.com/rust-lang/crates.io-index" 1265 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 1266 + 1267 + [[package]] 1268 + name = "xattr" 1269 + version = "0.2.3" 1270 + source = "registry+https://github.com/rust-lang/crates.io-index" 1271 + checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 1272 + dependencies = [ 1273 + "libc", 1274 + ] 1275 + 1276 + [[package]] 1277 + name = "xz2" 1278 + version = "0.1.7" 1279 + source = "registry+https://github.com/rust-lang/crates.io-index" 1280 + checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 1281 + dependencies = [ 1282 + "lzma-sys", 1283 + ]
+53
pkgs/development/python-modules/aiotarfile/default.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + nix-update-script, 5 + 6 + buildPythonPackage, 7 + unittestCheckHook, 8 + pythonOlder, 9 + cargo, 10 + rustc, 11 + rustPlatform, 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "aiotarfile"; 16 + version = "0.5.1"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.8"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "rhelmot"; 23 + repo = "aiotarfile"; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-DslG+XxIYb04I3B7m0fmRmE3hFCczF039QhSVdHGPL8="; 26 + }; 27 + passthru.updateScript = nix-update-script { }; 28 + 29 + cargoDeps = rustPlatform.importCargoLock { 30 + lockFile = ./Cargo.lock; 31 + outputHashes."async-tar-0.4.2" = "sha256-C8M/5YEo3OIfN+654pVTfDm8C8qmKX5qy61NKFt7Jb4="; 32 + }; 33 + 34 + nativeBuildInputs = [ 35 + cargo 36 + rustPlatform.cargoSetupHook 37 + rustPlatform.maturinBuildHook 38 + rustc 39 + ]; 40 + 41 + nativeCheckInputs = [ unittestCheckHook ]; 42 + unittestFlagsArray = [ "tests/" ]; # Not sure why it isn't autodiscovered 43 + 44 + pythonImportsCheck = [ "aiotarfile" ]; 45 + 46 + meta = with lib; { 47 + description = "Stream-based, asynchronous tarball processing"; 48 + homepage = "https://github.com/rhelmot/aiotarfile"; 49 + changelog = "https://github.com/rhelmot/aiotarfile/commits/v{version}"; 50 + license = licenses.mit; 51 + maintainers = with maintainers; [ nicoo ]; 52 + }; 53 + }
+37
pkgs/development/python-modules/apt-repo/default.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + unstableGitUpdater, 5 + 6 + buildPythonPackage, 7 + pytestCheckHook, 8 + pythonOlder, 9 + setuptools, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "apt-repo"; 14 + version = "0.5-unstable-2023-09-27"; 15 + pyproject = true; 16 + disabled = pythonOlder "3.5"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "brennerm"; 20 + repo = "python-apt-repo"; 21 + rev = "0287c59317f9ec8e8edbf7c228665a7010f758e7"; 22 + hash = "sha256-9PA6AIeMXpaDc9g+rYpzwhf4ts3Xb31rvAUgDebTG4A="; 23 + }; 24 + passthru.updateScript = unstableGitUpdater { }; 25 + 26 + build-system = [ setuptools ]; 27 + nativeBuildInputs = [ pytestCheckHook ]; 28 + 29 + pythonImportsCheck = [ "apt_repo" ]; 30 + 31 + meta = with lib; { 32 + description = "Python library to query APT repositories"; 33 + homepage = "https://github.com/brennerm/python-apt-repo"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ nicoo ]; 36 + }; 37 + }
+6 -2
pkgs/development/python-modules/django-q/default.nix
··· 17 17 pytestCheckHook, 18 18 pythonOlder, 19 19 redis, 20 + setuptools, 20 21 }: 21 22 22 23 buildPythonPackage rec { ··· 34 33 hash = "sha256-gFSrAl3QGoJEJfvTTvLQgViPPjeJ6BfvgEwgLLo+uAA="; 35 34 }; 36 35 37 - # fixes empty version string 38 - # analog to https://github.com/NixOS/nixpkgs/pull/171200 39 36 patches = [ ./pep-621.patch ]; 40 37 41 38 build-system = [ 42 39 poetry-core 40 + ]; 41 + 42 + pythonRelaxDeps = [ 43 + "redis" 43 44 ]; 44 45 45 46 dependencies = [ ··· 50 47 blessed 51 48 django 52 49 future 50 + setuptools # for pkg_resources 53 51 ]; 54 52 55 53 nativeCheckInputs = [
+21 -29
pkgs/development/python-modules/django-q/pep-621.patch
··· 1 1 diff --git a/pyproject.toml b/pyproject.toml 2 - index 9a83e90..0cdffaf 100644 2 + index 9a83e90..07068ac 100644 3 3 --- a/pyproject.toml 4 4 +++ b/pyproject.toml 5 - @@ -1,16 +1,12 @@ 6 - -[tool.poetry] 7 - +[project] 8 - name = "django-q" 9 - version = "1.3.9" 10 - description = "A multiprocessing distributed task queue for Django" 11 - -authors = ["Ilan Steemers <koed00@gmail.com>"] 12 - -maintainers = ["Ilan Steemers <koed00@gmail.com>"] 13 - -license = "MIT" 14 - +authors = [ { name = "Ilan Steemers", email = "koed00@gmail.com"} ] 15 - +maintainers = [ { name = "Ilan Steemers", email = "koed00@gmail.com"} ] 16 - +license.text = "MIT" 17 - readme = 'README.rst' 18 - 19 - -repository = "https://github.com/koed00/django-q" 20 - -homepage = "https://django-q.readthedocs.org" 21 - -documentation = "https://django-q.readthedocs.org" 22 - - 23 - keywords = ["django", "distributed", "multiprocessing", "queue", "scheduler"] 24 - 25 - classifiers = [ 26 - @@ -31,7 +27,6 @@ classifiers = [ 27 - 'Topic :: System :: Distributed Computing', 28 - 'Topic :: Software Development :: Libraries :: Python Modules', 29 - ] 30 - -include = ['CHANGELOG.md'] 31 - 32 - [tool.poetry.plugins] # Optional super table 5 + @@ -67,13 +67,15 @@ pytest-cov = "^2.12.0" 6 + black = { version = "^21.5b1", allow-prereleases = true } 7 + isort = {extras = ["requirements_deprecated_finder"], version = "^5.8.0"} 8 + 9 + -[tool.poetry.extras] 10 + +[build-system] 11 + requires = ["poetry_core>=1.0.0"] 12 + -build-backend = ["poetry.core.masonry.api"] 13 + +build-backend = "poetry.core.masonry.api" 14 + + 15 + +[tool.poetry.extras] 16 + testing = ["django-redis", "croniter", "hiredis", "psutil", "iron-mq", "boto3", "pymongo"] 17 + rollbar = ["django-q-rollbar"] 18 + sentry = ["django-q-sentry"] 19 + 20 + [tool.isort] 21 + profile = "black" 22 + -multi_line_output = 3 23 + \ No newline at end of file 24 + +multi_line_output = 3
+2 -2
pkgs/development/python-modules/fnllm/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "fnllm"; 22 - version = "0.0.11"; 22 + version = "0.0.12"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.11"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-EiCP+HyipL6mpmjb3wjXUr+VRJ9ZO9qsegppNM7gVEk="; 29 + hash = "sha256-qWZ//i1Xd6vWp3TlZz+TNJQGb1Ym8/edn4BV8e5wkjM="; 30 30 }; 31 31 32 32 build-system = [ hatchling ];
+3 -3
pkgs/development/python-modules/morecantile/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "morecantile"; 20 - version = "6.0.0"; 20 + version = "6.1.0"; 21 21 pyproject = true; 22 22 disabled = pythonOlder "3.8"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "developmentseed"; 26 26 repo = "morecantile"; 27 - rev = "refs/tags/${version}"; 28 - hash = "sha256-l+fQQXOrhqRanB695nR4okfmPYP05NdrGOvgG+jK2uo="; 27 + tag = version; 28 + hash = "sha256-+gfmXbse3fnLepZQBwuC8KTNmJs7Lb69jvV89Bv9DF8="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ flit ];
+10 -13
pkgs/development/python-modules/preprocess-cancellation/default.nix
··· 4 4 pythonOlder, 5 5 fetchFromGitHub, 6 6 poetry-core, 7 - setuptools, 8 7 shapely, 9 8 pytestCheckHook, 10 9 }: ··· 12 13 pname = "preprocess-cancellation"; 13 14 version = "0.2.1"; 14 15 disabled = pythonOlder "3.6"; # >= 3.6 15 - format = "pyproject"; 16 + pyproject = true; 16 17 17 18 # No tests in PyPI 18 19 src = fetchFromGitHub { ··· 25 26 postPatch = '' 26 27 sed -i "/^addopts/d" pyproject.toml 27 28 28 - # setuptools 61 compatibility 29 - # error: Multiple top-level packages discovered in a flat-layout: ['STLs', 'GCode']. 30 - mkdir tests 31 - mv GCode STLs test_* tests 32 - substituteInPlace tests/test_preprocessor.py \ 33 - --replace "./GCode" "./tests/GCode" 34 - substituteInPlace tests/test_preprocessor_with_shapely.py \ 35 - --replace "./GCode" "./tests/GCode" 29 + cat >> pyproject.toml << EOF 30 + [build-system] 31 + requires = ["poetry-core"] 32 + build-backend = "poetry.core.masonry.api" 33 + EOF 36 34 ''; 37 35 38 - nativeBuildInputs = [ 36 + build-system = [ 39 37 poetry-core 40 - setuptools 41 38 ]; 42 39 43 - propagatedBuildInputs = [ shapely ]; 40 + optional-dependencies = { 41 + shapely = [ shapely ]; 42 + }; 44 43 45 44 nativeCheckInputs = [ pytestCheckHook ]; 46 45
+2 -2
pkgs/development/python-modules/shiv/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "shiv"; 14 - version = "1.0.7"; 14 + version = "1.0.8"; 15 15 format = "pyproject"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-lHdX/iY4OuntoMV288uiRN+jcV7S9Jk1RLdYJF9xqxU="; 19 + hash = "sha256-KmjWnpjOgctbj9r7/B4n76k+bYnKFL+uM0guQXb1YdY="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/games/gcompris/default.nix
··· 22 22 23 23 stdenv.mkDerivation (finalAttrs: { 24 24 pname = "gcompris"; 25 - version = "4.2"; 25 + version = "4.3"; 26 26 27 27 src = fetchurl { 28 28 url = "mirror://kde/stable/gcompris/qt/src/gcompris-qt-${finalAttrs.version}.tar.xz"; 29 - hash = "sha256-Zocmq8lJxJ5TSLVeix59cAVYQghDK7lUJJeffwjyJWw="; 29 + hash = "sha256-x+oTh0Nu7MnCnKGR2vkALDclG59576u/+HPdftsDtcc="; 30 30 }; 31 31 32 32 cmakeFlags = [
+1 -2
pkgs/games/space-station-14-launcher/space-station-14-launcher.nix
··· 55 55 updateScript = ./update.sh; 56 56 }; 57 57 58 - # SDK 6.0 required for Robust.LoaderApi 59 - dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_8_0 sdk_6_0 ]; 58 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 60 59 dotnet-runtime = dotnetCorePackages.runtime_8_0; 61 60 62 61 dotnetFlags = [
+10 -10
pkgs/os-specific/linux/ch9344/default.nix
··· 1 - { stdenv, lib, fetchzip, kernel }: 1 + { stdenv, lib, fetchFromGitHub, kernel }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ch9344"; 5 - version = "2.0"; 5 + version = "0-unstable-2024-11-15"; 6 6 7 - src = fetchzip { 8 - name = "CH9344SER_LINUX.zip"; 9 - url = "https://www.wch.cn/downloads/file/386.html#CH9344SER_LINUX.zip"; 10 - hash = "sha256-YKNMYpap7CjhgTIpd/M9+nB11NtpwGYT/P14J6q3XZg="; 7 + src = fetchFromGitHub { 8 + owner = "WCHSoftGroup"; 9 + repo = "ch9344ser_linux"; 10 + rev = "4ea8973886989d67acdd01dba213e355eacc9088"; 11 + hash = "sha256-ZZ/8s26o7wRwHy6c0m1vZ/DtRW5od+NgiU6aXZBVfc4="; 11 12 }; 12 13 13 14 patches = [ 14 - ./fix-incompatible-pointer-types.patch 15 + ./fix-linux-6-12-build.patch 15 16 ]; 16 17 17 18 sourceRoot = "${src.name}/driver"; ··· 35 34 36 35 meta = with lib; { 37 36 homepage = "https://www.wch-ic.com/"; 38 - downloadPage = "https://www.wch.cn/downloads/CH9344SER_LINUX_ZIP.html"; 37 + downloadPage = "https://github.com/WCHSoftGroup/ch9344ser_linux"; 39 38 description = "WCH CH9344/CH348 UART driver"; 40 39 longDescription = '' 41 40 A kernel module for WinChipHead CH9344/CH348 USB To Multi Serial Ports controller. 42 41 ''; 43 - # Archive contains no license. 44 - license = licenses.unfree; 42 + license = licenses.gpl2Only; 45 43 platforms = platforms.linux; 46 44 maintainers = with maintainers; [ MakiseKurisu ]; 47 45 };
-16
pkgs/os-specific/linux/ch9344/fix-incompatible-pointer-types.patch
··· 1 - diff --git a/ch9344.c b/ch9344.c 2 - index bfa10bb..76a94a7 100644 3 - --- a/ch9344.c 4 - +++ b/ch9344.c 5 - @@ -837,7 +837,11 @@ static void ch9344_tty_close(struct tty_struct *tty, struct file *filp) 6 - } 7 - } 8 - 9 - +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 6, 0)) 10 - +static ssize_t ch9344_tty_write(struct tty_struct *tty, const u8 *buf, size_t count) 11 - +#else 12 - static int ch9344_tty_write(struct tty_struct *tty, const unsigned char *buf, int count) 13 - +#endif 14 - { 15 - struct ch9344 *ch9344 = tty->driver_data; 16 - int stat;
+16
pkgs/os-specific/linux/ch9344/fix-linux-6-12-build.patch
··· 1 + diff --git a/ch9344.c b/ch9344.c 2 + index 8130334..b017faa 100644 3 + --- a/ch9344.c 4 + +++ b/ch9344.c 5 + @@ -62,7 +62,11 @@ 6 + #include <linux/timer.h> 7 + #include <linux/kfifo.h> 8 + #include <asm/byteorder.h> 9 + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 12, 0)) 10 + +#include <linux/unaligned.h> 11 + +#else 12 + #include <asm/unaligned.h> 13 + +#endif 14 + 15 + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)) 16 + #include <linux/sched/signal.h>
+2 -2
pkgs/servers/mail/opensmtpd/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "opensmtpd"; 20 - version = "7.5.0p0"; 20 + version = "7.6.0p1"; 21 21 22 22 nativeBuildInputs = [ autoreconfHook autoconf-archive pkgconf libtool bison ]; 23 23 buildInputs = [ libevent zlib libressl db pam libxcrypt ]; 24 24 25 25 src = fetchurl { 26 26 url = "https://www.opensmtpd.org/archives/${pname}-${version}.tar.gz"; 27 - hash = "sha256-hPXBOTwMG+zHLO6pceCr1wdbLKfk4fiQm4Pt/Y3gw5w="; 27 + hash = "sha256-snyAaYKmZTomN/gQrnpFNyuaf/mTUO4QA3RlA/8OSpc="; 28 28 }; 29 29 30 30 patches = [
-5233
pkgs/tools/networking/edgedb/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 = "addr2line" 7 - version = "0.24.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler2" 16 - version = "2.0.0" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 - 20 - [[package]] 21 - name = "adler32" 22 - version = "1.2.0" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 25 - 26 - [[package]] 27 - name = "aes" 28 - version = "0.8.4" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 31 - dependencies = [ 32 - "cfg-if", 33 - "cipher", 34 - "cpufeatures", 35 - ] 36 - 37 - [[package]] 38 - name = "ahash" 39 - version = "0.8.11" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 42 - dependencies = [ 43 - "cfg-if", 44 - "once_cell", 45 - "version_check", 46 - "zerocopy", 47 - ] 48 - 49 - [[package]] 50 - name = "aho-corasick" 51 - version = "1.1.3" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 54 - dependencies = [ 55 - "memchr", 56 - ] 57 - 58 - [[package]] 59 - name = "alloc-no-stdlib" 60 - version = "2.0.4" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 63 - 64 - [[package]] 65 - name = "alloc-stdlib" 66 - version = "0.2.2" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 69 - dependencies = [ 70 - "alloc-no-stdlib", 71 - ] 72 - 73 - [[package]] 74 - name = "allocator-api2" 75 - version = "0.2.20" 76 - source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "45862d1c77f2228b9e10bc609d5bc203d86ebc9b87ad8d5d5167a6c9abf739d9" 78 - 79 - [[package]] 80 - name = "anes" 81 - version = "0.2.0" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "735d4f398ca57cfa2880225c2bf81c3b9af3be5bb22e44ae70118dad38713e84" 84 - 85 - [[package]] 86 - name = "ansi-escapes" 87 - version = "0.2.0" 88 - source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "10b98e9c74265950a28ae39c02e290858714c23071ab4f71c61d2908e2edfe44" 90 - 91 - [[package]] 92 - name = "anstream" 93 - version = "0.6.18" 94 - source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 96 - dependencies = [ 97 - "anstyle", 98 - "anstyle-parse", 99 - "anstyle-query", 100 - "anstyle-wincon", 101 - "colorchoice", 102 - "is_terminal_polyfill", 103 - "utf8parse", 104 - ] 105 - 106 - [[package]] 107 - name = "anstyle" 108 - version = "1.0.10" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 111 - 112 - [[package]] 113 - name = "anstyle-parse" 114 - version = "0.2.6" 115 - source = "registry+https://github.com/rust-lang/crates.io-index" 116 - checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" 117 - dependencies = [ 118 - "utf8parse", 119 - ] 120 - 121 - [[package]] 122 - name = "anstyle-query" 123 - version = "1.1.2" 124 - source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" 126 - dependencies = [ 127 - "windows-sys 0.59.0", 128 - ] 129 - 130 - [[package]] 131 - name = "anstyle-wincon" 132 - version = "3.0.6" 133 - source = "registry+https://github.com/rust-lang/crates.io-index" 134 - checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" 135 - dependencies = [ 136 - "anstyle", 137 - "windows-sys 0.59.0", 138 - ] 139 - 140 - [[package]] 141 - name = "anyhow" 142 - version = "1.0.93" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" 145 - 146 - [[package]] 147 - name = "append-only-vec" 148 - version = "0.1.7" 149 - source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "7992085ec035cfe96992dd31bfd495a2ebd31969bb95f624471cb6c0b349e571" 151 - 152 - [[package]] 153 - name = "arbitrary" 154 - version = "1.4.1" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" 157 - dependencies = [ 158 - "derive_arbitrary", 159 - ] 160 - 161 - [[package]] 162 - name = "arc-swap" 163 - version = "1.7.1" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 166 - 167 - [[package]] 168 - name = "arrayref" 169 - version = "0.3.9" 170 - source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 172 - 173 - [[package]] 174 - name = "arrayvec" 175 - version = "0.7.6" 176 - source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 178 - 179 - [[package]] 180 - name = "assert_cmd" 181 - version = "2.0.16" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d" 184 - dependencies = [ 185 - "anstyle", 186 - "bstr", 187 - "doc-comment", 188 - "libc", 189 - "predicates", 190 - "predicates-core", 191 - "predicates-tree", 192 - "wait-timeout", 193 - ] 194 - 195 - [[package]] 196 - name = "async-channel" 197 - version = "1.9.0" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 200 - dependencies = [ 201 - "concurrent-queue", 202 - "event-listener 2.5.3", 203 - "futures-core", 204 - ] 205 - 206 - [[package]] 207 - name = "async-channel" 208 - version = "2.3.1" 209 - source = "registry+https://github.com/rust-lang/crates.io-index" 210 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 211 - dependencies = [ 212 - "concurrent-queue", 213 - "event-listener-strategy", 214 - "futures-core", 215 - "pin-project-lite", 216 - ] 217 - 218 - [[package]] 219 - name = "async-compression" 220 - version = "0.4.18" 221 - source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" 223 - dependencies = [ 224 - "brotli", 225 - "flate2", 226 - "futures-core", 227 - "memchr", 228 - "pin-project-lite", 229 - "tokio", 230 - ] 231 - 232 - [[package]] 233 - name = "async-executor" 234 - version = "1.13.1" 235 - source = "registry+https://github.com/rust-lang/crates.io-index" 236 - checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 237 - dependencies = [ 238 - "async-task", 239 - "concurrent-queue", 240 - "fastrand", 241 - "futures-lite", 242 - "slab", 243 - ] 244 - 245 - [[package]] 246 - name = "async-global-executor" 247 - version = "2.4.1" 248 - source = "registry+https://github.com/rust-lang/crates.io-index" 249 - checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 250 - dependencies = [ 251 - "async-channel 2.3.1", 252 - "async-executor", 253 - "async-io", 254 - "async-lock", 255 - "blocking", 256 - "futures-lite", 257 - "once_cell", 258 - ] 259 - 260 - [[package]] 261 - name = "async-io" 262 - version = "2.4.0" 263 - source = "registry+https://github.com/rust-lang/crates.io-index" 264 - checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" 265 - dependencies = [ 266 - "async-lock", 267 - "cfg-if", 268 - "concurrent-queue", 269 - "futures-io", 270 - "futures-lite", 271 - "parking", 272 - "polling", 273 - "rustix", 274 - "slab", 275 - "tracing", 276 - "windows-sys 0.59.0", 277 - ] 278 - 279 - [[package]] 280 - name = "async-listen" 281 - version = "0.2.1" 282 - source = "registry+https://github.com/rust-lang/crates.io-index" 283 - checksum = "c0eff11d7d3dbf808fb25952cc54a0bcf50b501ae6d6ea98a817009b330d0a2a" 284 - dependencies = [ 285 - "async-std", 286 - ] 287 - 288 - [[package]] 289 - name = "async-lock" 290 - version = "3.4.0" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 293 - dependencies = [ 294 - "event-listener 5.3.1", 295 - "event-listener-strategy", 296 - "pin-project-lite", 297 - ] 298 - 299 - [[package]] 300 - name = "async-std" 301 - version = "1.13.0" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615" 304 - dependencies = [ 305 - "async-channel 1.9.0", 306 - "async-global-executor", 307 - "async-io", 308 - "async-lock", 309 - "crossbeam-utils", 310 - "futures-channel", 311 - "futures-core", 312 - "futures-io", 313 - "futures-lite", 314 - "gloo-timers", 315 - "kv-log-macro", 316 - "log", 317 - "memchr", 318 - "once_cell", 319 - "pin-project-lite", 320 - "pin-utils", 321 - "slab", 322 - "wasm-bindgen-futures", 323 - ] 324 - 325 - [[package]] 326 - name = "async-task" 327 - version = "4.7.1" 328 - source = "registry+https://github.com/rust-lang/crates.io-index" 329 - checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 330 - 331 - [[package]] 332 - name = "async-trait" 333 - version = "0.1.83" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 336 - dependencies = [ 337 - "proc-macro2", 338 - "quote", 339 - "syn 2.0.89", 340 - ] 341 - 342 - [[package]] 343 - name = "atomic-waker" 344 - version = "1.1.2" 345 - source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 347 - 348 - [[package]] 349 - name = "autocfg" 350 - version = "1.4.0" 351 - source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 353 - 354 - [[package]] 355 - name = "backtrace" 356 - version = "0.3.74" 357 - source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 359 - dependencies = [ 360 - "addr2line", 361 - "cfg-if", 362 - "libc", 363 - "miniz_oxide", 364 - "object", 365 - "rustc-demangle", 366 - "windows-targets 0.52.6", 367 - ] 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 = "base32" 377 - version = "0.5.1" 378 - source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" 380 - 381 - [[package]] 382 - name = "base64" 383 - version = "0.21.7" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 386 - 387 - [[package]] 388 - name = "base64" 389 - version = "0.22.1" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 392 - 393 - [[package]] 394 - name = "bigdecimal" 395 - version = "0.4.6" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "8f850665a0385e070b64c38d2354e6c104c8479c59868d1e48a0c13ee2c7a1c1" 398 - dependencies = [ 399 - "autocfg", 400 - "libm", 401 - "num-bigint", 402 - "num-integer", 403 - "num-traits", 404 - "serde", 405 - ] 406 - 407 - [[package]] 408 - name = "bitflags" 409 - version = "1.3.2" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 412 - 413 - [[package]] 414 - name = "bitflags" 415 - version = "2.6.0" 416 - source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 418 - 419 - [[package]] 420 - name = "bitvec" 421 - version = "1.0.1" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 424 - dependencies = [ 425 - "funty", 426 - "radium", 427 - "tap", 428 - "wyz", 429 - ] 430 - 431 - [[package]] 432 - name = "blake2b_simd" 433 - version = "1.0.2" 434 - source = "registry+https://github.com/rust-lang/crates.io-index" 435 - checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780" 436 - dependencies = [ 437 - "arrayref", 438 - "arrayvec", 439 - "constant_time_eq", 440 - ] 441 - 442 - [[package]] 443 - name = "blake3" 444 - version = "1.5.4" 445 - source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7" 447 - dependencies = [ 448 - "arrayref", 449 - "arrayvec", 450 - "cc", 451 - "cfg-if", 452 - "constant_time_eq", 453 - ] 454 - 455 - [[package]] 456 - name = "block-buffer" 457 - version = "0.10.4" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 460 - dependencies = [ 461 - "generic-array", 462 - ] 463 - 464 - [[package]] 465 - name = "blocking" 466 - version = "1.6.1" 467 - source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 469 - dependencies = [ 470 - "async-channel 2.3.1", 471 - "async-task", 472 - "futures-io", 473 - "futures-lite", 474 - "piper", 475 - ] 476 - 477 - [[package]] 478 - name = "brotli" 479 - version = "7.0.0" 480 - source = "registry+https://github.com/rust-lang/crates.io-index" 481 - checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" 482 - dependencies = [ 483 - "alloc-no-stdlib", 484 - "alloc-stdlib", 485 - "brotli-decompressor", 486 - ] 487 - 488 - [[package]] 489 - name = "brotli-decompressor" 490 - version = "4.0.1" 491 - source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 493 - dependencies = [ 494 - "alloc-no-stdlib", 495 - "alloc-stdlib", 496 - ] 497 - 498 - [[package]] 499 - name = "bstr" 500 - version = "1.11.0" 501 - source = "registry+https://github.com/rust-lang/crates.io-index" 502 - checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22" 503 - dependencies = [ 504 - "memchr", 505 - "regex-automata", 506 - "serde", 507 - ] 508 - 509 - [[package]] 510 - name = "bumpalo" 511 - version = "3.16.0" 512 - source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 514 - 515 - [[package]] 516 - name = "byteorder" 517 - version = "1.5.0" 518 - source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 520 - 521 - [[package]] 522 - name = "bytes" 523 - version = "1.8.0" 524 - source = "registry+https://github.com/rust-lang/crates.io-index" 525 - checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 526 - 527 - [[package]] 528 - name = "bzip2" 529 - version = "0.4.4" 530 - source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 532 - dependencies = [ 533 - "bzip2-sys", 534 - "libc", 535 - ] 536 - 537 - [[package]] 538 - name = "bzip2-sys" 539 - version = "0.1.11+1.0.8" 540 - source = "registry+https://github.com/rust-lang/crates.io-index" 541 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 542 - dependencies = [ 543 - "cc", 544 - "libc", 545 - "pkg-config", 546 - ] 547 - 548 - [[package]] 549 - name = "cc" 550 - version = "1.2.1" 551 - source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47" 553 - dependencies = [ 554 - "jobserver", 555 - "libc", 556 - "shlex", 557 - ] 558 - 559 - [[package]] 560 - name = "cfg-if" 561 - version = "1.0.0" 562 - source = "registry+https://github.com/rust-lang/crates.io-index" 563 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 564 - 565 - [[package]] 566 - name = "cfg_aliases" 567 - version = "0.1.1" 568 - source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 570 - 571 - [[package]] 572 - name = "cfg_aliases" 573 - version = "0.2.1" 574 - source = "registry+https://github.com/rust-lang/crates.io-index" 575 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 576 - 577 - [[package]] 578 - name = "chrono" 579 - version = "0.4.38" 580 - source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 582 - dependencies = [ 583 - "num-traits", 584 - ] 585 - 586 - [[package]] 587 - name = "cipher" 588 - version = "0.4.4" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 591 - dependencies = [ 592 - "crypto-common", 593 - "inout", 594 - ] 595 - 596 - [[package]] 597 - name = "clap" 598 - version = "4.5.21" 599 - source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f" 601 - dependencies = [ 602 - "clap_builder", 603 - "clap_derive", 604 - ] 605 - 606 - [[package]] 607 - name = "clap_builder" 608 - version = "4.5.21" 609 - source = "registry+https://github.com/rust-lang/crates.io-index" 610 - checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec" 611 - dependencies = [ 612 - "anstream", 613 - "anstyle", 614 - "clap_lex", 615 - "strsim", 616 - "terminal_size", 617 - ] 618 - 619 - [[package]] 620 - name = "clap_complete" 621 - version = "4.5.38" 622 - source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "d9647a559c112175f17cf724dc72d3645680a883c58481332779192b0d8e7a01" 624 - dependencies = [ 625 - "clap", 626 - ] 627 - 628 - [[package]] 629 - name = "clap_derive" 630 - version = "4.5.18" 631 - source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 633 - dependencies = [ 634 - "heck", 635 - "proc-macro2", 636 - "quote", 637 - "syn 2.0.89", 638 - ] 639 - 640 - [[package]] 641 - name = "clap_lex" 642 - version = "0.7.3" 643 - source = "registry+https://github.com/rust-lang/crates.io-index" 644 - checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7" 645 - 646 - [[package]] 647 - name = "clipboard-win" 648 - version = "5.4.0" 649 - source = "registry+https://github.com/rust-lang/crates.io-index" 650 - checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892" 651 - dependencies = [ 652 - "error-code", 653 - ] 654 - 655 - [[package]] 656 - name = "codespan-reporting" 657 - version = "0.11.1" 658 - source = "registry+https://github.com/rust-lang/crates.io-index" 659 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 660 - dependencies = [ 661 - "termcolor", 662 - "unicode-width 0.1.14", 663 - ] 664 - 665 - [[package]] 666 - name = "color-print" 667 - version = "0.3.7" 668 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "3aa954171903797d5623e047d9ab69d91b493657917bdfb8c2c80ecaf9cdb6f4" 670 - dependencies = [ 671 - "color-print-proc-macro", 672 - ] 673 - 674 - [[package]] 675 - name = "color-print-proc-macro" 676 - version = "0.3.7" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22" 679 - dependencies = [ 680 - "nom", 681 - "proc-macro2", 682 - "quote", 683 - "syn 2.0.89", 684 - ] 685 - 686 - [[package]] 687 - name = "colorchoice" 688 - version = "1.0.3" 689 - source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" 691 - 692 - [[package]] 693 - name = "colorful" 694 - version = "0.3.2" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "ffb474a9c3219a8254ead020421ecf1b90427f29b55f6aae9a2471fa62c126ef" 697 - 698 - [[package]] 699 - name = "combine" 700 - version = "4.6.7" 701 - source = "registry+https://github.com/rust-lang/crates.io-index" 702 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 703 - dependencies = [ 704 - "bytes", 705 - "memchr", 706 - ] 707 - 708 - [[package]] 709 - name = "comma" 710 - version = "1.0.0" 711 - source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335" 713 - 714 - [[package]] 715 - name = "command-fds" 716 - version = "0.3.0" 717 - source = "registry+https://github.com/rust-lang/crates.io-index" 718 - checksum = "7bb11bd1378bf3731b182997b40cefe00aba6a6cc74042c8318c1b271d3badf7" 719 - dependencies = [ 720 - "nix 0.27.1", 721 - "thiserror 1.0.69", 722 - ] 723 - 724 - [[package]] 725 - name = "concolor" 726 - version = "0.1.1" 727 - source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "0b946244a988c390a94667ae0e3958411fa40cc46ea496a929b263d883f5f9c3" 729 - dependencies = [ 730 - "bitflags 1.3.2", 731 - "concolor-query", 732 - "is-terminal", 733 - ] 734 - 735 - [[package]] 736 - name = "concolor-query" 737 - version = "0.3.3" 738 - source = "registry+https://github.com/rust-lang/crates.io-index" 739 - checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf" 740 - dependencies = [ 741 - "windows-sys 0.45.0", 742 - ] 743 - 744 - [[package]] 745 - name = "concurrent-queue" 746 - version = "2.5.0" 747 - source = "registry+https://github.com/rust-lang/crates.io-index" 748 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 749 - dependencies = [ 750 - "crossbeam-utils", 751 - ] 752 - 753 - [[package]] 754 - name = "console" 755 - version = "0.15.8" 756 - source = "registry+https://github.com/rust-lang/crates.io-index" 757 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 758 - dependencies = [ 759 - "encode_unicode 0.3.6", 760 - "lazy_static", 761 - "libc", 762 - "unicode-width 0.1.14", 763 - "windows-sys 0.52.0", 764 - ] 765 - 766 - [[package]] 767 - name = "const_format" 768 - version = "0.2.33" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b" 771 - dependencies = [ 772 - "const_format_proc_macros", 773 - ] 774 - 775 - [[package]] 776 - name = "const_format_proc_macros" 777 - version = "0.2.33" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1" 780 - dependencies = [ 781 - "proc-macro2", 782 - "quote", 783 - "unicode-xid", 784 - ] 785 - 786 - [[package]] 787 - name = "constant_time_eq" 788 - version = "0.3.1" 789 - source = "registry+https://github.com/rust-lang/crates.io-index" 790 - checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" 791 - 792 - [[package]] 793 - name = "coolor" 794 - version = "1.0.0" 795 - source = "registry+https://github.com/rust-lang/crates.io-index" 796 - checksum = "691defa50318376447a73ced869862baecfab35f6aabaa91a4cd726b315bfe1a" 797 - dependencies = [ 798 - "crossterm", 799 - ] 800 - 801 - [[package]] 802 - name = "core-foundation" 803 - version = "0.10.0" 804 - source = "registry+https://github.com/rust-lang/crates.io-index" 805 - checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" 806 - dependencies = [ 807 - "core-foundation-sys", 808 - "libc", 809 - ] 810 - 811 - [[package]] 812 - name = "core-foundation-sys" 813 - version = "0.8.7" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 816 - 817 - [[package]] 818 - name = "core2" 819 - version = "0.4.0" 820 - source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 822 - dependencies = [ 823 - "memchr", 824 - ] 825 - 826 - [[package]] 827 - name = "cpufeatures" 828 - version = "0.2.16" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" 831 - dependencies = [ 832 - "libc", 833 - ] 834 - 835 - [[package]] 836 - name = "crc" 837 - version = "3.2.1" 838 - source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 840 - dependencies = [ 841 - "crc-catalog", 842 - ] 843 - 844 - [[package]] 845 - name = "crc-catalog" 846 - version = "2.4.0" 847 - source = "registry+https://github.com/rust-lang/crates.io-index" 848 - checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 849 - 850 - [[package]] 851 - name = "crc16" 852 - version = "0.4.0" 853 - source = "registry+https://github.com/rust-lang/crates.io-index" 854 - checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" 855 - 856 - [[package]] 857 - name = "crc32fast" 858 - version = "1.4.2" 859 - source = "registry+https://github.com/rust-lang/crates.io-index" 860 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 861 - dependencies = [ 862 - "cfg-if", 863 - ] 864 - 865 - [[package]] 866 - name = "crokey" 867 - version = "1.1.0" 868 - source = "registry+https://github.com/rust-lang/crates.io-index" 869 - checksum = "520e83558f4c008ac06fa6a86e5c1d4357be6f994cce7434463ebcdaadf47bb1" 870 - dependencies = [ 871 - "crokey-proc_macros", 872 - "crossterm", 873 - "once_cell", 874 - "serde", 875 - "strict", 876 - ] 877 - 878 - [[package]] 879 - name = "crokey-proc_macros" 880 - version = "1.1.0" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "370956e708a1ce65fe4ac5bb7185791e0ece7485087f17736d54a23a0895049f" 883 - dependencies = [ 884 - "crossterm", 885 - "proc-macro2", 886 - "quote", 887 - "strict", 888 - "syn 1.0.109", 889 - ] 890 - 891 - [[package]] 892 - name = "crossbeam" 893 - version = "0.8.4" 894 - source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 896 - dependencies = [ 897 - "crossbeam-channel", 898 - "crossbeam-deque", 899 - "crossbeam-epoch", 900 - "crossbeam-queue", 901 - "crossbeam-utils", 902 - ] 903 - 904 - [[package]] 905 - name = "crossbeam-channel" 906 - version = "0.5.13" 907 - source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 909 - dependencies = [ 910 - "crossbeam-utils", 911 - ] 912 - 913 - [[package]] 914 - name = "crossbeam-deque" 915 - version = "0.8.5" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 918 - dependencies = [ 919 - "crossbeam-epoch", 920 - "crossbeam-utils", 921 - ] 922 - 923 - [[package]] 924 - name = "crossbeam-epoch" 925 - version = "0.9.18" 926 - source = "registry+https://github.com/rust-lang/crates.io-index" 927 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 928 - dependencies = [ 929 - "crossbeam-utils", 930 - ] 931 - 932 - [[package]] 933 - name = "crossbeam-queue" 934 - version = "0.3.11" 935 - source = "registry+https://github.com/rust-lang/crates.io-index" 936 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 937 - dependencies = [ 938 - "crossbeam-utils", 939 - ] 940 - 941 - [[package]] 942 - name = "crossbeam-utils" 943 - version = "0.8.20" 944 - source = "registry+https://github.com/rust-lang/crates.io-index" 945 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 946 - 947 - [[package]] 948 - name = "crossterm" 949 - version = "0.28.1" 950 - source = "registry+https://github.com/rust-lang/crates.io-index" 951 - checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" 952 - dependencies = [ 953 - "bitflags 2.6.0", 954 - "crossterm_winapi", 955 - "mio 1.0.2", 956 - "parking_lot 0.12.3", 957 - "rustix", 958 - "signal-hook", 959 - "signal-hook-mio", 960 - "winapi", 961 - ] 962 - 963 - [[package]] 964 - name = "crossterm_winapi" 965 - version = "0.9.1" 966 - source = "registry+https://github.com/rust-lang/crates.io-index" 967 - checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 968 - dependencies = [ 969 - "winapi", 970 - ] 971 - 972 - [[package]] 973 - name = "crypto-common" 974 - version = "0.1.6" 975 - source = "registry+https://github.com/rust-lang/crates.io-index" 976 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 977 - dependencies = [ 978 - "generic-array", 979 - "typenum", 980 - ] 981 - 982 - [[package]] 983 - name = "ctrlc" 984 - version = "3.4.5" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3" 987 - dependencies = [ 988 - "nix 0.29.0", 989 - "windows-sys 0.59.0", 990 - ] 991 - 992 - [[package]] 993 - name = "dary_heap" 994 - version = "0.3.7" 995 - source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" 997 - 998 - [[package]] 999 - name = "deflate64" 1000 - version = "0.1.9" 1001 - source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b" 1003 - 1004 - [[package]] 1005 - name = "deranged" 1006 - version = "0.3.11" 1007 - source = "registry+https://github.com/rust-lang/crates.io-index" 1008 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1009 - dependencies = [ 1010 - "powerfmt", 1011 - ] 1012 - 1013 - [[package]] 1014 - name = "derive_arbitrary" 1015 - version = "1.4.1" 1016 - source = "registry+https://github.com/rust-lang/crates.io-index" 1017 - checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" 1018 - dependencies = [ 1019 - "proc-macro2", 1020 - "quote", 1021 - "syn 2.0.89", 1022 - ] 1023 - 1024 - [[package]] 1025 - name = "diff" 1026 - version = "0.1.13" 1027 - source = "registry+https://github.com/rust-lang/crates.io-index" 1028 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1029 - 1030 - [[package]] 1031 - name = "difflib" 1032 - version = "0.4.0" 1033 - source = "registry+https://github.com/rust-lang/crates.io-index" 1034 - checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1035 - 1036 - [[package]] 1037 - name = "digest" 1038 - version = "0.10.7" 1039 - source = "registry+https://github.com/rust-lang/crates.io-index" 1040 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1041 - dependencies = [ 1042 - "block-buffer", 1043 - "crypto-common", 1044 - "subtle", 1045 - ] 1046 - 1047 - [[package]] 1048 - name = "dirs" 1049 - version = "5.0.1" 1050 - source = "registry+https://github.com/rust-lang/crates.io-index" 1051 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1052 - dependencies = [ 1053 - "dirs-sys", 1054 - ] 1055 - 1056 - [[package]] 1057 - name = "dirs-next" 1058 - version = "2.0.0" 1059 - source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 1061 - dependencies = [ 1062 - "cfg-if", 1063 - "dirs-sys-next", 1064 - ] 1065 - 1066 - [[package]] 1067 - name = "dirs-sys" 1068 - version = "0.4.1" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1071 - dependencies = [ 1072 - "libc", 1073 - "option-ext", 1074 - "redox_users", 1075 - "windows-sys 0.48.0", 1076 - ] 1077 - 1078 - [[package]] 1079 - name = "dirs-sys-next" 1080 - version = "0.1.2" 1081 - source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 1083 - dependencies = [ 1084 - "libc", 1085 - "redox_users", 1086 - "winapi", 1087 - ] 1088 - 1089 - [[package]] 1090 - name = "displaydoc" 1091 - version = "0.2.5" 1092 - source = "registry+https://github.com/rust-lang/crates.io-index" 1093 - checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1094 - dependencies = [ 1095 - "proc-macro2", 1096 - "quote", 1097 - "syn 2.0.89", 1098 - ] 1099 - 1100 - [[package]] 1101 - name = "dissimilar" 1102 - version = "1.0.9" 1103 - source = "registry+https://github.com/rust-lang/crates.io-index" 1104 - checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d" 1105 - 1106 - [[package]] 1107 - name = "doc-comment" 1108 - version = "0.3.3" 1109 - source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1111 - 1112 - [[package]] 1113 - name = "downcast-rs" 1114 - version = "1.2.1" 1115 - source = "registry+https://github.com/rust-lang/crates.io-index" 1116 - checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 1117 - 1118 - [[package]] 1119 - name = "edgedb-cli" 1120 - version = "6.0.0" 1121 - dependencies = [ 1122 - "anes", 1123 - "ansi-escapes", 1124 - "anyhow", 1125 - "arc-swap", 1126 - "assert_cmd", 1127 - "async-listen", 1128 - "backtrace", 1129 - "base32", 1130 - "base64 0.22.1", 1131 - "bigdecimal", 1132 - "bitflags 2.6.0", 1133 - "bitvec", 1134 - "blake2b_simd", 1135 - "blake3", 1136 - "bytes", 1137 - "bzip2", 1138 - "chrono", 1139 - "clap", 1140 - "clap_complete", 1141 - "codespan-reporting", 1142 - "color-print", 1143 - "colorful", 1144 - "combine", 1145 - "concolor", 1146 - "const_format", 1147 - "crossbeam-utils", 1148 - "ctrlc", 1149 - "dirs", 1150 - "dissimilar", 1151 - "downcast-rs", 1152 - "edgedb-cli-derive", 1153 - "edgedb-derive", 1154 - "edgedb-errors", 1155 - "edgedb-protocol", 1156 - "edgedb-tokio", 1157 - "edgeql-parser", 1158 - "env_logger", 1159 - "fd-lock", 1160 - "fn-error-context", 1161 - "fs-err", 1162 - "fs_extra", 1163 - "futures-util", 1164 - "gethostname", 1165 - "hex", 1166 - "humantime", 1167 - "humantime-serde", 1168 - "immutable-chunkmap", 1169 - "indexmap", 1170 - "indicatif", 1171 - "is-terminal", 1172 - "libc", 1173 - "libflate", 1174 - "log", 1175 - "minimad", 1176 - "nix 0.29.0", 1177 - "nom", 1178 - "notify", 1179 - "num-bigint", 1180 - "once_cell", 1181 - "open", 1182 - "openssl", 1183 - "openssl-sys", 1184 - "os-release", 1185 - "pem", 1186 - "predicates", 1187 - "pretty_assertions", 1188 - "prettytable-rs", 1189 - "rand", 1190 - "regex", 1191 - "renamore", 1192 - "reqwest", 1193 - "reqwest-middleware", 1194 - "reqwest-retry", 1195 - "rexpect", 1196 - "ring", 1197 - "rpassword", 1198 - "rustls 0.23.18", 1199 - "rustyline", 1200 - "scram", 1201 - "semver", 1202 - "serde", 1203 - "serde_json", 1204 - "serde_millis", 1205 - "serde_path_to_error", 1206 - "serde_str", 1207 - "sha1", 1208 - "sha2", 1209 - "shell-escape", 1210 - "shutdown_hooks", 1211 - "signal-hook", 1212 - "snafu", 1213 - "strsim", 1214 - "tar", 1215 - "tempfile", 1216 - "term 1.0.0", 1217 - "termcolor", 1218 - "termimad", 1219 - "terminal_size", 1220 - "test-case", 1221 - "test-utils", 1222 - "textwrap", 1223 - "thiserror 1.0.69", 1224 - "tokio", 1225 - "tokio-stream", 1226 - "toml", 1227 - "tracing", 1228 - "unicode-segmentation", 1229 - "unicode-width 0.1.14", 1230 - "url", 1231 - "urlencoding", 1232 - "uuid", 1233 - "wait-timeout", 1234 - "warp", 1235 - "which", 1236 - "whoami", 1237 - "winapi", 1238 - "winreg", 1239 - "wslapi", 1240 - "zip", 1241 - "zstd", 1242 - ] 1243 - 1244 - [[package]] 1245 - name = "edgedb-cli-derive" 1246 - version = "0.4.0" 1247 - dependencies = [ 1248 - "clap", 1249 - "heck", 1250 - "indexmap", 1251 - "proc-macro-error", 1252 - "proc-macro2", 1253 - "quote", 1254 - "syn 2.0.89", 1255 - "termimad", 1256 - "trybuild", 1257 - ] 1258 - 1259 - [[package]] 1260 - name = "edgedb-derive" 1261 - version = "0.5.2" 1262 - source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1263 - dependencies = [ 1264 - "proc-macro2", 1265 - "quote", 1266 - "syn 2.0.89", 1267 - "trybuild", 1268 - ] 1269 - 1270 - [[package]] 1271 - name = "edgedb-errors" 1272 - version = "0.4.2" 1273 - source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1274 - dependencies = [ 1275 - "bytes", 1276 - ] 1277 - 1278 - [[package]] 1279 - name = "edgedb-protocol" 1280 - version = "0.6.1" 1281 - source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1282 - dependencies = [ 1283 - "bigdecimal", 1284 - "bitflags 2.6.0", 1285 - "bytes", 1286 - "chrono", 1287 - "edgedb-errors", 1288 - "num-bigint", 1289 - "num-traits", 1290 - "serde", 1291 - "serde_json", 1292 - "snafu", 1293 - "uuid", 1294 - ] 1295 - 1296 - [[package]] 1297 - name = "edgedb-tokio" 1298 - version = "0.5.1" 1299 - source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1300 - dependencies = [ 1301 - "anyhow", 1302 - "arc-swap", 1303 - "async-trait", 1304 - "base16ct", 1305 - "base64 0.22.1", 1306 - "bytes", 1307 - "crc16", 1308 - "dirs", 1309 - "edgedb-derive", 1310 - "edgedb-errors", 1311 - "edgedb-protocol", 1312 - "log", 1313 - "once_cell", 1314 - "rand", 1315 - "rustls 0.23.18", 1316 - "rustls-native-certs", 1317 - "rustls-pemfile", 1318 - "rustls-webpki", 1319 - "scram-2", 1320 - "serde", 1321 - "serde_json", 1322 - "sha1", 1323 - "socket2", 1324 - "tls-api", 1325 - "tls-api-not-tls", 1326 - "tls-api-rustls", 1327 - "tokio", 1328 - "tokio-stream", 1329 - "url", 1330 - "webpki-roots", 1331 - ] 1332 - 1333 - [[package]] 1334 - name = "edgeql-parser" 1335 - version = "0.1.0" 1336 - source = "git+https://github.com/edgedb/edgedb#2a9ebc33a4e7a77c7b100133d667ff712326952b" 1337 - dependencies = [ 1338 - "append-only-vec", 1339 - "base32", 1340 - "bigdecimal", 1341 - "bumpalo", 1342 - "indexmap", 1343 - "memchr", 1344 - "num-bigint", 1345 - "phf", 1346 - "serde_json", 1347 - "sha2", 1348 - "snafu", 1349 - "thiserror 1.0.69", 1350 - "unicode-width 0.1.14", 1351 - ] 1352 - 1353 - [[package]] 1354 - name = "either" 1355 - version = "1.13.0" 1356 - source = "registry+https://github.com/rust-lang/crates.io-index" 1357 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1358 - 1359 - [[package]] 1360 - name = "encode_unicode" 1361 - version = "0.3.6" 1362 - source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1364 - 1365 - [[package]] 1366 - name = "encode_unicode" 1367 - version = "1.0.0" 1368 - source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 1370 - 1371 - [[package]] 1372 - name = "encoding_rs" 1373 - version = "0.8.35" 1374 - source = "registry+https://github.com/rust-lang/crates.io-index" 1375 - checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1376 - dependencies = [ 1377 - "cfg-if", 1378 - ] 1379 - 1380 - [[package]] 1381 - name = "endian-type" 1382 - version = "0.1.2" 1383 - source = "registry+https://github.com/rust-lang/crates.io-index" 1384 - checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 1385 - 1386 - [[package]] 1387 - name = "env_filter" 1388 - version = "0.1.2" 1389 - source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" 1391 - dependencies = [ 1392 - "log", 1393 - "regex", 1394 - ] 1395 - 1396 - [[package]] 1397 - name = "env_logger" 1398 - version = "0.11.5" 1399 - source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 1401 - dependencies = [ 1402 - "anstream", 1403 - "anstyle", 1404 - "env_filter", 1405 - "humantime", 1406 - "log", 1407 - ] 1408 - 1409 - [[package]] 1410 - name = "equivalent" 1411 - version = "1.0.1" 1412 - source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1414 - 1415 - [[package]] 1416 - name = "errno" 1417 - version = "0.3.9" 1418 - source = "registry+https://github.com/rust-lang/crates.io-index" 1419 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1420 - dependencies = [ 1421 - "libc", 1422 - "windows-sys 0.52.0", 1423 - ] 1424 - 1425 - [[package]] 1426 - name = "error-code" 1427 - version = "3.3.1" 1428 - source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f" 1430 - 1431 - [[package]] 1432 - name = "event-listener" 1433 - version = "2.5.3" 1434 - source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1436 - 1437 - [[package]] 1438 - name = "event-listener" 1439 - version = "5.3.1" 1440 - source = "registry+https://github.com/rust-lang/crates.io-index" 1441 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1442 - dependencies = [ 1443 - "concurrent-queue", 1444 - "parking", 1445 - "pin-project-lite", 1446 - ] 1447 - 1448 - [[package]] 1449 - name = "event-listener-strategy" 1450 - version = "0.5.2" 1451 - source = "registry+https://github.com/rust-lang/crates.io-index" 1452 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1453 - dependencies = [ 1454 - "event-listener 5.3.1", 1455 - "pin-project-lite", 1456 - ] 1457 - 1458 - [[package]] 1459 - name = "fastrand" 1460 - version = "2.2.0" 1461 - source = "registry+https://github.com/rust-lang/crates.io-index" 1462 - checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" 1463 - 1464 - [[package]] 1465 - name = "fd-lock" 1466 - version = "4.0.2" 1467 - source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947" 1469 - dependencies = [ 1470 - "cfg-if", 1471 - "rustix", 1472 - "windows-sys 0.52.0", 1473 - ] 1474 - 1475 - [[package]] 1476 - name = "filetime" 1477 - version = "0.2.25" 1478 - source = "registry+https://github.com/rust-lang/crates.io-index" 1479 - checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" 1480 - dependencies = [ 1481 - "cfg-if", 1482 - "libc", 1483 - "libredox", 1484 - "windows-sys 0.59.0", 1485 - ] 1486 - 1487 - [[package]] 1488 - name = "flate2" 1489 - version = "1.0.35" 1490 - source = "registry+https://github.com/rust-lang/crates.io-index" 1491 - checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" 1492 - dependencies = [ 1493 - "crc32fast", 1494 - "miniz_oxide", 1495 - ] 1496 - 1497 - [[package]] 1498 - name = "float-cmp" 1499 - version = "0.9.0" 1500 - source = "registry+https://github.com/rust-lang/crates.io-index" 1501 - checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 1502 - dependencies = [ 1503 - "num-traits", 1504 - ] 1505 - 1506 - [[package]] 1507 - name = "fn-error-context" 1508 - version = "0.2.1" 1509 - source = "registry+https://github.com/rust-lang/crates.io-index" 1510 - checksum = "2cd66269887534af4b0c3e3337404591daa8dc8b9b2b3db71f9523beb4bafb41" 1511 - dependencies = [ 1512 - "proc-macro2", 1513 - "quote", 1514 - "syn 2.0.89", 1515 - ] 1516 - 1517 - [[package]] 1518 - name = "fnv" 1519 - version = "1.0.7" 1520 - source = "registry+https://github.com/rust-lang/crates.io-index" 1521 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1522 - 1523 - [[package]] 1524 - name = "foreign-types" 1525 - version = "0.3.2" 1526 - source = "registry+https://github.com/rust-lang/crates.io-index" 1527 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1528 - dependencies = [ 1529 - "foreign-types-shared", 1530 - ] 1531 - 1532 - [[package]] 1533 - name = "foreign-types-shared" 1534 - version = "0.1.1" 1535 - source = "registry+https://github.com/rust-lang/crates.io-index" 1536 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1537 - 1538 - [[package]] 1539 - name = "form_urlencoded" 1540 - version = "1.2.1" 1541 - source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1543 - dependencies = [ 1544 - "percent-encoding", 1545 - ] 1546 - 1547 - [[package]] 1548 - name = "fs-err" 1549 - version = "2.11.0" 1550 - source = "registry+https://github.com/rust-lang/crates.io-index" 1551 - checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 1552 - dependencies = [ 1553 - "autocfg", 1554 - ] 1555 - 1556 - [[package]] 1557 - name = "fs_extra" 1558 - version = "1.3.0" 1559 - source = "registry+https://github.com/rust-lang/crates.io-index" 1560 - checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 1561 - 1562 - [[package]] 1563 - name = "fsevent-sys" 1564 - version = "4.1.0" 1565 - source = "registry+https://github.com/rust-lang/crates.io-index" 1566 - checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1567 - dependencies = [ 1568 - "libc", 1569 - ] 1570 - 1571 - [[package]] 1572 - name = "funty" 1573 - version = "2.0.0" 1574 - source = "registry+https://github.com/rust-lang/crates.io-index" 1575 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1576 - 1577 - [[package]] 1578 - name = "futures" 1579 - version = "0.3.31" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1582 - dependencies = [ 1583 - "futures-channel", 1584 - "futures-core", 1585 - "futures-executor", 1586 - "futures-io", 1587 - "futures-sink", 1588 - "futures-task", 1589 - "futures-util", 1590 - ] 1591 - 1592 - [[package]] 1593 - name = "futures-channel" 1594 - version = "0.3.31" 1595 - source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1597 - dependencies = [ 1598 - "futures-core", 1599 - "futures-sink", 1600 - ] 1601 - 1602 - [[package]] 1603 - name = "futures-core" 1604 - version = "0.3.31" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1607 - 1608 - [[package]] 1609 - name = "futures-executor" 1610 - version = "0.3.31" 1611 - source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1613 - dependencies = [ 1614 - "futures-core", 1615 - "futures-task", 1616 - "futures-util", 1617 - ] 1618 - 1619 - [[package]] 1620 - name = "futures-io" 1621 - version = "0.3.31" 1622 - source = "registry+https://github.com/rust-lang/crates.io-index" 1623 - checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1624 - 1625 - [[package]] 1626 - name = "futures-lite" 1627 - version = "2.5.0" 1628 - source = "registry+https://github.com/rust-lang/crates.io-index" 1629 - checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1" 1630 - dependencies = [ 1631 - "fastrand", 1632 - "futures-core", 1633 - "futures-io", 1634 - "parking", 1635 - "pin-project-lite", 1636 - ] 1637 - 1638 - [[package]] 1639 - name = "futures-macro" 1640 - version = "0.3.31" 1641 - source = "registry+https://github.com/rust-lang/crates.io-index" 1642 - checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1643 - dependencies = [ 1644 - "proc-macro2", 1645 - "quote", 1646 - "syn 2.0.89", 1647 - ] 1648 - 1649 - [[package]] 1650 - name = "futures-sink" 1651 - version = "0.3.31" 1652 - source = "registry+https://github.com/rust-lang/crates.io-index" 1653 - checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1654 - 1655 - [[package]] 1656 - name = "futures-task" 1657 - version = "0.3.31" 1658 - source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1660 - 1661 - [[package]] 1662 - name = "futures-util" 1663 - version = "0.3.31" 1664 - source = "registry+https://github.com/rust-lang/crates.io-index" 1665 - checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1666 - dependencies = [ 1667 - "futures-channel", 1668 - "futures-core", 1669 - "futures-io", 1670 - "futures-macro", 1671 - "futures-sink", 1672 - "futures-task", 1673 - "memchr", 1674 - "pin-project-lite", 1675 - "pin-utils", 1676 - "slab", 1677 - ] 1678 - 1679 - [[package]] 1680 - name = "generic-array" 1681 - version = "0.14.7" 1682 - source = "registry+https://github.com/rust-lang/crates.io-index" 1683 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1684 - dependencies = [ 1685 - "typenum", 1686 - "version_check", 1687 - ] 1688 - 1689 - [[package]] 1690 - name = "gethostname" 1691 - version = "0.5.0" 1692 - source = "registry+https://github.com/rust-lang/crates.io-index" 1693 - checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" 1694 - dependencies = [ 1695 - "rustix", 1696 - "windows-targets 0.52.6", 1697 - ] 1698 - 1699 - [[package]] 1700 - name = "getrandom" 1701 - version = "0.2.15" 1702 - source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1704 - dependencies = [ 1705 - "cfg-if", 1706 - "js-sys", 1707 - "libc", 1708 - "wasi", 1709 - "wasm-bindgen", 1710 - ] 1711 - 1712 - [[package]] 1713 - name = "gimli" 1714 - version = "0.31.1" 1715 - source = "registry+https://github.com/rust-lang/crates.io-index" 1716 - checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1717 - 1718 - [[package]] 1719 - name = "glob" 1720 - version = "0.3.1" 1721 - source = "registry+https://github.com/rust-lang/crates.io-index" 1722 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1723 - 1724 - [[package]] 1725 - name = "gloo-timers" 1726 - version = "0.3.0" 1727 - source = "registry+https://github.com/rust-lang/crates.io-index" 1728 - checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 1729 - dependencies = [ 1730 - "futures-channel", 1731 - "futures-core", 1732 - "js-sys", 1733 - "wasm-bindgen", 1734 - ] 1735 - 1736 - [[package]] 1737 - name = "h2" 1738 - version = "0.3.26" 1739 - source = "registry+https://github.com/rust-lang/crates.io-index" 1740 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 1741 - dependencies = [ 1742 - "bytes", 1743 - "fnv", 1744 - "futures-core", 1745 - "futures-sink", 1746 - "futures-util", 1747 - "http 0.2.12", 1748 - "indexmap", 1749 - "slab", 1750 - "tokio", 1751 - "tokio-util", 1752 - "tracing", 1753 - ] 1754 - 1755 - [[package]] 1756 - name = "h2" 1757 - version = "0.4.7" 1758 - source = "registry+https://github.com/rust-lang/crates.io-index" 1759 - checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" 1760 - dependencies = [ 1761 - "atomic-waker", 1762 - "bytes", 1763 - "fnv", 1764 - "futures-core", 1765 - "futures-sink", 1766 - "http 1.1.0", 1767 - "indexmap", 1768 - "slab", 1769 - "tokio", 1770 - "tokio-util", 1771 - "tracing", 1772 - ] 1773 - 1774 - [[package]] 1775 - name = "hashbrown" 1776 - version = "0.14.5" 1777 - source = "registry+https://github.com/rust-lang/crates.io-index" 1778 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1779 - dependencies = [ 1780 - "ahash", 1781 - "allocator-api2", 1782 - ] 1783 - 1784 - [[package]] 1785 - name = "hashbrown" 1786 - version = "0.15.2" 1787 - source = "registry+https://github.com/rust-lang/crates.io-index" 1788 - checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 1789 - 1790 - [[package]] 1791 - name = "headers" 1792 - version = "0.3.9" 1793 - source = "registry+https://github.com/rust-lang/crates.io-index" 1794 - checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" 1795 - dependencies = [ 1796 - "base64 0.21.7", 1797 - "bytes", 1798 - "headers-core", 1799 - "http 0.2.12", 1800 - "httpdate", 1801 - "mime", 1802 - "sha1", 1803 - ] 1804 - 1805 - [[package]] 1806 - name = "headers-core" 1807 - version = "0.2.0" 1808 - source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1810 - dependencies = [ 1811 - "http 0.2.12", 1812 - ] 1813 - 1814 - [[package]] 1815 - name = "heck" 1816 - version = "0.5.0" 1817 - source = "registry+https://github.com/rust-lang/crates.io-index" 1818 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1819 - 1820 - [[package]] 1821 - name = "hermit-abi" 1822 - version = "0.3.9" 1823 - source = "registry+https://github.com/rust-lang/crates.io-index" 1824 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1825 - 1826 - [[package]] 1827 - name = "hermit-abi" 1828 - version = "0.4.0" 1829 - source = "registry+https://github.com/rust-lang/crates.io-index" 1830 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 1831 - 1832 - [[package]] 1833 - name = "hex" 1834 - version = "0.4.3" 1835 - source = "registry+https://github.com/rust-lang/crates.io-index" 1836 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1837 - dependencies = [ 1838 - "serde", 1839 - ] 1840 - 1841 - [[package]] 1842 - name = "hmac" 1843 - version = "0.12.1" 1844 - source = "registry+https://github.com/rust-lang/crates.io-index" 1845 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1846 - dependencies = [ 1847 - "digest", 1848 - ] 1849 - 1850 - [[package]] 1851 - name = "home" 1852 - version = "0.5.9" 1853 - source = "registry+https://github.com/rust-lang/crates.io-index" 1854 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1855 - dependencies = [ 1856 - "windows-sys 0.52.0", 1857 - ] 1858 - 1859 - [[package]] 1860 - name = "http" 1861 - version = "0.2.12" 1862 - source = "registry+https://github.com/rust-lang/crates.io-index" 1863 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1864 - dependencies = [ 1865 - "bytes", 1866 - "fnv", 1867 - "itoa", 1868 - ] 1869 - 1870 - [[package]] 1871 - name = "http" 1872 - version = "1.1.0" 1873 - source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 1875 - dependencies = [ 1876 - "bytes", 1877 - "fnv", 1878 - "itoa", 1879 - ] 1880 - 1881 - [[package]] 1882 - name = "http-body" 1883 - version = "0.4.6" 1884 - source = "registry+https://github.com/rust-lang/crates.io-index" 1885 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1886 - dependencies = [ 1887 - "bytes", 1888 - "http 0.2.12", 1889 - "pin-project-lite", 1890 - ] 1891 - 1892 - [[package]] 1893 - name = "http-body" 1894 - version = "1.0.1" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1897 - dependencies = [ 1898 - "bytes", 1899 - "http 1.1.0", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "http-body-util" 1904 - version = "0.1.2" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 1907 - dependencies = [ 1908 - "bytes", 1909 - "futures-util", 1910 - "http 1.1.0", 1911 - "http-body 1.0.1", 1912 - "pin-project-lite", 1913 - ] 1914 - 1915 - [[package]] 1916 - name = "httparse" 1917 - version = "1.9.5" 1918 - source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 1920 - 1921 - [[package]] 1922 - name = "httpdate" 1923 - version = "1.0.3" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1926 - 1927 - [[package]] 1928 - name = "humantime" 1929 - version = "2.1.0" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1932 - 1933 - [[package]] 1934 - name = "humantime-serde" 1935 - version = "1.1.1" 1936 - source = "registry+https://github.com/rust-lang/crates.io-index" 1937 - checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" 1938 - dependencies = [ 1939 - "humantime", 1940 - "serde", 1941 - ] 1942 - 1943 - [[package]] 1944 - name = "hyper" 1945 - version = "0.14.31" 1946 - source = "registry+https://github.com/rust-lang/crates.io-index" 1947 - checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85" 1948 - dependencies = [ 1949 - "bytes", 1950 - "futures-channel", 1951 - "futures-core", 1952 - "futures-util", 1953 - "h2 0.3.26", 1954 - "http 0.2.12", 1955 - "http-body 0.4.6", 1956 - "httparse", 1957 - "httpdate", 1958 - "itoa", 1959 - "pin-project-lite", 1960 - "socket2", 1961 - "tokio", 1962 - "tower-service", 1963 - "tracing", 1964 - "want", 1965 - ] 1966 - 1967 - [[package]] 1968 - name = "hyper" 1969 - version = "1.5.1" 1970 - source = "registry+https://github.com/rust-lang/crates.io-index" 1971 - checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" 1972 - dependencies = [ 1973 - "bytes", 1974 - "futures-channel", 1975 - "futures-util", 1976 - "h2 0.4.7", 1977 - "http 1.1.0", 1978 - "http-body 1.0.1", 1979 - "httparse", 1980 - "itoa", 1981 - "pin-project-lite", 1982 - "smallvec", 1983 - "tokio", 1984 - "want", 1985 - ] 1986 - 1987 - [[package]] 1988 - name = "hyper-rustls" 1989 - version = "0.27.3" 1990 - source = "registry+https://github.com/rust-lang/crates.io-index" 1991 - checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" 1992 - dependencies = [ 1993 - "futures-util", 1994 - "http 1.1.0", 1995 - "hyper 1.5.1", 1996 - "hyper-util", 1997 - "rustls 0.23.18", 1998 - "rustls-native-certs", 1999 - "rustls-pki-types", 2000 - "tokio", 2001 - "tokio-rustls 0.26.0", 2002 - "tower-service", 2003 - ] 2004 - 2005 - [[package]] 2006 - name = "hyper-util" 2007 - version = "0.1.10" 2008 - source = "registry+https://github.com/rust-lang/crates.io-index" 2009 - checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" 2010 - dependencies = [ 2011 - "bytes", 2012 - "futures-channel", 2013 - "futures-util", 2014 - "http 1.1.0", 2015 - "http-body 1.0.1", 2016 - "hyper 1.5.1", 2017 - "pin-project-lite", 2018 - "socket2", 2019 - "tokio", 2020 - "tower-service", 2021 - "tracing", 2022 - ] 2023 - 2024 - [[package]] 2025 - name = "icu_collections" 2026 - version = "1.5.0" 2027 - source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 2029 - dependencies = [ 2030 - "displaydoc", 2031 - "yoke", 2032 - "zerofrom", 2033 - "zerovec", 2034 - ] 2035 - 2036 - [[package]] 2037 - name = "icu_locid" 2038 - version = "1.5.0" 2039 - source = "registry+https://github.com/rust-lang/crates.io-index" 2040 - checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 2041 - dependencies = [ 2042 - "displaydoc", 2043 - "litemap", 2044 - "tinystr", 2045 - "writeable", 2046 - "zerovec", 2047 - ] 2048 - 2049 - [[package]] 2050 - name = "icu_locid_transform" 2051 - version = "1.5.0" 2052 - source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 2054 - dependencies = [ 2055 - "displaydoc", 2056 - "icu_locid", 2057 - "icu_locid_transform_data", 2058 - "icu_provider", 2059 - "tinystr", 2060 - "zerovec", 2061 - ] 2062 - 2063 - [[package]] 2064 - name = "icu_locid_transform_data" 2065 - version = "1.5.0" 2066 - source = "registry+https://github.com/rust-lang/crates.io-index" 2067 - checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 2068 - 2069 - [[package]] 2070 - name = "icu_normalizer" 2071 - version = "1.5.0" 2072 - source = "registry+https://github.com/rust-lang/crates.io-index" 2073 - checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 2074 - dependencies = [ 2075 - "displaydoc", 2076 - "icu_collections", 2077 - "icu_normalizer_data", 2078 - "icu_properties", 2079 - "icu_provider", 2080 - "smallvec", 2081 - "utf16_iter", 2082 - "utf8_iter", 2083 - "write16", 2084 - "zerovec", 2085 - ] 2086 - 2087 - [[package]] 2088 - name = "icu_normalizer_data" 2089 - version = "1.5.0" 2090 - source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 2092 - 2093 - [[package]] 2094 - name = "icu_properties" 2095 - version = "1.5.1" 2096 - source = "registry+https://github.com/rust-lang/crates.io-index" 2097 - checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 2098 - dependencies = [ 2099 - "displaydoc", 2100 - "icu_collections", 2101 - "icu_locid_transform", 2102 - "icu_properties_data", 2103 - "icu_provider", 2104 - "tinystr", 2105 - "zerovec", 2106 - ] 2107 - 2108 - [[package]] 2109 - name = "icu_properties_data" 2110 - version = "1.5.0" 2111 - source = "registry+https://github.com/rust-lang/crates.io-index" 2112 - checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 2113 - 2114 - [[package]] 2115 - name = "icu_provider" 2116 - version = "1.5.0" 2117 - source = "registry+https://github.com/rust-lang/crates.io-index" 2118 - checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 2119 - dependencies = [ 2120 - "displaydoc", 2121 - "icu_locid", 2122 - "icu_provider_macros", 2123 - "stable_deref_trait", 2124 - "tinystr", 2125 - "writeable", 2126 - "yoke", 2127 - "zerofrom", 2128 - "zerovec", 2129 - ] 2130 - 2131 - [[package]] 2132 - name = "icu_provider_macros" 2133 - version = "1.5.0" 2134 - source = "registry+https://github.com/rust-lang/crates.io-index" 2135 - checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 2136 - dependencies = [ 2137 - "proc-macro2", 2138 - "quote", 2139 - "syn 2.0.89", 2140 - ] 2141 - 2142 - [[package]] 2143 - name = "idna" 2144 - version = "1.0.3" 2145 - source = "registry+https://github.com/rust-lang/crates.io-index" 2146 - checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 2147 - dependencies = [ 2148 - "idna_adapter", 2149 - "smallvec", 2150 - "utf8_iter", 2151 - ] 2152 - 2153 - [[package]] 2154 - name = "idna_adapter" 2155 - version = "1.2.0" 2156 - source = "registry+https://github.com/rust-lang/crates.io-index" 2157 - checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 2158 - dependencies = [ 2159 - "icu_normalizer", 2160 - "icu_properties", 2161 - ] 2162 - 2163 - [[package]] 2164 - name = "immutable-chunkmap" 2165 - version = "2.0.6" 2166 - source = "registry+https://github.com/rust-lang/crates.io-index" 2167 - checksum = "12f97096f508d54f8f8ab8957862eee2ccd628847b6217af1a335e1c44dee578" 2168 - dependencies = [ 2169 - "arrayvec", 2170 - ] 2171 - 2172 - [[package]] 2173 - name = "indexmap" 2174 - version = "2.6.0" 2175 - source = "registry+https://github.com/rust-lang/crates.io-index" 2176 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 2177 - dependencies = [ 2178 - "equivalent", 2179 - "hashbrown 0.15.2", 2180 - "serde", 2181 - ] 2182 - 2183 - [[package]] 2184 - name = "indicatif" 2185 - version = "0.17.9" 2186 - source = "registry+https://github.com/rust-lang/crates.io-index" 2187 - checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" 2188 - dependencies = [ 2189 - "console", 2190 - "number_prefix", 2191 - "portable-atomic", 2192 - "unicode-width 0.2.0", 2193 - "web-time", 2194 - ] 2195 - 2196 - [[package]] 2197 - name = "inotify" 2198 - version = "0.9.6" 2199 - source = "registry+https://github.com/rust-lang/crates.io-index" 2200 - checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2201 - dependencies = [ 2202 - "bitflags 1.3.2", 2203 - "inotify-sys", 2204 - "libc", 2205 - ] 2206 - 2207 - [[package]] 2208 - name = "inotify-sys" 2209 - version = "0.1.5" 2210 - source = "registry+https://github.com/rust-lang/crates.io-index" 2211 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 2212 - dependencies = [ 2213 - "libc", 2214 - ] 2215 - 2216 - [[package]] 2217 - name = "inout" 2218 - version = "0.1.3" 2219 - source = "registry+https://github.com/rust-lang/crates.io-index" 2220 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2221 - dependencies = [ 2222 - "generic-array", 2223 - ] 2224 - 2225 - [[package]] 2226 - name = "instant" 2227 - version = "0.1.13" 2228 - source = "registry+https://github.com/rust-lang/crates.io-index" 2229 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 2230 - dependencies = [ 2231 - "cfg-if", 2232 - "js-sys", 2233 - "wasm-bindgen", 2234 - "web-sys", 2235 - ] 2236 - 2237 - [[package]] 2238 - name = "ipnet" 2239 - version = "2.10.1" 2240 - source = "registry+https://github.com/rust-lang/crates.io-index" 2241 - checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" 2242 - 2243 - [[package]] 2244 - name = "is-docker" 2245 - version = "0.2.0" 2246 - source = "registry+https://github.com/rust-lang/crates.io-index" 2247 - checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 2248 - dependencies = [ 2249 - "once_cell", 2250 - ] 2251 - 2252 - [[package]] 2253 - name = "is-terminal" 2254 - version = "0.4.13" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" 2257 - dependencies = [ 2258 - "hermit-abi 0.4.0", 2259 - "libc", 2260 - "windows-sys 0.52.0", 2261 - ] 2262 - 2263 - [[package]] 2264 - name = "is-wsl" 2265 - version = "0.4.0" 2266 - source = "registry+https://github.com/rust-lang/crates.io-index" 2267 - checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 2268 - dependencies = [ 2269 - "is-docker", 2270 - "once_cell", 2271 - ] 2272 - 2273 - [[package]] 2274 - name = "is_terminal_polyfill" 2275 - version = "1.70.1" 2276 - source = "registry+https://github.com/rust-lang/crates.io-index" 2277 - checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 2278 - 2279 - [[package]] 2280 - name = "itoa" 2281 - version = "1.0.14" 2282 - source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" 2284 - 2285 - [[package]] 2286 - name = "jobserver" 2287 - version = "0.1.32" 2288 - source = "registry+https://github.com/rust-lang/crates.io-index" 2289 - checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 2290 - dependencies = [ 2291 - "libc", 2292 - ] 2293 - 2294 - [[package]] 2295 - name = "js-sys" 2296 - version = "0.3.72" 2297 - source = "registry+https://github.com/rust-lang/crates.io-index" 2298 - checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" 2299 - dependencies = [ 2300 - "wasm-bindgen", 2301 - ] 2302 - 2303 - [[package]] 2304 - name = "kqueue" 2305 - version = "1.0.8" 2306 - source = "registry+https://github.com/rust-lang/crates.io-index" 2307 - checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 2308 - dependencies = [ 2309 - "kqueue-sys", 2310 - "libc", 2311 - ] 2312 - 2313 - [[package]] 2314 - name = "kqueue-sys" 2315 - version = "1.0.4" 2316 - source = "registry+https://github.com/rust-lang/crates.io-index" 2317 - checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 2318 - dependencies = [ 2319 - "bitflags 1.3.2", 2320 - "libc", 2321 - ] 2322 - 2323 - [[package]] 2324 - name = "kv-log-macro" 2325 - version = "1.0.7" 2326 - source = "registry+https://github.com/rust-lang/crates.io-index" 2327 - checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 2328 - dependencies = [ 2329 - "log", 2330 - ] 2331 - 2332 - [[package]] 2333 - name = "lazy-regex" 2334 - version = "3.3.0" 2335 - source = "registry+https://github.com/rust-lang/crates.io-index" 2336 - checksum = "8d8e41c97e6bc7ecb552016274b99fbb5d035e8de288c582d9b933af6677bfda" 2337 - dependencies = [ 2338 - "lazy-regex-proc_macros", 2339 - "once_cell", 2340 - "regex", 2341 - ] 2342 - 2343 - [[package]] 2344 - name = "lazy-regex-proc_macros" 2345 - version = "3.3.0" 2346 - source = "registry+https://github.com/rust-lang/crates.io-index" 2347 - checksum = "76e1d8b05d672c53cb9c7b920bbba8783845ae4f0b076e02a3db1d02c81b4163" 2348 - dependencies = [ 2349 - "proc-macro2", 2350 - "quote", 2351 - "regex", 2352 - "syn 2.0.89", 2353 - ] 2354 - 2355 - [[package]] 2356 - name = "lazy_static" 2357 - version = "1.5.0" 2358 - source = "registry+https://github.com/rust-lang/crates.io-index" 2359 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2360 - 2361 - [[package]] 2362 - name = "libc" 2363 - version = "0.2.165" 2364 - source = "registry+https://github.com/rust-lang/crates.io-index" 2365 - checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e" 2366 - 2367 - [[package]] 2368 - name = "libflate" 2369 - version = "2.1.0" 2370 - source = "registry+https://github.com/rust-lang/crates.io-index" 2371 - checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e" 2372 - dependencies = [ 2373 - "adler32", 2374 - "core2", 2375 - "crc32fast", 2376 - "dary_heap", 2377 - "libflate_lz77", 2378 - ] 2379 - 2380 - [[package]] 2381 - name = "libflate_lz77" 2382 - version = "2.1.0" 2383 - source = "registry+https://github.com/rust-lang/crates.io-index" 2384 - checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d" 2385 - dependencies = [ 2386 - "core2", 2387 - "hashbrown 0.14.5", 2388 - "rle-decode-fast", 2389 - ] 2390 - 2391 - [[package]] 2392 - name = "libm" 2393 - version = "0.2.11" 2394 - source = "registry+https://github.com/rust-lang/crates.io-index" 2395 - checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" 2396 - 2397 - [[package]] 2398 - name = "libredox" 2399 - version = "0.1.3" 2400 - source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2402 - dependencies = [ 2403 - "bitflags 2.6.0", 2404 - "libc", 2405 - "redox_syscall 0.5.7", 2406 - ] 2407 - 2408 - [[package]] 2409 - name = "linux-raw-sys" 2410 - version = "0.4.14" 2411 - source = "registry+https://github.com/rust-lang/crates.io-index" 2412 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2413 - 2414 - [[package]] 2415 - name = "litemap" 2416 - version = "0.7.4" 2417 - source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" 2419 - 2420 - [[package]] 2421 - name = "lock_api" 2422 - version = "0.4.12" 2423 - source = "registry+https://github.com/rust-lang/crates.io-index" 2424 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2425 - dependencies = [ 2426 - "autocfg", 2427 - "scopeguard", 2428 - ] 2429 - 2430 - [[package]] 2431 - name = "lockfree-object-pool" 2432 - version = "0.1.6" 2433 - source = "registry+https://github.com/rust-lang/crates.io-index" 2434 - checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 2435 - 2436 - [[package]] 2437 - name = "log" 2438 - version = "0.4.22" 2439 - source = "registry+https://github.com/rust-lang/crates.io-index" 2440 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 2441 - dependencies = [ 2442 - "value-bag", 2443 - ] 2444 - 2445 - [[package]] 2446 - name = "lzma-rs" 2447 - version = "0.3.0" 2448 - source = "registry+https://github.com/rust-lang/crates.io-index" 2449 - checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e" 2450 - dependencies = [ 2451 - "byteorder", 2452 - "crc", 2453 - ] 2454 - 2455 - [[package]] 2456 - name = "memchr" 2457 - version = "2.7.4" 2458 - source = "registry+https://github.com/rust-lang/crates.io-index" 2459 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 2460 - 2461 - [[package]] 2462 - name = "memoffset" 2463 - version = "0.7.1" 2464 - source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2466 - dependencies = [ 2467 - "autocfg", 2468 - ] 2469 - 2470 - [[package]] 2471 - name = "mime" 2472 - version = "0.3.17" 2473 - source = "registry+https://github.com/rust-lang/crates.io-index" 2474 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2475 - 2476 - [[package]] 2477 - name = "mime_guess" 2478 - version = "2.0.5" 2479 - source = "registry+https://github.com/rust-lang/crates.io-index" 2480 - checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 2481 - dependencies = [ 2482 - "mime", 2483 - "unicase", 2484 - ] 2485 - 2486 - [[package]] 2487 - name = "minidl" 2488 - version = "0.1.6" 2489 - source = "registry+https://github.com/rust-lang/crates.io-index" 2490 - checksum = "fc0a023a2715164b8a15b7f91a4baa3decc92158a539b96bf0bdb61f18c69366" 2491 - 2492 - [[package]] 2493 - name = "minimad" 2494 - version = "0.13.1" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "a9c5d708226d186590a7b6d4a9780e2bdda5f689e0d58cd17012a298efd745d2" 2497 - dependencies = [ 2498 - "once_cell", 2499 - ] 2500 - 2501 - [[package]] 2502 - name = "minimal-lexical" 2503 - version = "0.2.1" 2504 - source = "registry+https://github.com/rust-lang/crates.io-index" 2505 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2506 - 2507 - [[package]] 2508 - name = "miniz_oxide" 2509 - version = "0.8.0" 2510 - source = "registry+https://github.com/rust-lang/crates.io-index" 2511 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 2512 - dependencies = [ 2513 - "adler2", 2514 - ] 2515 - 2516 - [[package]] 2517 - name = "mio" 2518 - version = "0.8.11" 2519 - source = "registry+https://github.com/rust-lang/crates.io-index" 2520 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2521 - dependencies = [ 2522 - "libc", 2523 - "log", 2524 - "wasi", 2525 - "windows-sys 0.48.0", 2526 - ] 2527 - 2528 - [[package]] 2529 - name = "mio" 2530 - version = "1.0.2" 2531 - source = "registry+https://github.com/rust-lang/crates.io-index" 2532 - checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 2533 - dependencies = [ 2534 - "hermit-abi 0.3.9", 2535 - "libc", 2536 - "log", 2537 - "wasi", 2538 - "windows-sys 0.52.0", 2539 - ] 2540 - 2541 - [[package]] 2542 - name = "nibble_vec" 2543 - version = "0.1.0" 2544 - source = "registry+https://github.com/rust-lang/crates.io-index" 2545 - checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 2546 - dependencies = [ 2547 - "smallvec", 2548 - ] 2549 - 2550 - [[package]] 2551 - name = "nix" 2552 - version = "0.26.4" 2553 - source = "registry+https://github.com/rust-lang/crates.io-index" 2554 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 2555 - dependencies = [ 2556 - "bitflags 1.3.2", 2557 - "cfg-if", 2558 - "libc", 2559 - "memoffset", 2560 - "pin-utils", 2561 - ] 2562 - 2563 - [[package]] 2564 - name = "nix" 2565 - version = "0.27.1" 2566 - source = "registry+https://github.com/rust-lang/crates.io-index" 2567 - checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2568 - dependencies = [ 2569 - "bitflags 2.6.0", 2570 - "cfg-if", 2571 - "libc", 2572 - ] 2573 - 2574 - [[package]] 2575 - name = "nix" 2576 - version = "0.28.0" 2577 - source = "registry+https://github.com/rust-lang/crates.io-index" 2578 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 2579 - dependencies = [ 2580 - "bitflags 2.6.0", 2581 - "cfg-if", 2582 - "cfg_aliases 0.1.1", 2583 - "libc", 2584 - ] 2585 - 2586 - [[package]] 2587 - name = "nix" 2588 - version = "0.29.0" 2589 - source = "registry+https://github.com/rust-lang/crates.io-index" 2590 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 2591 - dependencies = [ 2592 - "bitflags 2.6.0", 2593 - "cfg-if", 2594 - "cfg_aliases 0.2.1", 2595 - "libc", 2596 - ] 2597 - 2598 - [[package]] 2599 - name = "nom" 2600 - version = "7.1.3" 2601 - source = "registry+https://github.com/rust-lang/crates.io-index" 2602 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2603 - dependencies = [ 2604 - "memchr", 2605 - "minimal-lexical", 2606 - ] 2607 - 2608 - [[package]] 2609 - name = "normalize-line-endings" 2610 - version = "0.3.0" 2611 - source = "registry+https://github.com/rust-lang/crates.io-index" 2612 - checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 2613 - 2614 - [[package]] 2615 - name = "notify" 2616 - version = "6.1.1" 2617 - source = "registry+https://github.com/rust-lang/crates.io-index" 2618 - checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 2619 - dependencies = [ 2620 - "bitflags 2.6.0", 2621 - "crossbeam-channel", 2622 - "filetime", 2623 - "fsevent-sys", 2624 - "inotify", 2625 - "kqueue", 2626 - "libc", 2627 - "log", 2628 - "mio 0.8.11", 2629 - "walkdir", 2630 - "windows-sys 0.48.0", 2631 - ] 2632 - 2633 - [[package]] 2634 - name = "num-bigint" 2635 - version = "0.4.6" 2636 - source = "registry+https://github.com/rust-lang/crates.io-index" 2637 - checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 2638 - dependencies = [ 2639 - "num-integer", 2640 - "num-traits", 2641 - "serde", 2642 - ] 2643 - 2644 - [[package]] 2645 - name = "num-conv" 2646 - version = "0.1.0" 2647 - source = "registry+https://github.com/rust-lang/crates.io-index" 2648 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2649 - 2650 - [[package]] 2651 - name = "num-integer" 2652 - version = "0.1.46" 2653 - source = "registry+https://github.com/rust-lang/crates.io-index" 2654 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2655 - dependencies = [ 2656 - "num-traits", 2657 - ] 2658 - 2659 - [[package]] 2660 - name = "num-traits" 2661 - version = "0.2.19" 2662 - source = "registry+https://github.com/rust-lang/crates.io-index" 2663 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2664 - dependencies = [ 2665 - "autocfg", 2666 - ] 2667 - 2668 - [[package]] 2669 - name = "number_prefix" 2670 - version = "0.4.0" 2671 - source = "registry+https://github.com/rust-lang/crates.io-index" 2672 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 2673 - 2674 - [[package]] 2675 - name = "object" 2676 - version = "0.36.5" 2677 - source = "registry+https://github.com/rust-lang/crates.io-index" 2678 - checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 2679 - dependencies = [ 2680 - "memchr", 2681 - ] 2682 - 2683 - [[package]] 2684 - name = "once_cell" 2685 - version = "1.20.2" 2686 - source = "registry+https://github.com/rust-lang/crates.io-index" 2687 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 2688 - 2689 - [[package]] 2690 - name = "open" 2691 - version = "5.3.1" 2692 - source = "registry+https://github.com/rust-lang/crates.io-index" 2693 - checksum = "3ecd52f0b8d15c40ce4820aa251ed5de032e5d91fab27f7db2f40d42a8bdf69c" 2694 - dependencies = [ 2695 - "is-wsl", 2696 - "libc", 2697 - "pathdiff", 2698 - ] 2699 - 2700 - [[package]] 2701 - name = "openssl" 2702 - version = "0.10.68" 2703 - source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 2705 - dependencies = [ 2706 - "bitflags 2.6.0", 2707 - "cfg-if", 2708 - "foreign-types", 2709 - "libc", 2710 - "once_cell", 2711 - "openssl-macros", 2712 - "openssl-sys", 2713 - ] 2714 - 2715 - [[package]] 2716 - name = "openssl-macros" 2717 - version = "0.1.1" 2718 - source = "registry+https://github.com/rust-lang/crates.io-index" 2719 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2720 - dependencies = [ 2721 - "proc-macro2", 2722 - "quote", 2723 - "syn 2.0.89", 2724 - ] 2725 - 2726 - [[package]] 2727 - name = "openssl-probe" 2728 - version = "0.1.5" 2729 - source = "registry+https://github.com/rust-lang/crates.io-index" 2730 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2731 - 2732 - [[package]] 2733 - name = "openssl-src" 2734 - version = "300.4.1+3.4.0" 2735 - source = "registry+https://github.com/rust-lang/crates.io-index" 2736 - checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c" 2737 - dependencies = [ 2738 - "cc", 2739 - ] 2740 - 2741 - [[package]] 2742 - name = "openssl-sys" 2743 - version = "0.9.104" 2744 - source = "registry+https://github.com/rust-lang/crates.io-index" 2745 - checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" 2746 - dependencies = [ 2747 - "cc", 2748 - "libc", 2749 - "openssl-src", 2750 - "pkg-config", 2751 - "vcpkg", 2752 - ] 2753 - 2754 - [[package]] 2755 - name = "option-ext" 2756 - version = "0.2.0" 2757 - source = "registry+https://github.com/rust-lang/crates.io-index" 2758 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2759 - 2760 - [[package]] 2761 - name = "os-release" 2762 - version = "0.1.0" 2763 - source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "82f29ae2f71b53ec19cc23385f8e4f3d90975195aa3d09171ba3bef7159bec27" 2765 - dependencies = [ 2766 - "lazy_static", 2767 - ] 2768 - 2769 - [[package]] 2770 - name = "parking" 2771 - version = "2.2.1" 2772 - source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2774 - 2775 - [[package]] 2776 - name = "parking_lot" 2777 - version = "0.11.2" 2778 - source = "registry+https://github.com/rust-lang/crates.io-index" 2779 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 2780 - dependencies = [ 2781 - "instant", 2782 - "lock_api", 2783 - "parking_lot_core 0.8.6", 2784 - ] 2785 - 2786 - [[package]] 2787 - name = "parking_lot" 2788 - version = "0.12.3" 2789 - source = "registry+https://github.com/rust-lang/crates.io-index" 2790 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2791 - dependencies = [ 2792 - "lock_api", 2793 - "parking_lot_core 0.9.10", 2794 - ] 2795 - 2796 - [[package]] 2797 - name = "parking_lot_core" 2798 - version = "0.8.6" 2799 - source = "registry+https://github.com/rust-lang/crates.io-index" 2800 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 2801 - dependencies = [ 2802 - "cfg-if", 2803 - "instant", 2804 - "libc", 2805 - "redox_syscall 0.2.16", 2806 - "smallvec", 2807 - "winapi", 2808 - ] 2809 - 2810 - [[package]] 2811 - name = "parking_lot_core" 2812 - version = "0.9.10" 2813 - source = "registry+https://github.com/rust-lang/crates.io-index" 2814 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2815 - dependencies = [ 2816 - "cfg-if", 2817 - "libc", 2818 - "redox_syscall 0.5.7", 2819 - "smallvec", 2820 - "windows-targets 0.52.6", 2821 - ] 2822 - 2823 - [[package]] 2824 - name = "pathdiff" 2825 - version = "0.2.3" 2826 - source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 2828 - 2829 - [[package]] 2830 - name = "pbkdf2" 2831 - version = "0.12.2" 2832 - source = "registry+https://github.com/rust-lang/crates.io-index" 2833 - checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 2834 - dependencies = [ 2835 - "digest", 2836 - "hmac", 2837 - ] 2838 - 2839 - [[package]] 2840 - name = "pem" 2841 - version = "3.0.4" 2842 - source = "registry+https://github.com/rust-lang/crates.io-index" 2843 - checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 2844 - dependencies = [ 2845 - "base64 0.22.1", 2846 - "serde", 2847 - ] 2848 - 2849 - [[package]] 2850 - name = "percent-encoding" 2851 - version = "2.3.1" 2852 - source = "registry+https://github.com/rust-lang/crates.io-index" 2853 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2854 - 2855 - [[package]] 2856 - name = "phf" 2857 - version = "0.11.2" 2858 - source = "registry+https://github.com/rust-lang/crates.io-index" 2859 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 2860 - dependencies = [ 2861 - "phf_macros", 2862 - "phf_shared", 2863 - ] 2864 - 2865 - [[package]] 2866 - name = "phf_generator" 2867 - version = "0.11.2" 2868 - source = "registry+https://github.com/rust-lang/crates.io-index" 2869 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 2870 - dependencies = [ 2871 - "phf_shared", 2872 - "rand", 2873 - ] 2874 - 2875 - [[package]] 2876 - name = "phf_macros" 2877 - version = "0.11.2" 2878 - source = "registry+https://github.com/rust-lang/crates.io-index" 2879 - checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 2880 - dependencies = [ 2881 - "phf_generator", 2882 - "phf_shared", 2883 - "proc-macro2", 2884 - "quote", 2885 - "syn 2.0.89", 2886 - ] 2887 - 2888 - [[package]] 2889 - name = "phf_shared" 2890 - version = "0.11.2" 2891 - source = "registry+https://github.com/rust-lang/crates.io-index" 2892 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 2893 - dependencies = [ 2894 - "siphasher", 2895 - ] 2896 - 2897 - [[package]] 2898 - name = "pin-project" 2899 - version = "1.1.7" 2900 - source = "registry+https://github.com/rust-lang/crates.io-index" 2901 - checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" 2902 - dependencies = [ 2903 - "pin-project-internal", 2904 - ] 2905 - 2906 - [[package]] 2907 - name = "pin-project-internal" 2908 - version = "1.1.7" 2909 - source = "registry+https://github.com/rust-lang/crates.io-index" 2910 - checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" 2911 - dependencies = [ 2912 - "proc-macro2", 2913 - "quote", 2914 - "syn 2.0.89", 2915 - ] 2916 - 2917 - [[package]] 2918 - name = "pin-project-lite" 2919 - version = "0.2.15" 2920 - source = "registry+https://github.com/rust-lang/crates.io-index" 2921 - checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" 2922 - 2923 - [[package]] 2924 - name = "pin-utils" 2925 - version = "0.1.0" 2926 - source = "registry+https://github.com/rust-lang/crates.io-index" 2927 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2928 - 2929 - [[package]] 2930 - name = "piper" 2931 - version = "0.2.4" 2932 - source = "registry+https://github.com/rust-lang/crates.io-index" 2933 - checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2934 - dependencies = [ 2935 - "atomic-waker", 2936 - "fastrand", 2937 - "futures-io", 2938 - ] 2939 - 2940 - [[package]] 2941 - name = "pkg-config" 2942 - version = "0.3.31" 2943 - source = "registry+https://github.com/rust-lang/crates.io-index" 2944 - checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 2945 - 2946 - [[package]] 2947 - name = "polling" 2948 - version = "3.7.4" 2949 - source = "registry+https://github.com/rust-lang/crates.io-index" 2950 - checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" 2951 - dependencies = [ 2952 - "cfg-if", 2953 - "concurrent-queue", 2954 - "hermit-abi 0.4.0", 2955 - "pin-project-lite", 2956 - "rustix", 2957 - "tracing", 2958 - "windows-sys 0.59.0", 2959 - ] 2960 - 2961 - [[package]] 2962 - name = "portable-atomic" 2963 - version = "1.10.0" 2964 - source = "registry+https://github.com/rust-lang/crates.io-index" 2965 - checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" 2966 - 2967 - [[package]] 2968 - name = "powerfmt" 2969 - version = "0.2.0" 2970 - source = "registry+https://github.com/rust-lang/crates.io-index" 2971 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2972 - 2973 - [[package]] 2974 - name = "ppv-lite86" 2975 - version = "0.2.20" 2976 - source = "registry+https://github.com/rust-lang/crates.io-index" 2977 - checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 2978 - dependencies = [ 2979 - "zerocopy", 2980 - ] 2981 - 2982 - [[package]] 2983 - name = "predicates" 2984 - version = "3.1.2" 2985 - source = "registry+https://github.com/rust-lang/crates.io-index" 2986 - checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" 2987 - dependencies = [ 2988 - "anstyle", 2989 - "difflib", 2990 - "float-cmp", 2991 - "normalize-line-endings", 2992 - "predicates-core", 2993 - "regex", 2994 - ] 2995 - 2996 - [[package]] 2997 - name = "predicates-core" 2998 - version = "1.0.8" 2999 - source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" 3001 - 3002 - [[package]] 3003 - name = "predicates-tree" 3004 - version = "1.0.11" 3005 - source = "registry+https://github.com/rust-lang/crates.io-index" 3006 - checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" 3007 - dependencies = [ 3008 - "predicates-core", 3009 - "termtree", 3010 - ] 3011 - 3012 - [[package]] 3013 - name = "pretty_assertions" 3014 - version = "1.4.1" 3015 - source = "registry+https://github.com/rust-lang/crates.io-index" 3016 - checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" 3017 - dependencies = [ 3018 - "diff", 3019 - "yansi", 3020 - ] 3021 - 3022 - [[package]] 3023 - name = "prettytable-rs" 3024 - version = "0.10.0" 3025 - source = "registry+https://github.com/rust-lang/crates.io-index" 3026 - checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a" 3027 - dependencies = [ 3028 - "encode_unicode 1.0.0", 3029 - "is-terminal", 3030 - "lazy_static", 3031 - "term 0.7.0", 3032 - "unicode-width 0.1.14", 3033 - ] 3034 - 3035 - [[package]] 3036 - name = "proc-macro-error" 3037 - version = "1.0.4" 3038 - source = "registry+https://github.com/rust-lang/crates.io-index" 3039 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3040 - dependencies = [ 3041 - "proc-macro-error-attr", 3042 - "proc-macro2", 3043 - "quote", 3044 - "version_check", 3045 - ] 3046 - 3047 - [[package]] 3048 - name = "proc-macro-error-attr" 3049 - version = "1.0.4" 3050 - source = "registry+https://github.com/rust-lang/crates.io-index" 3051 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3052 - dependencies = [ 3053 - "proc-macro2", 3054 - "quote", 3055 - "version_check", 3056 - ] 3057 - 3058 - [[package]] 3059 - name = "proc-macro-hack" 3060 - version = "0.5.20+deprecated" 3061 - source = "registry+https://github.com/rust-lang/crates.io-index" 3062 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3063 - 3064 - [[package]] 3065 - name = "proc-macro2" 3066 - version = "1.0.92" 3067 - source = "registry+https://github.com/rust-lang/crates.io-index" 3068 - checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" 3069 - dependencies = [ 3070 - "unicode-ident", 3071 - ] 3072 - 3073 - [[package]] 3074 - name = "quinn" 3075 - version = "0.11.6" 3076 - source = "registry+https://github.com/rust-lang/crates.io-index" 3077 - checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" 3078 - dependencies = [ 3079 - "bytes", 3080 - "pin-project-lite", 3081 - "quinn-proto", 3082 - "quinn-udp", 3083 - "rustc-hash", 3084 - "rustls 0.23.18", 3085 - "socket2", 3086 - "thiserror 2.0.3", 3087 - "tokio", 3088 - "tracing", 3089 - ] 3090 - 3091 - [[package]] 3092 - name = "quinn-proto" 3093 - version = "0.11.9" 3094 - source = "registry+https://github.com/rust-lang/crates.io-index" 3095 - checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" 3096 - dependencies = [ 3097 - "bytes", 3098 - "getrandom", 3099 - "rand", 3100 - "ring", 3101 - "rustc-hash", 3102 - "rustls 0.23.18", 3103 - "rustls-pki-types", 3104 - "slab", 3105 - "thiserror 2.0.3", 3106 - "tinyvec", 3107 - "tracing", 3108 - "web-time", 3109 - ] 3110 - 3111 - [[package]] 3112 - name = "quinn-udp" 3113 - version = "0.5.7" 3114 - source = "registry+https://github.com/rust-lang/crates.io-index" 3115 - checksum = "7d5a626c6807713b15cac82a6acaccd6043c9a5408c24baae07611fec3f243da" 3116 - dependencies = [ 3117 - "cfg_aliases 0.2.1", 3118 - "libc", 3119 - "once_cell", 3120 - "socket2", 3121 - "tracing", 3122 - "windows-sys 0.59.0", 3123 - ] 3124 - 3125 - [[package]] 3126 - name = "quote" 3127 - version = "1.0.37" 3128 - source = "registry+https://github.com/rust-lang/crates.io-index" 3129 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 3130 - dependencies = [ 3131 - "proc-macro2", 3132 - ] 3133 - 3134 - [[package]] 3135 - name = "radium" 3136 - version = "0.7.0" 3137 - source = "registry+https://github.com/rust-lang/crates.io-index" 3138 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 3139 - 3140 - [[package]] 3141 - name = "radix_trie" 3142 - version = "0.2.1" 3143 - source = "registry+https://github.com/rust-lang/crates.io-index" 3144 - checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 3145 - dependencies = [ 3146 - "endian-type", 3147 - "nibble_vec", 3148 - ] 3149 - 3150 - [[package]] 3151 - name = "rand" 3152 - version = "0.8.5" 3153 - source = "registry+https://github.com/rust-lang/crates.io-index" 3154 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3155 - dependencies = [ 3156 - "libc", 3157 - "rand_chacha", 3158 - "rand_core", 3159 - ] 3160 - 3161 - [[package]] 3162 - name = "rand_chacha" 3163 - version = "0.3.1" 3164 - source = "registry+https://github.com/rust-lang/crates.io-index" 3165 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3166 - dependencies = [ 3167 - "ppv-lite86", 3168 - "rand_core", 3169 - ] 3170 - 3171 - [[package]] 3172 - name = "rand_core" 3173 - version = "0.6.4" 3174 - source = "registry+https://github.com/rust-lang/crates.io-index" 3175 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3176 - dependencies = [ 3177 - "getrandom", 3178 - ] 3179 - 3180 - [[package]] 3181 - name = "redox_syscall" 3182 - version = "0.2.16" 3183 - source = "registry+https://github.com/rust-lang/crates.io-index" 3184 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3185 - dependencies = [ 3186 - "bitflags 1.3.2", 3187 - ] 3188 - 3189 - [[package]] 3190 - name = "redox_syscall" 3191 - version = "0.5.7" 3192 - source = "registry+https://github.com/rust-lang/crates.io-index" 3193 - checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 3194 - dependencies = [ 3195 - "bitflags 2.6.0", 3196 - ] 3197 - 3198 - [[package]] 3199 - name = "redox_users" 3200 - version = "0.4.6" 3201 - source = "registry+https://github.com/rust-lang/crates.io-index" 3202 - checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 3203 - dependencies = [ 3204 - "getrandom", 3205 - "libredox", 3206 - "thiserror 1.0.69", 3207 - ] 3208 - 3209 - [[package]] 3210 - name = "regex" 3211 - version = "1.11.1" 3212 - source = "registry+https://github.com/rust-lang/crates.io-index" 3213 - checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 3214 - dependencies = [ 3215 - "aho-corasick", 3216 - "memchr", 3217 - "regex-automata", 3218 - "regex-syntax", 3219 - ] 3220 - 3221 - [[package]] 3222 - name = "regex-automata" 3223 - version = "0.4.9" 3224 - source = "registry+https://github.com/rust-lang/crates.io-index" 3225 - checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 3226 - dependencies = [ 3227 - "aho-corasick", 3228 - "memchr", 3229 - "regex-syntax", 3230 - ] 3231 - 3232 - [[package]] 3233 - name = "regex-syntax" 3234 - version = "0.8.5" 3235 - source = "registry+https://github.com/rust-lang/crates.io-index" 3236 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 3237 - 3238 - [[package]] 3239 - name = "renamore" 3240 - version = "0.3.2" 3241 - source = "registry+https://github.com/rust-lang/crates.io-index" 3242 - checksum = "0f5bced8a18df26d088a61a8f314d853ad18705b0aee59b43ccc088ca4bc3670" 3243 - dependencies = [ 3244 - "cc", 3245 - "tempfile", 3246 - ] 3247 - 3248 - [[package]] 3249 - name = "reqwest" 3250 - version = "0.12.9" 3251 - source = "registry+https://github.com/rust-lang/crates.io-index" 3252 - checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" 3253 - dependencies = [ 3254 - "async-compression", 3255 - "base64 0.22.1", 3256 - "bytes", 3257 - "encoding_rs", 3258 - "futures-core", 3259 - "futures-util", 3260 - "h2 0.4.7", 3261 - "http 1.1.0", 3262 - "http-body 1.0.1", 3263 - "http-body-util", 3264 - "hyper 1.5.1", 3265 - "hyper-rustls", 3266 - "hyper-util", 3267 - "ipnet", 3268 - "js-sys", 3269 - "log", 3270 - "mime", 3271 - "once_cell", 3272 - "percent-encoding", 3273 - "pin-project-lite", 3274 - "quinn", 3275 - "rustls 0.23.18", 3276 - "rustls-native-certs", 3277 - "rustls-pemfile", 3278 - "rustls-pki-types", 3279 - "serde", 3280 - "serde_json", 3281 - "serde_urlencoded", 3282 - "sync_wrapper", 3283 - "tokio", 3284 - "tokio-rustls 0.26.0", 3285 - "tokio-util", 3286 - "tower-service", 3287 - "url", 3288 - "wasm-bindgen", 3289 - "wasm-bindgen-futures", 3290 - "web-sys", 3291 - "windows-registry", 3292 - ] 3293 - 3294 - [[package]] 3295 - name = "reqwest-middleware" 3296 - version = "0.3.3" 3297 - source = "registry+https://github.com/rust-lang/crates.io-index" 3298 - checksum = "562ceb5a604d3f7c885a792d42c199fd8af239d0a51b2fa6a78aafa092452b04" 3299 - dependencies = [ 3300 - "anyhow", 3301 - "async-trait", 3302 - "http 1.1.0", 3303 - "reqwest", 3304 - "serde", 3305 - "thiserror 1.0.69", 3306 - "tower-service", 3307 - ] 3308 - 3309 - [[package]] 3310 - name = "reqwest-retry" 3311 - version = "0.6.1" 3312 - source = "registry+https://github.com/rust-lang/crates.io-index" 3313 - checksum = "a83df1aaec00176d0fabb65dea13f832d2a446ca99107afc17c5d2d4981221d0" 3314 - dependencies = [ 3315 - "anyhow", 3316 - "async-trait", 3317 - "futures", 3318 - "getrandom", 3319 - "http 1.1.0", 3320 - "hyper 1.5.1", 3321 - "parking_lot 0.11.2", 3322 - "reqwest", 3323 - "reqwest-middleware", 3324 - "retry-policies", 3325 - "tokio", 3326 - "tracing", 3327 - "wasm-timer", 3328 - ] 3329 - 3330 - [[package]] 3331 - name = "retry-policies" 3332 - version = "0.4.0" 3333 - source = "registry+https://github.com/rust-lang/crates.io-index" 3334 - checksum = "5875471e6cab2871bc150ecb8c727db5113c9338cc3354dc5ee3425b6aa40a1c" 3335 - dependencies = [ 3336 - "rand", 3337 - ] 3338 - 3339 - [[package]] 3340 - name = "rexpect" 3341 - version = "0.5.0" 3342 - source = "git+https://github.com/tailhook/rexpect?branch=default_terminal_size#7643379e581e8019b49070782e5b6df34d762178" 3343 - dependencies = [ 3344 - "comma", 3345 - "nix 0.26.4", 3346 - "regex", 3347 - "tempfile", 3348 - "thiserror 1.0.69", 3349 - ] 3350 - 3351 - [[package]] 3352 - name = "ring" 3353 - version = "0.17.8" 3354 - source = "registry+https://github.com/rust-lang/crates.io-index" 3355 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 3356 - dependencies = [ 3357 - "cc", 3358 - "cfg-if", 3359 - "getrandom", 3360 - "libc", 3361 - "spin", 3362 - "untrusted", 3363 - "windows-sys 0.52.0", 3364 - ] 3365 - 3366 - [[package]] 3367 - name = "rle-decode-fast" 3368 - version = "1.0.3" 3369 - source = "registry+https://github.com/rust-lang/crates.io-index" 3370 - checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 3371 - 3372 - [[package]] 3373 - name = "rpassword" 3374 - version = "7.3.1" 3375 - source = "registry+https://github.com/rust-lang/crates.io-index" 3376 - checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f" 3377 - dependencies = [ 3378 - "libc", 3379 - "rtoolbox", 3380 - "windows-sys 0.48.0", 3381 - ] 3382 - 3383 - [[package]] 3384 - name = "rtoolbox" 3385 - version = "0.0.2" 3386 - source = "registry+https://github.com/rust-lang/crates.io-index" 3387 - checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e" 3388 - dependencies = [ 3389 - "libc", 3390 - "windows-sys 0.48.0", 3391 - ] 3392 - 3393 - [[package]] 3394 - name = "rustc-demangle" 3395 - version = "0.1.24" 3396 - source = "registry+https://github.com/rust-lang/crates.io-index" 3397 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3398 - 3399 - [[package]] 3400 - name = "rustc-hash" 3401 - version = "2.0.0" 3402 - source = "registry+https://github.com/rust-lang/crates.io-index" 3403 - checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 3404 - 3405 - [[package]] 3406 - name = "rustix" 3407 - version = "0.38.41" 3408 - source = "registry+https://github.com/rust-lang/crates.io-index" 3409 - checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6" 3410 - dependencies = [ 3411 - "bitflags 2.6.0", 3412 - "errno", 3413 - "libc", 3414 - "linux-raw-sys", 3415 - "windows-sys 0.52.0", 3416 - ] 3417 - 3418 - [[package]] 3419 - name = "rustls" 3420 - version = "0.22.4" 3421 - source = "registry+https://github.com/rust-lang/crates.io-index" 3422 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 3423 - dependencies = [ 3424 - "log", 3425 - "ring", 3426 - "rustls-pki-types", 3427 - "rustls-webpki", 3428 - "subtle", 3429 - "zeroize", 3430 - ] 3431 - 3432 - [[package]] 3433 - name = "rustls" 3434 - version = "0.23.18" 3435 - source = "registry+https://github.com/rust-lang/crates.io-index" 3436 - checksum = "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" 3437 - dependencies = [ 3438 - "once_cell", 3439 - "ring", 3440 - "rustls-pki-types", 3441 - "rustls-webpki", 3442 - "subtle", 3443 - "zeroize", 3444 - ] 3445 - 3446 - [[package]] 3447 - name = "rustls-native-certs" 3448 - version = "0.8.1" 3449 - source = "registry+https://github.com/rust-lang/crates.io-index" 3450 - checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" 3451 - dependencies = [ 3452 - "openssl-probe", 3453 - "rustls-pki-types", 3454 - "schannel", 3455 - "security-framework", 3456 - ] 3457 - 3458 - [[package]] 3459 - name = "rustls-pemfile" 3460 - version = "2.2.0" 3461 - source = "registry+https://github.com/rust-lang/crates.io-index" 3462 - checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 3463 - dependencies = [ 3464 - "rustls-pki-types", 3465 - ] 3466 - 3467 - [[package]] 3468 - name = "rustls-pki-types" 3469 - version = "1.10.0" 3470 - source = "registry+https://github.com/rust-lang/crates.io-index" 3471 - checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" 3472 - dependencies = [ 3473 - "web-time", 3474 - ] 3475 - 3476 - [[package]] 3477 - name = "rustls-webpki" 3478 - version = "0.102.8" 3479 - source = "registry+https://github.com/rust-lang/crates.io-index" 3480 - checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 3481 - dependencies = [ 3482 - "ring", 3483 - "rustls-pki-types", 3484 - "untrusted", 3485 - ] 3486 - 3487 - [[package]] 3488 - name = "rustversion" 3489 - version = "1.0.18" 3490 - source = "registry+https://github.com/rust-lang/crates.io-index" 3491 - checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" 3492 - 3493 - [[package]] 3494 - name = "rustyline" 3495 - version = "14.0.0" 3496 - source = "registry+https://github.com/rust-lang/crates.io-index" 3497 - checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63" 3498 - dependencies = [ 3499 - "bitflags 2.6.0", 3500 - "cfg-if", 3501 - "clipboard-win", 3502 - "fd-lock", 3503 - "home", 3504 - "libc", 3505 - "log", 3506 - "memchr", 3507 - "nix 0.28.0", 3508 - "radix_trie", 3509 - "unicode-segmentation", 3510 - "unicode-width 0.1.14", 3511 - "utf8parse", 3512 - "windows-sys 0.52.0", 3513 - ] 3514 - 3515 - [[package]] 3516 - name = "ryu" 3517 - version = "1.0.18" 3518 - source = "registry+https://github.com/rust-lang/crates.io-index" 3519 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 3520 - 3521 - [[package]] 3522 - name = "same-file" 3523 - version = "1.0.6" 3524 - source = "registry+https://github.com/rust-lang/crates.io-index" 3525 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3526 - dependencies = [ 3527 - "winapi-util", 3528 - ] 3529 - 3530 - [[package]] 3531 - name = "schannel" 3532 - version = "0.1.27" 3533 - source = "registry+https://github.com/rust-lang/crates.io-index" 3534 - checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 3535 - dependencies = [ 3536 - "windows-sys 0.59.0", 3537 - ] 3538 - 3539 - [[package]] 3540 - name = "scoped-tls" 3541 - version = "1.0.1" 3542 - source = "registry+https://github.com/rust-lang/crates.io-index" 3543 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3544 - 3545 - [[package]] 3546 - name = "scopeguard" 3547 - version = "1.2.0" 3548 - source = "registry+https://github.com/rust-lang/crates.io-index" 3549 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3550 - 3551 - [[package]] 3552 - name = "scram" 3553 - version = "0.7.0" 3554 - source = "git+https://github.com/elprans/scram#b1f594638f1022ed7e6550a63ad94bb95256a097" 3555 - dependencies = [ 3556 - "base64 0.21.7", 3557 - "rand", 3558 - "ring", 3559 - ] 3560 - 3561 - [[package]] 3562 - name = "scram-2" 3563 - version = "0.7.0" 3564 - source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "d746fe0e755a1825a7ae6504e40de96f6b5001b45e32b05441fc1cfbf5ff7359" 3566 - dependencies = [ 3567 - "base64 0.22.1", 3568 - "rand", 3569 - "ring", 3570 - ] 3571 - 3572 - [[package]] 3573 - name = "security-framework" 3574 - version = "3.0.1" 3575 - source = "registry+https://github.com/rust-lang/crates.io-index" 3576 - checksum = "e1415a607e92bec364ea2cf9264646dcce0f91e6d65281bd6f2819cca3bf39c8" 3577 - dependencies = [ 3578 - "bitflags 2.6.0", 3579 - "core-foundation", 3580 - "core-foundation-sys", 3581 - "libc", 3582 - "security-framework-sys", 3583 - ] 3584 - 3585 - [[package]] 3586 - name = "security-framework-sys" 3587 - version = "2.12.1" 3588 - source = "registry+https://github.com/rust-lang/crates.io-index" 3589 - checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2" 3590 - dependencies = [ 3591 - "core-foundation-sys", 3592 - "libc", 3593 - ] 3594 - 3595 - [[package]] 3596 - name = "semver" 3597 - version = "1.0.23" 3598 - source = "registry+https://github.com/rust-lang/crates.io-index" 3599 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 3600 - dependencies = [ 3601 - "serde", 3602 - ] 3603 - 3604 - [[package]] 3605 - name = "serde" 3606 - version = "1.0.215" 3607 - source = "registry+https://github.com/rust-lang/crates.io-index" 3608 - checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" 3609 - dependencies = [ 3610 - "serde_derive", 3611 - ] 3612 - 3613 - [[package]] 3614 - name = "serde_derive" 3615 - version = "1.0.215" 3616 - source = "registry+https://github.com/rust-lang/crates.io-index" 3617 - checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" 3618 - dependencies = [ 3619 - "proc-macro2", 3620 - "quote", 3621 - "syn 2.0.89", 3622 - ] 3623 - 3624 - [[package]] 3625 - name = "serde_json" 3626 - version = "1.0.133" 3627 - source = "registry+https://github.com/rust-lang/crates.io-index" 3628 - checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" 3629 - dependencies = [ 3630 - "indexmap", 3631 - "itoa", 3632 - "memchr", 3633 - "ryu", 3634 - "serde", 3635 - ] 3636 - 3637 - [[package]] 3638 - name = "serde_millis" 3639 - version = "0.1.1" 3640 - source = "registry+https://github.com/rust-lang/crates.io-index" 3641 - checksum = "e6e2dc780ca5ee2c369d1d01d100270203c4ff923d2a4264812d723766434d00" 3642 - dependencies = [ 3643 - "serde", 3644 - ] 3645 - 3646 - [[package]] 3647 - name = "serde_path_to_error" 3648 - version = "0.1.16" 3649 - source = "registry+https://github.com/rust-lang/crates.io-index" 3650 - checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 3651 - dependencies = [ 3652 - "itoa", 3653 - "serde", 3654 - ] 3655 - 3656 - [[package]] 3657 - name = "serde_spanned" 3658 - version = "0.6.8" 3659 - source = "registry+https://github.com/rust-lang/crates.io-index" 3660 - checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 3661 - dependencies = [ 3662 - "serde", 3663 - ] 3664 - 3665 - [[package]] 3666 - name = "serde_str" 3667 - version = "1.0.0" 3668 - source = "git+https://github.com/tailhook/serde-str#d48076ec69a86e82abeca5f44c0b73ada1fda848" 3669 - dependencies = [ 3670 - "serde", 3671 - ] 3672 - 3673 - [[package]] 3674 - name = "serde_urlencoded" 3675 - version = "0.7.1" 3676 - source = "registry+https://github.com/rust-lang/crates.io-index" 3677 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3678 - dependencies = [ 3679 - "form_urlencoded", 3680 - "itoa", 3681 - "ryu", 3682 - "serde", 3683 - ] 3684 - 3685 - [[package]] 3686 - name = "sha1" 3687 - version = "0.10.6" 3688 - source = "registry+https://github.com/rust-lang/crates.io-index" 3689 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3690 - dependencies = [ 3691 - "cfg-if", 3692 - "cpufeatures", 3693 - "digest", 3694 - ] 3695 - 3696 - [[package]] 3697 - name = "sha2" 3698 - version = "0.10.8" 3699 - source = "registry+https://github.com/rust-lang/crates.io-index" 3700 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3701 - dependencies = [ 3702 - "cfg-if", 3703 - "cpufeatures", 3704 - "digest", 3705 - ] 3706 - 3707 - [[package]] 3708 - name = "shared-client-tests" 3709 - version = "0.1.0" 3710 - dependencies = [ 3711 - "assert_cmd", 3712 - "edgedb-protocol", 3713 - "hex", 3714 - "indexmap", 3715 - "predicates", 3716 - "serde_json", 3717 - "sha1", 3718 - "tempfile", 3719 - ] 3720 - 3721 - [[package]] 3722 - name = "shell-escape" 3723 - version = "0.1.5" 3724 - source = "registry+https://github.com/rust-lang/crates.io-index" 3725 - checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 3726 - 3727 - [[package]] 3728 - name = "shlex" 3729 - version = "1.3.0" 3730 - source = "registry+https://github.com/rust-lang/crates.io-index" 3731 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3732 - 3733 - [[package]] 3734 - name = "shutdown_hooks" 3735 - version = "0.1.0" 3736 - source = "registry+https://github.com/rust-lang/crates.io-index" 3737 - checksum = "6057adedbec913419c92996f395ba69931acbd50b7d56955394cd3f7bedbfa45" 3738 - 3739 - [[package]] 3740 - name = "signal-hook" 3741 - version = "0.3.17" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 3744 - dependencies = [ 3745 - "libc", 3746 - "signal-hook-registry", 3747 - ] 3748 - 3749 - [[package]] 3750 - name = "signal-hook-mio" 3751 - version = "0.2.4" 3752 - source = "registry+https://github.com/rust-lang/crates.io-index" 3753 - checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" 3754 - dependencies = [ 3755 - "libc", 3756 - "mio 1.0.2", 3757 - "signal-hook", 3758 - ] 3759 - 3760 - [[package]] 3761 - name = "signal-hook-registry" 3762 - version = "1.4.2" 3763 - source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3765 - dependencies = [ 3766 - "libc", 3767 - ] 3768 - 3769 - [[package]] 3770 - name = "simd-adler32" 3771 - version = "0.3.7" 3772 - source = "registry+https://github.com/rust-lang/crates.io-index" 3773 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 3774 - 3775 - [[package]] 3776 - name = "siphasher" 3777 - version = "0.3.11" 3778 - source = "registry+https://github.com/rust-lang/crates.io-index" 3779 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3780 - 3781 - [[package]] 3782 - name = "slab" 3783 - version = "0.4.9" 3784 - source = "registry+https://github.com/rust-lang/crates.io-index" 3785 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 3786 - dependencies = [ 3787 - "autocfg", 3788 - ] 3789 - 3790 - [[package]] 3791 - name = "smallvec" 3792 - version = "1.13.2" 3793 - source = "registry+https://github.com/rust-lang/crates.io-index" 3794 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 3795 - 3796 - [[package]] 3797 - name = "smawk" 3798 - version = "0.3.2" 3799 - source = "registry+https://github.com/rust-lang/crates.io-index" 3800 - checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 3801 - 3802 - [[package]] 3803 - name = "snafu" 3804 - version = "0.8.5" 3805 - source = "registry+https://github.com/rust-lang/crates.io-index" 3806 - checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019" 3807 - dependencies = [ 3808 - "backtrace", 3809 - "snafu-derive", 3810 - ] 3811 - 3812 - [[package]] 3813 - name = "snafu-derive" 3814 - version = "0.8.5" 3815 - source = "registry+https://github.com/rust-lang/crates.io-index" 3816 - checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917" 3817 - dependencies = [ 3818 - "heck", 3819 - "proc-macro2", 3820 - "quote", 3821 - "syn 2.0.89", 3822 - ] 3823 - 3824 - [[package]] 3825 - name = "socket2" 3826 - version = "0.5.7" 3827 - source = "registry+https://github.com/rust-lang/crates.io-index" 3828 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 3829 - dependencies = [ 3830 - "libc", 3831 - "windows-sys 0.52.0", 3832 - ] 3833 - 3834 - [[package]] 3835 - name = "spin" 3836 - version = "0.9.8" 3837 - source = "registry+https://github.com/rust-lang/crates.io-index" 3838 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3839 - 3840 - [[package]] 3841 - name = "stable_deref_trait" 3842 - version = "1.2.0" 3843 - source = "registry+https://github.com/rust-lang/crates.io-index" 3844 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3845 - 3846 - [[package]] 3847 - name = "strict" 3848 - version = "0.2.0" 3849 - source = "registry+https://github.com/rust-lang/crates.io-index" 3850 - checksum = "f42444fea5b87a39db4218d9422087e66a85d0e7a0963a439b07bcdf91804006" 3851 - 3852 - [[package]] 3853 - name = "strsim" 3854 - version = "0.11.1" 3855 - source = "registry+https://github.com/rust-lang/crates.io-index" 3856 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3857 - 3858 - [[package]] 3859 - name = "subtle" 3860 - version = "2.6.1" 3861 - source = "registry+https://github.com/rust-lang/crates.io-index" 3862 - checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3863 - 3864 - [[package]] 3865 - name = "syn" 3866 - version = "1.0.109" 3867 - source = "registry+https://github.com/rust-lang/crates.io-index" 3868 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3869 - dependencies = [ 3870 - "proc-macro2", 3871 - "quote", 3872 - "unicode-ident", 3873 - ] 3874 - 3875 - [[package]] 3876 - name = "syn" 3877 - version = "2.0.89" 3878 - source = "registry+https://github.com/rust-lang/crates.io-index" 3879 - checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" 3880 - dependencies = [ 3881 - "proc-macro2", 3882 - "quote", 3883 - "unicode-ident", 3884 - ] 3885 - 3886 - [[package]] 3887 - name = "sync_wrapper" 3888 - version = "1.0.2" 3889 - source = "registry+https://github.com/rust-lang/crates.io-index" 3890 - checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3891 - dependencies = [ 3892 - "futures-core", 3893 - ] 3894 - 3895 - [[package]] 3896 - name = "synstructure" 3897 - version = "0.13.1" 3898 - source = "registry+https://github.com/rust-lang/crates.io-index" 3899 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 3900 - dependencies = [ 3901 - "proc-macro2", 3902 - "quote", 3903 - "syn 2.0.89", 3904 - ] 3905 - 3906 - [[package]] 3907 - name = "tap" 3908 - version = "1.0.1" 3909 - source = "registry+https://github.com/rust-lang/crates.io-index" 3910 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3911 - 3912 - [[package]] 3913 - name = "tar" 3914 - version = "0.4.43" 3915 - source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" 3917 - dependencies = [ 3918 - "filetime", 3919 - "libc", 3920 - "xattr", 3921 - ] 3922 - 3923 - [[package]] 3924 - name = "target-triple" 3925 - version = "0.1.3" 3926 - source = "registry+https://github.com/rust-lang/crates.io-index" 3927 - checksum = "42a4d50cdb458045afc8131fd91b64904da29548bcb63c7236e0844936c13078" 3928 - 3929 - [[package]] 3930 - name = "tempfile" 3931 - version = "3.14.0" 3932 - source = "registry+https://github.com/rust-lang/crates.io-index" 3933 - checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" 3934 - dependencies = [ 3935 - "cfg-if", 3936 - "fastrand", 3937 - "once_cell", 3938 - "rustix", 3939 - "windows-sys 0.59.0", 3940 - ] 3941 - 3942 - [[package]] 3943 - name = "term" 3944 - version = "0.7.0" 3945 - source = "registry+https://github.com/rust-lang/crates.io-index" 3946 - checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 3947 - dependencies = [ 3948 - "dirs-next", 3949 - "rustversion", 3950 - "winapi", 3951 - ] 3952 - 3953 - [[package]] 3954 - name = "term" 3955 - version = "1.0.0" 3956 - source = "registry+https://github.com/rust-lang/crates.io-index" 3957 - checksum = "4df4175de05129f31b80458c6df371a15e7fc3fd367272e6bf938e5c351c7ea0" 3958 - dependencies = [ 3959 - "home", 3960 - "windows-sys 0.52.0", 3961 - ] 3962 - 3963 - [[package]] 3964 - name = "termcolor" 3965 - version = "1.4.1" 3966 - source = "registry+https://github.com/rust-lang/crates.io-index" 3967 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3968 - dependencies = [ 3969 - "winapi-util", 3970 - ] 3971 - 3972 - [[package]] 3973 - name = "termimad" 3974 - version = "0.30.1" 3975 - source = "registry+https://github.com/rust-lang/crates.io-index" 3976 - checksum = "22117210909e9dfff30a558f554c7fb3edb198ef614e7691386785fb7679677c" 3977 - dependencies = [ 3978 - "coolor", 3979 - "crokey", 3980 - "crossbeam", 3981 - "lazy-regex", 3982 - "minimad", 3983 - "serde", 3984 - "thiserror 1.0.69", 3985 - "unicode-width 0.1.14", 3986 - ] 3987 - 3988 - [[package]] 3989 - name = "terminal_size" 3990 - version = "0.4.0" 3991 - source = "registry+https://github.com/rust-lang/crates.io-index" 3992 - checksum = "4f599bd7ca042cfdf8f4512b277c02ba102247820f9d9d4a9f521f496751a6ef" 3993 - dependencies = [ 3994 - "rustix", 3995 - "windows-sys 0.59.0", 3996 - ] 3997 - 3998 - [[package]] 3999 - name = "termtree" 4000 - version = "0.4.1" 4001 - source = "registry+https://github.com/rust-lang/crates.io-index" 4002 - checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 4003 - 4004 - [[package]] 4005 - name = "test-case" 4006 - version = "3.3.1" 4007 - source = "registry+https://github.com/rust-lang/crates.io-index" 4008 - checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" 4009 - dependencies = [ 4010 - "test-case-macros", 4011 - ] 4012 - 4013 - [[package]] 4014 - name = "test-case-core" 4015 - version = "3.3.1" 4016 - source = "registry+https://github.com/rust-lang/crates.io-index" 4017 - checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" 4018 - dependencies = [ 4019 - "cfg-if", 4020 - "proc-macro2", 4021 - "quote", 4022 - "syn 2.0.89", 4023 - ] 4024 - 4025 - [[package]] 4026 - name = "test-case-macros" 4027 - version = "3.3.1" 4028 - source = "registry+https://github.com/rust-lang/crates.io-index" 4029 - checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" 4030 - dependencies = [ 4031 - "proc-macro2", 4032 - "quote", 4033 - "syn 2.0.89", 4034 - "test-case-core", 4035 - ] 4036 - 4037 - [[package]] 4038 - name = "test-utils" 4039 - version = "0.1.0" 4040 - source = "git+https://github.com/edgedb/test-utils.git#36af0d100941520d64d94ddc367371faf91c4f3a" 4041 - dependencies = [ 4042 - "anyhow", 4043 - "command-fds", 4044 - "fs_extra", 4045 - "nix 0.28.0", 4046 - "once_cell", 4047 - "serde", 4048 - "serde_json", 4049 - "shutdown_hooks", 4050 - ] 4051 - 4052 - [[package]] 4053 - name = "textwrap" 4054 - version = "0.16.1" 4055 - source = "registry+https://github.com/rust-lang/crates.io-index" 4056 - checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 4057 - dependencies = [ 4058 - "smawk", 4059 - "unicode-linebreak", 4060 - "unicode-width 0.1.14", 4061 - ] 4062 - 4063 - [[package]] 4064 - name = "thiserror" 4065 - version = "1.0.69" 4066 - source = "registry+https://github.com/rust-lang/crates.io-index" 4067 - checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 4068 - dependencies = [ 4069 - "thiserror-impl 1.0.69", 4070 - ] 4071 - 4072 - [[package]] 4073 - name = "thiserror" 4074 - version = "2.0.3" 4075 - source = "registry+https://github.com/rust-lang/crates.io-index" 4076 - checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" 4077 - dependencies = [ 4078 - "thiserror-impl 2.0.3", 4079 - ] 4080 - 4081 - [[package]] 4082 - name = "thiserror-impl" 4083 - version = "1.0.69" 4084 - source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 4086 - dependencies = [ 4087 - "proc-macro2", 4088 - "quote", 4089 - "syn 2.0.89", 4090 - ] 4091 - 4092 - [[package]] 4093 - name = "thiserror-impl" 4094 - version = "2.0.3" 4095 - source = "registry+https://github.com/rust-lang/crates.io-index" 4096 - checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" 4097 - dependencies = [ 4098 - "proc-macro2", 4099 - "quote", 4100 - "syn 2.0.89", 4101 - ] 4102 - 4103 - [[package]] 4104 - name = "time" 4105 - version = "0.3.36" 4106 - source = "registry+https://github.com/rust-lang/crates.io-index" 4107 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 4108 - dependencies = [ 4109 - "deranged", 4110 - "num-conv", 4111 - "powerfmt", 4112 - "serde", 4113 - "time-core", 4114 - ] 4115 - 4116 - [[package]] 4117 - name = "time-core" 4118 - version = "0.1.2" 4119 - source = "registry+https://github.com/rust-lang/crates.io-index" 4120 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 4121 - 4122 - [[package]] 4123 - name = "tinystr" 4124 - version = "0.7.6" 4125 - source = "registry+https://github.com/rust-lang/crates.io-index" 4126 - checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 4127 - dependencies = [ 4128 - "displaydoc", 4129 - "zerovec", 4130 - ] 4131 - 4132 - [[package]] 4133 - name = "tinyvec" 4134 - version = "1.8.0" 4135 - source = "registry+https://github.com/rust-lang/crates.io-index" 4136 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 4137 - dependencies = [ 4138 - "tinyvec_macros", 4139 - ] 4140 - 4141 - [[package]] 4142 - name = "tinyvec_macros" 4143 - version = "0.1.1" 4144 - source = "registry+https://github.com/rust-lang/crates.io-index" 4145 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4146 - 4147 - [[package]] 4148 - name = "tls-api" 4149 - version = "0.12.0" 4150 - source = "registry+https://github.com/rust-lang/crates.io-index" 4151 - checksum = "a8eb75b7304e6c157a435fff36a9ddc111ad410015d5260b306f10a18cffad72" 4152 - dependencies = [ 4153 - "anyhow", 4154 - "pem", 4155 - "tempfile", 4156 - "thiserror 2.0.3", 4157 - "tokio", 4158 - ] 4159 - 4160 - [[package]] 4161 - name = "tls-api-not-tls" 4162 - version = "0.12.1" 4163 - source = "registry+https://github.com/rust-lang/crates.io-index" 4164 - checksum = "e499a14f1a4d2552a77a7db66dc011f2ab0b6addc23d1f0b65bd757e91f5fd33" 4165 - dependencies = [ 4166 - "anyhow", 4167 - "thiserror 2.0.3", 4168 - "tls-api", 4169 - "tokio", 4170 - ] 4171 - 4172 - [[package]] 4173 - name = "tls-api-rustls" 4174 - version = "0.12.1" 4175 - source = "registry+https://github.com/rust-lang/crates.io-index" 4176 - checksum = "69788bbcd8237aa8bed3709aae340d884c3013b2e69d7df34d35d877de3f545b" 4177 - dependencies = [ 4178 - "anyhow", 4179 - "rustls 0.23.18", 4180 - "thiserror 2.0.3", 4181 - "tls-api", 4182 - "tokio", 4183 - "webpki", 4184 - "webpki-roots", 4185 - ] 4186 - 4187 - [[package]] 4188 - name = "tokio" 4189 - version = "1.41.1" 4190 - source = "registry+https://github.com/rust-lang/crates.io-index" 4191 - checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" 4192 - dependencies = [ 4193 - "backtrace", 4194 - "bytes", 4195 - "libc", 4196 - "mio 1.0.2", 4197 - "pin-project-lite", 4198 - "signal-hook-registry", 4199 - "socket2", 4200 - "tokio-macros", 4201 - "windows-sys 0.52.0", 4202 - ] 4203 - 4204 - [[package]] 4205 - name = "tokio-macros" 4206 - version = "2.4.0" 4207 - source = "registry+https://github.com/rust-lang/crates.io-index" 4208 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 4209 - dependencies = [ 4210 - "proc-macro2", 4211 - "quote", 4212 - "syn 2.0.89", 4213 - ] 4214 - 4215 - [[package]] 4216 - name = "tokio-rustls" 4217 - version = "0.25.0" 4218 - source = "registry+https://github.com/rust-lang/crates.io-index" 4219 - checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 4220 - dependencies = [ 4221 - "rustls 0.22.4", 4222 - "rustls-pki-types", 4223 - "tokio", 4224 - ] 4225 - 4226 - [[package]] 4227 - name = "tokio-rustls" 4228 - version = "0.26.0" 4229 - source = "registry+https://github.com/rust-lang/crates.io-index" 4230 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 4231 - dependencies = [ 4232 - "rustls 0.23.18", 4233 - "rustls-pki-types", 4234 - "tokio", 4235 - ] 4236 - 4237 - [[package]] 4238 - name = "tokio-stream" 4239 - version = "0.1.16" 4240 - source = "registry+https://github.com/rust-lang/crates.io-index" 4241 - checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" 4242 - dependencies = [ 4243 - "futures-core", 4244 - "pin-project-lite", 4245 - "tokio", 4246 - ] 4247 - 4248 - [[package]] 4249 - name = "tokio-util" 4250 - version = "0.7.12" 4251 - source = "registry+https://github.com/rust-lang/crates.io-index" 4252 - checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 4253 - dependencies = [ 4254 - "bytes", 4255 - "futures-core", 4256 - "futures-sink", 4257 - "pin-project-lite", 4258 - "tokio", 4259 - ] 4260 - 4261 - [[package]] 4262 - name = "toml" 4263 - version = "0.8.19" 4264 - source = "registry+https://github.com/rust-lang/crates.io-index" 4265 - checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 4266 - dependencies = [ 4267 - "serde", 4268 - "serde_spanned", 4269 - "toml_datetime", 4270 - "toml_edit", 4271 - ] 4272 - 4273 - [[package]] 4274 - name = "toml_datetime" 4275 - version = "0.6.8" 4276 - source = "registry+https://github.com/rust-lang/crates.io-index" 4277 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 4278 - dependencies = [ 4279 - "serde", 4280 - ] 4281 - 4282 - [[package]] 4283 - name = "toml_edit" 4284 - version = "0.22.22" 4285 - source = "registry+https://github.com/rust-lang/crates.io-index" 4286 - checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 4287 - dependencies = [ 4288 - "indexmap", 4289 - "serde", 4290 - "serde_spanned", 4291 - "toml_datetime", 4292 - "winnow", 4293 - ] 4294 - 4295 - [[package]] 4296 - name = "tower-service" 4297 - version = "0.3.3" 4298 - source = "registry+https://github.com/rust-lang/crates.io-index" 4299 - checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 4300 - 4301 - [[package]] 4302 - name = "tracing" 4303 - version = "0.1.40" 4304 - source = "registry+https://github.com/rust-lang/crates.io-index" 4305 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 4306 - dependencies = [ 4307 - "log", 4308 - "pin-project-lite", 4309 - "tracing-attributes", 4310 - "tracing-core", 4311 - ] 4312 - 4313 - [[package]] 4314 - name = "tracing-attributes" 4315 - version = "0.1.27" 4316 - source = "registry+https://github.com/rust-lang/crates.io-index" 4317 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4318 - dependencies = [ 4319 - "proc-macro2", 4320 - "quote", 4321 - "syn 2.0.89", 4322 - ] 4323 - 4324 - [[package]] 4325 - name = "tracing-core" 4326 - version = "0.1.33" 4327 - source = "registry+https://github.com/rust-lang/crates.io-index" 4328 - checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 4329 - dependencies = [ 4330 - "once_cell", 4331 - ] 4332 - 4333 - [[package]] 4334 - name = "try-lock" 4335 - version = "0.2.5" 4336 - source = "registry+https://github.com/rust-lang/crates.io-index" 4337 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4338 - 4339 - [[package]] 4340 - name = "trybuild" 4341 - version = "1.0.101" 4342 - source = "registry+https://github.com/rust-lang/crates.io-index" 4343 - checksum = "8dcd332a5496c026f1e14b7f3d2b7bd98e509660c04239c58b0ba38a12daded4" 4344 - dependencies = [ 4345 - "glob", 4346 - "serde", 4347 - "serde_derive", 4348 - "serde_json", 4349 - "target-triple", 4350 - "termcolor", 4351 - "toml", 4352 - ] 4353 - 4354 - [[package]] 4355 - name = "typenum" 4356 - version = "1.17.0" 4357 - source = "registry+https://github.com/rust-lang/crates.io-index" 4358 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 4359 - 4360 - [[package]] 4361 - name = "unicase" 4362 - version = "2.8.0" 4363 - source = "registry+https://github.com/rust-lang/crates.io-index" 4364 - checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" 4365 - 4366 - [[package]] 4367 - name = "unicode-ident" 4368 - version = "1.0.14" 4369 - source = "registry+https://github.com/rust-lang/crates.io-index" 4370 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 4371 - 4372 - [[package]] 4373 - name = "unicode-linebreak" 4374 - version = "0.1.5" 4375 - source = "registry+https://github.com/rust-lang/crates.io-index" 4376 - checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 4377 - 4378 - [[package]] 4379 - name = "unicode-segmentation" 4380 - version = "1.12.0" 4381 - source = "registry+https://github.com/rust-lang/crates.io-index" 4382 - checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 4383 - 4384 - [[package]] 4385 - name = "unicode-width" 4386 - version = "0.1.14" 4387 - source = "registry+https://github.com/rust-lang/crates.io-index" 4388 - checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 4389 - 4390 - [[package]] 4391 - name = "unicode-width" 4392 - version = "0.2.0" 4393 - source = "registry+https://github.com/rust-lang/crates.io-index" 4394 - checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" 4395 - 4396 - [[package]] 4397 - name = "unicode-xid" 4398 - version = "0.2.6" 4399 - source = "registry+https://github.com/rust-lang/crates.io-index" 4400 - checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 4401 - 4402 - [[package]] 4403 - name = "untrusted" 4404 - version = "0.9.0" 4405 - source = "registry+https://github.com/rust-lang/crates.io-index" 4406 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4407 - 4408 - [[package]] 4409 - name = "url" 4410 - version = "2.5.4" 4411 - source = "registry+https://github.com/rust-lang/crates.io-index" 4412 - checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 4413 - dependencies = [ 4414 - "form_urlencoded", 4415 - "idna", 4416 - "percent-encoding", 4417 - "serde", 4418 - ] 4419 - 4420 - [[package]] 4421 - name = "urlencoding" 4422 - version = "2.1.3" 4423 - source = "registry+https://github.com/rust-lang/crates.io-index" 4424 - checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 4425 - 4426 - [[package]] 4427 - name = "utf16_iter" 4428 - version = "1.0.5" 4429 - source = "registry+https://github.com/rust-lang/crates.io-index" 4430 - checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 4431 - 4432 - [[package]] 4433 - name = "utf8_iter" 4434 - version = "1.0.4" 4435 - source = "registry+https://github.com/rust-lang/crates.io-index" 4436 - checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4437 - 4438 - [[package]] 4439 - name = "utf8parse" 4440 - version = "0.2.2" 4441 - source = "registry+https://github.com/rust-lang/crates.io-index" 4442 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 4443 - 4444 - [[package]] 4445 - name = "uuid" 4446 - version = "1.11.0" 4447 - source = "registry+https://github.com/rust-lang/crates.io-index" 4448 - checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" 4449 - dependencies = [ 4450 - "getrandom", 4451 - "rand", 4452 - "serde", 4453 - ] 4454 - 4455 - [[package]] 4456 - name = "value-bag" 4457 - version = "1.10.0" 4458 - source = "registry+https://github.com/rust-lang/crates.io-index" 4459 - checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2" 4460 - 4461 - [[package]] 4462 - name = "vcpkg" 4463 - version = "0.2.15" 4464 - source = "registry+https://github.com/rust-lang/crates.io-index" 4465 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4466 - 4467 - [[package]] 4468 - name = "version_check" 4469 - version = "0.9.5" 4470 - source = "registry+https://github.com/rust-lang/crates.io-index" 4471 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 4472 - 4473 - [[package]] 4474 - name = "wait-timeout" 4475 - version = "0.2.0" 4476 - source = "registry+https://github.com/rust-lang/crates.io-index" 4477 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 4478 - dependencies = [ 4479 - "libc", 4480 - ] 4481 - 4482 - [[package]] 4483 - name = "walkdir" 4484 - version = "2.5.0" 4485 - source = "registry+https://github.com/rust-lang/crates.io-index" 4486 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4487 - dependencies = [ 4488 - "same-file", 4489 - "winapi-util", 4490 - ] 4491 - 4492 - [[package]] 4493 - name = "want" 4494 - version = "0.3.1" 4495 - source = "registry+https://github.com/rust-lang/crates.io-index" 4496 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4497 - dependencies = [ 4498 - "try-lock", 4499 - ] 4500 - 4501 - [[package]] 4502 - name = "warp" 4503 - version = "0.3.6" 4504 - source = "git+https://github.com/seanmonstar/warp.git?rev=7b07043cee0ca24e912155db4e8f6d9ab7c049ed#7b07043cee0ca24e912155db4e8f6d9ab7c049ed" 4505 - dependencies = [ 4506 - "bytes", 4507 - "futures-channel", 4508 - "futures-util", 4509 - "headers", 4510 - "http 0.2.12", 4511 - "hyper 0.14.31", 4512 - "log", 4513 - "mime", 4514 - "mime_guess", 4515 - "percent-encoding", 4516 - "pin-project", 4517 - "rustls-pemfile", 4518 - "scoped-tls", 4519 - "serde", 4520 - "serde_json", 4521 - "serde_urlencoded", 4522 - "tokio", 4523 - "tokio-rustls 0.25.0", 4524 - "tokio-util", 4525 - "tower-service", 4526 - "tracing", 4527 - ] 4528 - 4529 - [[package]] 4530 - name = "wasi" 4531 - version = "0.11.0+wasi-snapshot-preview1" 4532 - source = "registry+https://github.com/rust-lang/crates.io-index" 4533 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4534 - 4535 - [[package]] 4536 - name = "wasite" 4537 - version = "0.1.0" 4538 - source = "registry+https://github.com/rust-lang/crates.io-index" 4539 - checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 4540 - 4541 - [[package]] 4542 - name = "wasm-bindgen" 4543 - version = "0.2.95" 4544 - source = "registry+https://github.com/rust-lang/crates.io-index" 4545 - checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" 4546 - dependencies = [ 4547 - "cfg-if", 4548 - "once_cell", 4549 - "wasm-bindgen-macro", 4550 - ] 4551 - 4552 - [[package]] 4553 - name = "wasm-bindgen-backend" 4554 - version = "0.2.95" 4555 - source = "registry+https://github.com/rust-lang/crates.io-index" 4556 - checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" 4557 - dependencies = [ 4558 - "bumpalo", 4559 - "log", 4560 - "once_cell", 4561 - "proc-macro2", 4562 - "quote", 4563 - "syn 2.0.89", 4564 - "wasm-bindgen-shared", 4565 - ] 4566 - 4567 - [[package]] 4568 - name = "wasm-bindgen-futures" 4569 - version = "0.4.45" 4570 - source = "registry+https://github.com/rust-lang/crates.io-index" 4571 - checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" 4572 - dependencies = [ 4573 - "cfg-if", 4574 - "js-sys", 4575 - "wasm-bindgen", 4576 - "web-sys", 4577 - ] 4578 - 4579 - [[package]] 4580 - name = "wasm-bindgen-macro" 4581 - version = "0.2.95" 4582 - source = "registry+https://github.com/rust-lang/crates.io-index" 4583 - checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" 4584 - dependencies = [ 4585 - "quote", 4586 - "wasm-bindgen-macro-support", 4587 - ] 4588 - 4589 - [[package]] 4590 - name = "wasm-bindgen-macro-support" 4591 - version = "0.2.95" 4592 - source = "registry+https://github.com/rust-lang/crates.io-index" 4593 - checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" 4594 - dependencies = [ 4595 - "proc-macro2", 4596 - "quote", 4597 - "syn 2.0.89", 4598 - "wasm-bindgen-backend", 4599 - "wasm-bindgen-shared", 4600 - ] 4601 - 4602 - [[package]] 4603 - name = "wasm-bindgen-shared" 4604 - version = "0.2.95" 4605 - source = "registry+https://github.com/rust-lang/crates.io-index" 4606 - checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" 4607 - 4608 - [[package]] 4609 - name = "wasm-timer" 4610 - version = "0.2.5" 4611 - source = "registry+https://github.com/rust-lang/crates.io-index" 4612 - checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" 4613 - dependencies = [ 4614 - "futures", 4615 - "js-sys", 4616 - "parking_lot 0.11.2", 4617 - "pin-utils", 4618 - "wasm-bindgen", 4619 - "wasm-bindgen-futures", 4620 - "web-sys", 4621 - ] 4622 - 4623 - [[package]] 4624 - name = "wchar" 4625 - version = "0.6.1" 4626 - source = "registry+https://github.com/rust-lang/crates.io-index" 4627 - checksum = "c74d010bf16569f942b0b7d3c777dd674f8ee539b48d809dc548b3453039c2df" 4628 - dependencies = [ 4629 - "proc-macro-hack", 4630 - "wchar-impl", 4631 - ] 4632 - 4633 - [[package]] 4634 - name = "wchar-impl" 4635 - version = "0.6.0" 4636 - source = "registry+https://github.com/rust-lang/crates.io-index" 4637 - checksum = "f135922b9303f899bfa446fce1eb149f43462f1e9ac7f50e24ea6b913416dd84" 4638 - dependencies = [ 4639 - "proc-macro-hack", 4640 - "proc-macro2", 4641 - "quote", 4642 - "syn 1.0.109", 4643 - ] 4644 - 4645 - [[package]] 4646 - name = "web-sys" 4647 - version = "0.3.72" 4648 - source = "registry+https://github.com/rust-lang/crates.io-index" 4649 - checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" 4650 - dependencies = [ 4651 - "js-sys", 4652 - "wasm-bindgen", 4653 - ] 4654 - 4655 - [[package]] 4656 - name = "web-time" 4657 - version = "1.1.0" 4658 - source = "registry+https://github.com/rust-lang/crates.io-index" 4659 - checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 4660 - dependencies = [ 4661 - "js-sys", 4662 - "wasm-bindgen", 4663 - ] 4664 - 4665 - [[package]] 4666 - name = "webpki" 4667 - version = "0.22.4" 4668 - source = "registry+https://github.com/rust-lang/crates.io-index" 4669 - checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 4670 - dependencies = [ 4671 - "ring", 4672 - "untrusted", 4673 - ] 4674 - 4675 - [[package]] 4676 - name = "webpki-roots" 4677 - version = "0.26.7" 4678 - source = "registry+https://github.com/rust-lang/crates.io-index" 4679 - checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" 4680 - dependencies = [ 4681 - "rustls-pki-types", 4682 - ] 4683 - 4684 - [[package]] 4685 - name = "which" 4686 - version = "6.0.3" 4687 - source = "registry+https://github.com/rust-lang/crates.io-index" 4688 - checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" 4689 - dependencies = [ 4690 - "either", 4691 - "home", 4692 - "rustix", 4693 - "winsafe", 4694 - ] 4695 - 4696 - [[package]] 4697 - name = "whoami" 4698 - version = "1.5.2" 4699 - source = "registry+https://github.com/rust-lang/crates.io-index" 4700 - checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" 4701 - dependencies = [ 4702 - "redox_syscall 0.5.7", 4703 - "wasite", 4704 - "web-sys", 4705 - ] 4706 - 4707 - [[package]] 4708 - name = "winapi" 4709 - version = "0.3.9" 4710 - source = "registry+https://github.com/rust-lang/crates.io-index" 4711 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4712 - dependencies = [ 4713 - "winapi-i686-pc-windows-gnu", 4714 - "winapi-x86_64-pc-windows-gnu", 4715 - ] 4716 - 4717 - [[package]] 4718 - name = "winapi-i686-pc-windows-gnu" 4719 - version = "0.4.0" 4720 - source = "registry+https://github.com/rust-lang/crates.io-index" 4721 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4722 - 4723 - [[package]] 4724 - name = "winapi-util" 4725 - version = "0.1.9" 4726 - source = "registry+https://github.com/rust-lang/crates.io-index" 4727 - checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 4728 - dependencies = [ 4729 - "windows-sys 0.59.0", 4730 - ] 4731 - 4732 - [[package]] 4733 - name = "winapi-x86_64-pc-windows-gnu" 4734 - version = "0.4.0" 4735 - source = "registry+https://github.com/rust-lang/crates.io-index" 4736 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4737 - 4738 - [[package]] 4739 - name = "windows-registry" 4740 - version = "0.2.0" 4741 - source = "registry+https://github.com/rust-lang/crates.io-index" 4742 - checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 4743 - dependencies = [ 4744 - "windows-result", 4745 - "windows-strings", 4746 - "windows-targets 0.52.6", 4747 - ] 4748 - 4749 - [[package]] 4750 - name = "windows-result" 4751 - version = "0.2.0" 4752 - source = "registry+https://github.com/rust-lang/crates.io-index" 4753 - checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 4754 - dependencies = [ 4755 - "windows-targets 0.52.6", 4756 - ] 4757 - 4758 - [[package]] 4759 - name = "windows-strings" 4760 - version = "0.1.0" 4761 - source = "registry+https://github.com/rust-lang/crates.io-index" 4762 - checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 4763 - dependencies = [ 4764 - "windows-result", 4765 - "windows-targets 0.52.6", 4766 - ] 4767 - 4768 - [[package]] 4769 - name = "windows-sys" 4770 - version = "0.45.0" 4771 - source = "registry+https://github.com/rust-lang/crates.io-index" 4772 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4773 - dependencies = [ 4774 - "windows-targets 0.42.2", 4775 - ] 4776 - 4777 - [[package]] 4778 - name = "windows-sys" 4779 - version = "0.48.0" 4780 - source = "registry+https://github.com/rust-lang/crates.io-index" 4781 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4782 - dependencies = [ 4783 - "windows-targets 0.48.5", 4784 - ] 4785 - 4786 - [[package]] 4787 - name = "windows-sys" 4788 - version = "0.52.0" 4789 - source = "registry+https://github.com/rust-lang/crates.io-index" 4790 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4791 - dependencies = [ 4792 - "windows-targets 0.52.6", 4793 - ] 4794 - 4795 - [[package]] 4796 - name = "windows-sys" 4797 - version = "0.59.0" 4798 - source = "registry+https://github.com/rust-lang/crates.io-index" 4799 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 4800 - dependencies = [ 4801 - "windows-targets 0.52.6", 4802 - ] 4803 - 4804 - [[package]] 4805 - name = "windows-targets" 4806 - version = "0.42.2" 4807 - source = "registry+https://github.com/rust-lang/crates.io-index" 4808 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4809 - dependencies = [ 4810 - "windows_aarch64_gnullvm 0.42.2", 4811 - "windows_aarch64_msvc 0.42.2", 4812 - "windows_i686_gnu 0.42.2", 4813 - "windows_i686_msvc 0.42.2", 4814 - "windows_x86_64_gnu 0.42.2", 4815 - "windows_x86_64_gnullvm 0.42.2", 4816 - "windows_x86_64_msvc 0.42.2", 4817 - ] 4818 - 4819 - [[package]] 4820 - name = "windows-targets" 4821 - version = "0.48.5" 4822 - source = "registry+https://github.com/rust-lang/crates.io-index" 4823 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4824 - dependencies = [ 4825 - "windows_aarch64_gnullvm 0.48.5", 4826 - "windows_aarch64_msvc 0.48.5", 4827 - "windows_i686_gnu 0.48.5", 4828 - "windows_i686_msvc 0.48.5", 4829 - "windows_x86_64_gnu 0.48.5", 4830 - "windows_x86_64_gnullvm 0.48.5", 4831 - "windows_x86_64_msvc 0.48.5", 4832 - ] 4833 - 4834 - [[package]] 4835 - name = "windows-targets" 4836 - version = "0.52.6" 4837 - source = "registry+https://github.com/rust-lang/crates.io-index" 4838 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4839 - dependencies = [ 4840 - "windows_aarch64_gnullvm 0.52.6", 4841 - "windows_aarch64_msvc 0.52.6", 4842 - "windows_i686_gnu 0.52.6", 4843 - "windows_i686_gnullvm", 4844 - "windows_i686_msvc 0.52.6", 4845 - "windows_x86_64_gnu 0.52.6", 4846 - "windows_x86_64_gnullvm 0.52.6", 4847 - "windows_x86_64_msvc 0.52.6", 4848 - ] 4849 - 4850 - [[package]] 4851 - name = "windows_aarch64_gnullvm" 4852 - version = "0.42.2" 4853 - source = "registry+https://github.com/rust-lang/crates.io-index" 4854 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4855 - 4856 - [[package]] 4857 - name = "windows_aarch64_gnullvm" 4858 - version = "0.48.5" 4859 - source = "registry+https://github.com/rust-lang/crates.io-index" 4860 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4861 - 4862 - [[package]] 4863 - name = "windows_aarch64_gnullvm" 4864 - version = "0.52.6" 4865 - source = "registry+https://github.com/rust-lang/crates.io-index" 4866 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4867 - 4868 - [[package]] 4869 - name = "windows_aarch64_msvc" 4870 - version = "0.42.2" 4871 - source = "registry+https://github.com/rust-lang/crates.io-index" 4872 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4873 - 4874 - [[package]] 4875 - name = "windows_aarch64_msvc" 4876 - version = "0.48.5" 4877 - source = "registry+https://github.com/rust-lang/crates.io-index" 4878 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4879 - 4880 - [[package]] 4881 - name = "windows_aarch64_msvc" 4882 - version = "0.52.6" 4883 - source = "registry+https://github.com/rust-lang/crates.io-index" 4884 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4885 - 4886 - [[package]] 4887 - name = "windows_i686_gnu" 4888 - version = "0.42.2" 4889 - source = "registry+https://github.com/rust-lang/crates.io-index" 4890 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4891 - 4892 - [[package]] 4893 - name = "windows_i686_gnu" 4894 - version = "0.48.5" 4895 - source = "registry+https://github.com/rust-lang/crates.io-index" 4896 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4897 - 4898 - [[package]] 4899 - name = "windows_i686_gnu" 4900 - version = "0.52.6" 4901 - source = "registry+https://github.com/rust-lang/crates.io-index" 4902 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4903 - 4904 - [[package]] 4905 - name = "windows_i686_gnullvm" 4906 - version = "0.52.6" 4907 - source = "registry+https://github.com/rust-lang/crates.io-index" 4908 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4909 - 4910 - [[package]] 4911 - name = "windows_i686_msvc" 4912 - version = "0.42.2" 4913 - source = "registry+https://github.com/rust-lang/crates.io-index" 4914 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4915 - 4916 - [[package]] 4917 - name = "windows_i686_msvc" 4918 - version = "0.48.5" 4919 - source = "registry+https://github.com/rust-lang/crates.io-index" 4920 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4921 - 4922 - [[package]] 4923 - name = "windows_i686_msvc" 4924 - version = "0.52.6" 4925 - source = "registry+https://github.com/rust-lang/crates.io-index" 4926 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4927 - 4928 - [[package]] 4929 - name = "windows_x86_64_gnu" 4930 - version = "0.42.2" 4931 - source = "registry+https://github.com/rust-lang/crates.io-index" 4932 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 4933 - 4934 - [[package]] 4935 - name = "windows_x86_64_gnu" 4936 - version = "0.48.5" 4937 - source = "registry+https://github.com/rust-lang/crates.io-index" 4938 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4939 - 4940 - [[package]] 4941 - name = "windows_x86_64_gnu" 4942 - version = "0.52.6" 4943 - source = "registry+https://github.com/rust-lang/crates.io-index" 4944 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4945 - 4946 - [[package]] 4947 - name = "windows_x86_64_gnullvm" 4948 - version = "0.42.2" 4949 - source = "registry+https://github.com/rust-lang/crates.io-index" 4950 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 4951 - 4952 - [[package]] 4953 - name = "windows_x86_64_gnullvm" 4954 - version = "0.48.5" 4955 - source = "registry+https://github.com/rust-lang/crates.io-index" 4956 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4957 - 4958 - [[package]] 4959 - name = "windows_x86_64_gnullvm" 4960 - version = "0.52.6" 4961 - source = "registry+https://github.com/rust-lang/crates.io-index" 4962 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4963 - 4964 - [[package]] 4965 - name = "windows_x86_64_msvc" 4966 - version = "0.42.2" 4967 - source = "registry+https://github.com/rust-lang/crates.io-index" 4968 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4969 - 4970 - [[package]] 4971 - name = "windows_x86_64_msvc" 4972 - version = "0.48.5" 4973 - source = "registry+https://github.com/rust-lang/crates.io-index" 4974 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4975 - 4976 - [[package]] 4977 - name = "windows_x86_64_msvc" 4978 - version = "0.52.6" 4979 - source = "registry+https://github.com/rust-lang/crates.io-index" 4980 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4981 - 4982 - [[package]] 4983 - name = "winnow" 4984 - version = "0.6.20" 4985 - source = "registry+https://github.com/rust-lang/crates.io-index" 4986 - checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 4987 - dependencies = [ 4988 - "memchr", 4989 - ] 4990 - 4991 - [[package]] 4992 - name = "winreg" 4993 - version = "0.52.0" 4994 - source = "registry+https://github.com/rust-lang/crates.io-index" 4995 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 4996 - dependencies = [ 4997 - "cfg-if", 4998 - "windows-sys 0.48.0", 4999 - ] 5000 - 5001 - [[package]] 5002 - name = "winsafe" 5003 - version = "0.0.19" 5004 - source = "registry+https://github.com/rust-lang/crates.io-index" 5005 - checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" 5006 - 5007 - [[package]] 5008 - name = "write16" 5009 - version = "1.0.0" 5010 - source = "registry+https://github.com/rust-lang/crates.io-index" 5011 - checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 5012 - 5013 - [[package]] 5014 - name = "writeable" 5015 - version = "0.5.5" 5016 - source = "registry+https://github.com/rust-lang/crates.io-index" 5017 - checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 5018 - 5019 - [[package]] 5020 - name = "wslapi" 5021 - version = "0.1.3" 5022 - source = "registry+https://github.com/rust-lang/crates.io-index" 5023 - checksum = "afc9c51137636a37c388bb01765a0eae1362915d82a5e238e1a356c400f9f619" 5024 - dependencies = [ 5025 - "minidl", 5026 - "wchar", 5027 - "winapi", 5028 - ] 5029 - 5030 - [[package]] 5031 - name = "wyz" 5032 - version = "0.5.1" 5033 - source = "registry+https://github.com/rust-lang/crates.io-index" 5034 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 5035 - dependencies = [ 5036 - "tap", 5037 - ] 5038 - 5039 - [[package]] 5040 - name = "xattr" 5041 - version = "1.3.1" 5042 - source = "registry+https://github.com/rust-lang/crates.io-index" 5043 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 5044 - dependencies = [ 5045 - "libc", 5046 - "linux-raw-sys", 5047 - "rustix", 5048 - ] 5049 - 5050 - [[package]] 5051 - name = "yansi" 5052 - version = "1.0.1" 5053 - source = "registry+https://github.com/rust-lang/crates.io-index" 5054 - checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 5055 - 5056 - [[package]] 5057 - name = "yoke" 5058 - version = "0.7.5" 5059 - source = "registry+https://github.com/rust-lang/crates.io-index" 5060 - checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 5061 - dependencies = [ 5062 - "serde", 5063 - "stable_deref_trait", 5064 - "yoke-derive", 5065 - "zerofrom", 5066 - ] 5067 - 5068 - [[package]] 5069 - name = "yoke-derive" 5070 - version = "0.7.5" 5071 - source = "registry+https://github.com/rust-lang/crates.io-index" 5072 - checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 5073 - dependencies = [ 5074 - "proc-macro2", 5075 - "quote", 5076 - "syn 2.0.89", 5077 - "synstructure", 5078 - ] 5079 - 5080 - [[package]] 5081 - name = "zerocopy" 5082 - version = "0.7.35" 5083 - source = "registry+https://github.com/rust-lang/crates.io-index" 5084 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 5085 - dependencies = [ 5086 - "byteorder", 5087 - "zerocopy-derive", 5088 - ] 5089 - 5090 - [[package]] 5091 - name = "zerocopy-derive" 5092 - version = "0.7.35" 5093 - source = "registry+https://github.com/rust-lang/crates.io-index" 5094 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 5095 - dependencies = [ 5096 - "proc-macro2", 5097 - "quote", 5098 - "syn 2.0.89", 5099 - ] 5100 - 5101 - [[package]] 5102 - name = "zerofrom" 5103 - version = "0.1.5" 5104 - source = "registry+https://github.com/rust-lang/crates.io-index" 5105 - checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 5106 - dependencies = [ 5107 - "zerofrom-derive", 5108 - ] 5109 - 5110 - [[package]] 5111 - name = "zerofrom-derive" 5112 - version = "0.1.5" 5113 - source = "registry+https://github.com/rust-lang/crates.io-index" 5114 - checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 5115 - dependencies = [ 5116 - "proc-macro2", 5117 - "quote", 5118 - "syn 2.0.89", 5119 - "synstructure", 5120 - ] 5121 - 5122 - [[package]] 5123 - name = "zeroize" 5124 - version = "1.8.1" 5125 - source = "registry+https://github.com/rust-lang/crates.io-index" 5126 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 5127 - dependencies = [ 5128 - "zeroize_derive", 5129 - ] 5130 - 5131 - [[package]] 5132 - name = "zeroize_derive" 5133 - version = "1.4.2" 5134 - source = "registry+https://github.com/rust-lang/crates.io-index" 5135 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 5136 - dependencies = [ 5137 - "proc-macro2", 5138 - "quote", 5139 - "syn 2.0.89", 5140 - ] 5141 - 5142 - [[package]] 5143 - name = "zerovec" 5144 - version = "0.10.4" 5145 - source = "registry+https://github.com/rust-lang/crates.io-index" 5146 - checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 5147 - dependencies = [ 5148 - "yoke", 5149 - "zerofrom", 5150 - "zerovec-derive", 5151 - ] 5152 - 5153 - [[package]] 5154 - name = "zerovec-derive" 5155 - version = "0.10.3" 5156 - source = "registry+https://github.com/rust-lang/crates.io-index" 5157 - checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 5158 - dependencies = [ 5159 - "proc-macro2", 5160 - "quote", 5161 - "syn 2.0.89", 5162 - ] 5163 - 5164 - [[package]] 5165 - name = "zip" 5166 - version = "2.2.1" 5167 - source = "registry+https://github.com/rust-lang/crates.io-index" 5168 - checksum = "99d52293fc86ea7cf13971b3bb81eb21683636e7ae24c729cdaf1b7c4157a352" 5169 - dependencies = [ 5170 - "aes", 5171 - "arbitrary", 5172 - "bzip2", 5173 - "constant_time_eq", 5174 - "crc32fast", 5175 - "crossbeam-utils", 5176 - "deflate64", 5177 - "displaydoc", 5178 - "flate2", 5179 - "hmac", 5180 - "indexmap", 5181 - "lzma-rs", 5182 - "memchr", 5183 - "pbkdf2", 5184 - "rand", 5185 - "sha1", 5186 - "thiserror 2.0.3", 5187 - "time", 5188 - "zeroize", 5189 - "zopfli", 5190 - "zstd", 5191 - ] 5192 - 5193 - [[package]] 5194 - name = "zopfli" 5195 - version = "0.8.1" 5196 - source = "registry+https://github.com/rust-lang/crates.io-index" 5197 - checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 5198 - dependencies = [ 5199 - "bumpalo", 5200 - "crc32fast", 5201 - "lockfree-object-pool", 5202 - "log", 5203 - "once_cell", 5204 - "simd-adler32", 5205 - ] 5206 - 5207 - [[package]] 5208 - name = "zstd" 5209 - version = "0.13.2" 5210 - source = "registry+https://github.com/rust-lang/crates.io-index" 5211 - checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 5212 - dependencies = [ 5213 - "zstd-safe", 5214 - ] 5215 - 5216 - [[package]] 5217 - name = "zstd-safe" 5218 - version = "7.2.1" 5219 - source = "registry+https://github.com/rust-lang/crates.io-index" 5220 - checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" 5221 - dependencies = [ 5222 - "zstd-sys", 5223 - ] 5224 - 5225 - [[package]] 5226 - name = "zstd-sys" 5227 - version = "2.0.13+zstd.1.5.6" 5228 - source = "registry+https://github.com/rust-lang/crates.io-index" 5229 - checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" 5230 - dependencies = [ 5231 - "cc", 5232 - "pkg-config", 5233 - ]
+5 -13
pkgs/tools/networking/edgedb/default.nix
··· 16 16 }: 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "edgedb"; 19 - version = "6.0.0"; 19 + version = "6.0.2"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "edgedb"; 23 23 repo = "edgedb-cli"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-GBtqAHmXHgsWRXelOQ9i3R0VL8OqcASfpWU/EJaimNo="; 25 + hash = "sha256-P55LwByDVO3pEzg4OZldXiyli8s5oHvV8MXCDwkF2+8="; 26 26 fetchSubmodules = true; 27 27 }; 28 28 29 - cargoLock = { 30 - lockFile = ./Cargo.lock; 31 - outputHashes = { 32 - "edgedb-derive-0.5.2" = "sha256-r1KWnIbX/TV2ZK/WXtYaNsGOqxMeykD1bgFyA992FGE="; 33 - "edgeql-parser-0.1.0" = "sha256-qyY8mvZhLgQJgT7ZtxkyhpQMCLPGAIzw/E64rMiOAkw="; 34 - "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 35 - "scram-0.7.0" = "sha256-QTPxyXBpMXCDkRRJEMYly1GKp90khrwwuMI1eHc2H+Y="; 36 - "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 37 - "test-utils-0.1.0" = "sha256-u29t7o+iBw3ja0LdbsQVntQMm5j4a2pDIyDfAvDGHiI="; 38 - "warp-0.3.6" = "sha256-knDt2aw/PJ0iabhKg+okwwnEzCY+vQVhE7HKCTM6QbE="; 39 - }; 29 + cargoDeps = rustPlatform.fetchCargoVendor { 30 + inherit pname version src; 31 + hash = "sha256-oRtgORzp0tabPcyArPgG8LGfYlSPhpaeRPT9QWF5BGs="; 40 32 }; 41 33 42 34 nativeBuildInputs = [
+7
pkgs/tools/package-management/akku/overrides.nix
··· 49 49 (pkg: old: removeAttrs old [ "unpackPhase" ]) 50 50 ]; 51 51 52 + machine-code = pkg: old: { 53 + # fails on hydra with 'Log limit exceeded' 54 + postPatch = '' 55 + rm tests/all-a64.sps 56 + ''; 57 + }; 58 + 52 59 # circular dependency on wak-trc-testing !? 53 60 wak-foof-loop = skipTests; 54 61
+6 -6
pkgs/top-level/perl-packages.nix
··· 8636 8636 url = "mirror://cpan/authors/id/M/MV/MVZ/Email-Outlook-Message-0.921.tar.gz"; 8637 8637 hash = "sha256-+0q+6hTNpRweYLwhHPlSG7uq50uEEYym1Y8KciNoA4g="; 8638 8638 }; 8639 - propagatedBuildInputs = [ EmailMIME EmailSender IOAll IOString OLEStorage_Lite ]; 8640 - preCheck = "rm t/internals.t t/plain_jpeg_attached.t"; # these tests expect EmailMIME version 1.946 and fail with 1.949 (the output difference in benign) 8639 + propagatedBuildInputs = [ EmailAddress EmailMIME EmailSender IOAll IOString OLEStorage_Lite ]; 8641 8640 meta = { 8642 8641 homepage = "https://www.matijs.net/software/msgconv/"; 8643 8642 description = ".MSG to mbox converter"; ··· 18606 18607 18607 18608 NetAsyncWebSocket = buildPerlModule { 18608 18609 pname = "Net-Async-WebSocket"; 18609 - version = "0.13"; 18610 + version = "0.14"; 18610 18611 src = fetchurl { 18611 - url = "mirror://cpan/authors/id/P/PE/PEVANS/Net-Async-WebSocket-0.13.tar.gz"; 18612 - hash = "sha256-DayDQtPHii/syr1GZxRd1a3U+4zRjRVtKXoead/hFgA="; 18612 + url = "mirror://cpan/authors/id/P/PE/PEVANS/Net-Async-WebSocket-0.14.tar.gz"; 18613 + hash = "sha256-DuagrDLXM/3w4jlMl2DNRWO6zSi2qOH6TmPGcf93yCc="; 18613 18614 }; 18614 - propagatedBuildInputs = [ IOAsync ProtocolWebSocket URI ]; 18615 + buildInputs = [ Test2Suite ]; 18616 + propagatedBuildInputs = [ IOAsync ProtocolWebSocket URI URIws meta ]; 18615 18617 preCheck = lib.optionalString stdenv.hostPlatform.isDarwin '' 18616 18618 # network tests fail on Darwin/sandbox, so disable these 18617 18619 rm -f t/02server.t t/03cross.t
+4
pkgs/top-level/python-packages.nix
··· 459 459 460 460 aiotankerkoenig = callPackage ../development/python-modules/aiotankerkoenig { }; 461 461 462 + aiotarfile = callPackage ../development/python-modules/aiotarfile { }; 463 + 462 464 aiotractive = callPackage ../development/python-modules/aiotractive { }; 463 465 464 466 aiounifi = callPackage ../development/python-modules/aiounifi { }; ··· 741 739 apsystems-ez1 = callPackage ../development/python-modules/apsystems-ez1 { }; 742 740 743 741 apsw = callPackage ../development/python-modules/apsw { }; 742 + 743 + apt-repo = callPackage ../development/python-modules/apt-repo { }; 744 744 745 745 apycula = callPackage ../development/python-modules/apycula { }; 746 746