diff --git a/ci/OWNERS b/ci/OWNERS index 65983ab9938d..bf76b2bdf1fd 100644 --- a/ci/OWNERS +++ b/ci/OWNERS @@ -263,15 +263,15 @@ pkgs/development/python-modules/buildcatrust/ @ajs124 @lukegb @mweinelt /lib/licenses @alyssais @emilazy @jopejoe1 # Qt -/pkgs/development/libraries/qt-5 @K900 @NickCao @SuperSandro2000 -/pkgs/development/libraries/qt-6 @K900 @NickCao @SuperSandro2000 +/pkgs/development/libraries/qt-5 @NixOS/qt-kde +/pkgs/development/libraries/qt-6 @NixOS/qt-kde # KDE Frameworks 5 -/pkgs/development/libraries/kde-frameworks @K900 @NickCao @SuperSandro2000 +/pkgs/development/libraries/kde-frameworks @NixOS/qt-kde # KDE / Plasma 6 -/pkgs/kde @K900 @NickCao @SuperSandro2000 -/maintainers/scripts/kde @K900 @NickCao @SuperSandro2000 +/pkgs/kde @NixOS/qt-kde +/maintainers/scripts/kde @NixOS/qt-kde # PostgreSQL and related stuff /pkgs/by-name/po/postgresqlTestHook @NixOS/postgres diff --git a/nixos/modules/services/networking/tinydns.nix b/nixos/modules/services/networking/tinydns.nix index 145357b828b1..709f751ee825 100644 --- a/nixos/modules/services/networking/tinydns.nix +++ b/nixos/modules/services/networking/tinydns.nix @@ -58,10 +58,11 @@ with lib; ln -sf ${pkgs.writeText "tinydns-data" config.services.tinydns.data} data tinydns-data ''; - script = '' - cd /var/lib/tinydns - exec ./run - ''; + serviceConfig = { + StateDirectory = "tinydns"; + WorkingDirectory = "/var/lib/tinydns"; + ExecStart = "/var/lib/tinydns/run"; + }; }; }; } diff --git a/nixos/modules/services/networking/toxvpn.nix b/nixos/modules/services/networking/toxvpn.nix index 112c86187666..4688e410cee4 100644 --- a/nixos/modules/services/networking/toxvpn.nix +++ b/nixos/modules/services/networking/toxvpn.nix @@ -43,20 +43,19 @@ with lib; wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; - preStart = '' - mkdir -p /run/toxvpn || true - chown toxvpn /run/toxvpn - ''; - - path = [ pkgs.toxvpn ]; - - script = '' - exec toxvpn -i ${config.services.toxvpn.localip} -l /run/toxvpn/control -u toxvpn -p ${toString config.services.toxvpn.port} ${ - lib.concatMapStringsSep " " (x: "-a ${x}") config.services.toxvpn.auto_add_peers - } - ''; - serviceConfig = { + ExecStart = + let + args = lib.cli.toCommandLineShellGNU { } { + i = config.services.toxvpn.localip; + l = "/run/toxvpn/control"; + u = "toxvpn"; + p = config.services.toxvpn.port; + a = config.services.toxvpn.auto_add_peers; + }; + in + "${lib.getExe pkgs.toxvpn} ${args}"; + RuntimeDirectory = "toxvpn"; KillMode = "process"; Restart = "on-success"; Type = "notify"; diff --git a/nixos/modules/services/networking/twingate.nix b/nixos/modules/services/networking/twingate.nix index 4e9edf6bb23d..14baae06bc89 100644 --- a/nixos/modules/services/networking/twingate.nix +++ b/nixos/modules/services/networking/twingate.nix @@ -17,7 +17,7 @@ in config = lib.mkIf cfg.enable { systemd.packages = [ cfg.package ]; systemd.services.twingate = { - preStart = "cp -r --update=none ${cfg.package}/etc/twingate/. /etc/twingate/"; + serviceConfig.ExecStartPre = "${lib.getExe' pkgs.coreutils "cp"} -r --update=none ${cfg.package}/etc/twingate/. /etc/twingate/"; wantedBy = [ "multi-user.target" ]; }; diff --git a/nixos/modules/services/networking/xinetd.nix b/nixos/modules/services/networking/xinetd.nix index d33b4d97519b..f1be424e075a 100644 --- a/nixos/modules/services/networking/xinetd.nix +++ b/nixos/modules/services/networking/xinetd.nix @@ -143,8 +143,7 @@ in description = "xinetd server"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - path = [ pkgs.xinetd ]; - script = "exec xinetd -syslog daemon -dontfork -stayalive -f ${configFile}"; + serviceConfig.ExecStart = "${lib.getExe pkgs.xinetd} -syslog daemon -dontfork -stayalive -f ${configFile}"; }; }; } diff --git a/nixos/modules/services/networking/xray.nix b/nixos/modules/services/networking/xray.nix index 1d0d514d2e48..8b55b24b008e 100644 --- a/nixos/modules/services/networking/xray.nix +++ b/nixos/modules/services/networking/xray.nix @@ -93,10 +93,8 @@ with lib; description = "xray Daemon"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - script = '' - exec "${cfg.package}/bin/xray" -config "$CREDENTIALS_DIRECTORY/config.json" - ''; serviceConfig = { + ExecStart = "${cfg.package}/bin/xray -config \"\${CREDENTIALS_DIRECTORY}\"/config.json"; DynamicUser = true; LoadCredential = "config.json:${settingsFile}"; CapabilityBoundingSet = "CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; diff --git a/nixos/modules/services/networking/zerobin.nix b/nixos/modules/services/networking/zerobin.nix index 96cf4cc7148d..0673070d1ee6 100644 --- a/nixos/modules/services/networking/zerobin.nix +++ b/nixos/modules/services/networking/zerobin.nix @@ -91,14 +91,14 @@ in enable = true; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; + serviceConfig.ExecStartPre = [ + "${lib.getExe' pkgs.coreutils "mkdir"} -p ${cfg.dataDir}" + "${lib.getExe' pkgs.coreutils "chown"} ${cfg.user} ${cfg.dataDir}" + ]; serviceConfig.ExecStart = "${pkgs.zerobin}/bin/zerobin ${cfg.listenAddress} ${toString cfg.listenPort} false ${cfg.user} ${cfg.group} ${zerobin_config}"; serviceConfig.PrivateTmp = "yes"; serviceConfig.User = cfg.user; serviceConfig.Group = cfg.group; - preStart = '' - mkdir -p ${cfg.dataDir} - chown ${cfg.user} ${cfg.dataDir} - ''; }; }; } diff --git a/nixos/modules/services/security/authelia.nix b/nixos/modules/services/security/authelia.nix index 0632b7a21c9b..d669d986c710 100644 --- a/nixos/modules/services/security/authelia.nix +++ b/nixos/modules/services/security/authelia.nix @@ -389,10 +389,10 @@ in // lib.mapAttrs (_: v: "%d/${v}") nonNullEnvSecretsMap // instance.environmentVariables; - preStart = "${execCommand} ${configArg} validate-config"; serviceConfig = { User = instance.user; Group = instance.group; + ExecStartPre = "${execCommand} ${configArg} validate-config"; ExecStart = "${execCommand} ${configArg}"; Restart = "always"; RestartSec = "5s"; diff --git a/nixos/modules/services/security/certmgr.nix b/nixos/modules/services/security/certmgr.nix index 6a744e572101..a2e00ca35a82 100644 --- a/nixos/modules/services/security/certmgr.nix +++ b/nixos/modules/services/security/certmgr.nix @@ -34,11 +34,6 @@ let [ spec ] ) (lib.attrValues cfg.specs) ); - - preStart = '' - ${lib.concatStringsSep " \\\n" ([ "mkdir -p" ] ++ map lib.escapeShellArg specPaths)} - ${cfg.package}/bin/certmgr -f ${certmgrYaml} check - ''; in { options.services.certmgr = { @@ -215,11 +210,14 @@ in wants = [ "network-online.target" ]; after = [ "network-online.target" ]; wantedBy = [ "multi-user.target" ]; - inherit preStart; serviceConfig = { Restart = "always"; RestartSec = "10s"; + ExecStartPre = [ + "${lib.getExe' pkgs.coreutils "mkdir"} -p ${lib.escapeShellArgs specPaths}" + "${lib.getExe cfg.package} -f ${certmgrYaml} check" + ]; ExecStart = "${cfg.package}/bin/certmgr -f ${certmgrYaml}"; }; }; diff --git a/nixos/modules/services/security/hologram-agent.nix b/nixos/modules/services/security/hologram-agent.nix index 21bedc4fabd2..6152a57ffb8c 100644 --- a/nixos/modules/services/security/hologram-agent.nix +++ b/nixos/modules/services/security/hologram-agent.nix @@ -55,10 +55,8 @@ in "network-link-dummy0.service" "network-addresses-dummy0.service" ]; - preStart = '' - /run/current-system/sw/bin/rm -fv /run/hologram.sock - ''; serviceConfig = { + ExecStartPre = "/run/current-system/sw/bin/rm -fv /run/hologram.sock"; ExecStart = "${pkgs.hologram}/bin/hologram-agent -debug -conf ${cfgFile} -port ${cfg.httpPort}"; }; }; diff --git a/nixos/modules/services/web-apps/bluemap.nix b/nixos/modules/services/web-apps/bluemap.nix index 5829b7c3e0dd..bd01d6470186 100644 --- a/nixos/modules/services/web-apps/bluemap.nix +++ b/nixos/modules/services/web-apps/bluemap.nix @@ -298,10 +298,8 @@ in Type = "oneshot"; Group = "nginx"; UMask = "026"; + ExecStart = "${lib.getExe pkgs.bluemap} -c ${configFolder} -gs -r"; }; - script = '' - ${lib.getExe pkgs.bluemap} -c ${configFolder} -gs -r - ''; }; systemd.timers."render-bluemap-maps" = lib.mkIf cfg.enableRender { diff --git a/nixos/modules/services/web-apps/cloudlog.nix b/nixos/modules/services/web-apps/cloudlog.nix index 8b750aaacfc5..bf8e0dba60fd 100644 --- a/nixos/modules/services/web-apps/cloudlog.nix +++ b/nixos/modules/services/web-apps/cloudlog.nix @@ -380,37 +380,44 @@ in cloudlog-upload-lotw = { description = "Upload QSOs to LoTW if certs have been provided"; enable = cfg.upload-lotw.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/lotw/lotw_upload"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/lotw/lotw_upload"; + serviceConfig.Type = "oneshot"; }; cloudlog-update-lotw-users = { description = "Update LOTW Users Database"; enable = cfg.update-lotw-users.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/lotw/load_users"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/lotw/load_users"; + serviceConfig.Type = "oneshot"; }; cloudlog-update-dok = { description = "Update DOK File for autocomplete"; enable = cfg.update-dok.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/update/update_dok"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/update/update_dok"; + serviceConfig.Type = "oneshot"; }; cloudlog-update-clublog-scp = { description = "Update Clublog SCP Database File"; enable = cfg.update-clublog-scp.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/update/update_clublog_scp"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/update/update_clublog_scp"; + serviceConfig.Type = "oneshot"; }; cloudlog-update-wwff = { description = "Update WWFF File for autocomplete"; enable = cfg.update-wwff.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/update/update_wwff"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/update/update_wwff"; + serviceConfig.Type = "oneshot"; }; cloudlog-upload-qrz = { description = "Upload QSOs to QRZ Logbook"; enable = cfg.upload-qrz.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/qrz/upload"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/qrz/upload"; + serviceConfig.Type = "oneshot"; }; cloudlog-update-sota = { description = "Update SOTA File for autocomplete"; enable = cfg.update-sota.enable; - script = "${pkgs.curl}/bin/curl -s ${cfg.baseUrl}/update/update_sota"; + serviceConfig.ExecStart = "${lib.getExe pkgs.curl} -s ${cfg.baseUrl}/update/update_sota"; + serviceConfig.Type = "oneshot"; }; }; timers = { diff --git a/nixos/modules/services/web-apps/galene.nix b/nixos/modules/services/web-apps/galene.nix index 969615e6490a..6733a95d706c 100644 --- a/nixos/modules/services/web-apps/galene.nix +++ b/nixos/modules/services/web-apps/galene.nix @@ -133,19 +133,16 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - preStart = '' - ${optionalString (cfg.insecure != true && cfg.certFile != null && cfg.keyFile != null) '' - install -m 700 -o '${cfg.user}' -g '${cfg.group}' ${cfg.certFile} ${cfg.dataDir}/cert.pem - install -m 700 -o '${cfg.user}' -g '${cfg.group}' ${cfg.keyFile} ${cfg.dataDir}/key.pem - ''} - ''; - serviceConfig = mkMerge [ { Type = "simple"; User = cfg.user; Group = cfg.group; WorkingDirectory = cfg.stateDir; + ExecStartPre = lib.mkIf (cfg.insecure != true && cfg.certFile != null && cfg.keyFile != null) [ + "${lib.getExe' pkgs.coreutils "install"} -m 700 -o '${cfg.user}' -g '${cfg.group}' ${cfg.certFile} ${cfg.dataDir}/cert.pem" + "${lib.getExe' pkgs.coreutils "install"} -m 700 -o '${cfg.user}' -g '${cfg.group}' ${cfg.keyFile} ${cfg.dataDir}/key.pem" + ]; ExecStart = '' ${cfg.package}/bin/galene \ ${optionalString (cfg.insecure) "-insecure"} \ diff --git a/nixos/modules/services/web-apps/glitchtip.nix b/nixos/modules/services/web-apps/glitchtip.nix index 3660b83807bd..9aa5b5466501 100644 --- a/nixos/modules/services/web-apps/glitchtip.nix +++ b/nixos/modules/services/web-apps/glitchtip.nix @@ -280,13 +280,12 @@ in bindsTo = [ "glitchtip-worker.service" ]; before = [ "glitchtip-worker.service" ]; - preStart = '' - ${lib.getExe pkg} migrate - ${lib.getExe pkg} createcachetable - ${lib.getExe pkg} maintain_partitions - ''; - serviceConfig = commonServiceConfig // { + ExecStartPre = [ + "${lib.getExe pkg} migrate" + "${lib.getExe pkg} createcachetable" + "${lib.getExe pkg} maintain_partitions" + ]; ExecStart = '' ${lib.getExe python.pkgs.granian} \ --interface ${if cfg.settings.GLITCHTIP_ENABLE_MCP then "asgi" else "asginl"} \ diff --git a/nixos/modules/services/web-apps/healthchecks.nix b/nixos/modules/services/web-apps/healthchecks.nix index 80f10b4af6af..f6c8a43cd329 100644 --- a/nixos/modules/services/web-apps/healthchecks.nix +++ b/nixos/modules/services/web-apps/healthchecks.nix @@ -237,14 +237,13 @@ in wantedBy = [ "healthchecks.target" ]; after = [ "healthchecks-migration.service" ]; - preStart = '' - ${pkg}/opt/healthchecks/manage.py collectstatic --no-input - ${pkg}/opt/healthchecks/manage.py remove_stale_contenttypes --no-input - '' - + lib.optionalString (cfg.settings.DEBUG != "True") "${pkg}/opt/healthchecks/manage.py compress"; - serviceConfig = commonConfig // { Restart = "always"; + ExecStartPre = [ + "${pkg}/opt/healthchecks/manage.py collectstatic --no-input" + "${pkg}/opt/healthchecks/manage.py remove_stale_contenttypes --no-input" + ] + ++ lib.optionals (cfg.settings.DEBUG != "True") [ "${pkg}/opt/healthchecks/manage.py compress" ]; ExecStart = '' ${pkgs.python3Packages.gunicorn}/bin/gunicorn hc.wsgi \ --bind ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/web-apps/mediagoblin.nix b/nixos/modules/services/web-apps/mediagoblin.nix index 081bfa763f9b..934afe082dae 100644 --- a/nixos/modules/services/web-apps/mediagoblin.nix +++ b/nixos/modules/services/web-apps/mediagoblin.nix @@ -310,19 +310,6 @@ in in { mediagoblin-celeryd = lib.recursiveUpdate serviceDefaults { - # we cannot change DEFAULT.data_dir inside mediagoblin.ini because of an annoying bug - # https://todo.sr.ht/~mediagoblin/mediagoblin/57 - preStart = '' - cp --remove-destination ${ - pkgs.writeText "mediagoblin.ini" ( - lib.generators.toINI { } (lib.filterAttrsRecursive (n: v: n != "plugins") cfg.settings) - + "\n" - + lib.generators.toINI { mkKeyValue = mkSubSectionKeyValue 2; } { - inherit (cfg.settings.mediagoblin) plugins; - } - ) - } /var/lib/mediagoblin/mediagoblin.ini - ''; serviceConfig = { Environment = [ "CELERY_CONFIG_MODULE=mediagoblin.init.celery.from_celery" @@ -331,6 +318,19 @@ in "MEDIAGOBLIN_CONFIG=/var/lib/mediagoblin/mediagoblin.ini" "PASTE_CONFIG=${pasteConfig}" ]; + # we cannot change DEFAULT.data_dir inside mediagoblin.ini because of an annoying bug + # https://todo.sr.ht/~mediagoblin/mediagoblin/57 + ExecStartPre = '' + ${lib.getExe' pkgs.coreutils "cp"} --remove-destination ${ + pkgs.writeText "mediagoblin.ini" ( + lib.generators.toINI { } (lib.filterAttrsRecursive (n: v: n != "plugins") cfg.settings) + + "\n" + + lib.generators.toINI { mkKeyValue = mkSubSectionKeyValue 2; } { + inherit (cfg.settings.mediagoblin) plugins; + } + ) + } /var/lib/mediagoblin/mediagoblin.ini + ''; ExecStart = "${lib.getExe' finalPackage "celery"} worker --loglevel=INFO"; }; unitConfig.Description = "MediaGoblin Celery"; @@ -345,16 +345,16 @@ in "mediagoblin-celeryd.service" "postgresql.target" ]; - preStart = '' - cp --remove-destination ${pasteConfig} /var/lib/mediagoblin/paste.ini - ${lib.getExe' finalPackage "gmg"} dbupdate - ''; serviceConfig = { Environment = [ "CELERY_ALWAYS_EAGER=false" "GI_TYPELIB_PATH=${GI_TYPELIB_PATH}" "GST_PLUGIN_PATH=${GST_PLUGIN_PATH}" ]; + ExecStartPre = [ + "${lib.getExe' pkgs.coreutils "cp"} --remove-destination ${pasteConfig} /var/lib/mediagoblin/paste.ini" + "${lib.getExe' finalPackage "gmg"} dbupdate" + ]; ExecStart = "${lib.getExe' finalPackage "paster"} serve /var/lib/mediagoblin/paste.ini"; }; unitConfig.Description = "Mediagoblin"; diff --git a/nixos/modules/services/web-apps/miniflux.nix b/nixos/modules/services/web-apps/miniflux.nix index 2130427813f5..ebc77394ad53 100644 --- a/nixos/modules/services/web-apps/miniflux.nix +++ b/nixos/modules/services/web-apps/miniflux.nix @@ -17,14 +17,6 @@ let cfg = config.services.miniflux; boolToInt = b: if b then 1 else 0; - - pgbin = "${config.services.postgresql.package}/bin"; - # The hstore extension is no longer needed as of v2.2.14 - # and would prevent Miniflux from starting. - preStart = pkgs.writeScript "miniflux-pre-start" '' - #!${pkgs.runtimeShell} - ${pgbin}/psql "miniflux" -c "DROP EXTENSION IF EXISTS hstore" - ''; in { @@ -142,7 +134,9 @@ in serviceConfig = { Type = "oneshot"; User = config.services.postgresql.superUser; - ExecStart = preStart; + # The hstore extension is no longer needed as of v2.2.14 + # and would prevent Miniflux from starting. + ExecStart = ''${config.services.postgresql.package}/bin/psql "miniflux" -c "DROP EXTENSION IF EXISTS hstore"''; }; }; diff --git a/nixos/modules/services/web-apps/misskey.nix b/nixos/modules/services/web-apps/misskey.nix index e02e4106a5ad..c4cf26ca2177 100644 --- a/nixos/modules/services/web-apps/misskey.nix +++ b/nixos/modules/services/web-apps/misskey.nix @@ -326,22 +326,22 @@ in environment = { MISSKEY_CONFIG_YML = "/run/misskey/default.yml"; }; - preStart = '' - install -m 700 ${settingsFormat.generate "misskey-config.yml" cfg.settings} /run/misskey/default.yml - install -m 700 ${ - (pkgs.formats.json { }).generate "misskey-config.json" cfg.settings - } /run/misskey/default.json - '' - + (lib.optionalString (cfg.database.passwordFile != null) '' - ${pkgs.replace-secret}/bin/replace-secret '@DATABASE_PASSWORD@' "${cfg.database.passwordFile}" /run/misskey/default.yml - '') - + (lib.optionalString (cfg.redis.passwordFile != null) '' - ${pkgs.replace-secret}/bin/replace-secret '@REDIS_PASSWORD@' "${cfg.redis.passwordFile}" /run/misskey/default.yml - '') - + (lib.optionalString (cfg.meilisearch.keyFile != null) '' - ${pkgs.replace-secret}/bin/replace-secret '@MEILISEARCH_KEY@' "${cfg.meilisearch.keyFile}" /run/misskey/default.yml - ''); serviceConfig = { + ExecStartPre = [ + "${lib.getExe' pkgs.coreutils "install"} -m 700 ${settingsFormat.generate "misskey-config.yml" cfg.settings} /run/misskey/default.yml" + "${lib.getExe' pkgs.coreutils "install"} -m 700 ${ + (pkgs.formats.json { }).generate "misskey-config.json" cfg.settings + } /run/misskey/default.json" + ] + ++ (lib.optionals (cfg.database.passwordFile != null) [ + "${lib.getExe pkgs.replace-secret} '@DATABASE_PASSWORD@' '${cfg.database.passwordFile}' /run/misskey/default.yml" + ]) + ++ (lib.optionals (cfg.redis.passwordFile != null) [ + "${lib.getExe pkgs.replace-secret} '@REDIS_PASSWORD@' '${cfg.redis.passwordFile}' /run/misskey/default.yml" + ]) + ++ (lib.optionals (cfg.meilisearch.keyFile != null) [ + "${lib.getExe pkgs.replace-secret} '@MEILISEARCH_KEY@' '${cfg.meilisearch.keyFile}' /run/misskey/default.yml" + ]); ExecStart = "${cfg.package}/bin/misskey migrateandstart"; RuntimeDirectory = "misskey"; RuntimeDirectoryMode = "700"; diff --git a/nixos/modules/services/web-apps/nexus.nix b/nixos/modules/services/web-apps/nexus.nix index 1a97c88900f9..8afba754315f 100644 --- a/nixos/modules/services/web-apps/nexus.nix +++ b/nixos/modules/services/web-apps/nexus.nix @@ -142,9 +142,8 @@ in fi ''; - script = "${cfg.package}/bin/nexus run"; - serviceConfig = { + ExecStart = "${cfg.package}/bin/nexus run"; User = cfg.user; Group = cfg.group; PrivateTmp = true; diff --git a/nixos/modules/services/web-apps/part-db.nix b/nixos/modules/services/web-apps/part-db.nix index 006481e6dda7..ef5f5d076163 100644 --- a/nixos/modules/services/web-apps/part-db.nix +++ b/nixos/modules/services/web-apps/part-db.nix @@ -257,6 +257,7 @@ in ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { + ExecStart = "${lib.getExe cfg.phpPackage} ${lib.getExe' cfg.package "console"} doctrine:migrations:migrate --no-interaction"; Type = "oneshot"; RemainAfterExit = true; User = "part-db"; @@ -264,10 +265,6 @@ in restartTriggers = [ cfg.package ]; - script = '' - set -euo pipefail - ${lib.getExe cfg.phpPackage} ${lib.getExe' cfg.package "console"} doctrine:migrations:migrate --no-interaction - ''; }; phpfpm-part-db = { diff --git a/nixos/modules/services/web-apps/peering-manager.nix b/nixos/modules/services/web-apps/peering-manager.nix index 4c6738035576..ed55062d6edf 100644 --- a/nixos/modules/services/web-apps/peering-manager.nix +++ b/nixos/modules/services/web-apps/peering-manager.nix @@ -307,11 +307,8 @@ in ] ++ lib.optionals (cfg.environmentFile != null) [ "peering-manager-config.service" ]; - preStart = '' - ${pkg}/bin/peering-manager remove_stale_contenttypes --no-input - ''; - serviceConfig = { + ExecStartPre = "${pkg}/bin/peering-manager remove_stale_contenttypes --no-input"; ExecStart = '' ${pkg.python.pkgs.gunicorn}/bin/gunicorn peering_manager.wsgi \ --bind ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/web-apps/silverbullet.nix b/nixos/modules/services/web-apps/silverbullet.nix index 789fafb68f7f..6d14842ebebc 100644 --- a/nixos/modules/services/web-apps/silverbullet.nix +++ b/nixos/modules/services/web-apps/silverbullet.nix @@ -95,7 +95,6 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - preStart = lib.mkIf (!lib.hasPrefix "/var/lib/" cfg.spaceDir) "mkdir -p '${cfg.spaceDir}'"; serviceConfig = { Type = "simple"; User = "${cfg.user}"; @@ -104,6 +103,9 @@ in StateDirectory = lib.mkIf (lib.hasPrefix "/var/lib/" cfg.spaceDir) ( lib.last (lib.splitString "/" cfg.spaceDir) ); + ExecStartPre = lib.mkIf ( + !lib.hasPrefix "/var/lib/" cfg.spaceDir + ) "${lib.getExe' pkgs.coreutils "mkdir"} -p '${cfg.spaceDir}'"; ExecStart = "${lib.getExe cfg.package} --port ${toString cfg.listenPort} --hostname '${cfg.listenAddress}' '${cfg.spaceDir}' " + lib.concatStringsSep " " cfg.extraArgs; diff --git a/nixos/modules/services/web-apps/wakapi.nix b/nixos/modules/services/web-apps/wakapi.nix index e3861f889e19..6878276ed91b 100644 --- a/nixos/modules/services/web-apps/wakapi.nix +++ b/nixos/modules/services/web-apps/wakapi.nix @@ -144,13 +144,11 @@ in ++ optional (cfg.database.dialect == "postgres") "postgresql.target"; wantedBy = [ "multi-user.target" ]; - script = '' - exec ${getExe cfg.package} -config ${settingsFile} - ''; - serviceConfig = { EnvironmentFile = cfg.environmentFiles; + ExecStart = "${getExe cfg.package} -config ${settingsFile}"; + User = config.users.users.wakapi.name; Group = config.users.users.wakapi.group; diff --git a/nixos/modules/services/web-servers/h2o/default.nix b/nixos/modules/services/web-servers/h2o/default.nix index bea521ccc624..ba2066d70306 100644 --- a/nixos/modules/services/web-servers/h2o/default.nix +++ b/nixos/modules/services/web-servers/h2o/default.nix @@ -443,6 +443,7 @@ in ++ map (certName: "acme-${certName}.service") acmeCertNames.all; serviceConfig = { + ExecStartPre = "${h2oExe} --mode 'test'"; ExecStart = "${h2oExe} --mode 'master'"; ExecReload = [ "${h2oExe} --mode 'test'" @@ -483,8 +484,6 @@ in AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; CapabilitiesBoundingSet = [ "CAP_NET_BIND_SERVICE" ]; }; - - preStart = "${h2oExe} --mode 'test'"; }; # This service waits for all certificates to be available before reloading diff --git a/nixos/modules/services/web-servers/jboss/default.nix b/nixos/modules/services/web-servers/jboss/default.nix index 88bd1071b35b..516f887022b8 100644 --- a/nixos/modules/services/web-servers/jboss/default.nix +++ b/nixos/modules/services/web-servers/jboss/default.nix @@ -93,7 +93,7 @@ in config = mkIf config.services.jboss.enable { systemd.services.jboss = { description = "JBoss server"; - script = "${jbossService}/bin/control start"; + serviceConfig.ExecStart = "${jbossService}/bin/control start"; wantedBy = [ "multi-user.target" ]; }; }; diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 419d84ee9c1d..a1bec261a466 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -4439,12 +4439,12 @@ final: prev: { pname = "d2-vim"; version = "0-unstable-2025-08-19"; src = fetchFromGitHub { - owner = "terrastruct"; + owner = "d2lang"; repo = "d2-vim"; rev = "cb3eb7fcb1a2d45c4304bf2e91077d787b724a39"; hash = "sha256-HmDQfOIoSV93wqRe7O4FPuHEmAxwoP1+Ut+sKhB62jA="; }; - meta.homepage = "https://github.com/terrastruct/d2-vim/"; + meta.homepage = "https://github.com/d2lang/d2-vim/"; meta.license = getLicenseFromSpdxId "BSD-3-Clause"; meta.hydraPlatforms = [ ]; }; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index c194fa1d0f2a..d76b0ecb4dae 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -315,7 +315,7 @@ https://github.com/ctrlpvim/ctrlp.vim/,, https://github.com/gbprod/cutlass.nvim/,, https://github.com/scottmckendry/cyberdream.nvim/,, https://github.com/ghillb/cybu.nvim/,, -https://github.com/terrastruct/d2-vim/,, +https://github.com/d2lang/d2-vim/,, https://github.com/JachymPutta/dailies.nvim/,, https://github.com/Koalhack/darcubox-nvim/,, https://github.com/ptdewey/darkearth-nvim/,, diff --git a/pkgs/by-name/bi/bird2/package.nix b/pkgs/by-name/bi/bird2/package.nix index f369d84034c3..0cc747099316 100644 --- a/pkgs/by-name/bi/bird2/package.nix +++ b/pkgs/by-name/bi/bird2/package.nix @@ -12,14 +12,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "bird"; - version = "2.19.1"; + version = "2.19.2"; src = fetchFromGitLab { domain = "gitlab.nic.cz"; owner = "labs"; repo = "bird"; tag = "v${finalAttrs.version}"; - hash = "sha256-8D83U9IgNQ0HDWk2WSQsRsy82bDmjkgectkCOXy2RyI="; + hash = "sha256-5C7hVUWy5QOD2r0Qcu2b2j+xxRek8NsYoWgeRm2Exis="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/bi/bird3/package.nix b/pkgs/by-name/bi/bird3/package.nix index 4ca4633c9efd..9f84375e3648 100644 --- a/pkgs/by-name/bi/bird3/package.nix +++ b/pkgs/by-name/bi/bird3/package.nix @@ -12,14 +12,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "bird"; - version = "3.3.1"; + version = "3.3.2"; src = fetchFromGitLab { domain = "gitlab.nic.cz"; owner = "labs"; repo = "bird"; tag = "v${finalAttrs.version}"; - hash = "sha256-aJo6Ut/ULBDGoekSXgN1WvmFmonTzNA3TES1FHqCiOM="; + hash = "sha256-qrzi8uYZiohpIRosdPQXxnDu6fP3V9i8PPo8BV8XTZI="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ce/cedar/package.nix b/pkgs/by-name/ce/cedar/package.nix index ba2544fa9f25..6df06dd8df01 100644 --- a/pkgs/by-name/ce/cedar/package.nix +++ b/pkgs/by-name/ce/cedar/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "cedar"; - version = "4.11.2"; + version = "4.12.0"; src = fetchFromGitHub { owner = "cedar-policy"; repo = "cedar"; tag = "v${finalAttrs.version}"; - hash = "sha256-pJiSnaq2oz1uZVkLp9s2HLPdG2sZ0EtURlO8R2V+dJs="; + hash = "sha256-BU0D5VGHt2S9iWVFtBbgCBRKvnhn2YnvrKH38UazmhY="; }; - cargoHash = "sha256-6AtFdE7vXoevOU3uWP4sgibakNHK8ffnuWCzJxFt/wo="; + cargoHash = "sha256-fQ8oPE3fpHh61lhsaXyMpd70/nmdKFHrcKfQ/1Ih1uE="; cargoBuildFlags = [ "--bin" diff --git a/pkgs/by-name/co/copilot-language-server/package.nix b/pkgs/by-name/co/copilot-language-server/package.nix index 229c2156ca93..65b25014d831 100644 --- a/pkgs/by-name/co/copilot-language-server/package.nix +++ b/pkgs/by-name/co/copilot-language-server/package.nix @@ -10,11 +10,11 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "copilot-language-server"; - version = "1.526.0"; + version = "1.527.1"; src = fetchzip { url = "https://github.com/github/copilot-language-server-release/releases/download/${finalAttrs.version}/copilot-language-server-js-${finalAttrs.version}.zip"; - hash = "sha256-T1DYN/mVqISYtNGD1KBitXPgEIcrKQMqxquC7CywDo4="; + hash = "sha256-RLcfAld0vJYyE6ndqwkFqfJNNWD/PmoNQy8NWDRBa6g="; stripRoot = false; }; diff --git a/pkgs/by-name/cr/crush/package.nix b/pkgs/by-name/cr/crush/package.nix index 7f4e1e65fe08..dfdafd8268bf 100644 --- a/pkgs/by-name/cr/crush/package.nix +++ b/pkgs/by-name/cr/crush/package.nix @@ -11,16 +11,16 @@ buildGo126Module (finalAttrs: { pname = "crush"; - version = "0.86.0"; + version = "0.88.0"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "crush"; tag = "v${finalAttrs.version}"; - hash = "sha256-dUeXU65A9/d365a9Z+eUoHOR0RnJV9SAYsks+Vtz9js="; + hash = "sha256-5yfYpjwfQtioSTnpO9VIv4+V7A+Hrv6X/LItfbyw2i4="; }; - vendorHash = "sha256-9WkkosPMwXsj32a5Zj4ZxphuB7aVteKq/YTzxP9Xmf0="; + vendorHash = "sha256-qXR+z31tZ3FWclBUWkBF0k/F463iKSGZ6dCgJMBcWi8="; ldflags = [ "-s" diff --git a/pkgs/by-name/d2/d2/package.nix b/pkgs/by-name/d2/d2/package.nix index b590b73de755..c62f798fc5c7 100644 --- a/pkgs/by-name/d2/d2/package.nix +++ b/pkgs/by-name/d2/d2/package.nix @@ -23,7 +23,7 @@ buildGoModule (finalAttrs: { version = "0.7.1"; src = fetchFromGitHub { - owner = "terrastruct"; + owner = "d2lang"; repo = "d2"; tag = "v${finalAttrs.version}"; hash = "sha256-ZRAvMcJKQmvcBbT2foKDYS0gTeqOZqFu3V3iXIbfLsQ="; @@ -62,7 +62,7 @@ buildGoModule (finalAttrs: { ''; preCheck = '' - # See https://github.com/terrastruct/d2/blob/master/docs/CONTRIBUTING.md#running-tests. + # See https://github.com/d2lang/d2/blob/master/docs/CONTRIBUTING.md#running-tests. export TESTDATA_ACCEPT=1 ''; @@ -75,7 +75,7 @@ buildGoModule (finalAttrs: { description = "Modern diagram scripting language that turns text to diagrams"; mainProgram = "d2"; homepage = "https://d2lang.com"; - changelog = "https://github.com/terrastruct/d2/releases/tag/v${finalAttrs.version}"; + changelog = "https://github.com/d2lang/d2/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mpl20; maintainers = with lib.maintainers; [ kashw2 diff --git a/pkgs/by-name/dc/dcp/package.nix b/pkgs/by-name/dc/dcp/package.nix index 2f7a4c6fa78a..7713307d8e7a 100644 --- a/pkgs/by-name/dc/dcp/package.nix +++ b/pkgs/by-name/dc/dcp/package.nix @@ -15,16 +15,16 @@ buildGoModule (finalAttrs: { pname = "dcp"; - version = "0.25.9"; + version = "0.25.10"; src = fetchFromGitHub { owner = "microsoft"; repo = "dcp"; tag = "v${finalAttrs.version}"; - hash = "sha256-MjBnJRdlGF2efEH0TcJjM3JVEByRzeqAZ13sR9EL0Ik="; + hash = "sha256-29LPAR5TbWfFP24eQjFg01vt6gCOUrzNarrczd1UVoo="; }; - vendorHash = "sha256-eJAMl1vGX2JANdYe8SWWLsNImd3raEEYvSfvwwfV4Xk="; + vendorHash = "sha256-WBre4iBMYzx1unqz9+F1wDogYbPEsm3DyUgeceB8yko="; # This is required so we: # - Delete an inconsistent vendor directory from upstream diff --git a/pkgs/by-name/ex/exo/package.nix b/pkgs/by-name/ex/exo/package.nix index d8acacd3973a..080fc9d3c42d 100644 --- a/pkgs/by-name/ex/exo/package.nix +++ b/pkgs/by-name/ex/exo/package.nix @@ -29,8 +29,12 @@ let pyo3-bindings = python3Packages.buildPythonPackage (finalAttrs: { pname = "exo-pyo3-bindings"; - inherit version src; + # Check version in + # https://github.com/exo-explore/exo/blob/v/rust/exo_pyo3_bindings/pyproject.toml + version = "0.2.1"; + inherit src; pyproject = true; + __structuredAttrs = true; buildAndTestSubdir = "rust/exo_pyo3_bindings"; @@ -54,6 +58,7 @@ let dashboard = buildNpmPackage (finalAttrs: { pname = "exo-dashboard"; inherit src version; + __structuredAttrs = true; sourceRoot = "${finalAttrs.src.name}/dashboard"; npmDepsFetcherVersion = 3; @@ -73,6 +78,7 @@ in python3Packages.buildPythonApplication (finalAttrs: { pname = "exo"; pyproject = true; + __structuredAttrs = true; inherit version src; diff --git a/pkgs/by-name/gn/gnss-sdr/package.nix b/pkgs/by-name/gn/gnss-sdr/package.nix index faffc1b85026..dc044f4960c9 100644 --- a/pkgs/by-name/gn/gnss-sdr/package.nix +++ b/pkgs/by-name/gn/gnss-sdr/package.nix @@ -25,13 +25,13 @@ gnuradio.pkgs.mkDerivation rec { pname = "gnss-sdr"; - version = "0.0.20"; + version = "0.0.21"; src = fetchFromGitHub { owner = "gnss-sdr"; repo = "gnss-sdr"; rev = "v${version}"; - hash = "sha256-kQv8I4dcWeRuAfYtD5EAAMwvfnOTi+QWDogUZb4M/qQ="; + hash = "sha256-3oBF9FajapmXxvE4tQOuzwTkjwmk1DF806nMYdZqQUY="; }; patches = [ @@ -39,10 +39,6 @@ gnuradio.pkgs.mkDerivation rec { # cpu_features which is bundled in the source. NOTE: Perhaps this patch # should be sent upstream. ./fix_libcpu_features_install_path.patch - (fetchpatch { - url = "https://sources.debian.org/data/main/g/gnss-sdr/0.0.20-2/debian/patches/boost1.90.diff"; - hash = "sha256-IeLV0DIVzw+Nix9RmrqrbGDEjquvSws114UsdYphV58="; - }) ]; nativeBuildInputs = [ diff --git a/pkgs/by-name/gp/gpxsee/package.nix b/pkgs/by-name/gp/gpxsee/package.nix index b26d4010ac18..09a86026d644 100644 --- a/pkgs/by-name/gp/gpxsee/package.nix +++ b/pkgs/by-name/gp/gpxsee/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gpxsee"; - version = "16.9"; + version = "16.11"; src = fetchFromGitHub { owner = "tumic0"; repo = "GPXSee"; tag = finalAttrs.version; - hash = "sha256-pb5HsmGIiC2A5IjGYm+M636J7vM8LP9LFGINkSaSSj4="; + hash = "sha256-Kfwm72PBLjnOIF/G/XMyOa5BmoYzV2Bb4aDQiDd51PI="; }; buildInputs = [ diff --git a/pkgs/by-name/gr/greybird/package.nix b/pkgs/by-name/gr/greybird/package.nix new file mode 100644 index 000000000000..0b8443990e49 --- /dev/null +++ b/pkgs/by-name/gr/greybird/package.nix @@ -0,0 +1,50 @@ +{ + stdenv, + lib, + fetchFromGitHub, + gdk-pixbuf, + glib, + meson, + ninja, + pkg-config, + sassc, + librsvg, + gitUpdater, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "greybird"; + version = "3.23.4"; + + src = fetchFromGitHub { + owner = "shimmerproject"; + repo = "greybird"; + rev = "v${finalAttrs.version}"; + hash = "sha256-De8y+LRQ26UKrUECLCcbCg7p9Z+aRssQ/7YzegAUPw4="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + gdk-pixbuf + glib + meson + ninja + pkg-config + sassc + ]; + + buildInputs = [ + librsvg + ]; + + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; + + meta = { + description = "Desktop suite for Xfce"; + homepage = "https://github.com/shimmerproject/Greybird"; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; + }; +}) diff --git a/pkgs/by-name/kl/kloak/package.nix b/pkgs/by-name/kl/kloak/package.nix index 83a5f783c62a..69fadf380dce 100644 --- a/pkgs/by-name/kl/kloak/package.nix +++ b/pkgs/by-name/kl/kloak/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "kloak"; - version = "0.8.6-1"; + version = "0.8.9-1"; src = fetchFromGitHub { owner = "Whonix"; repo = "kloak"; tag = finalAttrs.version; - hash = "sha256-zaoKVPocL8iaX6hhZh0Q+cgYg3JLWBcMgGU0nLlNcjo="; + hash = "sha256-PzKaOaGDzn+1rbfW1daY/DcAwNflJ+nMaBdtiVSQJf0="; }; strictDeps = true; diff --git a/pkgs/by-name/le/lean-lsp-mcp/package.nix b/pkgs/by-name/le/lean-lsp-mcp/package.nix index aeb00592cba2..442a029b2495 100644 --- a/pkgs/by-name/le/lean-lsp-mcp/package.nix +++ b/pkgs/by-name/le/lean-lsp-mcp/package.nix @@ -6,7 +6,7 @@ python3Packages.buildPythonApplication (finalAttrs: { pname = "lean-lsp-mcp"; - version = "0.26.2"; + version = "0.28.1"; pyproject = true; __structuredAttrs = true; @@ -15,7 +15,7 @@ python3Packages.buildPythonApplication (finalAttrs: { owner = "oOo0oOo"; repo = "lean-lsp-mcp"; tag = "v${finalAttrs.version}"; - hash = "sha256-NWX+r6hz04WnSkERqVj57ruw47RhqOeEofYUaxuU/uM="; + hash = "sha256-dpVWJ598in9S/GlYrnqZgz2T/5vQV1m/eI+lQBiD8w4="; }; build-system = with python3Packages; [ setuptools ]; diff --git a/pkgs/by-name/mh/mhabit/git-hashes.json b/pkgs/by-name/mh/mhabit/git-hashes.json index e37b6761c806..9e26dfeeb6e6 100644 --- a/pkgs/by-name/mh/mhabit/git-hashes.json +++ b/pkgs/by-name/mh/mhabit/git-hashes.json @@ -1,3 +1 @@ -{ - "icon_font_generator": "sha256-QmChsa2qP+gZyZ2IrJMrY/zBP/J5QigidjIHahp3V0g=" -} +{} \ No newline at end of file diff --git a/pkgs/by-name/mh/mhabit/package.nix b/pkgs/by-name/mh/mhabit/package.nix index 56fa9a3626ef..28bcebd69229 100644 --- a/pkgs/by-name/mh/mhabit/package.nix +++ b/pkgs/by-name/mh/mhabit/package.nix @@ -1,7 +1,7 @@ { lib, fetchFromGitHub, - flutter338, + flutter341, sqlite, libsecret, _experimental-update-script-combinators, @@ -12,16 +12,16 @@ }: let - version = "1.23.11+151"; + version = "1.26.1+174"; src = fetchFromGitHub { owner = "FriesI23"; repo = "mhabit"; tag = "v${version}"; - hash = "sha256-1MGZE50ruHBLQ4Dma6mpJuLNevPIGtjHjlMucAwlK0c="; + hash = "sha256-GF7O28vv6KT+O3yYKdtgRkXq9o6uz4l0xkq5typOy+g="; }; in -flutter338.buildFlutterApplication { +flutter341.buildFlutterApplication { pname = "mhabit"; inherit version src; diff --git a/pkgs/by-name/mh/mhabit/pubspec.lock.json b/pkgs/by-name/mh/mhabit/pubspec.lock.json index d85a2d309e48..50afaae5bb67 100644 --- a/pkgs/by-name/mh/mhabit/pubspec.lock.json +++ b/pkgs/by-name/mh/mhabit/pubspec.lock.json @@ -4,21 +4,21 @@ "dependency": "transitive", "description": { "name": "_fe_analyzer_shared", - "sha256": "da0d9209ca76bde579f2da330aeb9df62b6319c834fa7baae052021b0462401f", + "sha256": "8d7ff3948166b8ec5da0fbb5962000926b8e02f2ed9b3e51d1738905fbd4c98d", "url": "https://pub.dev" }, "source": "hosted", - "version": "85.0.0" + "version": "93.0.0" }, "analyzer": { - "dependency": "transitive", + "dependency": "direct dev", "description": { "name": "analyzer", - "sha256": "974859dc0ff5f37bc4313244b3218c791810d03ab3470a579580279ba971a48d", + "sha256": "de7148ed2fcec579b19f122c1800933dfa028f6d9fd38a152b04b1516cec120b", "url": "https://pub.dev" }, "source": "hosted", - "version": "7.7.1" + "version": "10.0.1" }, "animated_check": { "dependency": "direct main", @@ -44,11 +44,21 @@ "dependency": "direct main", "description": { "name": "animations", - "sha256": "18938cefd7dcc04e1ecac0db78973761a01e4bc2d6bfae0cfa596bfeac9e96ab", + "sha256": "9cb469212ea51be27097f23b519d594c01171721347b55df9334fff653659e7f", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.1.1" + "version": "2.2.0" + }, + "ansi_styles": { + "dependency": "transitive", + "description": { + "name": "ansi_styles", + "sha256": "9c656cc12b3c27b17dd982b2cc5c0cfdfbdabd7bc8f3ae5e8542d9867b47ce8a", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.3.2+1" }, "ansicolor": { "dependency": "transitive", @@ -74,11 +84,11 @@ "dependency": "direct main", "description": { "name": "archive", - "sha256": "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd", + "sha256": "a96e8b390886ee8abb49b7bd3ac8df6f451c621619f52a26e815fdcf568959ff", "url": "https://pub.dev" }, "source": "hosted", - "version": "4.0.7" + "version": "4.0.9" }, "args": { "dependency": "transitive", @@ -94,11 +104,11 @@ "dependency": "direct main", "description": { "name": "async", - "sha256": "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb", + "sha256": "e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.13.0" + "version": "2.13.1" }, "boolean_selector": { "dependency": "transitive", @@ -114,21 +124,21 @@ "dependency": "transitive", "description": { "name": "build", - "sha256": "ce76b1d48875e3233fde17717c23d1f60a91cc631597e49a400c89b475395b1d", + "sha256": "a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.1.0" + "version": "4.0.6" }, "build_config": { "dependency": "transitive", "description": { "name": "build_config", - "sha256": "4f64382b97504dc2fcdf487d5aae33418e08b4703fc21249e4db6d804a4d0187", + "sha256": "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.0" + "version": "1.3.0" }, "build_daemon": { "dependency": "transitive", @@ -140,35 +150,15 @@ "source": "hosted", "version": "4.1.1" }, - "build_resolvers": { - "dependency": "transitive", - "description": { - "name": "build_resolvers", - "sha256": "d1d57f7807debd7349b4726a19fd32ec8bc177c71ad0febf91a20f84cd2d4b46", - "url": "https://pub.dev" - }, - "source": "hosted", - "version": "3.0.3" - }, "build_runner": { "dependency": "direct dev", "description": { "name": "build_runner", - "sha256": "b24597fceb695969d47025c958f3837f9f0122e237c6a22cb082a5ac66c3ca30", + "sha256": "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.7.1" - }, - "build_runner_core": { - "dependency": "transitive", - "description": { - "name": "build_runner_core", - "sha256": "066dda7f73d8eb48ba630a55acb50c4a84a2e6b453b1cb4567f581729e794f7b", - "url": "https://pub.dev" - }, - "source": "hosted", - "version": "9.3.1" + "version": "2.15.0" }, "built_collection": { "dependency": "transitive", @@ -184,17 +174,27 @@ "dependency": "transitive", "description": { "name": "built_value", - "sha256": "426cf75afdb23aa74bd4e471704de3f9393f3c7b04c1e2d9c6f1073ae0b8b139", + "sha256": "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56", "url": "https://pub.dev" }, "source": "hosted", - "version": "8.12.1" + "version": "8.12.6" }, "characters": { "dependency": "transitive", "description": { "name": "characters", - "sha256": "f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803", + "sha256": "faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "1.4.1" + }, + "charcode": { + "dependency": "transitive", + "description": { + "name": "charcode", + "sha256": "fb0f1107cac15a5ea6ef0a6ef71a807b9e4267c713bb93e00e92d737cc8dbd8a", "url": "https://pub.dev" }, "source": "hosted", @@ -220,6 +220,16 @@ "source": "hosted", "version": "0.2.0" }, + "cli_launcher": { + "dependency": "transitive", + "description": { + "name": "cli_launcher", + "sha256": "35cf15a3ffaeb9c11849eaa0afba761bb76dceb42d050532bfd3e1299c9748cd", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.3.3+1" + }, "cli_util": { "dependency": "transitive", "description": { @@ -240,6 +250,16 @@ "source": "hosted", "version": "1.1.2" }, + "code_assets": { + "dependency": "transitive", + "description": { + "name": "code_assets", + "sha256": "67cf6d84013f9c601e42a6f8a6b74c4c0d9dc1a1619d775f2b28b732d3551b85", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "1.2.0" + }, "code_builder": { "dependency": "transitive", "description": { @@ -274,21 +294,21 @@ "dependency": "direct main", "description": { "name": "connectivity_plus", - "sha256": "33bae12a398f841c6cda09d1064212957265869104c478e5ad51e2fb26c3973c", + "sha256": "62ffa266d9a23b79fb3fcbc206afc00bb979417ba57b1324c546b5aab95ba057", "url": "https://pub.dev" }, "source": "hosted", - "version": "7.0.0" + "version": "7.1.1" }, "connectivity_plus_platform_interface": { "dependency": "transitive", "description": { "name": "connectivity_plus_platform_interface", - "sha256": "42657c1715d48b167930d5f34d00222ac100475f73d10162ddf43e714932f204", + "sha256": "3c09627c536d22fd24691a905cdd8b14520de69da52c7a97499c8be5284a32ed", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.0.1" + "version": "2.1.0" }, "console": { "dependency": "transitive", @@ -300,6 +320,16 @@ "source": "hosted", "version": "4.1.0" }, + "conventional_commit": { + "dependency": "transitive", + "description": { + "name": "conventional_commit", + "sha256": "c40b1b449ce2a63fa2ce852f35e3890b1e182f5951819934c0e4a66254bc0dc3", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.6.1+1" + }, "convert": { "dependency": "transitive", "description": { @@ -314,21 +344,21 @@ "dependency": "direct main", "description": { "name": "copy_with_extension", - "sha256": "09cf9385a0032af3724fd0d44fd7663bee7484ae0bc71c9734165476d5fc6e72", + "sha256": "4e37b3a0376fc7e981be911efba812845c75447b0d17c931faca9d972d335d1d", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.1.1" + "version": "15.0.1" }, "copy_with_extension_gen": { "dependency": "direct dev", "description": { "name": "copy_with_extension_gen", - "sha256": "197ecbb51e715a043bc0559b7436bffd1aa9815aa62d88cb8fbcff596d9a4725", + "sha256": "f2845406e5718db6b008716be1caa2500ea6297da8d4151b0b495b30e9586465", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.1.1" + "version": "15.0.1" }, "coverage": { "dependency": "transitive", @@ -344,11 +374,11 @@ "dependency": "transitive", "description": { "name": "cross_file", - "sha256": "701dcfc06da0882883a2657c445103380e53e647060ad8d9dfb710c100996608", + "sha256": "28bb3ae56f117b5aec029d702a90f57d285cd975c3c5c281eaca38dbc47c5937", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.3.5+1" + "version": "0.3.5+2" }, "crypto": { "dependency": "direct main", @@ -380,25 +410,35 @@ "source": "hosted", "version": "1.0.2" }, + "csv": { + "dependency": "direct main", + "description": { + "name": "csv", + "sha256": "2e0a52fb729f2faacd19c9c0c954ff450bba37aa8ab999410309e2342e7013a2", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "8.0.0" + }, "cupertino_icons": { "dependency": "direct main", "description": { "name": "cupertino_icons", - "sha256": "ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6", + "sha256": "41e005c33bd814be4d3096aff55b1908d419fde52ca656c8c47719ec745873cd", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.0.8" + "version": "1.0.9" }, "dart_style": { "dependency": "transitive", "description": { "name": "dart_style", - "sha256": "8a0e5fba27e8ee025d2ffb4ee820b4e6e2cf5e4246a6b1a477eb66866947e0bb", + "sha256": "29f7ecc274a86d32920b1d9cfc7502fa87220da41ec60b55f329559d5732e2b2", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.1.1" + "version": "3.1.7" }, "dartx": { "dependency": "transitive", @@ -424,31 +464,31 @@ "dependency": "transitive", "description": { "name": "dbus", - "sha256": "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c", + "sha256": "d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.7.11" + "version": "0.7.12" }, "device_info_plus": { "dependency": "direct main", "description": { "name": "device_info_plus", - "sha256": "4df8babf73058181227e18b08e6ea3520cf5fc5d796888d33b7cb0f33f984b7c", + "sha256": "6a642e1daa10190af89ba6cb6386c0df7d071a3592080bfe1e44faa63ae1df65", "url": "https://pub.dev" }, "source": "hosted", - "version": "12.3.0" + "version": "13.1.0" }, "device_info_plus_platform_interface": { "dependency": "transitive", "description": { "name": "device_info_plus_platform_interface", - "sha256": "e1ea89119e34903dca74b883d0dd78eb762814f97fb6c76f35e9ff74d261a18f", + "sha256": "04b173a92e2d9161dfead145667037c8d834db725ce2e7b942bfe18fd2f45a46", "url": "https://pub.dev" }, "source": "hosted", - "version": "7.0.3" + "version": "8.1.0" }, "diffutil_dart": { "dependency": "transitive", @@ -494,11 +534,21 @@ "dependency": "transitive", "description": { "name": "ffi", - "sha256": "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418", + "sha256": "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.1.4" + "version": "2.2.0" + }, + "ffi_leak_tracker": { + "dependency": "transitive", + "description": { + "name": "ffi_leak_tracker", + "sha256": "4093d4ef9ca06ffe2786e73bfb25e22aa92112b9bb4ec941f11e3e6b61489a97", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.1.2" }, "file": { "dependency": "transitive", @@ -524,21 +574,21 @@ "dependency": "transitive", "description": { "name": "file_selector_android", - "sha256": "51e8fd0446de75e4b62c065b76db2210c704562d072339d333bd89c57a7f8a7c", + "sha256": "89243030ea4b3463fb402b44d5eeacc4ccb1c46a88870cb2a5080d693200c1ed", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.5.2+4" + "version": "0.5.2+6" }, "file_selector_ios": { "dependency": "transitive", "description": { "name": "file_selector_ios", - "sha256": "628ec99afd8bb40620b4c8707d5fd5fc9e89d83e9b0b327d471fe5f7bc5fc33f", + "sha256": "e2ecf2885c121691ce13b60db3508f53c01f869fb6e8dc5c1cfa771e4c46aeca", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.5.3+4" + "version": "0.5.3+5" }, "file_selector_linux": { "dependency": "transitive", @@ -604,11 +654,31 @@ "dependency": "direct main", "description": { "name": "fl_chart", - "sha256": "7ca9a40f4eb85949190e54087be8b4d6ac09dc4c54238d782a34cf1f7c011de9", + "sha256": "b938f77d042cbcd822936a7a359a7235bad8bd72070de1f827efc2cc297ac888", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.1.1" + "version": "1.2.0" + }, + "flex_color_picker": { + "dependency": "direct main", + "description": { + "name": "flex_color_picker", + "sha256": "a0979dd61f21b634717b98eb4ceaed2bfe009fe020ce8597aaf164b9eeb57aaa", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "3.8.0" + }, + "flex_seed_scheme": { + "dependency": "transitive", + "description": { + "name": "flex_seed_scheme", + "sha256": "a3183753bbcfc3af106224bff3ab3e1844b73f58062136b7499919f49f3667e7", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "4.0.1" }, "flutter": { "dependency": "direct main", @@ -616,16 +686,6 @@ "source": "sdk", "version": "0.0.0" }, - "flutter_colorpicker": { - "dependency": "direct main", - "description": { - "name": "flutter_colorpicker", - "sha256": "969de5f6f9e2a570ac660fb7b501551451ea2a1ab9e2097e89475f60e07816ea", - "url": "https://pub.dev" - }, - "source": "hosted", - "version": "1.1.0" - }, "flutter_donation_buttons": { "dependency": "direct main", "description": { @@ -640,31 +700,31 @@ "dependency": "direct dev", "description": { "name": "flutter_gen", - "sha256": "eac4863b65813aacbf16ecc07e7c271ab82fb2d95181825348f1fb7b03fd52da", + "sha256": "303d72d4ee86f29243792e4022b67a47737f28f268d45348cb97b31a52e85887", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.12.0" + "version": "5.14.1" }, "flutter_gen_core": { "dependency": "transitive", "description": { "name": "flutter_gen_core", - "sha256": "b6bafbbd981da2f964eb45bcb8b8a7676a281084f8922c0c75de4cfbaa849311", + "sha256": "1413fbd0b67f76ac17800989013438caec3b64564c9ffd1eea6cd7e170d9b0e5", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.12.0" + "version": "5.14.1" }, "flutter_gen_runner": { "dependency": "direct dev", "description": { "name": "flutter_gen_runner", - "sha256": "c99b10af9d404e3f46fd1927e7d90099779e935e86022674c4c2a9e6c2a93b29", + "sha256": "db00922dd5f4c1aa33aeab7f74117f1cd224e7a1e8bea1e312b8d09b8101a909", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.12.0" + "version": "5.14.1" }, "flutter_highlight": { "dependency": "transitive", @@ -700,41 +760,41 @@ "dependency": "direct main", "description": { "name": "flutter_local_notifications", - "sha256": "19ffb0a8bb7407875555e5e98d7343a633bb73707bae6c6a5f37c90014077875", + "sha256": "0d9035862236fe38250fe1644d7ed3b8254e34a21b2c837c9f539fbb3bba5ef1", "url": "https://pub.dev" }, "source": "hosted", - "version": "19.5.0" + "version": "21.0.0" }, "flutter_local_notifications_linux": { "dependency": "transitive", "description": { "name": "flutter_local_notifications_linux", - "sha256": "e3c277b2daab8e36ac5a6820536668d07e83851aeeb79c446e525a70710770a5", + "sha256": "e0f25e243c6c44c825bbbc6b2b2e76f7d9222362adcfe9fd780bf01923c840bd", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.0.0" + "version": "8.0.0" }, "flutter_local_notifications_platform_interface": { "dependency": "transitive", "description": { "name": "flutter_local_notifications_platform_interface", - "sha256": "277d25d960c15674ce78ca97f57d0bae2ee401c844b6ac80fcd972a9c99d09fe", + "sha256": "e7db3d5b49c2b7ecc68deba4aaaa67a348f92ee0fef34c8e4b4459dbef0d7307", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.1.0" + "version": "11.0.0" }, "flutter_local_notifications_windows": { "dependency": "transitive", "description": { "name": "flutter_local_notifications_windows", - "sha256": "8d658f0d367c48bd420e7cf2d26655e2d1130147bca1eea917e576ca76668aaf", + "sha256": "3a2654ba104fbb52c618ebed9def24ef270228470718c43b3a6afcd5c81bef0c", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.0.3" + "version": "3.0.0" }, "flutter_localizations": { "dependency": "direct main", @@ -756,71 +816,71 @@ "dependency": "direct main", "description": { "name": "flutter_secure_storage", - "sha256": "9cad52d75ebc511adfae3d447d5d13da15a55a92c9410e50f67335b6d21d16ea", + "sha256": "7686b1d6a29985dcbb808c59518226e603e3bfa7c0ddfd1a0d00e4cda77c868e", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.2.4" + "version": "10.3.1" + }, + "flutter_secure_storage_darwin": { + "dependency": "transitive", + "description": { + "name": "flutter_secure_storage_darwin", + "sha256": "82329fa5cdf343773b1b6897dea959105a29f092454259edff92f9f6637e8149", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.3.2" }, "flutter_secure_storage_linux": { "dependency": "transitive", "description": { "name": "flutter_secure_storage_linux", - "sha256": "be76c1d24a97d0b98f8b54bce6b481a380a6590df992d0098f868ad54dc8f688", + "sha256": "a5f35ddab43cf5c8215d2feb4ce1957851f28c5c37e6f04335066a0602087bf5", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.3" - }, - "flutter_secure_storage_macos": { - "dependency": "transitive", - "description": { - "name": "flutter_secure_storage_macos", - "sha256": "6c0a2795a2d1de26ae202a0d78527d163f4acbb11cde4c75c670f3a0fc064247", - "url": "https://pub.dev" - }, - "source": "hosted", - "version": "3.1.3" + "version": "3.0.1" }, "flutter_secure_storage_platform_interface": { "dependency": "transitive", "description": { "name": "flutter_secure_storage_platform_interface", - "sha256": "cf91ad32ce5adef6fba4d736a542baca9daf3beac4db2d04be350b87f69ac4a8", + "sha256": "8ceea1223bee3c6ac1a22dabd8feefc550e4729b3675de4b5900f55afcb435d6", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.1.2" + "version": "2.0.1" }, "flutter_secure_storage_web": { "dependency": "transitive", "description": { "name": "flutter_secure_storage_web", - "sha256": "f4ebff989b4f07b2656fb16b47852c0aab9fed9b4ec1c70103368337bc1886a9", + "sha256": "073a62b3aeb866ab4ce795f960413948e51e5a42a9b0c8333b6daf5bb3208a1c", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.1" + "version": "2.1.1" }, "flutter_secure_storage_windows": { "dependency": "transitive", "description": { "name": "flutter_secure_storage_windows", - "sha256": "b20b07cb5ed4ed74fc567b78a72936203f587eba460af1df11281c9326cd3709", + "sha256": "471951813a97006d899db4948acc654a4f28c440083ea08178935ce20b173ec1", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.1.2" + "version": "4.2.2" }, "flutter_svg": { "dependency": "direct main", "description": { "name": "flutter_svg", - "sha256": "87fbd7c534435b6c5d9d98b01e1fd527812b82e68ddd8bd35fc45ed0fa8f0a95", + "sha256": "35882981abcbfb8c15b286f0cd690ff25bac12d95eff3e25ee207f37d4c42e7f", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.2.3" + "version": "2.3.0" }, "flutter_test": { "dependency": "direct dev", @@ -832,11 +892,11 @@ "dependency": "direct main", "description": { "name": "flutter_timezone", - "sha256": "978192f2f9ea6d019a4de4f0211d76a9af955ca24865828fa98ca4e20cf0cb3c", + "sha256": "869677426fde92dbe170fb7d2d4929f2a8343c2f5f62f08b0bb64f908630b073", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.0.1" + "version": "5.1.0" }, "flutter_web_plugins": { "dependency": "transitive", @@ -858,11 +918,11 @@ "dependency": "transitive", "description": { "name": "get_it", - "sha256": "ae78de7c3f2304b8d81f2bb6e320833e5e81de942188542328f074978cc0efa9", + "sha256": "568d62f0e68666fb5d95519743b3c24a34c7f19d834b0658c46e26d778461f66", "url": "https://pub.dev" }, "source": "hosted", - "version": "8.3.0" + "version": "9.2.1" }, "glob": { "dependency": "transitive", @@ -914,6 +974,16 @@ "source": "hosted", "version": "0.7.0" }, + "hooks": { + "dependency": "transitive", + "description": { + "name": "hooks", + "sha256": "a41af4e8fc687cd6d33de9751eb936c8c0204ebe2bcb6c15ecf707504bf47f31", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "2.0.0" + }, "html": { "dependency": "transitive", "description": { @@ -955,25 +1025,24 @@ "version": "4.1.2" }, "icon_font_generator": { - "dependency": "direct dev", + "dependency": "transitive", "description": { - "path": ".", - "ref": "file_path_fix", - "resolved-ref": "134cfbd4d6a16f29ac31b11fa99d1db0c64fbd52", - "url": "https://github.com/Gaurav192/icon_font_generator.git" + "name": "icon_font_generator", + "sha256": "ee807b461e5cd6c543cf55fd41298158837e18d70014dfeb6f7d285647e83235", + "url": "https://pub.dev" }, - "source": "git", - "version": "3.1.0" + "source": "hosted", + "version": "4.1.0" }, "image": { "dependency": "transitive", "description": { "name": "image", - "sha256": "492bd52f6c4fbb6ee41f781ff27765ce5f627910e1e0cbecfa3d9add5562604c", + "sha256": "f9881ff4998044947ec38d098bc7c8316ae1186fa786eddffdb867b9bc94dfce", "url": "https://pub.dev" }, "source": "hosted", - "version": "4.7.2" + "version": "4.8.0" }, "image_size_getter": { "dependency": "transitive", @@ -1005,35 +1074,45 @@ "source": "hosted", "version": "1.0.5" }, - "js": { + "jni": { "dependency": "transitive", "description": { - "name": "js", - "sha256": "f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3", + "name": "jni", + "sha256": "c2230682d5bc2362c1c9e8d3c7f406d9cbba23ab3f2e203a025dd47e0fb2e68f", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.6.7" + "version": "1.0.0" + }, + "jni_flutter": { + "dependency": "transitive", + "description": { + "name": "jni_flutter", + "sha256": "8b59e590786050b1cd866677dddaf76b1ade5e7bc751abe04b86e84d379d3ba6", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "1.0.1" }, "json_annotation": { "dependency": "direct main", "description": { "name": "json_annotation", - "sha256": "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1", + "sha256": "2a743920d81b7910627f68ee2c9ac1fc0bfee32b9fc3403587d7c6791ca12f80", "url": "https://pub.dev" }, "source": "hosted", - "version": "4.9.0" + "version": "4.12.0" }, "json_serializable": { "dependency": "direct dev", "description": { "name": "json_serializable", - "sha256": "c5b2ee75210a0f263c6c7b9eeea80553dbae96ea1bf57f02484e806a3ffdffa3", + "sha256": "ffcd10cde35a93b2abbbcc26bd9971f4ca93763e8abe78d855e3c4177797e501", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.11.2" + "version": "6.14.0" }, "leak_tracker": { "dependency": "transitive", @@ -1079,21 +1158,21 @@ "dependency": "transitive", "description": { "name": "lints", - "sha256": "a5e2b223cb7c9c8efdc663ef484fdd95bb243bff242ef5b13e26883547fce9a0", + "sha256": "12f842a479589fea194fe5c5a3095abc7be0c1f2ddfa9a0e76aed1dbd26a87df", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.0.0" + "version": "6.1.0" }, "logger": { "dependency": "direct main", "description": { "name": "logger", - "sha256": "a7967e31b703831a893bbc3c3dd11db08126fe5f369b5c648a36f821979f5be3", + "sha256": "25aee487596a6257655a1e091ec2ae66bc30e7af663592cc3a27e6591e05035c", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.6.2" + "version": "2.7.0" }, "logging": { "dependency": "transitive", @@ -1106,14 +1185,14 @@ "version": "1.3.0" }, "markdown": { - "dependency": "transitive", + "dependency": "direct main", "description": { "name": "markdown", - "sha256": "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1", + "sha256": "ee85086ad7698b42522c6ad42fe195f1b9898e4d974a1af4576c1a3a176cada9", "url": "https://pub.dev" }, "source": "hosted", - "version": "7.3.0" + "version": "7.3.1" }, "markdown_widget": { "dependency": "direct main", @@ -1129,21 +1208,21 @@ "dependency": "transitive", "description": { "name": "matcher", - "sha256": "dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2", + "sha256": "dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.12.17" + "version": "0.12.19" }, "material_color_utilities": { - "dependency": "direct main", + "dependency": "transitive", "description": { "name": "material_color_utilities", - "sha256": "f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec", + "sha256": "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.11.1" + "version": "0.13.0" }, "material_design_icons_flutter": { "dependency": "direct main", @@ -1155,15 +1234,25 @@ "source": "hosted", "version": "6.0.7296" }, + "melos": { + "dependency": "direct dev", + "description": { + "name": "melos", + "sha256": "9dcac9ca25da86540d1e843f85fffb29967cc5c79d76ca1aacddb57590cee84e", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "7.8.0" + }, "meta": { "dependency": "transitive", "description": { "name": "meta", - "sha256": "e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c", + "sha256": "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.16.0" + "version": "1.17.0" }, "mime": { "dependency": "transitive", @@ -1179,21 +1268,31 @@ "dependency": "direct dev", "description": { "name": "mockito", - "sha256": "2314cbe9165bcd16106513df9cf3c3224713087f09723b128928dc11a4379f99", + "sha256": "eff30d002f0c8bf073b6f929df4483b543133fcafce056870163587b03f1d422", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.5.0" + "version": "5.6.4" }, "msix": { "dependency": "direct dev", "description": { "name": "msix", - "sha256": "f88033fcb9e0dd8de5b18897cbebbd28ea30596810f4a7c86b12b0c03ace87e5", + "sha256": "b6b08e7a7b5d1845f2b1d31216d5b1fb558e98251efefe54eb79ed00d27bc2ac", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.16.12" + "version": "3.16.13" + }, + "mustache_template": { + "dependency": "transitive", + "description": { + "name": "mustache_template", + "sha256": "544ff0b837836f5ad6b351e7a676ff7c2cad4fa412c465908aeb9358caddb6fc", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "2.0.4" }, "named_html_color": { "dependency": "direct main", @@ -1205,6 +1304,16 @@ "source": "hosted", "version": "0.0.3+1" }, + "native_toolchain_c": { + "dependency": "transitive", + "description": { + "name": "native_toolchain_c", + "sha256": "f59351d28f49520cd3a74eb1f41c5f19ae15e53c65a3231d14af672e46510a96", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.19.1" + }, "nested": { "dependency": "direct main", "description": { @@ -1235,15 +1344,25 @@ "source": "hosted", "version": "2.0.2" }, + "objective_c": { + "dependency": "transitive", + "description": { + "name": "objective_c", + "sha256": "6cb691c686fa2838c6deb34980d426145c2a5d537491cb83d463c33cdbc726ed", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "9.4.1" + }, "open_file": { "dependency": "direct main", "description": { "name": "open_file", - "sha256": "d17e2bddf5b278cb2ae18393d0496aa4f162142ba97d1a9e0c30d476adf99c0e", + "sha256": "b22decdae85b459eac24aeece48f33845c6f16d278a9c63d75c5355345ca236b", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.5.10" + "version": "3.5.11" }, "open_file_android": { "dependency": "transitive", @@ -1259,11 +1378,11 @@ "dependency": "transitive", "description": { "name": "open_file_ios", - "sha256": "02996f01e5f6863832068e97f8f3a5ef9b613516db6897f373b43b79849e4d07", + "sha256": "a5acd07ba1f304f807a97acbcc489457e1ad0aadff43c467987dd9eef814098f", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.0.3" + "version": "1.0.4" }, "open_file_linux": { "dependency": "transitive", @@ -1279,11 +1398,11 @@ "dependency": "transitive", "description": { "name": "open_file_mac", - "sha256": "1440b1e37ceb0642208cfeb2c659c6cda27b25187a90635c9d1acb7d0584d324", + "sha256": "cd293f6750de6438ab2390513c99128ade8c974825d4d8128886d1cda8c64d01", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.0.3" + "version": "1.0.4" }, "open_file_platform_interface": { "dependency": "transitive", @@ -1329,21 +1448,21 @@ "dependency": "direct main", "description": { "name": "package_info_plus", - "sha256": "f69da0d3189a4b4ceaeb1a3defb0f329b3b352517f52bed4290f83d4f06bc08d", + "sha256": "4bf625947f6c7713ee242296a682e23e44823c09cf9d79e4f1238923c92db852", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.0.0" + "version": "10.1.0" }, "package_info_plus_platform_interface": { "dependency": "transitive", "description": { "name": "package_info_plus_platform_interface", - "sha256": "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086", + "sha256": "db762cb2f4f25ee60fb6359773861b0f199e00b90d237bd85a76a1e806b46ef4", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.2.1" + "version": "4.1.0" }, "package_rename": { "dependency": "direct dev", @@ -1389,21 +1508,21 @@ "dependency": "transitive", "description": { "name": "path_provider_android", - "sha256": "f2c65e21139ce2c3dad46922be8272bb5963516045659e71bb16e151c93b580e", + "sha256": "69cbd515a62b94d32a7944f086b2f82b4ac40a1d45bebfc00813a430ab2dabcd", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.2.22" + "version": "2.3.1" }, "path_provider_foundation": { "dependency": "transitive", "description": { "name": "path_provider_foundation", - "sha256": "6d13aece7b3f5c5a9731eaf553ff9dcbc2eff41087fd2df587fd0fed9a3eb0c4", + "sha256": "2a376b7d6392d80cd3705782d2caa734ca4727776db0b6ec36ef3f1855197699", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.5.1" + "version": "2.6.0" }, "path_provider_linux": { "dependency": "transitive", @@ -1439,11 +1558,11 @@ "dependency": "transitive", "description": { "name": "petitparser", - "sha256": "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1", + "sha256": "91bd59303e9f769f108f8df05e371341b15d59e995e6806aefab827b58336675", "url": "https://pub.dev" }, "source": "hosted", - "version": "7.0.1" + "version": "7.0.2" }, "platform": { "dependency": "transitive", @@ -1479,11 +1598,31 @@ "dependency": "transitive", "description": { "name": "posix", - "sha256": "6323a5b0fa688b6a010df4905a56b00181479e6d10534cecfecede2aa55add61", + "sha256": "185ef7606574f789b40f289c233efa52e96dead518aed988e040a10737febb07", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.0.3" + "version": "6.5.0" + }, + "process": { + "dependency": "transitive", + "description": { + "name": "process", + "sha256": "c6248e4526673988586e8c00bb22a49210c258dc91df5227d5da9748ecf79744", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "5.0.5" + }, + "prompts": { + "dependency": "transitive", + "description": { + "name": "prompts", + "sha256": "3773b845e85a849f01e793c4fc18a45d52d7783b4cb6c0569fad19f9d0a774a1", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "2.0.0" }, "provider": { "dependency": "direct main", @@ -1505,6 +1644,16 @@ "source": "hosted", "version": "2.2.0" }, + "pub_updater": { + "dependency": "transitive", + "description": { + "name": "pub_updater", + "sha256": "739a0161d73a6974c0675b864fb0cf5147305f7b077b7f03a58fa7a9ab3e7e7d", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.5.0" + }, "pubspec_parse": { "dependency": "transitive", "description": { @@ -1535,6 +1684,16 @@ "source": "hosted", "version": "4.1.0" }, + "record_use": { + "dependency": "transitive", + "description": { + "name": "record_use", + "sha256": "2551bd8eecfe95d14ae75f6021ad0248be5c27f138c2ec12fcb52b500b3ba1ed", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.6.0" + }, "retry": { "dependency": "direct main", "description": { @@ -1569,41 +1728,41 @@ "dependency": "direct main", "description": { "name": "share_plus", - "sha256": "14c8860d4de93d3a7e53af51bff479598c4e999605290756bbbe45cf65b37840", + "sha256": "a857d8b1479250aff6b57a51b2c02d31ca05848d441817c43f1640c885c286c0", "url": "https://pub.dev" }, "source": "hosted", - "version": "12.0.1" + "version": "13.1.0" }, "share_plus_platform_interface": { "dependency": "transitive", "description": { "name": "share_plus_platform_interface", - "sha256": "88023e53a13429bd65d8e85e11a9b484f49d4c190abbd96c7932b74d6927cc9a", + "sha256": "7f7ae28cf400d13f811e297ff37742dba83b79e0a6f5dce14eec0248274e6ce9", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.1.0" + "version": "7.1.0" }, "shared_preferences": { "dependency": "direct main", "description": { "name": "shared_preferences", - "sha256": "2939ae520c9024cb197fc20dee269cd8cdbf564c8b5746374ec6cacdc5169e64", + "sha256": "c3025c5534b01739267eb7d76959bbc25a6d10f6988e1c2a3036940133dd10bf", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.5.4" + "version": "2.5.5" }, "shared_preferences_android": { "dependency": "transitive", "description": { "name": "shared_preferences_android", - "sha256": "83af5c682796c0f7719c2bbf74792d113e40ae97981b8f266fa84574573556bc", + "sha256": "e8d4762b1e2e8578fc4d0fd548cebf24afd24f49719c08974df92834565e2c53", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.4.18" + "version": "2.4.23" }, "shared_preferences_foundation": { "dependency": "transitive", @@ -1629,11 +1788,11 @@ "dependency": "transitive", "description": { "name": "shared_preferences_platform_interface", - "sha256": "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80", + "sha256": "649dc798a33931919ea356c4305c2d1f81619ea6e92244070b520187b5140ef9", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.4.1" + "version": "2.4.2" }, "shared_preferences_web": { "dependency": "transitive", @@ -1742,24 +1901,24 @@ "version": "0.2.12" }, "source_gen": { - "dependency": "direct dev", + "dependency": "transitive", "description": { "name": "source_gen", - "sha256": "7b19d6ba131c6eb98bfcbf8d56c1a7002eba438af2e7ae6f8398b2b0f4f381e3", + "sha256": "ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.1.0" + "version": "4.2.3" }, "source_helper": { "dependency": "transitive", "description": { "name": "source_helper", - "sha256": "6a3c6cc82073a8797f8c4dc4572146114a39652851c157db37e964d9c7038723", + "sha256": "4227d54ceefd0bb8ca4c8fcb96e1719dc53f1ee1b6e2ca9d7a6069da160e4eae", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.3.8" + "version": "1.3.12" }, "source_map_stack_trace": { "dependency": "transitive", @@ -1785,51 +1944,51 @@ "dependency": "transitive", "description": { "name": "source_span", - "sha256": "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c", + "sha256": "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.10.1" + "version": "1.10.2" }, "sqflite": { "dependency": "direct main", "description": { "name": "sqflite", - "sha256": "e2297b1da52f127bc7a3da11439985d9b536f75070f3325e62ada69a5c585d03", + "sha256": "564cfed0746fe53140c23b70b308e045c3b31f17778f2f326ccb7d804ea0250a", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.4.2" + "version": "2.4.2+1" }, "sqflite_android": { "dependency": "transitive", "description": { "name": "sqflite_android", - "sha256": "ecd684501ebc2ae9a83536e8b15731642b9570dc8623e0073d227d0ee2bfea88", + "sha256": "881e28efdcc9950fd8e9bb42713dcf1103e62a2e7168f23c9338d82db13dec40", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.4.2+2" + "version": "2.4.2+3" }, "sqflite_common": { "dependency": "transitive", "description": { "name": "sqflite_common", - "sha256": "6ef422a4525ecc601db6c0a2233ff448c731307906e92cabc9ba292afaae16a6", + "sha256": "1581ffbf7a0e333b380d6a30737d78516b826cb35beb7fb0bf8a3ea0c678b465", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.5.6" + "version": "2.5.8" }, "sqflite_common_ffi": { "dependency": "direct main", "description": { "name": "sqflite_common_ffi", - "sha256": "8d7b8749a516cbf6e9057f9b480b716ad14fc4f3d3873ca6938919cc626d9025", + "sha256": "cd0c7f7de39a08f2d54ef144d9058c46eca8461879aaa648025643455c1e5a20", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.3.7+1" + "version": "2.4.0+3" }, "sqflite_darwin": { "dependency": "transitive", @@ -1855,11 +2014,11 @@ "dependency": "transitive", "description": { "name": "sqlite3", - "sha256": "3145bd74dcdb4fd6f5c6dda4d4e4490a8087d7f286a14dee5d37087290f0f8a2", + "sha256": "9488c7d2cdb1091c91cacf7e207cff81b28bff8e366f042bad3afe7d34afe189", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.9.4" + "version": "3.3.2" }, "stack_trace": { "dependency": "transitive", @@ -1905,11 +2064,11 @@ "dependency": "transitive", "description": { "name": "synchronized", - "sha256": "c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0", + "sha256": "63896c27e81b28f8cb4e69ead0d3e8f03f1d1e5fc531a3e579cabed6a2c7c9e5", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.4.0" + "version": "3.4.0+1" }, "term_glyph": { "dependency": "transitive", @@ -1925,31 +2084,31 @@ "dependency": "direct dev", "description": { "name": "test", - "sha256": "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb", + "sha256": "280d6d890011ca966ad08df7e8a4ddfab0fb3aa49f96ed6de56e3521347a9ae7", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.26.2" + "version": "1.30.0" }, "test_api": { "dependency": "transitive", "description": { "name": "test_api", - "sha256": "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00", + "sha256": "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.7.6" + "version": "0.7.10" }, "test_core": { "dependency": "transitive", "description": { "name": "test_core", - "sha256": "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a", + "sha256": "0381bd1585d1a924763c308100f2138205252fb90c9d4eeaf28489ee65ccde51", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.6.11" + "version": "0.6.16" }, "test_cov_console": { "dependency": "direct dev", @@ -1975,21 +2134,11 @@ "dependency": "direct main", "description": { "name": "timezone", - "sha256": "dd14a3b83cfd7cb19e7888f1cbc20f258b8d71b54c06f79ac585f14093a287d1", + "sha256": "784a5e34d2eb62e1326f24d6f600aaaee452eb8ca8ef2f384a59244e292d158b", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.10.1" - }, - "timing": { - "dependency": "transitive", - "description": { - "name": "timing", - "sha256": "62ee18aca144e4a9f29d212f5a4c6a053be252b895ab14b5821996cff4ed90fe", - "url": "https://pub.dev" - }, - "source": "hosted", - "version": "1.0.2" + "version": "0.11.0" }, "tuple": { "dependency": "direct main", @@ -2035,21 +2184,21 @@ "dependency": "transitive", "description": { "name": "url_launcher_android", - "sha256": "767344bf3063897b5cf0db830e94f904528e6dd50a6dfaf839f0abf509009611", + "sha256": "17bc677f0b301615530dd1d67e0a9828cafa2d0b6b6eae4cd3679b7eac4a273c", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.3.28" + "version": "6.3.30" }, "url_launcher_ios": { "dependency": "transitive", "description": { "name": "url_launcher_ios", - "sha256": "cfde38aa257dae62ffe79c87fab20165dfdf6988c1d31b58ebf59b9106062aad", + "sha256": "580fe5dfb51671ae38191d316e027f6b76272b026370708c2d898799750a02b0", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.3.6" + "version": "6.4.1" }, "url_launcher_linux": { "dependency": "transitive", @@ -2085,11 +2234,11 @@ "dependency": "transitive", "description": { "name": "url_launcher_web", - "sha256": "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2", + "sha256": "85c81589622fbc87c1c683aaea164d3604a7777495a79d91e39ffcdec39ddb34", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.4.1" + "version": "2.4.3" }, "url_launcher_windows": { "dependency": "transitive", @@ -2105,21 +2254,21 @@ "dependency": "direct main", "description": { "name": "uuid", - "sha256": "a11b666489b1954e01d992f3d601b1804a33937b5a8fe677bd26b8a9f96f96e8", + "sha256": "1fef9e8e11e2991bb773070d4656b7bd5d850967a2456cfc83cf47925ba79489", "url": "https://pub.dev" }, "source": "hosted", - "version": "4.5.2" + "version": "4.5.3" }, "vector_graphics": { - "dependency": "transitive", + "dependency": "direct main", "description": { "name": "vector_graphics", - "sha256": "a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6", + "sha256": "2306c03da2ba81724afeb589c351ebbc0aa7d86005925be8f8735856dbe5e42d", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.1.19" + "version": "1.2.2" }, "vector_graphics_codec": { "dependency": "transitive", @@ -2135,11 +2284,11 @@ "dependency": "transitive", "description": { "name": "vector_graphics_compiler", - "sha256": "d354a7ec6931e6047785f4db12a1f61ec3d43b207fc0790f863818543f8ff0dc", + "sha256": "7ee12e6dffe0fc8e755179d6d91b3b34f5924223fc104d85572ef9180d73d172", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.1.19" + "version": "1.2.5" }, "vector_math": { "dependency": "transitive", @@ -2165,21 +2314,21 @@ "dependency": "transitive", "description": { "name": "vm_service", - "sha256": "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60", + "sha256": "0016aef94fc66495ac78af5859181e3f3bf2026bd8eecc72b9565601e19ab360", "url": "https://pub.dev" }, "source": "hosted", - "version": "15.0.2" + "version": "15.2.0" }, "watcher": { "dependency": "transitive", "description": { "name": "watcher", - "sha256": "f52385d4f73589977c80797e60fe51014f7f2b957b5e9a62c3f6ada439889249", + "sha256": "1398c9f081a753f9226febe8900fce8f7d0a67163334e1c94a2438339d79d635", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.0" + "version": "1.2.1" }, "web": { "dependency": "transitive", @@ -2235,21 +2384,21 @@ "dependency": "transitive", "description": { "name": "win32", - "sha256": "d7cb55e04cd34096cd3a79b3330245f54cb96a370a1c27adb3c84b917de8b08e", + "sha256": "ba6f4bba816c8d7e3c1580e170f3786d216951cc6b94babc3b814c08d2cb2738", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.15.0" + "version": "6.3.0" }, "win32_registry": { "dependency": "transitive", "description": { "name": "win32_registry", - "sha256": "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae", + "sha256": "73b1d78920a9d6e03f8b4e43e612b87bf3152a0e5c5e5150267762b7c4116904", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.1.0" + "version": "3.0.3" }, "worker_manager": { "dependency": "transitive", @@ -2290,10 +2439,20 @@ }, "source": "hosted", "version": "3.1.3" + }, + "yaml_edit": { + "dependency": "transitive", + "description": { + "name": "yaml_edit", + "sha256": "07c9e63ba42519745182b88ca12264a7ba2484d8239958778dfe4d44fe760488", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "2.2.4" } }, "sdks": { - "dart": ">=3.9.0 <4.0.0", - "flutter": ">=3.35.0" + "dart": ">=3.11.0 <4.0.0", + "flutter": ">=3.38.4" } } diff --git a/pkgs/by-name/no/normcap/package.nix b/pkgs/by-name/no/normcap/package.nix index e6a3da9b82b4..57157ae084cd 100644 --- a/pkgs/by-name/no/normcap/package.nix +++ b/pkgs/by-name/no/normcap/package.nix @@ -46,6 +46,7 @@ ps.buildPythonApplication (finalAttrs: { pythonRelaxDeps = [ "jeepney" "shiboken6" + "zxing-cpp" ]; build-system = [ diff --git a/pkgs/by-name/ol/ollama/package.nix b/pkgs/by-name/ol/ollama/package.nix index 24ca0546d0ff..f262cba0f285 100644 --- a/pkgs/by-name/ol/ollama/package.nix +++ b/pkgs/by-name/ol/ollama/package.nix @@ -152,13 +152,13 @@ let in goBuild (finalAttrs: { pname = "ollama"; - version = "0.32.4"; + version = "0.32.5"; src = fetchFromGitHub { owner = "ollama"; repo = "ollama"; tag = "v${finalAttrs.version}"; - hash = "sha256-jeoxQIIrUsjJurBQuyKjGGOAPjfONGTF7n2+Cq4ulNY="; + hash = "sha256-SqxFMKTGu5e6FdB5abuYez8Aejf7JY7C6e6GuOMYd4w="; }; vendorHash = "sha256-HMwoaFBMbpoy8f0I+O+i7kIa9BslLu3FcVWeaIOkpvs="; diff --git a/pkgs/by-name/op/opencode/package.nix b/pkgs/by-name/op/opencode/package.nix index 47a147a43bff..b42d27aa3a21 100644 --- a/pkgs/by-name/op/opencode/package.nix +++ b/pkgs/by-name/op/opencode/package.nix @@ -16,7 +16,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "opencode"; - version = "1.18.9"; + version = "1.18.11"; __structuredAttrs = true; strictDeps = true; @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { owner = "anomalyco"; repo = "opencode"; tag = "v${finalAttrs.version}"; - hash = "sha256-uvKzjPquhjm5OdDdoqexJQfDkN0OOXOW8RbdSka12NQ="; + hash = "sha256-Rg+NeRLeu0e+WSTZd8oJzV3XMMxXZCZ5LImDcCraX8g="; }; node_modules = stdenvNoCC.mkDerivation { @@ -78,7 +78,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { # NOTE: Required else we get errors that our fixed-output derivation references store paths dontFixup = true; - outputHash = "sha256-cXA4umq5rPApiQdpFGB8jGmFB+e1+WkoFZUXKak1za0="; + outputHash = "sha256-lHr4g4Kw9CvyDHiuyuCDsyk9vOXzz/My5bI9/zd5aYE="; outputHashAlgo = "sha256"; outputHashMode = "recursive"; }; diff --git a/pkgs/by-name/op/openobserve/package.nix b/pkgs/by-name/op/openobserve/package.nix index 7df74346a3ce..0c7b07ad99be 100644 --- a/pkgs/by-name/op/openobserve/package.nix +++ b/pkgs/by-name/op/openobserve/package.nix @@ -50,13 +50,13 @@ rustPlatform.buildRustPackage ( in { pname = "openobserve"; - version = "0.91.3"; + version = "0.91.5"; src = fetchFromGitHub { owner = "openobserve"; repo = "openobserve"; tag = "v${finalAttrs.version}"; - hash = "sha256-XPldg4q6PeBDHV0W9tkWg7tdbp7rLDCRP8ux0a1jqec="; + hash = "sha256-3K6xaXFmhWY0ElqiFgR8mEi0XUVBF/cRNwONqLhniPc="; }; patches = [ diff --git a/pkgs/by-name/op/openwebrx/package.nix b/pkgs/by-name/op/openwebrx/package.nix index 9f8872f01847..6ceb2dcb78e1 100644 --- a/pkgs/by-name/op/openwebrx/package.nix +++ b/pkgs/by-name/op/openwebrx/package.nix @@ -134,5 +134,7 @@ python3Packages.buildPythonApplication rec { description = "Simple DSP library and command-line tool for Software Defined Radio"; mainProgram = "openwebrx"; license = lib.licenses.gpl3Only; + # Hasn't been updated in a long time, and is broken since 2026-07-14 + broken = true; }; } diff --git a/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix b/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix index c5138c78a579..57a89ebec642 100644 --- a/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix +++ b/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix @@ -1,14 +1,14 @@ { - version = "1.83.0"; + version = "1.83.1"; hashes = { - linux-aarch_64 = "sha256-Nwnk4Upg8VZCVbR/bpJDct/wI6GGaTICK+Sh711ZVEM="; - linux-ppcle_64 = "sha256-xUwugnrRQQqEkupYFh7SPtqtNmXmNCjAE+msHskmPXY="; - linux-s390_64 = "sha256-hj+QMaSxtX+hs6G5qCxf7ON2bDvpEGovt9iuVFwsXAQ="; - linux-x86_32 = "sha256-qJ034I7Im1pEn5u6W16y662y4+d7ZpB9EQtd7hkSCG4="; - linux-x86_64 = "sha256-oZrnSqTLA+HQEmlWKsYWXsMqhIp769AyrqmguVaXGLo="; - osx-aarch_64 = "sha256-w+3q+DtvfVzsqm9PfeMq6WyUn0jJorp0NngnH6HQh3I="; - osx-x86_64 = "sha256-w+3q+DtvfVzsqm9PfeMq6WyUn0jJorp0NngnH6HQh3I="; - windows-x86_32 = "sha256-fwDjhD8Jhy7M7qPSc8vJSUA8H/OhWeOyV/69uuZX+9Y="; - windows-x86_64 = "sha256-MER2cr8kaMO3zVTLujYr4jPX8jcbBqbHf9/Fxb0CbJY="; + linux-aarch_64 = "sha256-WvVUQ2m9hVcRGr++0hRTu2+oZ78yol8v/l9yNm5wXO8="; + linux-ppcle_64 = "sha256-X3+mYub01d3mwGZ6aNRfXSxfjNE2Tw1+xETUc/jC9Oc="; + linux-s390_64 = "sha256-CgdF8/0GCb/P8sUCMCdxByqHeD86PN6P4V1q9SbPLPs="; + linux-x86_32 = "sha256-N8xukQz+zPnnTi8RaELXjiP/PoT+ZBemSjvoXjp49R8="; + linux-x86_64 = "sha256-20BE54OR1aI0ORQ8gUfwe6WHdnVYe01I87aPvuOJNYk="; + osx-aarch_64 = "sha256-Ny4TslywWOpuOrbLVLoUWNXSu+HP3NN7xX6CuHJlbiE="; + osx-x86_64 = "sha256-Ny4TslywWOpuOrbLVLoUWNXSu+HP3NN7xX6CuHJlbiE="; + windows-x86_32 = "sha256-DdroVwr0NVeFGrM0JxnqfRJFXx1j3DVhGrEzTyJ6++8="; + windows-x86_64 = "sha256-9GVLC44frt+Jf0q811TFJQy0iv4H1ZXlbvyftHhzbHM="; }; } diff --git a/pkgs/by-name/qo/qogir-theme/package.nix b/pkgs/by-name/qo/qogir-theme/package.nix new file mode 100644 index 000000000000..fda0abfa0fa0 --- /dev/null +++ b/pkgs/by-name/qo/qogir-theme/package.nix @@ -0,0 +1,80 @@ +{ + lib, + stdenv, + fetchFromGitHub, + gitUpdater, + jdupes, + sassc, + which, + themeVariants ? [ ], # default: blue + colorVariants ? [ ], # default: all + tweaks ? [ ], +}: + +let + pname = "qogir-theme"; + +in +lib.checkListOfEnum "${pname}: theme variants" [ "default" "manjaro" "ubuntu" "all" ] themeVariants + lib.checkListOfEnum + "${pname}: color variants" + [ "standard" "light" "dark" ] + colorVariants + lib.checkListOfEnum + "${pname}: tweaks" + [ "image" "square" "round" ] + tweaks + + stdenv.mkDerivation + rec { + inherit pname; + version = "2025-08-17"; + + src = fetchFromGitHub { + owner = "vinceliuice"; + repo = "qogir-theme"; + rev = version; + hash = "sha256-LS1BE2jR08/JW2+rixYhTmctAfK2yZVWIE4QnAX9PDQ="; + }; + + nativeBuildInputs = [ + jdupes + sassc + which + ]; + + postPatch = '' + patchShebangs install.sh + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out/share/themes + + name= HOME="$TMPDIR" ./install.sh \ + ${lib.optionalString (themeVariants != [ ]) "--theme " + toString themeVariants} \ + ${lib.optionalString (colorVariants != [ ]) "--color " + toString colorVariants} \ + ${lib.optionalString (tweaks != [ ]) "--tweaks " + toString tweaks} \ + --dest $out/share/themes + + mkdir -p $out/share/doc/qogir-theme + cp -a src/firefox $out/share/doc/qogir-theme + + rm $out/share/themes/*/{AUTHORS,COPYING} + + jdupes --quiet --link-soft --recurse $out/share + + runHook postInstall + ''; + + passthru.updateScript = gitUpdater { }; + + meta = { + description = "Flat Design theme for GTK based desktop environments"; + homepage = "https://github.com/vinceliuice/Qogir-theme"; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; + }; + } diff --git a/pkgs/by-name/rs/rs-lxmf/package.nix b/pkgs/by-name/rs/rs-lxmf/package.nix index a7da96f88d3e..8bd7b5fc55d0 100644 --- a/pkgs/by-name/rs/rs-lxmf/package.nix +++ b/pkgs/by-name/rs/rs-lxmf/package.nix @@ -9,14 +9,14 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rs-lxmf"; - version = "1.0.1"; + version = "1.1.0"; __structuredAttrs = true; src = fetchFromGitHub { owner = "ratspeak"; repo = "rsLXMF"; tag = "v${finalAttrs.version}"; - hash = "sha256-VxtuDM34EnDya/OPA9H+ihrAdueczqjXsjQZMYenDIE="; + hash = "sha256-NxCLMFPQwNp1Igm1It+71jkyBCBHh6TQmTKMAjYi82k="; }; postPatch = '' @@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: { done ''; - cargoHash = "sha256-qMDqCH2oCZDJ8TQTDtgxooL1Ltn4khVyXr186NfWtKY="; + cargoHash = "sha256-ayEH6+Y0tkA38S0nVCqHhPoIOl+ZsO/AtbVbn13ZpUM="; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; diff --git a/pkgs/by-name/rs/rs-reticulum/package.nix b/pkgs/by-name/rs/rs-reticulum/package.nix index 4b2b4f81fc4e..8816a9589c6f 100644 --- a/pkgs/by-name/rs/rs-reticulum/package.nix +++ b/pkgs/by-name/rs/rs-reticulum/package.nix @@ -13,17 +13,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rs-reticulum"; - version = "1.0.1"; + version = "1.1.0"; __structuredAttrs = true; src = fetchFromGitHub { owner = "ratspeak"; repo = "rsReticulum"; tag = "v${finalAttrs.version}"; - hash = "sha256-MSvIgB/E1Ce8M8vOaXlHQGYnxFf0lT2hg8g0tx6QY/w="; + hash = "sha256-zl29V4dtmEpHHEHgoMnaIeynE+JcMsY7O3d+pycwI1M="; }; - cargoHash = "sha256-Kv3aVET69yI28muyaJop4YQEqOxNeyajK7j5J+jDhe0="; + cargoHash = "sha256-uKdNrCMPeDuS21rcZ9azDkUdsrTZk/JQLiKzSNWjcRw="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/se/secp256k1-jdk/package.nix b/pkgs/by-name/se/secp256k1-jdk/package.nix index 247d13ffd03f..1acb5d832481 100644 --- a/pkgs/by-name/se/secp256k1-jdk/package.nix +++ b/pkgs/by-name/se/secp256k1-jdk/package.nix @@ -7,20 +7,20 @@ maven.buildMavenPackage (finalAttrs: { pname = "secp256k1-jdk"; - version = "0.3"; + version = "0.3.1"; src = fetchFromGitHub { owner = "bitcoinj"; repo = "secp256k1-jdk"; rev = "v${finalAttrs.version}"; - hash = "sha256-kIWBgJ9OueNNDRKf1HHaxt6PFxK2iCuO0TFr8swbiL0="; + hash = "sha256-F2e4NDPEU7ZAu4+fvEd4BRbE2JwCvUiMeXHTMDXbIJE="; }; mvnJdk = jdk25; mvnGoal = "deploy"; # The secp256k1-jdk POM targets a `local-staging` repository using a file URL mvnOffline = false; # We need actions not allowed in Maven offline mode, but Nix sandboxing will still be enforced mvnParameters = "-Drevision=${finalAttrs.version}"; # make snapshot builds reproducible - mvnHash = "sha256-87iDewdy/7lSyvROf1YyrsgvVUJtaivdHdSLig3Ea1Y="; + mvnHash = "sha256-a62jDFapnYV/mguZ/5PDzI5Unz7BnuvieLmpsocYMO4="; strictDeps = true; __structuredAttrs = true; diff --git a/pkgs/by-name/so/soapyuhd/boost-lexical-cast.patch b/pkgs/by-name/so/soapyuhd/boost-lexical-cast.patch new file mode 100644 index 000000000000..139ef09f8b1f --- /dev/null +++ b/pkgs/by-name/so/soapyuhd/boost-lexical-cast.patch @@ -0,0 +1,38 @@ +From 8b86a301540566dad533119a4d3fc6ec721e08ab Mon Sep 17 00:00:00 2001 +From: Martin Pluskal +Date: Thu, 18 Jun 2026 19:47:28 +0200 +Subject: [PATCH] Include explicitly + +UHDSoapyDevice.cpp and SoapyUHDDevice.cpp use boost::lexical_cast but +relied on it being pulled in transitively by another boost header. +Recent Boost no longer does so, breaking the build with +'lexical_cast is not a member of boost'. Include it directly. +--- + SoapyUHDDevice.cpp | 1 + + UHDSoapyDevice.cpp | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/SoapyUHDDevice.cpp b/SoapyUHDDevice.cpp +index 41140a8..673f06c 100644 +--- a/SoapyUHDDevice.cpp ++++ b/SoapyUHDDevice.cpp +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + /*********************************************************************** + * Stream wrapper +diff --git a/UHDSoapyDevice.cpp b/UHDSoapyDevice.cpp +index 88641c5..8ed6574 100644 +--- a/UHDSoapyDevice.cpp ++++ b/UHDSoapyDevice.cpp +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include + + #include + #include diff --git a/pkgs/by-name/so/soapyuhd/package.nix b/pkgs/by-name/so/soapyuhd/package.nix index d104a71165a0..58e39cc6084c 100644 --- a/pkgs/by-name/so/soapyuhd/package.nix +++ b/pkgs/by-name/so/soapyuhd/package.nix @@ -21,6 +21,11 @@ stdenv.mkDerivation { hash = "sha256-/hJ78dUL477gX3c2kV8kUknIk01PUf+ie1Gl7Ujq1Ac="; }; + # Newer versions of Boost do not pull in boost::lexical_cast transitively, so + # it must be explicitly specified. + # Vendored from https://github.com/pothosware/SoapyUHD/pull/76 + patches = [ ./boost-lexical-cast.patch ]; + nativeBuildInputs = [ cmake pkg-config @@ -33,8 +38,14 @@ stdenv.mkDerivation { cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; + # SoapyUHD was originally pinned to C++14 as that was required by UHD at the + # time, but UHD 4.10 upgrades to C++20, so we switch to that here as well. + # https://github.com/pothosware/SoapyUHD/commit/1f7b6fa245f782e5d18453f5cbc6d9f27e6b26df postPatch = '' sed -i "s:DESTINATION .*uhd/modules:DESTINATION $out/lib/uhd/modules:" CMakeLists.txt + + substituteInPlace CMakeLists.txt --replace-fail \ + "set(CMAKE_CXX_STANDARD 14)" "set(CMAKE_CXX_STANDARD 20)" ''; meta = { diff --git a/pkgs/by-name/sr/srsran/package.nix b/pkgs/by-name/sr/srsran/package.nix index 1a9388f38d43..f6e24eee669a 100644 --- a/pkgs/by-name/sr/srsran/package.nix +++ b/pkgs/by-name/sr/srsran/package.nix @@ -68,7 +68,10 @@ stdenv.mkDerivation (finalAttrs: { ''; cmakeFlags = [ - "-DENABLE_WERROR=OFF" + (lib.cmakeBool "ENABLE_WERROR" false) + # The headers provided by UHD 4.10 use features introduced in C++17, and + # srsRAN does not build with higher standard versions such as C++20. + (lib.cmakeFeature "CMAKE_CXX_STANDARD" "17") (lib.cmakeBool "USE_LTE_RATES" enableLteRates) (lib.cmakeBool "ENABLE_AVX" enableAvx) (lib.cmakeBool "ENABLE_AVX2" enableAvx2) diff --git a/pkgs/by-name/tr/trunk-recorder/package.nix b/pkgs/by-name/tr/trunk-recorder/package.nix index 4befe0e22f3e..54bf736a73c0 100644 --- a/pkgs/by-name/tr/trunk-recorder/package.nix +++ b/pkgs/by-name/tr/trunk-recorder/package.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchFromGitHub, + fetchpatch, cmake, git, makeWrapper, @@ -23,15 +24,25 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "trunk-recorder"; - version = "5.1.1"; + version = "5.2.1"; src = fetchFromGitHub { owner = "TrunkRecorder"; repo = "trunk-recorder"; rev = "v${finalAttrs.version}"; - hash = "sha256-2qy6krI5NglkC+bUFfJaEuHIcBoYJrxBRnFs8O0NcZA="; + hash = "sha256-cLreyYLPIMPLYBcsj8QUukbeRnIMIEF3VSTTg9AOumM="; }; + patches = [ + # Fixes build with boost 1.89, reported here: + # https://github.com/TrunkRecorder/trunk-recorder/issues/1140 and fixed in + # https://github.com/TrunkRecorder/trunk-recorder/commit/a7810f36fd3c1e0fb61877f5b8e02a1376f01635 + (fetchpatch { + url = "https://github.com/TrunkRecorder/trunk-recorder/commit/a7810f36fd3c1e0fb61877f5b8e02a1376f01635.patch"; + hash = "sha256-AB0EPHnJJwwHrz59mNlOcyAFOgzisYI0cJOnHjeu3V4="; + }) + ]; + cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=ON" ]; nativeBuildInputs = [ diff --git a/pkgs/by-name/tu/tumbler/package.nix b/pkgs/by-name/tu/tumbler/package.nix index 721c7601ef34..c3da5643c3a7 100644 --- a/pkgs/by-name/tu/tumbler/package.nix +++ b/pkgs/by-name/tu/tumbler/package.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "tumbler"; - version = "4.20.1"; + version = "4.20.2"; src = fetchFromGitLab { domain = "gitlab.xfce.org"; owner = "xfce"; repo = "tumbler"; tag = "tumbler-${finalAttrs.version}"; - hash = "sha256-p4lAFNvCakqrsDa2FP0xbc/khx6eYqAlHwWkk8yEB7Y="; + hash = "sha256-jLSJr3QUl6f1gpdfKw8ycb2+hw9sr1cudBeBwJWI1mk="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/uh/uhd/downstream-pkgs-boost1.89-fix.patch b/pkgs/by-name/uh/uhd/downstream-pkgs-boost1.89-fix.patch new file mode 100644 index 000000000000..51521067c170 --- /dev/null +++ b/pkgs/by-name/uh/uhd/downstream-pkgs-boost1.89-fix.patch @@ -0,0 +1,46 @@ +commit 57706d6f6c9117fbd919228a06365aa6a1999f8a +Author: Doron Behar +Date: Thu Jul 30 13:15:25 2026 +0300 + + cmake: Remove `Boost::system` from `UHDConfig.cmake` component list + + Boost.System has been header-only since Boost 1.69, and as of Boost 1.89 + its CMake package config was removed entirely.[1] + + This makes the `find_dependency(Boost ... COMPONENTS ... system ...)` + call in the installed `UHDConfig.cmake` fail on any downstream project + that does `find_package(UHD)` while linked against `Boost >= 1.89`. + + Timeline of how this happened, for reference: + + - Up to and including v4.9.0.1, UHDConfig.cmake.in had no Boost + dependency check at all. + - ab724a30ec59219b6556a95a76247277aa90854f introduced the + `find_dependency(Boost ... COMPONENTS ... system ...)` call here, to + correctly declare Boost as a transitive dependency of the newly added + `UHD::uhd` imported target. + - c45c296d8fd8d23e1f8cf0b154c23556d90973b0 fixed UHD's own build to stop + requiring `Boost::system`, in response to it being dropped as of Boost + 1.89. That commit did not touch `UHDConfig.cmake.in`, which had only + just gained its own separate `Boost::system` reference ten days + earlier via ab724a30ec59219b6556a95a76247277aa90854f, and so was + missed. + - `v4.10.0.0` ships with both commits, making it the first release where + `UHDConfig.cmake.in`'s Boost dependency check exists but still lists + `system`, breaking `find_package(UHD)` for any consumer linked against + Boost >= 1.89. + + [1]: https://github.com/boostorg/system/commit/7a495bb46d7ccd808e4be2a6589260839b0fd3a3 + +diff --git a/host/cmake/Modules/UHDConfig.cmake.in b/host/cmake/Modules/UHDConfig.cmake.in +index 85fc3e158..ac7417684 100644 +--- a/host/cmake/Modules/UHDConfig.cmake.in ++++ b/host/cmake/Modules/UHDConfig.cmake.in +@@ -30,7 +30,6 @@ find_dependency(Boost ${UHD_BOOST_MIN_VERSION} + date_time + filesystem + program_options +- system + serialization + thread + unit_test_framework diff --git a/pkgs/by-name/uh/uhd/fix-pkg-config.patch b/pkgs/by-name/uh/uhd/fix-pkg-config.patch deleted file mode 100644 index 481de405f5e9..000000000000 --- a/pkgs/by-name/uh/uhd/fix-pkg-config.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 32944bbdbf2c7611e72ec9828464978ca42824ce Mon Sep 17 00:00:00 2001 -From: Jakob Kukla -Date: Fri, 12 Sep 2025 10:31:22 +0000 -Subject: [PATCH] cmake: support absolute paths for install dirs in pkg-config - -The GNUInstallDirs module supports absolute paths for CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR. Some package managers like Nix depend on this behaviour. See https://github.com/NixOS/nixpkgs/issues/144170 for the nixpkgs tracking issue. ---- - host/CMakeLists.txt | 12 ++++++++++++ - host/uhd.pc.in | 4 ++-- - 2 files changed, 14 insertions(+), 2 deletions(-) - -diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt -index 3e93ea1f0c..4cd0afad9d 100644 ---- a/host/CMakeLists.txt -+++ b/host/CMakeLists.txt -@@ -559,6 +559,18 @@ if(CMAKE_CROSSCOMPILING) - set(UHD_PC_LIBS) - endif(CMAKE_CROSSCOMPILING) - -+# Support absolute paths for LIBDIR and INCLUDEDIR -+if(IS_ABSOLUTE "${CMAKE_INSTALL_LIBDIR}") -+ set(UHD_PC_LIBDIR "${CMAKE_INSTALL_LIBDIR}") -+else() -+ set(UHD_PC_LIBDIR "\${exec_prefix}/${CMAKE_INSTALL_LIBDIR}") -+endif() -+if(IS_ABSOLUTE "${CMAKE_INSTALL_INCLUDEDIR}") -+ set(UHD_PC_INCLUDEDIR "${CMAKE_INSTALL_INCLUDEDIR}") -+else() -+ set(UHD_PC_INCLUDEDIR "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}") -+endif() -+ - configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/uhd.pc.in - ${CMAKE_CURRENT_BINARY_DIR}/uhd.pc -diff --git a/host/uhd.pc.in b/host/uhd.pc.in -index 4a5f67c969..f121e2fb70 100644 ---- a/host/uhd.pc.in -+++ b/host/uhd.pc.in -@@ -1,7 +1,7 @@ - prefix=@CMAKE_INSTALL_PREFIX@ - exec_prefix=${prefix} --libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@ --includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ -+libdir=@UHD_PC_LIBDIR@ -+includedir=@UHD_PC_INCLUDEDIR@ - - Name: @CPACK_PACKAGE_NAME@ - Description: @CPACK_PACKAGE_DESCRIPTION_SUMMARY@ diff --git a/pkgs/by-name/uh/uhd/package.nix b/pkgs/by-name/uh/uhd/package.nix index c1be7548187e..190171dc6115 100644 --- a/pkgs/by-name/uh/uhd/package.nix +++ b/pkgs/by-name/uh/uhd/package.nix @@ -1,7 +1,6 @@ { lib, stdenv, - llvmPackages_20, fetchurl, fetchFromGitHub, cmake, @@ -31,27 +30,21 @@ enableN320 ? true, enableE300 ? true, enableE320 ? true, + # passthru.tests + soapyuhd, }: let inherit (lib) optionals cmakeBool; - stdenv' = ( - # Fix a compilation issue on Darwin, that upstream is aware of: - # https://github.com/EttusResearch/uhd/issues/881 - if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then - llvmPackages_20.stdenv - else - stdenv - ); in -stdenv'.mkDerivation (finalAttrs: { +stdenv.mkDerivation (finalAttrs: { pname = "uhd"; # NOTE: Use the following command to update the package, and the uhdImageSrc attribute: # # nix-shell maintainers/scripts/update.nix --argstr package uhd --arg commit true # - version = "4.9.0.1"; + version = "4.10.0.0"; outputs = [ "out" @@ -64,15 +57,22 @@ stdenv'.mkDerivation (finalAttrs: { rev = "v${finalAttrs.version}"; # The updateScript relies on the `src` using `hash`, and not `sha256. To # update the correct hash for the `src` vs the `uhdImagesSrc` - hash = "sha256-AOZYCmkgsM09YORW7dVsPAwecXNZQOxOscJnVOlMoP0="; + hash = "sha256-nqazjHfYIVbqFnfiHdkz1Glws4+t5rgWmojWbi0Ymk8="; }; # Firmware images are downloaded (pre-built) from the respective release on Github uhdImagesSrc = fetchurl { url = "https://github.com/EttusResearch/uhd/releases/download/v${finalAttrs.version}/uhd-images_${finalAttrs.version}.tar.xz"; # Please don't convert this to a hash, in base64, see comment near src's # hash. - sha256 = "15ahcxb7hsylvdzzv0q0shd3wqm7p2y4kzbqk85cvsxbdklxhsvn"; + sha256 = "1pqx5ajg1z8jk1lfh44m58sqf6ypbvn9jm89walfc1h38q4ykj38"; }; + + patches = [ + # Fixes detection of uhd for packages that depend on uhd, see: + # https://github.com/EttusResearch/uhd/pull/939 + ./downstream-pkgs-boost1.89-fix.patch + ]; + inherit (finalAttrs.finalPackage.passthru) pythonPath; passthru = { runtimePython = python3.withPackages (ps: finalAttrs.finalPackage.passthru.pythonPath); @@ -156,7 +156,7 @@ stdenv'.mkDerivation (finalAttrs: { # ABI differences GCC 7.1 # /nix/store/wd6r25miqbk9ia53pp669gn4wrg9n9cj-gcc-7.3.0/include/c++/7.3.0/bits/vector.tcc:394:7: note: parameter passing for argument of type 'std::vector::iterator {aka __gnu_cxx::__normal_iterator >}' changed in GCC 7.1 ] - ++ optionals stdenv'.hostPlatform.isAarch32 [ + ++ optionals stdenv.hostPlatform.isAarch32 [ "-DCMAKE_CXX_FLAGS=-Wno-psabi" ]; @@ -184,12 +184,8 @@ stdenv'.mkDerivation (finalAttrs: { dpdk ]; - patches = [ - ./fix-pkg-config.patch - ]; - # many tests fails on darwin, according to ofborg - doCheck = !stdenv'.hostPlatform.isDarwin; + doCheck = !stdenv.hostPlatform.isDarwin; doInstallCheck = true; @@ -200,7 +196,7 @@ stdenv'.mkDerivation (finalAttrs: { "installFirmware" "removeInstalledTests" ] - ++ optionals (enableUtils && stdenv'.hostPlatform.isLinux) [ + ++ optionals (enableUtils && stdenv.hostPlatform.isLinux) [ "moveUdevRules" ]; @@ -230,6 +226,8 @@ stdenv'.mkDerivation (finalAttrs: { python3 ]; + passthru.tests = { inherit soapyuhd; }; + meta = { description = "USRP Hardware Driver (for Software Defined Radio)"; longDescription = '' diff --git a/pkgs/by-name/un/unity-test/package.nix b/pkgs/by-name/un/unity-test/package.nix index b8b671441320..dd228eeef1c2 100644 --- a/pkgs/by-name/un/unity-test/package.nix +++ b/pkgs/by-name/un/unity-test/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { patches = [ # The meson file does not have the subdir set correctly (fetchpatch2 { - url = "https://patch-diff.githubusercontent.com/raw/ThrowTheSwitch/Unity/pull/771.patch"; - hash = "sha256-r8ldVb7WrzVwTC2CtGul9Jk4Rzt+6ejk+paYAfFlR5M="; + url = "https://patch-diff.githubusercontent.com/raw/ThrowTheSwitch/Unity/pull/771.patch?full_index=1"; + hash = "sha256-b1TGYkqeAVbYftN5/YBdiFB7EsSh56S8PCx53fY8lDo="; }) # Fix up the shebangs in the auto directory as not all are correct (fetchpatch2 { - url = "https://patch-diff.githubusercontent.com/raw/ThrowTheSwitch/Unity/pull/790.patch"; - hash = "sha256-K+OxMe/ZMXPPjZXjGhgc5ULLN7plBwL0hV5gwmgA3FM="; + url = "https://patch-diff.githubusercontent.com/raw/ThrowTheSwitch/Unity/pull/790.patch?full_index=1"; + hash = "sha256-N3DVkSuhZUA+9RIynPwuISf4XkVSA2eNqJqrt67XOhA="; }) ]; diff --git a/pkgs/by-name/ve/vencord/fix-deps.patch b/pkgs/by-name/ve/vencord/fix-deps.patch index 52f8f59e56aa..468b00e4097c 100644 --- a/pkgs/by-name/ve/vencord/fix-deps.patch +++ b/pkgs/by-name/ve/vencord/fix-deps.patch @@ -1,15 +1,15 @@ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml -index 92c50e4e..67a306eb 100644 +index ddf8750c..655c9a7d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml -@@ -162,8 +162,8 @@ importers: - specifier: ^22.13.4 - version: 22.13.13 +@@ -160,8 +160,8 @@ importers: + specifier: ^26.0.1 + version: 26.0.1 '@types/react': - specifier: 18.3.1 - version: 18.3.1 -+ specifier: 19.0.12 -+ version: 19.0.12 ++ specifier: 19.1.0 ++ version: 19.1.0 '@types/react-dom': specifier: 18.3.1 version: 18.3.1 diff --git a/pkgs/by-name/ve/vencord/package.nix b/pkgs/by-name/ve/vencord/package.nix index 6e9298bb6d95..c41b0998d002 100644 --- a/pkgs/by-name/ve/vencord/package.nix +++ b/pkgs/by-name/ve/vencord/package.nix @@ -6,7 +6,7 @@ lib, nix-update, nodejs, - pnpm_10, + pnpm_11, fetchPnpmDeps, pnpmConfigHook, stdenv, @@ -18,24 +18,24 @@ buildWebExtension ? false, }: let - pnpm = pnpm_10; + pnpm = pnpm_11; in stdenv.mkDerivation (finalAttrs: { pname = "vencord"; - version = "1.14.15"; + version = "1.15.0"; src = fetchFromGitHub { owner = "Vendicated"; repo = "Vencord"; tag = "v${finalAttrs.version}"; - hash = "sha256-jQeLZa1rpKDkzWSpAqOa8snGRKLpv9xf9cwJ6hUwMzA="; + hash = "sha256-z3EY/nc9pHPjuMteY8ubYM3sqgjASznEG6B1U4mNCU4="; }; patches = [ ./fix-deps.patch ]; postPatch = '' substituteInPlace packages/vencord-types/package.json \ - --replace-fail '"@types/react": "18.3.1"' '"@types/react": "19.0.12"' + --replace-fail '"@types/react": "18.3.1"' '"@types/react": "19.1.0"' ''; pnpmDeps = fetchPnpmDeps { @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { ; inherit pnpm; fetcherVersion = 4; - hash = "sha256-pm5f6bGm07pzNCqpDHRyKFnuX2ZTE5w9BtJu5xXPHiI="; + hash = "sha256-JmTSfUVHsMG0TcOwXkZWinRxpONZagtwKzESd8Q4LlQ="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/xf/xfce4-panel/package.nix b/pkgs/by-name/xf/xfce4-panel/package.nix index a405e1306290..f5bb1602e41b 100644 --- a/pkgs/by-name/xf/xfce4-panel/package.nix +++ b/pkgs/by-name/xf/xfce4-panel/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "xfce4-panel"; - version = "4.20.7"; + version = "4.20.8"; outputs = [ "out" @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "xfce"; repo = "xfce4-panel"; tag = "xfce4-panel-${finalAttrs.version}"; - hash = "sha256-tL32ymLhV1QK84223iEgGrKdZXm5/nB3MumDyDIrSHQ="; + hash = "sha256-Q+QV0NFM3vL92o6ApPI9qmkkmZiqyjo/Q+lRHLudtGg="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/xf/xfce4-power-manager/package.nix b/pkgs/by-name/xf/xfce4-power-manager/package.nix index b7c95754b531..d921b6e6d63e 100644 --- a/pkgs/by-name/xf/xfce4-power-manager/package.nix +++ b/pkgs/by-name/xf/xfce4-power-manager/package.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "xfce4-power-manager"; - version = "4.20.0"; + version = "4.20.1"; src = fetchFromGitLab { domain = "gitlab.xfce.org"; owner = "xfce"; repo = "xfce4-power-manager"; tag = "xfce4-power-manager-${finalAttrs.version}"; - hash = "sha256-qKUdrr+giLzNemhT3EQsOKTSiIx50NakmK14Ak7ZOCE="; + hash = "sha256-0Pgk5N+Cr75RwOp2dbYB8OOEzmXDVUHzoqFbaUF/Z0k="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/xf/xfce4-settings/package.nix b/pkgs/by-name/xf/xfce4-settings/package.nix index 4c19a9050f9e..35547359b397 100644 --- a/pkgs/by-name/xf/xfce4-settings/package.nix +++ b/pkgs/by-name/xf/xfce4-settings/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "xfce4-settings"; - version = "4.20.4"; + version = "4.20.5"; src = fetchFromGitLab { domain = "gitlab.xfce.org"; owner = "xfce"; repo = "xfce4-settings"; tag = "xfce4-settings-${finalAttrs.version}"; - hash = "sha256-EAiu29wctXg0EjdFVJOl+0nh1A0l2E44v+i/o5l/PQ8="; + hash = "sha256-sHhoxE9YTlIcrJ/G414pwc3wy3Gv0ksnBePqgEbmV8Q="; }; depsBuildBuild = [ diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index cf28c8a48e0b..28d68b002166 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -69,16 +69,16 @@ let in { php82 = mkPhp { - version = "8.2.32"; - hash = "sha256-jyHpiMpN1eFN2fuImIRIeENWbkhygAJ8Tvq2yTGIotE="; + version = "8.2.33"; + hash = "sha256-U2Lyp6DnFoznIv6gBIsaHSjg98wmXEF99nDGVnBpUBg="; }; php83 = mkPhp { - version = "8.3.32"; - hash = "sha256-93fKJGYZZvlLMfaEDNrUN88wUBU324uHKxt6HCRLjQI="; + version = "8.3.33"; + hash = "sha256-+cn00M12ksbj2jY81MpyqCakmuGPXtQwtvyue8KIHhg="; }; php84 = mkPhp { - version = "8.4.23"; - hash = "sha256-wULAY7EM/2jQcnZuP/v7NlSgibk4ZosIMDVkN+6V4Po="; + version = "8.4.24"; + hash = "sha256-KGiQRHWIUQ3xEO3p6c4J8etPmFZjC0f9xA7OcOIDc88="; }; php85 = mkPhp { version = "8.5.9"; diff --git a/pkgs/development/python-modules/boto3-stubs/default.nix b/pkgs/development/python-modules/boto3-stubs/default.nix index 61d7ec62aec5..9b212fa9c108 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -358,13 +358,13 @@ buildPythonPackage (finalAttrs: { pname = "boto3-stubs"; - version = "1.43.59"; + version = "1.43.62"; pyproject = true; src = fetchPypi { pname = "boto3_stubs"; inherit (finalAttrs) version; - hash = "sha256-FYhYt3M6EjpTb52WZcmdZRRShCbjVIC5XeJoSpgYMYE="; + hash = "sha256-pUG/DSBCStQnlAuJOP/zS+oo/A05mQa989GTNxAWRVo="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/daft/Cargo.lock b/pkgs/development/python-modules/daft/Cargo.lock deleted file mode 100644 index 14e788168bcb..000000000000 --- a/pkgs/development/python-modules/daft/Cargo.lock +++ /dev/null @@ -1,10025 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "RustyXML" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b5ace29ee3216de37c0546865ad08edef58b0f9e76838ed8959a84a990e58c5" - -[[package]] -name = "adler2" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - -[[package]] -name = "ahash" -version = "0.8.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" -dependencies = [ - "cfg-if 1.0.4", - "const-random", - "getrandom 0.3.4", - "once_cell", - "version_check", - "zerocopy", -] - -[[package]] -name = "aho-corasick" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" -dependencies = [ - "memchr", -] - -[[package]] -name = "alloc-no-stdlib" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" - -[[package]] -name = "alloc-stdlib" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" -dependencies = [ - "alloc-no-stdlib", -] - -[[package]] -name = "alloca" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" -dependencies = [ - "cc", -] - -[[package]] -name = "allocator-api2" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - -[[package]] -name = "anes" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" - -[[package]] -name = "anstream" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" -dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", -] - -[[package]] -name = "anstyle" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" - -[[package]] -name = "anstyle-parse" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" -dependencies = [ - "utf8parse", -] - -[[package]] -name = "anstyle-query" -version = "1.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "anstyle-wincon" -version = "3.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" -dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.61.2", -] - -[[package]] -name = "anyhow" -version = "1.0.102" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" - -[[package]] -name = "approx" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" -dependencies = [ - "num-traits", -] - -[[package]] -name = "ar_archive_writer" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b" -dependencies = [ - "object", -] - -[[package]] -name = "arc-swap" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a07d1f37ff60921c83bdfc7407723bdefe89b44b98a9b772f225c8f9d67141a6" -dependencies = [ - "rustversion", -] - -[[package]] -name = "arrayref" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" - -[[package]] -name = "arrayvec" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" - -[[package]] -name = "arrow" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffaaa3e009861fd829d0a24dd6f115aa8e4634324bb092147d43baafe69ca4a7" -dependencies = [ - "arrow-arith", - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-cast", - "arrow-csv", - "arrow-data 59.0.0", - "arrow-ipc", - "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema 59.0.0", - "arrow-select", - "arrow-string", -] - -[[package]] -name = "arrow-arith" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ac95125e1d71c4a252b5a9c729aef111e80418f08aaa6dbabd1ba66918247fc" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "chrono", - "num-traits", -] - -[[package]] -name = "arrow-array" -version = "56.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d" -dependencies = [ - "ahash", - "arrow-buffer 56.2.0", - "arrow-data 56.2.0", - "arrow-schema 56.2.0", - "chrono", - "half", - "hashbrown 0.16.1", - "num", -] - -[[package]] -name = "arrow-array" -version = "57.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8955af33b25f3b175ee10af580577280b4bd01f7e823d94c7cdef7cf8c9aef" -dependencies = [ - "ahash", - "arrow-buffer 57.3.0", - "arrow-data 57.3.0", - "arrow-schema 57.3.0", - "chrono", - "half", - "hashbrown 0.16.1", - "num-complex", - "num-integer", - "num-traits", -] - -[[package]] -name = "arrow-array" -version = "58.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841321891f247aa86c6112c80d83d89cb36e0addd020fa2425085b8eb6c3f579" -dependencies = [ - "ahash", - "arrow-buffer 58.2.0", - "arrow-data 58.2.0", - "arrow-schema 58.2.0", - "chrono", - "half", - "hashbrown 0.17.1", - "num-complex", - "num-integer", - "num-traits", -] - -[[package]] -name = "arrow-array" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c60c79628e9a97cb90d7a0dc3e944f216a902f837d4ecabc14d524bddbbc137" -dependencies = [ - "ahash", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "chrono", - "chrono-tz", - "half", - "hashbrown 0.17.1", - "num-complex", - "num-integer", - "num-traits", -] - -[[package]] -name = "arrow-buffer" -version = "56.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc" -dependencies = [ - "bytes", - "half", - "num", -] - -[[package]] -name = "arrow-buffer" -version = "57.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c697ddca96183182f35b3a18e50b9110b11e916d7b7799cbfd4d34662f2c56c2" -dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", -] - -[[package]] -name = "arrow-buffer" -version = "58.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f955dfb73fae000425f49c8226d2044dab60fb7ad4af1e24f961756354d996c9" -dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", -] - -[[package]] -name = "arrow-buffer" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6026f638c400e9878c1b1cc05c3cfd46fbf381285916ab408678701c1df46c1a" -dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", -] - -[[package]] -name = "arrow-cast" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c82c236c3caf8df5664284f3f1fbe89938852163998c3fdbf37e84ac220445e9" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-ord", - "arrow-schema 59.0.0", - "arrow-select", - "atoi", - "base64 0.22.1", - "chrono", - "half", - "lexical-core", - "num-traits", - "ryu", -] - -[[package]] -name = "arrow-csv" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12714e5fb7954159af1e26d4e0d37108bcf1a2ad5ee5c5bf02a944d564d588b7" -dependencies = [ - "arrow-array 59.0.0", - "arrow-cast", - "arrow-schema 59.0.0", - "chrono", - "csv", - "csv-core", - "regex", -] - -[[package]] -name = "arrow-data" -version = "56.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0" -dependencies = [ - "arrow-buffer 56.2.0", - "arrow-schema 56.2.0", - "half", - "num", -] - -[[package]] -name = "arrow-data" -version = "57.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fdd994a9d28e6365aa78e15da3f3950c0fdcea6b963a12fa1c391afb637b304" -dependencies = [ - "arrow-buffer 57.3.0", - "arrow-schema 57.3.0", - "half", - "num-integer", - "num-traits", -] - -[[package]] -name = "arrow-data" -version = "58.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db3b5846209775b6dc8056d77ff9a032b27043383dd5488abd0b663e265b9373" -dependencies = [ - "arrow-buffer 58.2.0", - "arrow-schema 58.2.0", - "half", - "num-integer", - "num-traits", -] - -[[package]] -name = "arrow-data" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd568aa70c4ec5947027b0d5caee94877433b661a0bb9e8ddceeeb5f0c9b1ab" -dependencies = [ - "arrow-buffer 59.0.0", - "arrow-schema 59.0.0", - "half", - "num-integer", - "num-traits", -] - -[[package]] -name = "arrow-flight" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68365401e834743d708094927e2ca727a32d639fe900df04b936e07a36701b74" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-cast", - "arrow-ipc", - "arrow-schema 59.0.0", - "base64 0.22.1", - "bytes", - "futures", - "prost", - "prost-types", - "tonic", - "tonic-prost", -] - -[[package]] -name = "arrow-ipc" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e57ee4d470eab1a021bc4b63fa2b2c15d572892bf227b0a982d3b755a6c662b5" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "arrow-select", - "flatbuffers", - "lz4_flex", - "zstd", -] - -[[package]] -name = "arrow-json" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f47e0e7a284e1f3707a780dc8cd5451b1614e9e398ea2d9ca03c7a2fe9a9ed" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-cast", - "arrow-ord", - "arrow-schema 59.0.0", - "arrow-select", - "chrono", - "half", - "indexmap", - "itoa", - "lexical-core", - "memchr", - "num-traits", - "ryu", - "serde_core", - "serde_json", - "simdutf8", -] - -[[package]] -name = "arrow-ord" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a79cf73ad2eba8686ec2aa9bbf8671208e509025f166afc040cedbd94ffe4983" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "arrow-select", -] - -[[package]] -name = "arrow-row" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea0f7d8ed6182f14952761e2c0f989852d5aa334fcbc49f73a9f2247c25b879" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "half", -] - -[[package]] -name = "arrow-schema" -version = "56.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe" -dependencies = [ - "bitflags 2.11.0", -] - -[[package]] -name = "arrow-schema" -version = "57.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c872d36b7bf2a6a6a2b40de9156265f0242910791db366a2c17476ba8330d68" -dependencies = [ - "bitflags 2.11.0", -] - -[[package]] -name = "arrow-schema" -version = "58.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18aa020f6bc8e5201dcd2d4b7f98c68f8a410ef37128263243e6ff2a47a67d4f" -dependencies = [ - "bitflags 2.11.0", -] - -[[package]] -name = "arrow-schema" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80b3e786a0dd9103acd583a6fb486dbf2f3268466cc0bd571dcf34cef231c1f1" -dependencies = [ - "bitflags 2.11.0", - "serde_core", - "serde_json", -] - -[[package]] -name = "arrow-select" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "067a67e0361f6c31f4a7248759f36ca4ca71b187a941ed4d49da1c7d3d4db624" -dependencies = [ - "ahash", - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "num-traits", -] - -[[package]] -name = "arrow-string" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99bc95847f3ff62a2b03d6f8ce2e3e78f01362060549a2a311898dd442f6256d" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "arrow-select", - "memchr", - "num-traits", - "regex", - "regex-syntax", -] - -[[package]] -name = "async-channel" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" -dependencies = [ - "concurrent-queue", - "event-listener 2.5.3", - "futures-core", -] - -[[package]] -name = "async-channel" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" -dependencies = [ - "concurrent-queue", - "event-listener-strategy", - "futures-core", - "pin-project-lite", -] - -[[package]] -name = "async-compat" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ba85bc55464dcbf728b56d97e119d673f4cf9062be330a9a26f3acf504a590" -dependencies = [ - "futures-core", - "futures-io", - "once_cell", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "async-compression" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c" -dependencies = [ - "brotli 7.0.0", - "bzip2", - "deflate64", - "flate2", - "futures-core", - "memchr", - "pin-project-lite", - "tokio", - "xz2", - "zstd", - "zstd-safe", -] - -[[package]] -name = "async-io" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" -dependencies = [ - "autocfg", - "cfg-if 1.0.4", - "concurrent-queue", - "futures-io", - "futures-lite 2.6.1", - "parking", - "polling", - "rustix", - "slab", - "windows-sys 0.61.2", -] - -[[package]] -name = "async-lock" -version = "3.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" -dependencies = [ - "event-listener 5.4.1", - "event-listener-strategy", - "pin-project-lite", -] - -[[package]] -name = "async-process" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" -dependencies = [ - "async-channel 2.5.0", - "async-io", - "async-lock", - "async-signal", - "async-task", - "blocking", - "cfg-if 1.0.4", - "event-listener 5.4.1", - "futures-lite 2.6.1", - "rustix", -] - -[[package]] -name = "async-recursion" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "async-signal" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" -dependencies = [ - "async-io", - "async-lock", - "atomic-waker", - "cfg-if 1.0.4", - "futures-core", - "futures-io", - "rustix", - "signal-hook-registry", - "slab", - "windows-sys 0.61.2", -] - -[[package]] -name = "async-stream" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" -dependencies = [ - "async-stream-impl", - "futures-core", - "pin-project-lite", -] - -[[package]] -name = "async-stream-impl" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "async-task" -version = "4.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" - -[[package]] -name = "async-trait" -version = "0.1.89" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "atoi" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" -dependencies = [ - "num-traits", -] - -[[package]] -name = "atoi_simd" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf" -dependencies = [ - "debug_unsafe", -] - -[[package]] -name = "atomic-waker" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - -[[package]] -name = "atomic_float" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "628d228f918ac3b82fe590352cc719d30664a0c13ca3a60266fe02c7132d480a" - -[[package]] -name = "autocfg" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - -[[package]] -name = "aws-config" -version = "1.8.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a8fc176d53d6fe85017f230405e3255cedb4a02221cb55ed6d76dccbbb099b2" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sdk-sso", - "aws-sdk-ssooidc", - "aws-sdk-sts", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand 2.3.0", - "hex", - "http 1.4.0", - "ring", - "time", - "tokio", - "tracing", - "url", - "zeroize", -] - -[[package]] -name = "aws-credential-types" -version = "1.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d203b0bf2626dcba8665f5cd0871d7c2c0930223d6b6be9097592fea21242d0" -dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "zeroize", -] - -[[package]] -name = "aws-lc-rs" -version = "1.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" -dependencies = [ - "aws-lc-sys", - "untrusted 0.7.1", - "zeroize", -] - -[[package]] -name = "aws-lc-sys" -version = "0.35.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" -dependencies = [ - "cc", - "cmake", - "dunce", - "fs_extra", -] - -[[package]] -name = "aws-runtime" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ede2ddc593e6c8acc6ce3358c28d6677a6dc49b65ba4b37a2befe14a11297e75" -dependencies = [ - "aws-credential-types", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "bytes-utils", - "fastrand 2.3.0", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "percent-encoding", - "pin-project-lite", - "tracing", - "uuid", -] - -[[package]] -name = "aws-sdk-s3" -version = "1.124.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744c09d75dfec039a05cf8e117c995ded3b0baffa6eb83f3ed7075a01d8d8947" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-checksums", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-observability", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "bytes", - "fastrand 2.3.0", - "hex", - "hmac", - "http 0.2.12", - "http 1.4.0", - "http-body 1.0.1", - "lru", - "percent-encoding", - "regex-lite", - "sha2", - "tracing", - "url", -] - -[[package]] -name = "aws-sdk-sso" -version = "1.95.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00c5ff27c6ba2cbd95e6e26e2e736676fdf6bcf96495b187733f521cfe4ce448" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-observability", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand 2.3.0", - "http 0.2.12", - "http 1.4.0", - "regex-lite", - "tracing", -] - -[[package]] -name = "aws-sdk-ssooidc" -version = "1.97.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d186f1e5a3694a188e5a0640b3115ccc6e084d104e16fd6ba968dca072ffef8" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-observability", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand 2.3.0", - "http 0.2.12", - "http 1.4.0", - "regex-lite", - "tracing", -] - -[[package]] -name = "aws-sdk-sts" -version = "1.99.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9acba7c62f3d4e2408fa998a3a8caacd8b9a5b5549cf36e2372fbdae329d5449" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-observability", - "aws-smithy-query", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "fastrand 2.3.0", - "http 0.2.12", - "http 1.4.0", - "regex-lite", - "tracing", -] - -[[package]] -name = "aws-sigv4" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37411f8e0f4bea0c3ca0958ce7f18f6439db24d555dbd809787262cd00926aa9" -dependencies = [ - "aws-credential-types", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "crypto-bigint 0.5.5", - "form_urlencoded", - "hex", - "hmac", - "http 0.2.12", - "http 1.4.0", - "p256", - "percent-encoding", - "ring", - "sha2", - "subtle", - "time", - "tracing", - "zeroize", -] - -[[package]] -name = "aws-smithy-async" -version = "1.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc50d0f63e714784b84223abd7abbc8577de8c35d699e0edd19f0a88a08ae13" -dependencies = [ - "futures-util", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "aws-smithy-checksums" -version = "0.64.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180dddf5ef0f52a2f99e2fada10e16ea610e507ef6148a42bdc4d5867596aa00" -dependencies = [ - "aws-smithy-http", - "aws-smithy-types", - "bytes", - "crc-fast", - "hex", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "md-5 0.10.6", - "pin-project-lite", - "sha1", - "sha2", - "tracing", -] - -[[package]] -name = "aws-smithy-eventstream" -version = "0.60.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c0b3e587fbaa5d7f7e870544508af8ce82ea47cd30376e69e1e37c4ac746f79" -dependencies = [ - "aws-smithy-types", - "bytes", - "crc32fast", -] - -[[package]] -name = "aws-smithy-http" -version = "0.63.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d619373d490ad70966994801bc126846afaa0d1ee920697a031f0cf63f2568e7" -dependencies = [ - "aws-smithy-eventstream", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "bytes-utils", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "percent-encoding", - "pin-project-lite", - "pin-utils", - "tracing", -] - -[[package]] -name = "aws-smithy-http-client" -version = "1.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00ccbb08c10f6bcf912f398188e42ee2eab5f1767ce215a02a73bc5df1bbdd95" -dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "h2", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower", - "tracing", -] - -[[package]] -name = "aws-smithy-json" -version = "0.62.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27b3a779093e18cad88bbae08dc4261e1d95018c4c5b9356a52bcae7c0b6e9bb" -dependencies = [ - "aws-smithy-types", -] - -[[package]] -name = "aws-smithy-observability" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d3f39d5bb871aaf461d59144557f16d5927a5248a983a40654d9cf3b9ba183b" -dependencies = [ - "aws-smithy-runtime-api", -] - -[[package]] -name = "aws-smithy-query" -version = "0.60.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f76a580e3d8f8961e5d48763214025a2af65c2fa4cd1fb7f270a0e107a71b0" -dependencies = [ - "aws-smithy-types", - "urlencoding", -] - -[[package]] -name = "aws-smithy-runtime" -version = "1.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ccf7f6eba8b2dcf8ce9b74806c6c185659c311665c4bf8d6e71ebd454db6bf" -dependencies = [ - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-http-client", - "aws-smithy-observability", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "fastrand 2.3.0", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "http-body-util", - "pin-project-lite", - "pin-utils", - "tokio", - "tracing", -] - -[[package]] -name = "aws-smithy-runtime-api" -version = "1.11.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4af6e5def28be846479bbeac55aa4603d6f7986fc5da4601ba324dd5d377516" -dependencies = [ - "aws-smithy-async", - "aws-smithy-types", - "bytes", - "http 0.2.12", - "http 1.4.0", - "pin-project-lite", - "tokio", - "tracing", - "zeroize", -] - -[[package]] -name = "aws-smithy-types" -version = "1.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ca2734c16913a45343b37313605d84e7d8b34a4611598ce1d25b35860a2bed3" -dependencies = [ - "base64-simd", - "bytes", - "bytes-utils", - "futures-core", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "http-body-util", - "itoa", - "num-integer", - "pin-project-lite", - "pin-utils", - "ryu", - "serde", - "time", - "tokio", - "tokio-util", -] - -[[package]] -name = "aws-smithy-xml" -version = "0.60.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b53543b4b86ed43f051644f704a98c7291b3618b67adf057ee77a366fa52fcaa" -dependencies = [ - "xmlparser", -] - -[[package]] -name = "aws-types" -version = "1.3.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0470cc047657c6e286346bdf10a8719d26efd6a91626992e0e64481e44323e96" -dependencies = [ - "aws-credential-types", - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "rustc_version", - "tracing", -] - -[[package]] -name = "axum" -version = "0.8.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" -dependencies = [ - "axum-core", - "bytes", - "form_urlencoded", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "itoa", - "matchit", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "serde_core", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tower", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "axum-core" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" -dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "sync_wrapper", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "azure_core" -version = "0.21.0" -source = "git+https://github.com/Eventual-Inc/azure-sdk-for-rust?tag=patched-azure-identity-2#21ff3c74094dfa44c4c4cf2392365f2f10fe192c" -dependencies = [ - "async-trait", - "base64 0.22.1", - "bytes", - "dyn-clone", - "futures", - "getrandom 0.2.17", - "hmac", - "http-types", - "once_cell", - "paste", - "pin-project", - "quick-xml 0.31.0", - "rand 0.8.5", - "reqwest 0.12.28", - "rustc_version", - "serde", - "serde_json", - "sha2", - "time", - "tracing", - "url", - "uuid", -] - -[[package]] -name = "azure_identity" -version = "0.21.0" -source = "git+https://github.com/Eventual-Inc/azure-sdk-for-rust?tag=patched-azure-identity-2#21ff3c74094dfa44c4c4cf2392365f2f10fe192c" -dependencies = [ - "async-lock", - "async-process", - "async-trait", - "azure_core", - "futures", - "oauth2", - "pin-project", - "serde", - "time", - "tracing", - "url", - "uuid", -] - -[[package]] -name = "azure_storage" -version = "0.21.0" -source = "git+https://github.com/Eventual-Inc/azure-sdk-for-rust?tag=patched-azure-identity-2#21ff3c74094dfa44c4c4cf2392365f2f10fe192c" -dependencies = [ - "RustyXML", - "async-lock", - "async-trait", - "azure_core", - "bytes", - "serde", - "serde_derive", - "time", - "tracing", - "url", - "uuid", -] - -[[package]] -name = "azure_storage_blobs" -version = "0.21.0" -source = "git+https://github.com/Eventual-Inc/azure-sdk-for-rust?tag=patched-azure-identity-2#21ff3c74094dfa44c4c4cf2392365f2f10fe192c" -dependencies = [ - "RustyXML", - "azure_core", - "azure_storage", - "azure_svc_blobstorage", - "bytes", - "futures", - "serde", - "serde_derive", - "serde_json", - "time", - "tracing", - "url", - "uuid", -] - -[[package]] -name = "azure_svc_blobstorage" -version = "0.21.0" -source = "git+https://github.com/Eventual-Inc/azure-sdk-for-rust?tag=patched-azure-identity-2#21ff3c74094dfa44c4c4cf2392365f2f10fe192c" -dependencies = [ - "azure_core", - "bytes", - "futures", - "log", - "once_cell", - "serde", - "serde_json", - "time", -] - -[[package]] -name = "base16ct" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" - -[[package]] -name = "base64" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - -[[package]] -name = "base64" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - -[[package]] -name = "base64-simd" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" -dependencies = [ - "outref", - "vsimd", -] - -[[package]] -name = "base64ct" -version = "1.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" - -[[package]] -name = "bincode" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" -dependencies = [ - "bincode_derive", - "serde", - "unty", -] - -[[package]] -name = "bincode_derive" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" -dependencies = [ - "virtue", -] - -[[package]] -name = "bit-set" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" -dependencies = [ - "bit-vec 0.6.3", -] - -[[package]] -name = "bit-set" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" -dependencies = [ - "bit-vec 0.8.0", -] - -[[package]] -name = "bit-vec" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" - -[[package]] -name = "bit-vec" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" - -[[package]] -name = "blake3" -version = "1.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" -dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if 1.0.4", - "constant_time_eq", - "cpufeatures 0.3.0", -] - -[[package]] -name = "block-buffer" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" -dependencies = [ - "generic-array", -] - -[[package]] -name = "block-buffer" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be" -dependencies = [ - "hybrid-array", -] - -[[package]] -name = "blocking" -version = "1.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" -dependencies = [ - "async-channel 2.5.0", - "async-task", - "futures-io", - "futures-lite 2.6.1", - "piper", -] - -[[package]] -name = "brotli" -version = "7.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 4.0.3", -] - -[[package]] -name = "brotli" -version = "8.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 5.0.0", -] - -[[package]] -name = "brotli-decompressor" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", -] - -[[package]] -name = "brotli-decompressor" -version = "5.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", -] - -[[package]] -name = "bstr" -version = "1.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" -dependencies = [ - "memchr", - "regex-automata", - "serde", -] - -[[package]] -name = "bumpalo" -version = "3.20.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" - -[[package]] -name = "bytemuck" -version = "1.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" -dependencies = [ - "bytemuck_derive", -] - -[[package]] -name = "bytemuck_derive" -version = "1.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "byteorder-lite" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" - -[[package]] -name = "bytes" -version = "1.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" - -[[package]] -name = "bytes-utils" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" -dependencies = [ - "bytes", - "either", -] - -[[package]] -name = "bzip2" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" -dependencies = [ - "bzip2-sys", -] - -[[package]] -name = "bzip2-sys" -version = "0.1.13+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" -dependencies = [ - "cc", - "pkg-config", -] - -[[package]] -name = "cast" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" - -[[package]] -name = "cc" -version = "1.2.57" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423" -dependencies = [ - "find-msvc-tools", - "jobserver", - "libc", - "shlex", -] - -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - -[[package]] -name = "cfg-if" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" - -[[package]] -name = "cfg_aliases" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - -[[package]] -name = "chacha20" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" -dependencies = [ - "cfg-if 1.0.4", - "cpufeatures 0.3.0", - "rand_core 0.10.1", -] - -[[package]] -name = "chrono" -version = "0.4.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" -dependencies = [ - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "wasm-bindgen", - "windows-link", -] - -[[package]] -name = "chrono-tz" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" -dependencies = [ - "chrono", - "phf", -] - -[[package]] -name = "ciborium" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" -dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", -] - -[[package]] -name = "ciborium-io" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" - -[[package]] -name = "ciborium-ll" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" -dependencies = [ - "ciborium-io", - "half", -] - -[[package]] -name = "clap" -version = "4.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" -dependencies = [ - "clap_builder", - "clap_derive", -] - -[[package]] -name = "clap_builder" -version = "4.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" -dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim", -] - -[[package]] -name = "clap_derive" -version = "4.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "clap_lex" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" - -[[package]] -name = "cmake" -version = "0.1.58" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678" -dependencies = [ - "cc", -] - -[[package]] -name = "color_quant" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" - -[[package]] -name = "colorchoice" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" - -[[package]] -name = "colored" -version = "3.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "colorz" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ceb37c5798821e37369cb546f430f19da2f585e0364c9615ae340a9f2e6067b" -dependencies = [ - "supports-color", -] - -[[package]] -name = "combine" -version = "4.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" -dependencies = [ - "bytes", - "memchr", -] - -[[package]] -name = "comfy-table" -version = "7.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" -dependencies = [ - "crossterm", - "unicode-segmentation", - "unicode-width", -] - -[[package]] -name = "common-arrow-ffi" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "arrow-schema 59.0.0", - "pyo3", -] - -[[package]] -name = "common-checkpoint-config" -version = "0.3.0-dev0" -dependencies = [ - "common-hashable-float-wrapper", - "common-io-config", - "pyo3", - "serde", - "uuid", -] - -[[package]] -name = "common-daft-config" -version = "0.3.0-dev0" -dependencies = [ - "common-io-config", - "common-py-serde", - "log", - "pyo3", - "serde", -] - -[[package]] -name = "common-display" -version = "0.3.0-dev0" -dependencies = [ - "comfy-table", - "indexmap", - "pyo3", - "serde_json", - "terminal_size", - "textwrap", -] - -[[package]] -name = "common-error" -version = "0.3.0-dev0" -dependencies = [ - "arrow-schema 59.0.0", - "pyo3", - "regex", - "serde_json", - "snafu", - "thiserror 2.0.18", - "tokio", -] - -[[package]] -name = "common-file-formats" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "common-py-serde", - "pyo3", - "serde", -] - -[[package]] -name = "common-hashable-float-wrapper" -version = "0.3.0-dev0" -dependencies = [ - "half", - "serde", -] - -[[package]] -name = "common-image" -version = "0.3.0-dev0" -dependencies = [ - "bincode", - "common-error", - "common-ndarray", - "daft-schema", - "image", - "ndarray", - "pyo3", - "serde", -] - -[[package]] -name = "common-io-config" -version = "0.3.0-dev0" -dependencies = [ - "aws-credential-types", - "chrono", - "common-error", - "common-py-serde", - "derive_more", - "educe", - "log", - "pyo3", - "secrecy", - "serde", - "typetag", -] - -[[package]] -name = "common-logging" -version = "0.3.0-dev0" -dependencies = [ - "arc-swap", - "log", -] - -[[package]] -name = "common-macros" -version = "0.3.0-dev0" -dependencies = [ - "proc-macro-crate", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "common-metrics" -version = "0.3.0-dev0" -dependencies = [ - "atomic_float", - "bincode", - "common-py-serde", - "enum_dispatch", - "indicatif", - "itertools 0.14.0", - "opentelemetry", - "pyo3", - "serde", - "smallvec", -] - -[[package]] -name = "common-ndarray" -version = "0.3.0-dev0" -dependencies = [ - "common-py-serde", - "half", - "ndarray", - "numpy", - "pyo3", -] - -[[package]] -name = "common-partitioning" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "common-py-serde", - "futures", - "pyo3", - "serde", -] - -[[package]] -name = "common-pattern" -version = "0.3.0-dev0" -dependencies = [ - "regex", - "regex-syntax", -] - -[[package]] -name = "common-py-serde" -version = "0.3.0-dev0" -dependencies = [ - "bincode", - "pyo3", - "serde", -] - -[[package]] -name = "common-resource-request" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "common-hashable-float-wrapper", - "common-py-serde", - "pyo3", - "serde", -] - -[[package]] -name = "common-runtime" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "futures", - "log", - "oneshot", - "pyo3", - "pyo3-async-runtimes", - "rand 0.9.2", - "tokio", -] - -[[package]] -name = "common-system-info" -version = "0.3.0-dev0" -dependencies = [ - "pyo3", - "sysinfo", -] - -[[package]] -name = "common-tracing" -version = "0.3.0-dev0" -dependencies = [ - "common-runtime", - "log", - "opentelemetry", - "opentelemetry-otlp", - "opentelemetry_sdk", - "tracing", - "tracing-opentelemetry", - "tracing-subscriber", -] - -[[package]] -name = "common-treenode" -version = "0.3.0-dev0" -dependencies = [ - "common-error", -] - -[[package]] -name = "common-version" -version = "0.3.0-dev0" - -[[package]] -name = "concurrent-queue" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" -dependencies = [ - "crossbeam-utils", -] - -[[package]] -name = "console" -version = "0.16.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87" -dependencies = [ - "encode_unicode", - "libc", - "unicode-width", - "windows-sys 0.61.2", -] - -[[package]] -name = "const-oid" -version = "0.9.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" - -[[package]] -name = "const-oid" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" - -[[package]] -name = "const-random" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" -dependencies = [ - "const-random-macro", -] - -[[package]] -name = "const-random-macro" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" -dependencies = [ - "getrandom 0.2.17", - "once_cell", - "tiny-keccak", -] - -[[package]] -name = "const-str" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18f12cc9948ed9604230cdddc7c86e270f9401ccbe3c2e98a4378c5e7632212f" - -[[package]] -name = "const_panic" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e262cdaac42494e3ae34c43969f9cdeb7da178bdb4b66fa6a1ea2edb4c8ae652" -dependencies = [ - "typewit", -] - -[[package]] -name = "constant_time_eq" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" - -[[package]] -name = "convert_case" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" -dependencies = [ - "unicode-segmentation", -] - -[[package]] -name = "core-foundation" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - -[[package]] -name = "countio" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9702aee5d1d744c01d82f6915644f950f898e014903385464c773b96fefdecb" -dependencies = [ - "futures-io", -] - -[[package]] -name = "cpufeatures" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" -dependencies = [ - "libc", -] - -[[package]] -name = "cpufeatures" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" -dependencies = [ - "libc", -] - -[[package]] -name = "crc" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" -dependencies = [ - "crc-catalog", -] - -[[package]] -name = "crc-catalog" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" - -[[package]] -name = "crc-fast" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd92aca2c6001b1bf5ba0ff84ee74ec8501b52bbef0cac80bf25a6c1d87a83d" -dependencies = [ - "crc", - "digest 0.10.7", - "rustversion", - "spin", -] - -[[package]] -name = "crc32fast" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" -dependencies = [ - "cfg-if 1.0.4", -] - -[[package]] -name = "criterion" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928" -dependencies = [ - "anes", - "cast", - "ciborium", - "clap", - "criterion-plot", - "itertools 0.13.0", - "num-traits", - "oorandom", - "plotters", - "rayon", - "regex", - "serde", - "serde_json", - "tinytemplate", - "walkdir", -] - -[[package]] -name = "criterion-plot" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338" -dependencies = [ - "cast", - "itertools 0.13.0", -] - -[[package]] -name = "crossbeam-channel" -version = "0.5.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" -dependencies = [ - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-deque" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" -dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.9.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" -dependencies = [ - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" - -[[package]] -name = "crossterm" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b" -dependencies = [ - "bitflags 2.11.0", - "crossterm_winapi", - "document-features", - "parking_lot 0.12.5", - "rustix", - "winapi", -] - -[[package]] -name = "crossterm_winapi" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" -dependencies = [ - "winapi", -] - -[[package]] -name = "crunchy" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" - -[[package]] -name = "crypto-bigint" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" -dependencies = [ - "generic-array", - "rand_core 0.6.4", - "subtle", - "zeroize", -] - -[[package]] -name = "crypto-bigint" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" -dependencies = [ - "rand_core 0.6.4", - "subtle", -] - -[[package]] -name = "crypto-common" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" -dependencies = [ - "generic-array", - "typenum", -] - -[[package]] -name = "crypto-common" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" -dependencies = [ - "hybrid-array", -] - -[[package]] -name = "csv" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" -dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde_core", -] - -[[package]] -name = "csv-async" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "888dbb0f640d2c4c04e50f933885c7e9c95995d93cec90aba8735b4c610f26f1" -dependencies = [ - "cfg-if 1.0.4", - "csv-core", - "futures", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "csv-core" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" -dependencies = [ - "memchr", -] - -[[package]] -name = "ctor" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e" -dependencies = [ - "ctor-proc-macro", - "dtor", -] - -[[package]] -name = "ctor-proc-macro" -version = "0.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" - -[[package]] -name = "daft" -version = "0.3.0-dev0" -dependencies = [ - "aws-lc-rs", - "aws-lc-sys", - "common-daft-config", - "common-display", - "common-file-formats", - "common-hashable-float-wrapper", - "common-logging", - "common-metrics", - "common-partitioning", - "common-resource-request", - "common-runtime", - "common-system-info", - "common-tracing", - "common-version", - "daft-ai", - "daft-algebra", - "daft-catalog", - "daft-checkpoint", - "daft-cli", - "daft-compression", - "daft-context", - "daft-core", - "daft-csv", - "daft-dashboard", - "daft-distributed", - "daft-dsl", - "daft-file", - "daft-functions", - "daft-functions-binary", - "daft-functions-json", - "daft-functions-list", - "daft-functions-serde", - "daft-functions-temporal", - "daft-functions-tokenize", - "daft-functions-uri", - "daft-functions-utf8", - "daft-geo", - "daft-hash", - "daft-image", - "daft-io", - "daft-json", - "daft-local-execution", - "daft-local-plan", - "daft-logical-plan", - "daft-micropartition", - "daft-minhash", - "daft-parquet", - "daft-partition-refs", - "daft-recordbatch", - "daft-runners", - "daft-scan", - "daft-session", - "daft-shuffles", - "daft-sql", - "daft-stats", - "daft-text", - "daft-warc", - "daft-writers", - "libc", - "log", - "lzma-sys", - "pyo3", - "pyo3-log", - "sysinfo", - "tikv-jemalloc-ctl", - "tikv-jemallocator", -] - -[[package]] -name = "daft-ai" -version = "0.3.0-dev0" -dependencies = [ - "pyo3", -] - -[[package]] -name = "daft-algebra" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "common-treenode", - "daft-core", - "daft-dsl", - "daft-schema", - "half", - "indexmap", - "rstest", -] - -[[package]] -name = "daft-catalog" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "common-pattern", - "daft-context", - "daft-core", - "daft-dsl", - "daft-logical-plan", - "daft-micropartition", - "daft-runners", - "indexmap", - "pyo3", - "regex", - "snafu", - "sqlparser", -] - -[[package]] -name = "daft-checkpoint" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-schema 59.0.0", - "async-trait", - "bincode", - "bytes", - "chrono", - "common-checkpoint-config", - "common-error", - "common-io-config", - "common-runtime", - "daft-checkpoint", - "daft-core", - "daft-io", - "daft-scan", - "daft-schema", - "futures", - "parquet", - "pyo3", - "serde", - "serde_json", - "snafu", - "tempfile", - "tokio", -] - -[[package]] -name = "daft-cli" -version = "0.3.0-dev0" -dependencies = [ - "clap", - "console", - "daft-dashboard", - "libc", - "pyo3", - "tokio", - "tracing-subscriber", -] - -[[package]] -name = "daft-compression" -version = "0.3.0-dev0" -dependencies = [ - "async-compression", - "tokio", - "url", -] - -[[package]] -name = "daft-context" -version = "0.3.0-dev0" -dependencies = [ - "common-daft-config", - "common-error", - "common-metrics", - "common-runtime", - "daft-core", - "daft-dashboard", - "daft-logical-plan", - "daft-micropartition", - "daft-runners", - "dashmap", - "log", - "pyo3", - "reqwest 0.12.28", - "serde", - "serde_json", - "tokio", - "uuid", -] - -[[package]] -name = "daft-core" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "arrow-row", - "bincode", - "bytemuck", - "chrono", - "chrono-tz", - "comfy-table", - "common-arrow-ffi", - "common-display", - "common-error", - "common-hashable-float-wrapper", - "common-image", - "common-io-config", - "common-ndarray", - "common-py-serde", - "daft-hash", - "daft-minhash", - "daft-schema", - "daft-sketch", - "derive_more", - "fastrand 2.3.0", - "half", - "html-escape", - "hyperloglog", - "image", - "indexmap", - "itertools 0.14.0", - "mur3", - "num-traits", - "pyo3", - "rand 0.9.2", - "rstest", - "serde", - "sketches-ddsketch", - "smallvec", - "uuid", - "xxhash-rust", -] - -[[package]] -name = "daft-csv" -version = "0.3.0-dev0" -dependencies = [ - "arrow-schema 59.0.0", - "async-compat", - "async-stream", - "common-error", - "common-py-serde", - "common-runtime", - "csv", - "csv-async", - "daft-compression", - "daft-core", - "daft-decoding", - "daft-dsl", - "daft-io", - "daft-recordbatch", - "daft-schema", - "futures", - "log", - "memchr", - "parking_lot 0.12.5", - "pyo3", - "rayon", - "rstest", - "serde", - "smallvec", - "snafu", - "tokio", - "tokio-util", -] - -[[package]] -name = "daft-dashboard" -version = "0.3.0-dev0" -dependencies = [ - "async-stream", - "axum", - "common-metrics", - "daft-recordbatch", - "dashmap", - "futures", - "include_dir", - "mime", - "mime_guess", - "pyo3", - "serde", - "serde_json", - "tokio", - "tokio-stream", - "tower", - "tower-http", - "tracing", - "uuid", -] - -[[package]] -name = "daft-decoding" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-schema 59.0.0", - "atoi_simd", - "chrono", - "csv", - "csv-async", - "daft-schema", - "fast-float2", - "simdutf8", -] - -[[package]] -name = "daft-distributed" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "common-checkpoint-config", - "common-daft-config", - "common-display", - "common-error", - "common-file-formats", - "common-io-config", - "common-metrics", - "common-partitioning", - "common-py-serde", - "common-resource-request", - "common-runtime", - "common-treenode", - "daft-context", - "daft-core", - "daft-dsl", - "daft-functions", - "daft-io", - "daft-local-execution", - "daft-local-plan", - "daft-logical-plan", - "daft-micropartition", - "daft-partition-refs", - "daft-recordbatch", - "daft-scan", - "daft-schema", - "futures", - "itertools 0.14.0", - "opentelemetry", - "pyo3", - "pyo3-async-runtimes", - "rand 0.9.2", - "serde", - "serde_json", - "tokio", - "tokio-stream", - "tokio-util", - "tracing", -] - -[[package]] -name = "daft-dsl" -version = "0.3.0-dev0" -dependencies = [ - "async-trait", - "common-error", - "common-hashable-float-wrapper", - "common-macros", - "common-metrics", - "common-py-serde", - "common-resource-request", - "common-runtime", - "common-tracing", - "common-treenode", - "daft-core", - "daft-sketch", - "derive_more", - "indexmap", - "itertools 0.14.0", - "log", - "opentelemetry", - "opentelemetry_sdk", - "pyo3", - "rand 0.9.2", - "rstest", - "serde", - "tokio", - "typetag", -] - -[[package]] -name = "daft-ext" -version = "0.1.1" -dependencies = [ - "arrow-array 56.2.0", - "arrow-array 57.3.0", - "arrow-array 58.2.0", - "arrow-array 59.0.0", - "arrow-data 56.2.0", - "arrow-data 57.3.0", - "arrow-data 58.2.0", - "arrow-data 59.0.0", - "arrow-schema 56.2.0", - "arrow-schema 57.3.0", - "arrow-schema 58.2.0", - "arrow-schema 59.0.0", - "daft-ext-macros", -] - -[[package]] -name = "daft-ext-internal" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "arrow-array 59.0.0", - "arrow-schema 59.0.0", - "common-error", - "daft-core", - "daft-dsl", - "daft-ext", - "libloading 0.9.0", - "serde", - "serde_json", - "typetag", -] - -[[package]] -name = "daft-ext-macros" -version = "0.1.1" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "daft-file" -version = "0.3.0-dev0" -dependencies = [ - "async-trait", - "common-error", - "common-runtime", - "daft-core", - "daft-dsl", - "daft-io", - "daft-schema", - "futures", - "mime_guess", - "pyo3", - "serde", - "typetag", - "url", -] - -[[package]] -name = "daft-functions" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "chrono", - "common-error", - "daft-core", - "daft-dsl", - "daft-hash", - "num-traits", - "pyo3", - "rand 0.9.2", - "serde", - "snafu", - "typetag", - "uuid", - "xxhash-rust", -] - -[[package]] -name = "daft-functions-binary" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "base64 0.22.1", - "common-error", - "common-macros", - "daft-core", - "daft-dsl", - "flate2", - "hex", - "serde", - "simdutf8", - "typetag", -] - -[[package]] -name = "daft-functions-json" -version = "0.0.0" -dependencies = [ - "arrow", - "common-error", - "daft-core", - "daft-dsl", - "jaq-core", - "jaq-json", - "jaq-std", - "serde", - "serde_json", - "typetag", -] - -[[package]] -name = "daft-functions-list" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "common-error", - "daft-core", - "daft-dsl", - "indexmap", - "serde", - "typetag", -] - -[[package]] -name = "daft-functions-serde" -version = "0.0.0" -dependencies = [ - "arrow", - "arrow-json", - "common-error", - "daft-core", - "daft-dsl", - "serde", - "serde_json", - "typetag", -] - -[[package]] -name = "daft-functions-temporal" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "chrono", - "chrono-tz", - "common-error", - "daft-core", - "daft-dsl", - "daft-schema", - "paste", - "serde", - "typetag", -] - -[[package]] -name = "daft-functions-tokenize" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "base64 0.22.1", - "common-error", - "common-runtime", - "daft-core", - "daft-dsl", - "daft-io", - "rustc-hash 1.1.0", - "serde", - "snafu", - "tiktoken-rs", - "typetag", -] - -[[package]] -name = "daft-functions-uri" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "async-trait", - "bytes", - "common-error", - "common-runtime", - "daft-core", - "daft-dsl", - "daft-io", - "futures", - "serde", - "tokio", - "typetag", - "url", - "uuid", -] - -[[package]] -name = "daft-functions-utf8" -version = "0.3.0-dev0" -dependencies = [ - "aho-corasick", - "arrow", - "arrow-buffer 59.0.0", - "chrono", - "chrono-tz", - "common-error", - "daft-core", - "daft-dsl", - "heck", - "itertools 0.14.0", - "num-traits", - "regex", - "serde", - "typetag", - "unicode-normalization", -] - -[[package]] -name = "daft-geo" -version = "0.3.0-dev0" -dependencies = [ - "arrow-buffer 59.0.0", - "daft-core", - "daft-dsl", - "serde", - "typetag", -] - -[[package]] -name = "daft-groupby" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "common-error", - "daft-core", - "half", - "hashbrown 0.16.1", - "smallvec", -] - -[[package]] -name = "daft-hash" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "mur3", - "serde", - "sha1", - "xxhash-rust", -] - -[[package]] -name = "daft-image" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "base64 0.22.1", - "common-error", - "common-image", - "criterion", - "daft-core", - "daft-dsl", - "daft-file", - "daft-schema", - "image", - "log", - "rayon", - "rustfft", - "serde", - "typetag", -] - -[[package]] -name = "daft-io" -version = "0.3.0-dev0" -dependencies = [ - "async-recursion", - "async-stream", - "async-trait", - "aws-config", - "aws-credential-types", - "aws-sdk-s3", - "aws-smithy-http-client", - "aws-smithy-runtime-api", - "azure_core", - "azure_identity", - "azure_storage", - "azure_storage_blobs", - "bytes", - "common-error", - "common-file-formats", - "common-io-config", - "common-runtime", - "futures", - "globset", - "google-cloud-storage", - "google-cloud-token", - "hf-xet", - "home", - "itertools 0.14.0", - "log", - "md5", - "opendal", - "pyo3", - "rand 0.9.2", - "regex", - "reqwest 0.12.28", - "reqwest-middleware 0.4.2", - "reqwest-retry", - "serde", - "snafu", - "tempfile", - "thiserror 2.0.18", - "tokio", - "tokio-stream", - "tracing", - "url", - "uuid", -] - -[[package]] -name = "daft-json" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "chrono", - "common-error", - "common-py-serde", - "common-runtime", - "daft-compression", - "daft-core", - "daft-decoding", - "daft-dsl", - "daft-io", - "daft-recordbatch", - "daft-schema", - "futures", - "indexmap", - "memchr", - "memmap2", - "num-traits", - "pyo3", - "rayon", - "rstest", - "serde", - "serde_json", - "simd-json", - "snafu", - "tokio", - "tokio-stream", - "tokio-util", -] - -[[package]] -name = "daft-local-execution" -version = "0.3.0-dev0" -dependencies = [ - "arc-swap", - "arrow", - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-ipc", - "arrow-schema 59.0.0", - "async-trait", - "common-checkpoint-config", - "common-daft-config", - "common-display", - "common-error", - "common-file-formats", - "common-io-config", - "common-logging", - "common-metrics", - "common-py-serde", - "common-resource-request", - "common-runtime", - "common-system-info", - "common-tracing", - "console", - "daft-checkpoint", - "daft-context", - "daft-core", - "daft-csv", - "daft-dsl", - "daft-functions-list", - "daft-functions-uri", - "daft-groupby", - "daft-io", - "daft-json", - "daft-local-plan", - "daft-logical-plan", - "daft-micropartition", - "daft-parquet", - "daft-partition-refs", - "daft-recordbatch", - "daft-scan", - "daft-shuffles", - "daft-text", - "daft-warc", - "daft-writers", - "dashmap", - "futures", - "indexmap", - "indicatif", - "itertools 0.14.0", - "log", - "opentelemetry", - "pin-project", - "pyo3", - "pyo3-async-runtimes", - "rand 0.9.2", - "serde_json", - "smallvec", - "snafu", - "sysinfo", - "tikv-jemalloc-ctl", - "tokio", - "tokio-stream", - "tokio-util", - "tracing", -] - -[[package]] -name = "daft-local-plan" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-schema 59.0.0", - "bincode", - "common-checkpoint-config", - "common-error", - "common-io-config", - "common-metrics", - "common-py-serde", - "common-resource-request", - "common-treenode", - "daft-core", - "daft-dsl", - "daft-functions", - "daft-functions-list", - "daft-logical-plan", - "daft-micropartition", - "daft-recordbatch", - "daft-scan", - "indexmap", - "log", - "pyo3", - "serde", - "serde_json", - "strum", -] - -[[package]] -name = "daft-logical-plan" -version = "0.3.0-dev0" -dependencies = [ - "common-checkpoint-config", - "common-daft-config", - "common-display", - "common-error", - "common-file-formats", - "common-hashable-float-wrapper", - "common-io-config", - "common-partitioning", - "common-py-serde", - "common-resource-request", - "common-treenode", - "daft-algebra", - "daft-checkpoint", - "daft-core", - "daft-dsl", - "daft-functions", - "daft-functions-list", - "daft-functions-uri", - "daft-functions-utf8", - "daft-recordbatch", - "daft-scan", - "daft-schema", - "educe", - "indexmap", - "indoc", - "itertools 0.14.0", - "log", - "num-format", - "pretty_assertions", - "pyo3", - "rand 0.9.2", - "rstest", - "serde", - "serde_json", - "snafu", - "test-log", - "tokio", - "uuid", -] - -[[package]] -name = "daft-micropartition" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "arrow-array 59.0.0", - "arrow-ipc", - "bincode", - "common-arrow-ffi", - "common-error", - "common-partitioning", - "common-runtime", - "daft-core", - "daft-csv", - "daft-dsl", - "daft-io", - "daft-json", - "daft-parquet", - "daft-recordbatch", - "daft-scan", - "daft-stats", - "daft-warc", - "dashmap", - "futures", - "pyo3", - "snafu", - "tokio", - "tracing", -] - -[[package]] -name = "daft-minhash" -version = "0.3.0-dev0" -dependencies = [ - "approx", - "arrow", - "common-error", - "daft-hash", - "fastrand 2.3.0", - "memchr", - "proptest", - "tango-bench", - "xxhash-rust", -] - -[[package]] -name = "daft-parquet" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "bincode", - "bytes", - "common-arrow-ffi", - "common-error", - "common-runtime", - "daft-core", - "daft-dsl", - "daft-io", - "daft-recordbatch", - "daft-stats", - "fastrand 2.3.0", - "futures", - "indexmap", - "log", - "parquet", - "path_macro", - "pyo3", - "serde", - "snafu", - "tango-bench", - "tokio", - "tokio-stream", -] - -[[package]] -name = "daft-partition-refs" -version = "0.3.0-dev0" -dependencies = [ - "common-partitioning", - "common-py-serde", - "pyo3", - "serde", -] - -[[package]] -name = "daft-recordbatch" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "arrow-array 59.0.0", - "arrow-ipc", - "async-recursion", - "comfy-table", - "common-arrow-ffi", - "common-display", - "common-error", - "common-metrics", - "common-py-serde", - "common-runtime", - "daft-core", - "daft-dsl", - "daft-functions-list", - "daft-groupby", - "daft-image", - "fnv", - "futures", - "hashbrown 0.16.1", - "html-escape", - "indexmap", - "num-traits", - "pyo3", - "rand 0.9.2", - "rayon", - "serde", - "serde_json", - "smallvec", - "typetag", -] - -[[package]] -name = "daft-runners" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "daft-logical-plan", - "daft-micropartition", - "log", - "pyo3", -] - -[[package]] -name = "daft-scan" -version = "0.3.0-dev0" -dependencies = [ - "arrow-schema 59.0.0", - "async-trait", - "common-daft-config", - "common-display", - "common-error", - "common-file-formats", - "common-io-config", - "common-py-serde", - "common-runtime", - "daft-algebra", - "daft-compression", - "daft-core", - "daft-csv", - "daft-decoding", - "daft-dsl", - "daft-io", - "daft-json", - "daft-parquet", - "daft-recordbatch", - "daft-schema", - "daft-stats", - "either", - "fnv", - "futures", - "indexmap", - "itertools 0.14.0", - "log", - "pyo3", - "serde", - "serde_json", - "snafu", - "tokio", - "tokio-stream", - "url", - "urlencoding", -] - -[[package]] -name = "daft-schema" -version = "0.3.0-dev0" -dependencies = [ - "arrow", - "arrow-schema 59.0.0", - "chrono", - "chrono-tz", - "common-arrow-ffi", - "common-display", - "common-error", - "common-py-serde", - "common-version", - "derive_more", - "educe", - "html-escape", - "indexmap", - "num-derive", - "num-traits", - "pyo3", - "rstest", - "serde", - "serde_json", -] - -[[package]] -name = "daft-session" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "daft-ai", - "daft-catalog", - "daft-core", - "daft-dsl", - "daft-ext", - "daft-ext-internal", - "daft-logical-plan", - "pyo3", - "serde", - "typetag", - "uuid", -] - -[[package]] -name = "daft-shuffles" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-flight", - "arrow-ipc", - "arrow-schema 59.0.0", - "async-channel 2.5.0", - "async-stream", - "common-error", - "common-runtime", - "daft-core", - "daft-io", - "daft-micropartition", - "daft-recordbatch", - "daft-schema", - "daft-writers", - "futures", - "tokio", - "tonic", -] - -[[package]] -name = "daft-sketch" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-schema 59.0.0", - "common-error", - "serde_arrow", - "sketches-ddsketch", - "snafu", -] - -[[package]] -name = "daft-sql" -version = "0.3.0-dev0" -dependencies = [ - "common-daft-config", - "common-error", - "common-hashable-float-wrapper", - "common-io-config", - "common-runtime", - "daft-catalog", - "daft-context", - "daft-core", - "daft-dsl", - "daft-functions", - "daft-functions-list", - "daft-functions-temporal", - "daft-functions-utf8", - "daft-logical-plan", - "daft-micropartition", - "daft-recordbatch", - "daft-session", - "itertools 0.14.0", - "pyo3", - "regex", - "rstest", - "snafu", - "sqlparser", -] - -[[package]] -name = "daft-stats" -version = "0.3.0-dev0" -dependencies = [ - "common-error", - "daft-core", - "daft-dsl", - "daft-recordbatch", - "serde", - "snafu", -] - -[[package]] -name = "daft-text" -version = "0.3.0-dev0" -dependencies = [ - "async-stream", - "common-error", - "daft-compression", - "daft-core", - "daft-io", - "daft-recordbatch", - "flate2", - "futures", - "serde", - "tokio", - "tokio-stream", - "tokio-util", -] - -[[package]] -name = "daft-warc" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "chrono", - "common-error", - "common-runtime", - "daft-compression", - "daft-core", - "daft-dsl", - "daft-io", - "daft-recordbatch", - "flate2", - "futures", - "serde_json", - "snafu", - "tokio", - "tokio-stream", - "tokio-util", - "uuid", -] - -[[package]] -name = "daft-writers" -version = "0.3.0-dev0" -dependencies = [ - "arrow-array 59.0.0", - "arrow-csv", - "arrow-ipc", - "arrow-json", - "arrow-schema 59.0.0", - "async-trait", - "bytes", - "chrono", - "chrono-tz", - "common-daft-config", - "common-error", - "common-file-formats", - "common-runtime", - "daft-core", - "daft-dsl", - "daft-io", - "daft-logical-plan", - "daft-micropartition", - "daft-recordbatch", - "hashbrown 0.16.1", - "parking_lot 0.12.5", - "parquet", - "pyo3", - "tokio", - "url", - "urlencoding", - "uuid", -] - -[[package]] -name = "dashmap" -version = "6.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" -dependencies = [ - "cfg-if 1.0.4", - "crossbeam-utils", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core 0.9.12", -] - -[[package]] -name = "debug_unsafe" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2" - -[[package]] -name = "deflate64" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2" - -[[package]] -name = "der" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" -dependencies = [ - "const-oid 0.9.6", - "zeroize", -] - -[[package]] -name = "der" -version = "0.7.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" -dependencies = [ - "const-oid 0.9.6", - "pem-rfc7468", - "zeroize", -] - -[[package]] -name = "deranged" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" -dependencies = [ - "powerfmt", - "serde_core", -] - -[[package]] -name = "derive_more" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" -dependencies = [ - "derive_more-impl", -] - -[[package]] -name = "derive_more-impl" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" -dependencies = [ - "convert_case", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.117", - "unicode-xid", -] - -[[package]] -name = "diff" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" - -[[package]] -name = "digest" -version = "0.10.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" -dependencies = [ - "block-buffer 0.10.4", - "const-oid 0.9.6", - "crypto-common 0.1.7", - "subtle", -] - -[[package]] -name = "digest" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" -dependencies = [ - "block-buffer 0.12.0", - "const-oid 0.10.2", - "crypto-common 0.2.2", -] - -[[package]] -name = "dirs" -version = "6.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" -dependencies = [ - "dirs-sys", -] - -[[package]] -name = "dirs-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" -dependencies = [ - "libc", - "option-ext", - "redox_users", - "windows-sys 0.61.2", -] - -[[package]] -name = "displaydoc" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "dlv-list" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" -dependencies = [ - "const-random", -] - -[[package]] -name = "document-features" -version = "0.2.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61" -dependencies = [ - "litrs", -] - -[[package]] -name = "dtor" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301" -dependencies = [ - "dtor-proc-macro", -] - -[[package]] -name = "dtor-proc-macro" -version = "0.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" - -[[package]] -name = "dunce" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" - -[[package]] -name = "dyn-clone" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" - -[[package]] -name = "ecdsa" -version = "0.14.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" -dependencies = [ - "der 0.6.1", - "elliptic-curve", - "rfc6979", - "signature", -] - -[[package]] -name = "educe" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417" -dependencies = [ - "enum-ordinalize", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "either" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" - -[[package]] -name = "elliptic-curve" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" -dependencies = [ - "base16ct", - "crypto-bigint 0.4.9", - "der 0.6.1", - "digest 0.10.7", - "ff", - "generic-array", - "group", - "pkcs8 0.9.0", - "rand_core 0.6.4", - "sec1", - "subtle", - "zeroize", -] - -[[package]] -name = "encode_unicode" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" - -[[package]] -name = "encoding_rs" -version = "0.8.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" -dependencies = [ - "cfg-if 1.0.4", -] - -[[package]] -name = "enum-ordinalize" -version = "4.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0" -dependencies = [ - "enum-ordinalize-derive", -] - -[[package]] -name = "enum-ordinalize-derive" -version = "4.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "enum_dispatch" -version = "0.3.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" -dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "env_filter" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef" -dependencies = [ - "log", -] - -[[package]] -name = "env_logger" -version = "0.11.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a" -dependencies = [ - "anstream", - "anstyle", - "env_filter", - "log", -] - -[[package]] -name = "equivalent" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - -[[package]] -name = "erased-serde" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" -dependencies = [ - "serde", - "serde_core", - "typeid", -] - -[[package]] -name = "errno" -version = "0.3.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" -dependencies = [ - "libc", - "windows-sys 0.61.2", -] - -[[package]] -name = "event-listener" -version = "2.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" - -[[package]] -name = "event-listener" -version = "5.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener-strategy" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" -dependencies = [ - "event-listener 5.4.1", - "pin-project-lite", -] - -[[package]] -name = "fancy-regex" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" -dependencies = [ - "bit-set 0.5.3", - "regex-automata", - "regex-syntax", -] - -[[package]] -name = "fast-float2" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55" - -[[package]] -name = "fastrand" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" -dependencies = [ - "instant", -] - -[[package]] -name = "fastrand" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" - -[[package]] -name = "fax" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab" -dependencies = [ - "fax_derive", -] - -[[package]] -name = "fax_derive" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "fdeflate" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" -dependencies = [ - "simd-adler32", -] - -[[package]] -name = "ff" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" -dependencies = [ - "rand_core 0.6.4", - "subtle", -] - -[[package]] -name = "find-msvc-tools" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" - -[[package]] -name = "flatbuffers" -version = "25.12.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" -dependencies = [ - "bitflags 2.11.0", - "rustc_version", -] - -[[package]] -name = "flate2" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" -dependencies = [ - "crc32fast", - "miniz_oxide", - "zlib-rs", -] - -[[package]] -name = "float-cmp" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" -dependencies = [ - "num-traits", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "foldhash" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" - -[[package]] -name = "foldhash" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" - -[[package]] -name = "form_urlencoded" -version = "1.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" -dependencies = [ - "percent-encoding", -] - -[[package]] -name = "fs_extra" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" - -[[package]] -name = "futures" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-channel" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" -dependencies = [ - "futures-core", - "futures-sink", -] - -[[package]] -name = "futures-core" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" - -[[package]] -name = "futures-executor" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-io" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" - -[[package]] -name = "futures-lite" -version = "1.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" -dependencies = [ - "fastrand 1.9.0", - "futures-core", - "futures-io", - "memchr", - "parking", - "pin-project-lite", - "waker-fn", -] - -[[package]] -name = "futures-lite" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" -dependencies = [ - "fastrand 2.3.0", - "futures-core", - "futures-io", - "parking", - "pin-project-lite", -] - -[[package]] -name = "futures-macro" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "futures-sink" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" - -[[package]] -name = "futures-task" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" - -[[package]] -name = "futures-timer" -version = "3.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" - -[[package]] -name = "futures-util" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "slab", -] - -[[package]] -name = "gearhash" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8cf82cf76cd16485e56295a1377c775ce708c9f1a0be6b029076d60a245d213" -dependencies = [ - "cfg-if 0.1.10", -] - -[[package]] -name = "generic-array" -version = "0.14.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" -dependencies = [ - "typenum", - "version_check", -] - -[[package]] -name = "getrandom" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -dependencies = [ - "cfg-if 1.0.4", - "libc", - "wasi 0.9.0+wasi-snapshot-preview1", -] - -[[package]] -name = "getrandom" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" -dependencies = [ - "cfg-if 1.0.4", - "js-sys", - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "wasm-bindgen", -] - -[[package]] -name = "getrandom" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" -dependencies = [ - "cfg-if 1.0.4", - "js-sys", - "libc", - "r-efi 5.3.0", - "wasip2", - "wasm-bindgen", -] - -[[package]] -name = "getrandom" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" -dependencies = [ - "cfg-if 1.0.4", - "js-sys", - "libc", - "r-efi 6.0.0", - "rand_core 0.10.1", - "wasip2", - "wasip3", - "wasm-bindgen", -] - -[[package]] -name = "gif" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" -dependencies = [ - "color_quant", - "weezl", -] - -[[package]] -name = "git-version" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19" -dependencies = [ - "git-version-macro", -] - -[[package]] -name = "git-version-macro" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "glob" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" - -[[package]] -name = "glob-match" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d" - -[[package]] -name = "globset" -version = "0.4.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3" -dependencies = [ - "aho-corasick", - "bstr", - "log", - "regex-automata", - "regex-syntax", -] - -[[package]] -name = "goblin" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27c1b4369c2cd341b5de549380158b105a04c331be5db9110eef7b6d2742134" -dependencies = [ - "log", - "plain", - "scroll", -] - -[[package]] -name = "google-cloud-auth" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e57a13fbacc5e9c41ded3ad8d0373175a6b7a6ad430d99e89d314ac121b7ab06" -dependencies = [ - "async-trait", - "base64 0.21.7", - "google-cloud-metadata", - "google-cloud-token", - "home", - "jsonwebtoken", - "reqwest 0.12.28", - "serde", - "serde_json", - "thiserror 1.0.69", - "time", - "tokio", - "tracing", - "urlencoding", -] - -[[package]] -name = "google-cloud-metadata" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d901aeb453fd80e51d64df4ee005014f6cf39f2d736dd64f7239c132d9d39a6a" -dependencies = [ - "reqwest 0.12.28", - "thiserror 1.0.69", - "tokio", -] - -[[package]] -name = "google-cloud-storage" -version = "0.24.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34a73d9e94d35665909050f02e035d8bdc82e419241b1b027ebf1ea51dc8a470" -dependencies = [ - "anyhow", - "async-stream", - "async-trait", - "base64 0.21.7", - "bytes", - "futures-util", - "google-cloud-auth", - "google-cloud-metadata", - "google-cloud-token", - "hex", - "once_cell", - "percent-encoding", - "pkcs8 0.10.2", - "regex", - "reqwest 0.12.28", - "reqwest-middleware 0.4.2", - "ring", - "serde", - "serde_json", - "sha2", - "thiserror 1.0.69", - "time", - "tokio", - "tracing", - "url", -] - -[[package]] -name = "google-cloud-token" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f49c12ba8b21d128a2ce8585955246977fbce4415f680ebf9199b6f9d6d725f" -dependencies = [ - "async-trait", -] - -[[package]] -name = "goosefs-sdk" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ae079b88ffe7772d12cfc5c40a5a324babb357893d95b5e3a22ae857f236c5f" -dependencies = [ - "async-trait", - "bytes", - "dashmap", - "hostname", - "prost", - "prost-types", - "rand 0.9.2", - "reqwest 0.12.28", - "serde", - "thiserror 2.0.18", - "tokio", - "tokio-stream", - "tonic", - "tonic-prost", - "tracing", - "uuid", -] - -[[package]] -name = "group" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" -dependencies = [ - "ff", - "rand_core 0.6.4", - "subtle", -] - -[[package]] -name = "h2" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" -dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.4.0", - "indexmap", - "slab", - "tokio", - "tokio-util", - "tracing", -] - -[[package]] -name = "half" -version = "2.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" -dependencies = [ - "bytemuck", - "cfg-if 1.0.4", - "crunchy", - "num-traits", - "serde", - "zerocopy", -] - -[[package]] -name = "halfbrown" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f" -dependencies = [ - "hashbrown 0.14.5", - "serde", -] - -[[package]] -name = "hashbrown" -version = "0.14.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" -dependencies = [ - "ahash", - "allocator-api2", -] - -[[package]] -name = "hashbrown" -version = "0.15.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" -dependencies = [ - "foldhash 0.1.5", -] - -[[package]] -name = "hashbrown" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" -dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.2.0", -] - -[[package]] -name = "hashbrown" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" - -[[package]] -name = "heapify" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0049b265b7f201ca9ab25475b22b47fe444060126a51abe00f77d986fc5cc52e" - -[[package]] -name = "heck" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - -[[package]] -name = "hermit-abi" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" - -[[package]] -name = "hex" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - -[[package]] -name = "hf-xet" -version = "1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "430b33fa84f92796d4d263070b6c0d3ca219df7b9a0e1853ee431029b1612bcd" -dependencies = [ - "async-trait", - "bytes", - "http 1.4.0", - "more-asserts", - "serde", - "thiserror 2.0.18", - "tokio", - "tokio-util", - "tracing", - "uuid", - "xet-client", - "xet-core-structures", - "xet-data", - "xet-runtime", -] - -[[package]] -name = "hifijson" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a7763b98ba8a24f59e698bf9ab197e7676c640d6455d1580b4ce7dc560f0f0d" - -[[package]] -name = "hmac" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" -dependencies = [ - "digest 0.10.7", -] - -[[package]] -name = "home" -version = "0.5.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "hostname" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd" -dependencies = [ - "cfg-if 1.0.4", - "libc", - "windows-link", -] - -[[package]] -name = "html-escape" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" -dependencies = [ - "utf8-width", -] - -[[package]] -name = "http" -version = "0.2.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "http" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" -dependencies = [ - "bytes", - "itoa", -] - -[[package]] -name = "http-body" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" -dependencies = [ - "bytes", - "http 0.2.12", - "pin-project-lite", -] - -[[package]] -name = "http-body" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" -dependencies = [ - "bytes", - "http 1.4.0", -] - -[[package]] -name = "http-body-util" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" -dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "pin-project-lite", -] - -[[package]] -name = "http-range-header" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c" - -[[package]] -name = "http-types" -version = "2.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" -dependencies = [ - "anyhow", - "async-channel 1.9.0", - "base64 0.13.1", - "futures-lite 1.13.0", - "infer", - "pin-project-lite", - "rand 0.7.3", - "serde", - "serde_json", - "serde_qs", - "serde_urlencoded", - "url", -] - -[[package]] -name = "httparse" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - -[[package]] -name = "httpdate" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - -[[package]] -name = "humantime" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" - -[[package]] -name = "hybrid-array" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da" -dependencies = [ - "typenum", -] - -[[package]] -name = "hyper" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" -dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "pin-utils", - "smallvec", - "tokio", - "want", -] - -[[package]] -name = "hyper-rustls" -version = "0.27.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" -dependencies = [ - "http 1.4.0", - "hyper", - "hyper-util", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", -] - -[[package]] -name = "hyper-timeout" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" -dependencies = [ - "hyper", - "hyper-util", - "pin-project-lite", - "tokio", - "tower-service", -] - -[[package]] -name = "hyper-util" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" -dependencies = [ - "base64 0.22.1", - "bytes", - "futures-channel", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "system-configuration", - "tokio", - "tower-service", - "tracing", - "windows-registry", -] - -[[package]] -name = "hyperloglog" -version = "0.3.0-dev0" - -[[package]] -name = "iana-time-zone" -version = "0.1.65" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" -dependencies = [ - "cc", -] - -[[package]] -name = "icu_collections" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" -dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", -] - -[[package]] -name = "icu_locale_core" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" -dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", -] - -[[package]] -name = "icu_normalizer" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" -dependencies = [ - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", -] - -[[package]] -name = "icu_normalizer_data" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" - -[[package]] -name = "icu_properties" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" -dependencies = [ - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "zerotrie", - "zerovec", -] - -[[package]] -name = "icu_properties_data" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" - -[[package]] -name = "icu_provider" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" -dependencies = [ - "displaydoc", - "icu_locale_core", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", -] - -[[package]] -name = "id-arena" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" - -[[package]] -name = "idna" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" -dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", -] - -[[package]] -name = "idna_adapter" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" -dependencies = [ - "icu_normalizer", - "icu_properties", -] - -[[package]] -name = "image" -version = "0.25.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104" -dependencies = [ - "bytemuck", - "byteorder-lite", - "color_quant", - "gif", - "image-webp", - "moxcms", - "num-traits", - "png", - "tiff", - "zune-core", - "zune-jpeg", -] - -[[package]] -name = "image-webp" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" -dependencies = [ - "byteorder-lite", - "quick-error 2.0.1", -] - -[[package]] -name = "include_dir" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd" -dependencies = [ - "include_dir_macros", -] - -[[package]] -name = "include_dir_macros" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75" -dependencies = [ - "proc-macro2", - "quote", -] - -[[package]] -name = "indexmap" -version = "2.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" -dependencies = [ - "equivalent", - "hashbrown 0.16.1", - "serde", - "serde_core", -] - -[[package]] -name = "indicatif" -version = "0.18.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb" -dependencies = [ - "console", - "portable-atomic", - "unicode-width", - "unit-prefix", - "web-time", -] - -[[package]] -name = "indoc" -version = "2.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" -dependencies = [ - "rustversion", -] - -[[package]] -name = "infer" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" - -[[package]] -name = "instant" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" -dependencies = [ - "cfg-if 1.0.4", - "js-sys", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "inventory" -version = "0.3.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227" -dependencies = [ - "rustversion", -] - -[[package]] -name = "ipnet" -version = "2.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" - -[[package]] -name = "iri-string" -version = "0.7.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb" -dependencies = [ - "memchr", - "serde", -] - -[[package]] -name = "is_ci" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" - -[[package]] -name = "is_terminal_polyfill" -version = "1.70.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" - -[[package]] -name = "itertools" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" -dependencies = [ - "either", -] - -[[package]] -name = "itoa" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" - -[[package]] -name = "jaq-core" -version = "2.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77526a72eb79412c29fd141767a6549bbfcb1cb40e00556fe16532d5e878e098" -dependencies = [ - "dyn-clone", - "once_cell", - "typed-arena", -] - -[[package]] -name = "jaq-json" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01dbdbd07b076e8403abac68ce7744d93e2ecd953bbc44bf77bf00e1e81172bc" -dependencies = [ - "foldhash 0.1.5", - "hifijson", - "indexmap", - "jaq-core", - "jaq-std", - "serde_json", -] - -[[package]] -name = "jaq-std" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c264fe397c981705976c71f1bfe020382b9eda52ae950e57fe885e147bdd67d" -dependencies = [ - "aho-corasick", - "base64 0.22.1", - "chrono", - "jaq-core", - "libm", - "log", - "regex-lite", - "urlencoding", -] - -[[package]] -name = "jiff" -version = "0.2.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" -dependencies = [ - "jiff-static", - "jiff-tzdb-platform", - "js-sys", - "log", - "portable-atomic", - "portable-atomic-util", - "serde_core", - "wasm-bindgen", - "windows-sys 0.61.2", -] - -[[package]] -name = "jiff-static" -version = "0.2.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "jiff-tzdb" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076" - -[[package]] -name = "jiff-tzdb-platform" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8" -dependencies = [ - "jiff-tzdb", -] - -[[package]] -name = "jni" -version = "0.22.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" -dependencies = [ - "cfg-if 1.0.4", - "combine", - "jni-macros", - "jni-sys", - "log", - "simd_cesu8", - "thiserror 2.0.18", - "walkdir", - "windows-link", -] - -[[package]] -name = "jni-macros" -version = "0.22.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" -dependencies = [ - "proc-macro2", - "quote", - "rustc_version", - "simd_cesu8", - "syn 2.0.117", -] - -[[package]] -name = "jni-sys" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" -dependencies = [ - "jni-sys-macros", -] - -[[package]] -name = "jni-sys-macros" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" -dependencies = [ - "quote", - "syn 2.0.117", -] - -[[package]] -name = "jobserver" -version = "0.1.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" -dependencies = [ - "getrandom 0.3.4", - "libc", -] - -[[package]] -name = "js-sys" -version = "0.3.91" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" -dependencies = [ - "once_cell", - "wasm-bindgen", -] - -[[package]] -name = "jsonwebtoken" -version = "9.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" -dependencies = [ - "base64 0.22.1", - "js-sys", - "pem", - "ring", - "serde", - "serde_json", - "simple_asn1", -] - -[[package]] -name = "konst" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f660d5f887e3562f9ab6f4a14988795b694099d66b4f5dedc02d197ba9becb1d" -dependencies = [ - "const_panic", - "konst_proc_macros", - "typewit", -] - -[[package]] -name = "konst_proc_macros" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e037a2e1d8d5fdbd49b16a4ea09d5d6401c1f29eca5ff29d03d3824dba16256a" - -[[package]] -name = "lazy_static" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - -[[package]] -name = "leb128fmt" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" - -[[package]] -name = "lexical-core" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" -dependencies = [ - "lexical-parse-float", - "lexical-parse-integer", - "lexical-util", - "lexical-write-float", - "lexical-write-integer", -] - -[[package]] -name = "lexical-parse-float" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" -dependencies = [ - "lexical-parse-integer", - "lexical-util", -] - -[[package]] -name = "lexical-parse-integer" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" -dependencies = [ - "lexical-util", -] - -[[package]] -name = "lexical-util" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17" - -[[package]] -name = "lexical-write-float" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" -dependencies = [ - "lexical-util", - "lexical-write-integer", -] - -[[package]] -name = "lexical-write-integer" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" -dependencies = [ - "lexical-util", -] - -[[package]] -name = "libc" -version = "0.2.183" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" - -[[package]] -name = "libloading" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" -dependencies = [ - "cfg-if 1.0.4", - "windows-link", -] - -[[package]] -name = "libloading" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60" -dependencies = [ - "cfg-if 1.0.4", - "windows-link", -] - -[[package]] -name = "libm" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" - -[[package]] -name = "libredox" -version = "0.1.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3" -dependencies = [ - "libc", -] - -[[package]] -name = "linux-raw-sys" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" - -[[package]] -name = "litemap" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" - -[[package]] -name = "litrs" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" - -[[package]] -name = "lock_api" -version = "0.4.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" -dependencies = [ - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" - -[[package]] -name = "lru" -version = "0.16.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" -dependencies = [ - "hashbrown 0.16.1", -] - -[[package]] -name = "lru-slab" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - -[[package]] -name = "lz4_flex" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e" -dependencies = [ - "twox-hash", -] - -[[package]] -name = "lzma-sys" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" -dependencies = [ - "cc", - "libc", - "pkg-config", -] - -[[package]] -name = "marrow" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48b7541d9bd6781e25b0dfe7d638e5a8aa7950d5cdbf86f97537b5672768f7c4" -dependencies = [ - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-schema 59.0.0", - "bytemuck", - "half", - "serde", -] - -[[package]] -name = "matchers" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" -dependencies = [ - "regex-automata", -] - -[[package]] -name = "matchit" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" - -[[package]] -name = "matrixmultiply" -version = "0.3.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" -dependencies = [ - "autocfg", - "rawpointer", -] - -[[package]] -name = "md-5" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" -dependencies = [ - "cfg-if 1.0.4", - "digest 0.10.7", -] - -[[package]] -name = "md-5" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98" -dependencies = [ - "cfg-if 1.0.4", - "digest 0.11.3", -] - -[[package]] -name = "md5" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0" - -[[package]] -name = "mea" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2640d335e7273dacdcf51044026139b2e269c3bb0dfc3f8cb3496b85e3f6a42c" -dependencies = [ - "slab", -] - -[[package]] -name = "memchr" -version = "2.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" - -[[package]] -name = "memmap2" -version = "0.9.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3" -dependencies = [ - "libc", -] - -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "mime_guess" -version = "2.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" -dependencies = [ - "mime", - "unicase", -] - -[[package]] -name = "miniz_oxide" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" -dependencies = [ - "adler2", - "simd-adler32", -] - -[[package]] -name = "mio" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" -dependencies = [ - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.61.2", -] - -[[package]] -name = "more-asserts" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" - -[[package]] -name = "moxcms" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b" -dependencies = [ - "num-traits", - "pxfm", -] - -[[package]] -name = "mur3" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97af489e1e21b68de4c390ecca6703318bc1aa16e9733bcb62c089b73c6fbb1b" - -[[package]] -name = "ndarray" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d" -dependencies = [ - "matrixmultiply", - "num-complex", - "num-integer", - "num-traits", - "portable-atomic", - "portable-atomic-util", - "rawpointer", -] - -[[package]] -name = "ntapi" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae" -dependencies = [ - "winapi", -] - -[[package]] -name = "nu-ansi-term" -version = "0.50.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "num" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" -dependencies = [ - "num-bigint", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", -] - -[[package]] -name = "num-bigint" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" -dependencies = [ - "num-integer", - "num-traits", -] - -[[package]] -name = "num-complex" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" -dependencies = [ - "num-traits", -] - -[[package]] -name = "num-conv" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967" - -[[package]] -name = "num-derive" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "num-format" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" -dependencies = [ - "arrayvec", - "itoa", -] - -[[package]] -name = "num-integer" -version = "0.1.46" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" -dependencies = [ - "num-traits", -] - -[[package]] -name = "num-iter" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" -dependencies = [ - "autocfg", - "num-integer", - "num-traits", -] - -[[package]] -name = "num-rational" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" -dependencies = [ - "num-bigint", - "num-integer", - "num-traits", -] - -[[package]] -name = "num-traits" -version = "0.2.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" -dependencies = [ - "autocfg", - "libm", -] - -[[package]] -name = "numpy" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2" -dependencies = [ - "half", - "libc", - "ndarray", - "num-complex", - "num-integer", - "num-traits", - "pyo3", - "pyo3-build-config", - "rustc-hash 2.1.1", -] - -[[package]] -name = "oauth2" -version = "4.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c38841cdd844847e3e7c8d29cef9dcfed8877f8f56f9071f77843ecf3baf937f" -dependencies = [ - "base64 0.13.1", - "chrono", - "getrandom 0.2.17", - "http 0.2.12", - "rand 0.8.5", - "serde", - "serde_json", - "serde_path_to_error", - "sha2", - "thiserror 1.0.69", - "url", -] - -[[package]] -name = "objc2-core-foundation" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" -dependencies = [ - "bitflags 2.11.0", -] - -[[package]] -name = "objc2-io-kit" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15" -dependencies = [ - "libc", - "objc2-core-foundation", -] - -[[package]] -name = "objc2-system-configuration" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396" -dependencies = [ - "objc2-core-foundation", -] - -[[package]] -name = "object" -version = "0.37.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.21.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" - -[[package]] -name = "once_cell_polyfill" -version = "1.70.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" - -[[package]] -name = "oneshot" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107" - -[[package]] -name = "oorandom" -version = "11.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" - -[[package]] -name = "opendal" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96c9c85ce253ff87225e7669979d877a20c98a06604ec9d6dd5f4473e08f1ae1" -dependencies = [ - "opendal-core", - "opendal-service-cos", - "opendal-service-fs", - "opendal-service-github", - "opendal-service-goosefs", - "opendal-service-obs", - "opendal-service-oss", - "opendal-service-tos", -] - -[[package]] -name = "opendal-core" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4f8607c90e2c963a91467f50fb49fbc7fb3d573f88cea219ca59ccd3740b309" -dependencies = [ - "anyhow", - "base64 0.22.1", - "bytes", - "futures", - "http 1.4.0", - "http-body 1.0.1", - "jiff", - "log", - "md-5 0.11.0", - "mea", - "percent-encoding", - "quick-xml 0.39.4", - "reqsign-core", - "reqwest 0.13.4", - "serde", - "serde_json", - "tokio", - "url", - "uuid", - "web-time", -] - -[[package]] -name = "opendal-service-cos" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa8cafe9729213375c7331019b0cb756ad3e1aff7f45cd32c45eae91ebde8901" -dependencies = [ - "bytes", - "http 1.4.0", - "log", - "opendal-core", - "quick-xml 0.39.4", - "reqsign-core", - "reqsign-file-read-tokio", - "reqsign-tencent-cos", - "serde", -] - -[[package]] -name = "opendal-service-fs" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e89a665fef0e6bd249cf5ea47fc174b7ba892159bee4b9382528b1ca873a2c" -dependencies = [ - "bytes", - "log", - "opendal-core", - "serde", - "tokio", - "xattr", -] - -[[package]] -name = "opendal-service-github" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "275152f40711ae0cb196c7cb514103461ed1a6248497463f1ff58f9945ecc812" -dependencies = [ - "base64 0.22.1", - "bytes", - "http 1.4.0", - "log", - "opendal-core", - "serde", - "serde_json", -] - -[[package]] -name = "opendal-service-goosefs" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69e43048bde419947ba826fbdc2f134d6c03f44ebf48bd33a03b72f9fc45fcb4" -dependencies = [ - "bytes", - "goosefs-sdk", - "log", - "opendal-core", - "serde", - "tokio", -] - -[[package]] -name = "opendal-service-obs" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "888879f191b629570b7177eeb7b447d4daa382828d2e1cd649bb8c505ed5f9aa" -dependencies = [ - "bytes", - "http 1.4.0", - "log", - "opendal-core", - "quick-xml 0.39.4", - "reqsign-core", - "reqsign-file-read-tokio", - "reqsign-huaweicloud-obs", - "serde", -] - -[[package]] -name = "opendal-service-oss" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "328fa55e8888cbdfe00826bfea2a79042422b720e8369e9e021e46121dea5ace" -dependencies = [ - "bytes", - "http 1.4.0", - "log", - "opendal-core", - "quick-xml 0.39.4", - "reqsign-aliyun-oss", - "reqsign-core", - "reqsign-file-read-tokio", - "serde", -] - -[[package]] -name = "opendal-service-tos" -version = "0.57.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f2f7a4c32e5202eb4ac72e76c4b5e30c86ab60762811172f4111103b9d673a1" -dependencies = [ - "bytes", - "http 1.4.0", - "opendal-core", - "quick-xml 0.39.4", - "reqsign-core", - "reqsign-file-read-tokio", - "reqsign-volcengine-tos", - "serde", - "serde_json", -] - -[[package]] -name = "openssl-probe" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" - -[[package]] -name = "opentelemetry" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0" -dependencies = [ - "futures-core", - "futures-sink", - "js-sys", - "pin-project-lite", - "thiserror 2.0.18", - "tracing", -] - -[[package]] -name = "opentelemetry-http" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d" -dependencies = [ - "async-trait", - "bytes", - "http 1.4.0", - "opentelemetry", - "reqwest 0.12.28", -] - -[[package]] -name = "opentelemetry-otlp" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f" -dependencies = [ - "http 1.4.0", - "opentelemetry", - "opentelemetry-http", - "opentelemetry-proto", - "opentelemetry_sdk", - "prost", - "reqwest 0.12.28", - "thiserror 2.0.18", - "tokio", - "tonic", - "tracing", -] - -[[package]] -name = "opentelemetry-proto" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f" -dependencies = [ - "opentelemetry", - "opentelemetry_sdk", - "prost", - "tonic", - "tonic-prost", -] - -[[package]] -name = "opentelemetry_sdk" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd" -dependencies = [ - "futures-channel", - "futures-executor", - "futures-util", - "opentelemetry", - "percent-encoding", - "rand 0.9.2", - "thiserror 2.0.18", - "tokio", - "tokio-stream", -] - -[[package]] -name = "option-ext" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" - -[[package]] -name = "ordered-multimap" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" -dependencies = [ - "dlv-list", - "hashbrown 0.14.5", -] - -[[package]] -name = "os_str_bytes" -version = "6.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" -dependencies = [ - "memchr", -] - -[[package]] -name = "outref" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e" - -[[package]] -name = "p256" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" -dependencies = [ - "ecdsa", - "elliptic-curve", - "sha2", -] - -[[package]] -name = "parking" -version = "2.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" - -[[package]] -name = "parking_lot" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" -dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.6", -] - -[[package]] -name = "parking_lot" -version = "0.12.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" -dependencies = [ - "lock_api", - "parking_lot_core 0.9.12", -] - -[[package]] -name = "parking_lot_core" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" -dependencies = [ - "cfg-if 1.0.4", - "instant", - "libc", - "redox_syscall 0.2.16", - "smallvec", - "winapi", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" -dependencies = [ - "cfg-if 1.0.4", - "libc", - "redox_syscall 0.5.18", - "smallvec", - "windows-link", -] - -[[package]] -name = "parquet" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "970dff83e97d953c827ae8176f6bf4e9f77bf62daacc01ec5df348ec5eacd913" -dependencies = [ - "ahash", - "arrow-array 59.0.0", - "arrow-buffer 59.0.0", - "arrow-data 59.0.0", - "arrow-ipc", - "arrow-schema 59.0.0", - "arrow-select", - "base64 0.22.1", - "brotli 8.0.2", - "bytes", - "chrono", - "flate2", - "futures", - "half", - "hashbrown 0.17.1", - "lz4_flex", - "num-bigint", - "num-integer", - "num-traits", - "parquet-variant", - "parquet-variant-compute", - "parquet-variant-json", - "paste", - "seq-macro", - "simdutf8", - "snap", - "tokio", - "twox-hash", - "zstd", -] - -[[package]] -name = "parquet-variant" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "561ead3e7c0acda5214ddc8e52645cfc9dd5bdf93cfcd7513715adf63f0bd2ce" -dependencies = [ - "arrow", - "arrow-schema 59.0.0", - "chrono", - "half", - "indexmap", - "num-traits", - "simdutf8", - "uuid", -] - -[[package]] -name = "parquet-variant-compute" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ece7aa9410b47d8bf3e0bf77529287ed4ccdd2b12c20978f8e9a8f09a48712d" -dependencies = [ - "arrow", - "arrow-schema 59.0.0", - "chrono", - "half", - "indexmap", - "parquet-variant", - "parquet-variant-json", - "serde_json", - "uuid", -] - -[[package]] -name = "parquet-variant-json" -version = "59.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57b4abded29d8a7d1b450795aace3e06577399a35eef0023fb03ce6acd6c23e8" -dependencies = [ - "arrow-schema 59.0.0", - "base64 0.22.1", - "chrono", - "parquet-variant", - "serde_json", - "uuid", -] - -[[package]] -name = "paste" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" - -[[package]] -name = "path_macro" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6e819bbd49d5939f682638fa54826bf1650abddcd65d000923de8ad63cc7d15" - -[[package]] -name = "pem" -version = "3.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" -dependencies = [ - "base64 0.22.1", - "serde_core", -] - -[[package]] -name = "pem-rfc7468" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" -dependencies = [ - "base64ct", -] - -[[package]] -name = "percent-encoding" -version = "2.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - -[[package]] -name = "phf" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" -dependencies = [ - "phf_shared", -] - -[[package]] -name = "phf_shared" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" -dependencies = [ - "siphasher", -] - -[[package]] -name = "pin-project" -version = "1.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "pin-project-lite" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - -[[package]] -name = "piper" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" -dependencies = [ - "atomic-waker", - "fastrand 2.3.0", - "futures-io", -] - -[[package]] -name = "pkcs8" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" -dependencies = [ - "der 0.6.1", - "spki 0.6.0", -] - -[[package]] -name = "pkcs8" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" -dependencies = [ - "der 0.7.10", - "spki 0.7.3", -] - -[[package]] -name = "pkg-config" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" - -[[package]] -name = "plain" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" - -[[package]] -name = "plotters" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" -dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "plotters-backend" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" - -[[package]] -name = "plotters-svg" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" -dependencies = [ - "plotters-backend", -] - -[[package]] -name = "png" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" -dependencies = [ - "bitflags 2.11.0", - "crc32fast", - "fdeflate", - "flate2", - "miniz_oxide", -] - -[[package]] -name = "polling" -version = "3.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" -dependencies = [ - "cfg-if 1.0.4", - "concurrent-queue", - "hermit-abi", - "pin-project-lite", - "rustix", - "windows-sys 0.61.2", -] - -[[package]] -name = "portable-atomic" -version = "1.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" - -[[package]] -name = "portable-atomic-util" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3" -dependencies = [ - "portable-atomic", -] - -[[package]] -name = "potential_utf" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" -dependencies = [ - "zerovec", -] - -[[package]] -name = "powerfmt" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" - -[[package]] -name = "ppv-lite86" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" -dependencies = [ - "zerocopy", -] - -[[package]] -name = "pretty_assertions" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" -dependencies = [ - "diff", - "yansi", -] - -[[package]] -name = "prettyplease" -version = "0.2.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" -dependencies = [ - "proc-macro2", - "syn 2.0.117", -] - -[[package]] -name = "primal-check" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08" -dependencies = [ - "num-integer", -] - -[[package]] -name = "proc-macro-crate" -version = "3.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" -dependencies = [ - "toml_edit", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] -name = "proc-macro2" -version = "1.0.106" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "proptest" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744" -dependencies = [ - "bit-set 0.8.0", - "bit-vec 0.8.0", - "bitflags 2.11.0", - "num-traits", - "rand 0.9.2", - "rand_chacha 0.9.0", - "rand_xorshift", - "regex-syntax", - "rusty-fork", - "tempfile", - "unarray", -] - -[[package]] -name = "prost" -version = "0.14.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" -dependencies = [ - "bytes", - "prost-derive", -] - -[[package]] -name = "prost-derive" -version = "0.14.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" -dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "prost-types" -version = "0.14.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" -dependencies = [ - "prost", -] - -[[package]] -name = "psm" -version = "0.1.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8" -dependencies = [ - "ar_archive_writer", - "cc", -] - -[[package]] -name = "pxfm" -version = "0.1.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" - -[[package]] -name = "pyo3" -version = "0.28.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1" -dependencies = [ - "chrono", - "chrono-tz", - "indexmap", - "inventory", - "libc", - "once_cell", - "portable-atomic", - "pyo3-build-config", - "pyo3-ffi", - "pyo3-macros", -] - -[[package]] -name = "pyo3-async-runtimes" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178" -dependencies = [ - "futures-channel", - "futures-util", - "once_cell", - "pin-project-lite", - "pyo3", - "pyo3-async-runtimes-macros", - "tokio", -] - -[[package]] -name = "pyo3-async-runtimes-macros" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c23399970eea9c31d0ac84cee4a9d8dd05f89b1da2f4dd5bb44b32a3f66db4f8" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "pyo3-build-config" -version = "0.28.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7" -dependencies = [ - "target-lexicon", -] - -[[package]] -name = "pyo3-ffi" -version = "0.28.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc" -dependencies = [ - "libc", - "pyo3-build-config", -] - -[[package]] -name = "pyo3-log" -version = "0.13.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26c2ec80932c5c3b2d4fbc578c9b56b2d4502098587edb8bef5b6bfcad43682e" -dependencies = [ - "arc-swap", - "log", - "pyo3", -] - -[[package]] -name = "pyo3-macros" -version = "0.28.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e" -dependencies = [ - "proc-macro2", - "pyo3-macros-backend", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "pyo3-macros-backend" -version = "0.28.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a" -dependencies = [ - "heck", - "proc-macro2", - "pyo3-build-config", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - -[[package]] -name = "quick-error" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" - -[[package]] -name = "quick-xml" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" -dependencies = [ - "memchr", - "serde", -] - -[[package]] -name = "quick-xml" -version = "0.39.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e" -dependencies = [ - "memchr", - "serde", -] - -[[package]] -name = "quinn" -version = "0.11.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" -dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash 2.1.1", - "rustls", - "socket2", - "thiserror 2.0.18", - "tokio", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-proto" -version = "0.11.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" -dependencies = [ - "aws-lc-rs", - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.2", - "ring", - "rustc-hash 2.1.1", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.18", - "tinyvec", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-udp" -version = "0.5.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" -dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.59.0", -] - -[[package]] -name = "quote" -version = "1.0.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "r-efi" -version = "5.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" - -[[package]] -name = "r-efi" -version = "6.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" - -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -dependencies = [ - "getrandom 0.1.16", - "libc", - "rand_chacha 0.2.2", - "rand_core 0.5.1", - "rand_hc", -] - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - -[[package]] -name = "rand" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" -dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.5", -] - -[[package]] -name = "rand" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" -dependencies = [ - "chacha20", - "getrandom 0.4.2", - "rand_core 0.10.1", -] - -[[package]] -name = "rand_chacha" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -dependencies = [ - "ppv-lite86", - "rand_core 0.5.1", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_chacha" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" -dependencies = [ - "ppv-lite86", - "rand_core 0.9.5", -] - -[[package]] -name = "rand_core" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -dependencies = [ - "getrandom 0.1.16", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom 0.2.17", -] - -[[package]] -name = "rand_core" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" -dependencies = [ - "getrandom 0.3.4", -] - -[[package]] -name = "rand_core" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -dependencies = [ - "rand_core 0.5.1", -] - -[[package]] -name = "rand_xorshift" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" -dependencies = [ - "rand_core 0.9.5", -] - -[[package]] -name = "rawpointer" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" - -[[package]] -name = "rayon" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" -dependencies = [ - "either", - "rayon-core", -] - -[[package]] -name = "rayon-core" -version = "1.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" -dependencies = [ - "crossbeam-deque", - "crossbeam-utils", -] - -[[package]] -name = "recursive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" -dependencies = [ - "recursive-proc-macro-impl", - "stacker", -] - -[[package]] -name = "recursive-proc-macro-impl" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" -dependencies = [ - "quote", - "syn 2.0.117", -] - -[[package]] -name = "redb" -version = "3.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba239c1c1693315d3cc0e601db3b3965543afbf48c41730fdca2f069f510f4a" -dependencies = [ - "libc", -] - -[[package]] -name = "redox_syscall" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" -dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "redox_syscall" -version = "0.5.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" -dependencies = [ - "bitflags 2.11.0", -] - -[[package]] -name = "redox_users" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" -dependencies = [ - "getrandom 0.2.17", - "libredox", - "thiserror 2.0.18", -] - -[[package]] -name = "ref-cast" -version = "1.0.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" -dependencies = [ - "ref-cast-impl", -] - -[[package]] -name = "ref-cast-impl" -version = "1.0.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "regex" -version = "1.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", -] - -[[package]] -name = "regex-automata" -version = "0.4.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", -] - -[[package]] -name = "regex-lite" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" - -[[package]] -name = "regex-syntax" -version = "0.8.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" - -[[package]] -name = "relative-path" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" - -[[package]] -name = "reqsign-aliyun-oss" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57ac2757f3140aa2e213b554148ae0b52733e624fc6723f0cc6bb3d440176c95" -dependencies = [ - "anyhow", - "form_urlencoded", - "http 1.4.0", - "log", - "percent-encoding", - "reqsign-core", - "rust-ini", - "serde", - "serde_json", -] - -[[package]] -name = "reqsign-core" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b10302cf0a7d7e7352ba211fc92c3c5bebf1286153e49cc5aa87348078a8e102" -dependencies = [ - "anyhow", - "base64 0.22.1", - "bytes", - "form_urlencoded", - "futures", - "hex", - "hmac", - "http 1.4.0", - "jiff", - "log", - "percent-encoding", - "sha1", - "sha2", - "windows-sys 0.61.2", -] - -[[package]] -name = "reqsign-file-read-tokio" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d89295b3d17abea31851cc8de55d843d89c52132c864963c38d41920613dc5" -dependencies = [ - "anyhow", - "reqsign-core", - "tokio", -] - -[[package]] -name = "reqsign-huaweicloud-obs" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8df54ec7de5d7a5b917695a67baba53ec6fa5d75ce4c4f4550db68618779a6d7" -dependencies = [ - "anyhow", - "http 1.4.0", - "log", - "percent-encoding", - "reqsign-core", -] - -[[package]] -name = "reqsign-tencent-cos" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e128f19525861dbded59e1e7c17653a8ed63d573ca04aed708d552dbef5bb32a" -dependencies = [ - "anyhow", - "http 1.4.0", - "log", - "percent-encoding", - "reqsign-core", - "serde", - "serde_json", -] - -[[package]] -name = "reqsign-volcengine-tos" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9d757602a7ef2b6025c0da77e6d2e23fbdef35930fa466b15ffbf0a3f13acf7" -dependencies = [ - "anyhow", - "http 1.4.0", - "log", - "percent-encoding", - "reqsign-core", -] - -[[package]] -name = "reqwest" -version = "0.12.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" -dependencies = [ - "base64 0.22.1", - "bytes", - "encoding_rs", - "futures-channel", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams 0.4.2", - "web-sys", - "webpki-roots", -] - -[[package]] -name = "reqwest" -version = "0.13.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" -dependencies = [ - "base64 0.22.1", - "bytes", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-pki-types", - "rustls-platform-verifier", - "serde", - "serde_json", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams 0.5.0", - "web-sys", -] - -[[package]] -name = "reqwest-middleware" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e" -dependencies = [ - "anyhow", - "async-trait", - "http 1.4.0", - "reqwest 0.12.28", - "serde", - "thiserror 1.0.69", - "tower-service", -] - -[[package]] -name = "reqwest-middleware" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bc3f1384cffa4f274dad2d4ddd73aed32fed8f786d96c6be8aa4e5fd3c3b58" -dependencies = [ - "anyhow", - "async-trait", - "http 1.4.0", - "reqwest 0.13.4", - "thiserror 2.0.18", - "tower-service", -] - -[[package]] -name = "reqwest-retry" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29c73e4195a6bfbcb174b790d9b3407ab90646976c55de58a6515da25d851178" -dependencies = [ - "anyhow", - "async-trait", - "futures", - "getrandom 0.2.17", - "http 1.4.0", - "hyper", - "parking_lot 0.11.2", - "reqwest 0.12.28", - "reqwest-middleware 0.4.2", - "retry-policies", - "thiserror 1.0.69", - "tokio", - "tracing", - "wasm-timer", -] - -[[package]] -name = "retry-policies" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5875471e6cab2871bc150ecb8c727db5113c9338cc3354dc5ee3425b6aa40a1c" -dependencies = [ - "rand 0.8.5", -] - -[[package]] -name = "rfc6979" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" -dependencies = [ - "crypto-bigint 0.4.9", - "hmac", - "zeroize", -] - -[[package]] -name = "ring" -version = "0.17.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" -dependencies = [ - "cc", - "cfg-if 1.0.4", - "getrandom 0.2.17", - "libc", - "untrusted 0.9.0", - "windows-sys 0.52.0", -] - -[[package]] -name = "rstest" -version = "0.26.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49" -dependencies = [ - "futures-timer", - "futures-util", - "rstest_macros", -] - -[[package]] -name = "rstest_macros" -version = "0.26.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0" -dependencies = [ - "cfg-if 1.0.4", - "glob", - "proc-macro-crate", - "proc-macro2", - "quote", - "regex", - "relative-path", - "rustc_version", - "syn 2.0.117", - "unicode-ident", -] - -[[package]] -name = "rust-ini" -version = "0.21.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7" -dependencies = [ - "cfg-if 1.0.4", - "ordered-multimap", -] - -[[package]] -name = "rustc-hash" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" - -[[package]] -name = "rustc-hash" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" - -[[package]] -name = "rustc_version" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" -dependencies = [ - "semver", -] - -[[package]] -name = "rustfft" -version = "6.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89" -dependencies = [ - "num-complex", - "num-integer", - "num-traits", - "primal-check", - "strength_reduce", - "transpose", -] - -[[package]] -name = "rustix" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" -dependencies = [ - "bitflags 2.11.0", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.61.2", -] - -[[package]] -name = "rustls" -version = "0.23.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" -dependencies = [ - "aws-lc-rs", - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", -] - -[[package]] -name = "rustls-native-certs" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" -dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", - "security-framework", -] - -[[package]] -name = "rustls-pki-types" -version = "1.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" -dependencies = [ - "web-time", - "zeroize", -] - -[[package]] -name = "rustls-platform-verifier" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0" -dependencies = [ - "core-foundation 0.10.1", - "core-foundation-sys", - "jni", - "log", - "once_cell", - "rustls", - "rustls-native-certs", - "rustls-platform-verifier-android", - "rustls-webpki", - "security-framework", - "security-framework-sys", - "webpki-root-certs", - "windows-sys 0.61.2", -] - -[[package]] -name = "rustls-platform-verifier-android" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" - -[[package]] -name = "rustls-webpki" -version = "0.103.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" -dependencies = [ - "aws-lc-rs", - "ring", - "rustls-pki-types", - "untrusted 0.9.0", -] - -[[package]] -name = "rustversion" -version = "1.0.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" - -[[package]] -name = "rusty-fork" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2" -dependencies = [ - "fnv", - "quick-error 1.2.3", - "tempfile", - "wait-timeout", -] - -[[package]] -name = "ryu" -version = "1.0.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" - -[[package]] -name = "safe-transmute" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3944826ff8fa8093089aba3acb4ef44b9446a99a16f3bf4e74af3f77d340ab7d" - -[[package]] -name = "same-file" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "schannel" -version = "0.1.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "scroll" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da" -dependencies = [ - "scroll_derive", -] - -[[package]] -name = "scroll_derive" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "sec1" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" -dependencies = [ - "base16ct", - "der 0.6.1", - "generic-array", - "pkcs8 0.9.0", - "subtle", - "zeroize", -] - -[[package]] -name = "secrecy" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e" -dependencies = [ - "zeroize", -] - -[[package]] -name = "security-framework" -version = "3.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" -dependencies = [ - "bitflags 2.11.0", - "core-foundation 0.10.1", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework-sys" -version = "2.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "semver" -version = "1.0.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" - -[[package]] -name = "seq-macro" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc" - -[[package]] -name = "serde" -version = "1.0.228" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" -dependencies = [ - "serde_core", - "serde_derive", -] - -[[package]] -name = "serde_arrow" -version = "0.14.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f7168b019016101c432501f4cffb94869bed2ba1083ca9df06e90e10bd6f998" -dependencies = [ - "arrow-array 59.0.0", - "arrow-schema 59.0.0", - "bytemuck", - "chrono", - "half", - "marrow", - "serde", -] - -[[package]] -name = "serde_core" -version = "1.0.228" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.228" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "serde_json" -version = "1.0.149" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" -dependencies = [ - "itoa", - "memchr", - "serde", - "serde_core", - "zmij", -] - -[[package]] -name = "serde_path_to_error" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" -dependencies = [ - "itoa", - "serde", - "serde_core", -] - -[[package]] -name = "serde_qs" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" -dependencies = [ - "percent-encoding", - "serde", - "thiserror 1.0.69", -] - -[[package]] -name = "serde_repr" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "sha1" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" -dependencies = [ - "cfg-if 1.0.4", - "cpufeatures 0.2.17", - "digest 0.10.7", -] - -[[package]] -name = "sha2" -version = "0.10.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" -dependencies = [ - "cfg-if 1.0.4", - "cpufeatures 0.2.17", - "digest 0.10.7", - "sha2-asm", -] - -[[package]] -name = "sha2-asm" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b845214d6175804686b2bd482bcffe96651bb2d1200742b712003504a2dac1ab" -dependencies = [ - "cc", -] - -[[package]] -name = "sharded-slab" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" -dependencies = [ - "lazy_static", -] - -[[package]] -name = "shellexpand" -version = "3.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8" -dependencies = [ - "bstr", - "dirs", - "os_str_bytes", -] - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "signal-hook-registry" -version = "1.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" -dependencies = [ - "errno", - "libc", -] - -[[package]] -name = "signature" -version = "1.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" -dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", -] - -[[package]] -name = "simd-adler32" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" - -[[package]] -name = "simd-json" -version = "0.13.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0228a564470f81724e30996bbc2b171713b37b15254a6440c7e2d5449b95691" -dependencies = [ - "ahash", - "getrandom 0.2.17", - "halfbrown", - "lexical-core", - "once_cell", - "ref-cast", - "serde", - "serde_json", - "simdutf8", - "value-trait", -] - -[[package]] -name = "simd_cesu8" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33" -dependencies = [ - "rustc_version", - "simdutf8", -] - -[[package]] -name = "simdutf8" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" - -[[package]] -name = "simple_asn1" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d" -dependencies = [ - "num-bigint", - "num-traits", - "thiserror 2.0.18", - "time", -] - -[[package]] -name = "siphasher" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" - -[[package]] -name = "sketches-ddsketch" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c" -dependencies = [ - "serde", -] - -[[package]] -name = "slab" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" - -[[package]] -name = "smallvec" -version = "1.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" -dependencies = [ - "bincode", - "serde", - "unty", -] - -[[package]] -name = "smawk" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" - -[[package]] -name = "snafu" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1d4bced6a69f90b2056c03dcff2c4737f98d6fb9e0853493996e1d253ca29c6" -dependencies = [ - "futures-core", - "pin-project", - "snafu-derive", -] - -[[package]] -name = "snafu-derive" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54254b8531cafa275c5e096f62d48c81435d1015405a91198ddb11e967301d40" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "snap" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" - -[[package]] -name = "socket2" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" -dependencies = [ - "libc", - "windows-sys 0.61.2", -] - -[[package]] -name = "spin" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" - -[[package]] -name = "spki" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" -dependencies = [ - "base64ct", - "der 0.6.1", -] - -[[package]] -name = "spki" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" -dependencies = [ - "base64ct", - "der 0.7.10", -] - -[[package]] -name = "sqlparser" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f" -dependencies = [ - "log", - "recursive", -] - -[[package]] -name = "stable_deref_trait" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" - -[[package]] -name = "stacker" -version = "0.1.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013" -dependencies = [ - "cc", - "cfg-if 1.0.4", - "libc", - "psm", - "windows-sys 0.59.0", -] - -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" - -[[package]] -name = "statrs" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e" -dependencies = [ - "approx", - "num-traits", -] - -[[package]] -name = "strength_reduce" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" - -[[package]] -name = "strsim" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - -[[package]] -name = "strum" -version = "0.27.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" -dependencies = [ - "strum_macros", -] - -[[package]] -name = "strum_macros" -version = "0.27.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "subtle" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - -[[package]] -name = "supports-color" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6" -dependencies = [ - "is_ci", -] - -[[package]] -name = "symlink" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" - -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" -dependencies = [ - "proc-macro2", - "unicode-ident", -] - -[[package]] -name = "syn" -version = "2.0.117" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "sync_wrapper" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" -dependencies = [ - "futures-core", -] - -[[package]] -name = "synstructure" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "sysinfo" -version = "0.38.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92ab6a2f8bfe508deb3c6406578252e491d299cbbf3bc0529ecc3313aee4a52f" -dependencies = [ - "libc", - "memchr", - "ntapi", - "objc2-core-foundation", - "objc2-io-kit", - "windows", -] - -[[package]] -name = "system-configuration" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" -dependencies = [ - "bitflags 2.11.0", - "core-foundation 0.9.4", - "system-configuration-sys", -] - -[[package]] -name = "system-configuration-sys" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "tango-bench" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "257822358c6f206fed78bfe6369cf959063b0644d70f88df6b19f2dadc93423e" -dependencies = [ - "alloca", - "anyhow", - "clap", - "colorz", - "glob-match", - "goblin", - "libloading 0.8.9", - "log", - "num-traits", - "rand 0.8.5", - "scroll", - "tempfile", - "thiserror 1.0.69", -] - -[[package]] -name = "target-lexicon" -version = "0.13.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca" - -[[package]] -name = "tempfile" -version = "3.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" -dependencies = [ - "fastrand 2.3.0", - "getrandom 0.4.2", - "once_cell", - "rustix", - "windows-sys 0.61.2", -] - -[[package]] -name = "terminal_size" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" -dependencies = [ - "rustix", - "windows-sys 0.61.2", -] - -[[package]] -name = "test-log" -version = "0.2.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d53ac171c92a39e4769491c4b4dde7022c60042254b5fc044ae409d34a24d4" -dependencies = [ - "env_logger", - "test-log-macros", - "tracing-subscriber", -] - -[[package]] -name = "test-log-macros" -version = "0.2.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be35209fd0781c5401458ab66e4f98accf63553e8fae7425503e92fdd319783b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "textwrap" -version = "0.16.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057" -dependencies = [ - "smawk", - "unicode-linebreak", - "unicode-width", -] - -[[package]] -name = "thiserror" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" -dependencies = [ - "thiserror-impl 1.0.69", -] - -[[package]] -name = "thiserror" -version = "2.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" -dependencies = [ - "thiserror-impl 2.0.18", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "thiserror-impl" -version = "2.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "thread_local" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" -dependencies = [ - "cfg-if 1.0.4", -] - -[[package]] -name = "tiff" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52" -dependencies = [ - "fax", - "flate2", - "half", - "quick-error 2.0.1", - "weezl", - "zune-jpeg", -] - -[[package]] -name = "tiktoken-rs" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a19830747d9034cd9da43a60eaa8e552dfda7712424aebf187b7a60126bae0d" -dependencies = [ - "anyhow", - "base64 0.22.1", - "bstr", - "fancy-regex", - "lazy_static", - "regex", - "rustc-hash 1.1.0", -] - -[[package]] -name = "tikv-jemalloc-ctl" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a184c43b8ab2f41df2733b55556e3f5f632f4aeaa205b1bb018f574b7f5f142" -dependencies = [ - "libc", - "paste", - "tikv-jemalloc-sys", -] - -[[package]] -name = "tikv-jemalloc-sys" -version = "0.7.1+5.3.1-0-g81034ce1f1373e37dc865038e1bc8eeecf559ce8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a2825c78386b4ae0314074867860ba9577875de945f05992c38815cbec327f0" -dependencies = [ - "cc", - "libc", -] - -[[package]] -name = "tikv-jemallocator" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "249f09e49ab1609436f34c776e84231bead18d6a955f119f939bdc1d847561bd" -dependencies = [ - "libc", - "tikv-jemalloc-sys", -] - -[[package]] -name = "time" -version = "0.3.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" -dependencies = [ - "deranged", - "itoa", - "js-sys", - "num-conv", - "powerfmt", - "serde_core", - "time-core", - "time-macros", -] - -[[package]] -name = "time-core" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" - -[[package]] -name = "time-macros" -version = "0.2.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" -dependencies = [ - "num-conv", - "time-core", -] - -[[package]] -name = "tiny-keccak" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -dependencies = [ - "crunchy", -] - -[[package]] -name = "tinystr" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" -dependencies = [ - "displaydoc", - "zerovec", -] - -[[package]] -name = "tinytemplate" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "tinyvec" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - -[[package]] -name = "tokio" -version = "1.50.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" -dependencies = [ - "bytes", - "libc", - "mio", - "parking_lot 0.12.5", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys 0.61.2", -] - -[[package]] -name = "tokio-macros" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "tokio-retry" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a129d95275ebf4c493ec53bf0f8cd95f5ac161bc4f381700809a54f595d4470" -dependencies = [ - "pin-project-lite", - "rand 0.10.1", - "tokio", -] - -[[package]] -name = "tokio-rustls" -version = "0.26.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" -dependencies = [ - "rustls", - "tokio", -] - -[[package]] -name = "tokio-stream" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" -dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", - "tokio-util", -] - -[[package]] -name = "tokio-util" -version = "0.7.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "toml_datetime" -version = "1.1.0+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97251a7c317e03ad83774a8752a7e81fb6067740609f75ea2b585b569a59198f" -dependencies = [ - "serde_core", -] - -[[package]] -name = "toml_edit" -version = "0.25.8+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16bff38f1d86c47f9ff0647e6838d7bb362522bdf44006c7068c2b1e606f1f3c" -dependencies = [ - "indexmap", - "toml_datetime", - "toml_parser", - "winnow", -] - -[[package]] -name = "toml_parser" -version = "1.1.0+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2334f11ee363607eb04df9b8fc8a13ca1715a72ba8662a26ac285c98aabb4011" -dependencies = [ - "winnow", -] - -[[package]] -name = "tonic" -version = "0.14.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec" -dependencies = [ - "async-trait", - "axum", - "base64 0.22.1", - "bytes", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "socket2", - "sync_wrapper", - "tokio", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tonic-prost" -version = "0.14.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309" -dependencies = [ - "bytes", - "prost", - "tonic", -] - -[[package]] -name = "tower" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" -dependencies = [ - "futures-core", - "futures-util", - "indexmap", - "pin-project-lite", - "slab", - "sync_wrapper", - "tokio", - "tokio-util", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower-http" -version = "0.6.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" -dependencies = [ - "bitflags 2.11.0", - "bytes", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "http-range-header", - "httpdate", - "iri-string", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "tokio", - "tokio-util", - "tower", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower-layer" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - -[[package]] -name = "tower-service" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - -[[package]] -name = "tracing" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" -dependencies = [ - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-appender" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" -dependencies = [ - "crossbeam-channel", - "symlink", - "thiserror 2.0.18", - "time", - "tracing-subscriber", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "tracing-core" -version = "0.1.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" -dependencies = [ - "once_cell", - "valuable", -] - -[[package]] -name = "tracing-log" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" -dependencies = [ - "log", - "once_cell", - "tracing-core", -] - -[[package]] -name = "tracing-opentelemetry" -version = "0.32.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc" -dependencies = [ - "js-sys", - "opentelemetry", - "smallvec", - "tracing", - "tracing-core", - "tracing-subscriber", - "web-time", -] - -[[package]] -name = "tracing-serde" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" -dependencies = [ - "serde", - "tracing-core", -] - -[[package]] -name = "tracing-subscriber" -version = "0.3.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" -dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex-automata", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "tracing", - "tracing-core", - "tracing-log", - "tracing-serde", -] - -[[package]] -name = "transpose" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e" -dependencies = [ - "num-integer", - "strength_reduce", -] - -[[package]] -name = "try-lock" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - -[[package]] -name = "twox-hash" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c" - -[[package]] -name = "typed-arena" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" - -[[package]] -name = "typeid" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" - -[[package]] -name = "typenum" -version = "1.20.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" - -[[package]] -name = "typetag" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf" -dependencies = [ - "erased-serde", - "inventory", - "once_cell", - "serde", - "typetag-impl", -] - -[[package]] -name = "typetag-impl" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "typewit" -version = "1.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "214ca0b2191785cbc06209b9ca1861e048e39b5ba33574b3cedd58363d5bb5f6" - -[[package]] -name = "unarray" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" - -[[package]] -name = "unicase" -version = "2.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" - -[[package]] -name = "unicode-ident" -version = "1.0.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" - -[[package]] -name = "unicode-linebreak" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" - -[[package]] -name = "unicode-normalization" -version = "0.1.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" -dependencies = [ - "tinyvec", -] - -[[package]] -name = "unicode-segmentation" -version = "1.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" - -[[package]] -name = "unicode-width" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" - -[[package]] -name = "unicode-xid" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" - -[[package]] -name = "unit-prefix" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3" - -[[package]] -name = "untrusted" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" - -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - -[[package]] -name = "unty" -version = "0.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" - -[[package]] -name = "url" -version = "2.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" -dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", - "serde_derive", -] - -[[package]] -name = "urlencoding" -version = "2.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" - -[[package]] -name = "utf8-width" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" - -[[package]] -name = "utf8_iter" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - -[[package]] -name = "utf8parse" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - -[[package]] -name = "uuid" -version = "1.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" -dependencies = [ - "getrandom 0.4.2", - "js-sys", - "rand 0.10.1", - "serde_core", - "wasm-bindgen", -] - -[[package]] -name = "valuable" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" - -[[package]] -name = "value-trait" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dad8db98c1e677797df21ba03fca7d3bf9bec3ca38db930954e4fe6e1ea27eb4" -dependencies = [ - "float-cmp", - "halfbrown", - "itoa", - "ryu", -] - -[[package]] -name = "version_check" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - -[[package]] -name = "virtue" -version = "0.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" - -[[package]] -name = "vsimd" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" - -[[package]] -name = "wait-timeout" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" -dependencies = [ - "libc", -] - -[[package]] -name = "waker-fn" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" - -[[package]] -name = "walkdir" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" -dependencies = [ - "same-file", - "winapi-util", -] - -[[package]] -name = "want" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" -dependencies = [ - "try-lock", -] - -[[package]] -name = "wasi" -version = "0.9.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" - -[[package]] -name = "wasi" -version = "0.11.1+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" - -[[package]] -name = "wasi" -version = "0.14.7+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" -dependencies = [ - "wasip2", -] - -[[package]] -name = "wasip2" -version = "1.0.2+wasi-0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" -dependencies = [ - "wit-bindgen", -] - -[[package]] -name = "wasip3" -version = "0.4.0+wasi-0.3.0-rc-2026-01-06" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" -dependencies = [ - "wit-bindgen", -] - -[[package]] -name = "wasite" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42" -dependencies = [ - "wasi 0.14.7+wasi-0.2.4", -] - -[[package]] -name = "wasm-bindgen" -version = "0.2.114" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" -dependencies = [ - "cfg-if 1.0.4", - "once_cell", - "rustversion", - "wasm-bindgen-macro", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" -dependencies = [ - "cfg-if 1.0.4", - "futures-util", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.114" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.114" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" -dependencies = [ - "bumpalo", - "proc-macro2", - "quote", - "syn 2.0.117", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.114" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "wasm-encoder" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" -dependencies = [ - "leb128fmt", - "wasmparser", -] - -[[package]] -name = "wasm-metadata" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" -dependencies = [ - "anyhow", - "indexmap", - "wasm-encoder", - "wasmparser", -] - -[[package]] -name = "wasm-streams" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "wasm-streams" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "wasm-timer" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" -dependencies = [ - "futures", - "js-sys", - "parking_lot 0.11.2", - "pin-utils", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "wasmparser" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" -dependencies = [ - "bitflags 2.11.0", - "hashbrown 0.15.5", - "indexmap", - "semver", -] - -[[package]] -name = "web-sys" -version = "0.3.91" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "web-time" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "webpki-root-certs" -version = "1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267" -dependencies = [ - "rustls-pki-types", -] - -[[package]] -name = "webpki-roots" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" -dependencies = [ - "rustls-pki-types", -] - -[[package]] -name = "weezl" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" - -[[package]] -name = "whoami" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d" -dependencies = [ - "libc", - "libredox", - "objc2-system-configuration", - "wasite", - "web-sys", -] - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-util" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows" -version = "0.62.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" -dependencies = [ - "windows-collections", - "windows-core", - "windows-future", - "windows-numerics", -] - -[[package]] -name = "windows-collections" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" -dependencies = [ - "windows-core", -] - -[[package]] -name = "windows-core" -version = "0.62.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" -dependencies = [ - "windows-implement", - "windows-interface", - "windows-link", - "windows-result", - "windows-strings", -] - -[[package]] -name = "windows-future" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" -dependencies = [ - "windows-core", - "windows-link", - "windows-threading", -] - -[[package]] -name = "windows-implement" -version = "0.60.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "windows-interface" -version = "0.59.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "windows-link" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" - -[[package]] -name = "windows-numerics" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" -dependencies = [ - "windows-core", - "windows-link", -] - -[[package]] -name = "windows-registry" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" -dependencies = [ - "windows-link", - "windows-result", - "windows-strings", -] - -[[package]] -name = "windows-result" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-strings" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-sys" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-sys" -version = "0.61.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-targets" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows-threading" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "winnow" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8" -dependencies = [ - "memchr", -] - -[[package]] -name = "wit-bindgen" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" -dependencies = [ - "wit-bindgen-rust-macro", -] - -[[package]] -name = "wit-bindgen-core" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" -dependencies = [ - "anyhow", - "heck", - "wit-parser", -] - -[[package]] -name = "wit-bindgen-rust" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" -dependencies = [ - "anyhow", - "heck", - "indexmap", - "prettyplease", - "syn 2.0.117", - "wasm-metadata", - "wit-bindgen-core", - "wit-component", -] - -[[package]] -name = "wit-bindgen-rust-macro" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" -dependencies = [ - "anyhow", - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.117", - "wit-bindgen-core", - "wit-bindgen-rust", -] - -[[package]] -name = "wit-component" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" -dependencies = [ - "anyhow", - "bitflags 2.11.0", - "indexmap", - "log", - "serde", - "serde_derive", - "serde_json", - "wasm-encoder", - "wasm-metadata", - "wasmparser", - "wit-parser", -] - -[[package]] -name = "wit-parser" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" -dependencies = [ - "anyhow", - "id-arena", - "indexmap", - "log", - "semver", - "serde", - "serde_derive", - "serde_json", - "unicode-xid", - "wasmparser", -] - -[[package]] -name = "writeable" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" - -[[package]] -name = "xattr" -version = "1.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" -dependencies = [ - "libc", - "rustix", -] - -[[package]] -name = "xet-client" -version = "1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e1e496dcbe6a09017acdfaf48e1a646735e7ff5b2a49e2c7e081cca77a59bc8" -dependencies = [ - "anyhow", - "async-trait", - "base64 0.22.1", - "bytes", - "clap", - "crc32fast", - "futures", - "http 1.4.0", - "hyper", - "lazy_static", - "more-asserts", - "rand 0.10.1", - "redb", - "reqwest 0.13.4", - "reqwest-middleware 0.5.2", - "serde", - "serde_json", - "serde_repr", - "statrs", - "tempfile", - "thiserror 2.0.18", - "tokio", - "tokio-retry", - "tracing", - "tracing-subscriber", - "url", - "urlencoding", - "web-time", - "xet-core-structures", - "xet-runtime", -] - -[[package]] -name = "xet-core-structures" -version = "1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb838aa8eb67d730af301584cf003caad407487606058292a6750711b603fbee" -dependencies = [ - "async-trait", - "base64 0.22.1", - "blake3", - "bytemuck", - "bytes", - "clap", - "countio", - "csv", - "futures", - "futures-util", - "getrandom 0.4.2", - "heapify", - "itertools 0.14.0", - "lazy_static", - "lz4_flex", - "more-asserts", - "rand 0.10.1", - "regex", - "safe-transmute", - "serde", - "static_assertions", - "tempfile", - "thiserror 2.0.18", - "tokio", - "tokio-util", - "tracing", - "uuid", - "web-time", - "xet-runtime", -] - -[[package]] -name = "xet-data" -version = "1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67fd409bef621411a9d9013798540bb8036cb2678f03ab39af89a5e88034ed8c" -dependencies = [ - "anyhow", - "async-trait", - "bytes", - "chrono", - "clap", - "gearhash", - "http 1.4.0", - "itertools 0.14.0", - "lazy_static", - "more-asserts", - "rand 0.10.1", - "serde", - "serde_json", - "sha2", - "tempfile", - "thiserror 2.0.18", - "tokio", - "tokio-util", - "tracing", - "url", - "uuid", - "walkdir", - "xet-client", - "xet-core-structures", - "xet-runtime", -] - -[[package]] -name = "xet-runtime" -version = "1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15d8f121c33866f7648b737abe70d0e2dd9c0af4ffdd7219207531d0283aa63d" -dependencies = [ - "anyhow", - "async-trait", - "bytes", - "chrono", - "colored", - "const-str", - "ctor", - "dirs", - "futures", - "git-version", - "humantime", - "konst", - "lazy_static", - "libc", - "more-asserts", - "oneshot", - "pin-project", - "rand 0.10.1", - "reqwest 0.13.4", - "serde", - "serde_json", - "shellexpand", - "sysinfo", - "thiserror 2.0.18", - "tokio", - "tokio-util", - "tracing", - "tracing-appender", - "tracing-subscriber", - "whoami", - "winapi", -] - -[[package]] -name = "xmlparser" -version = "0.13.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" - -[[package]] -name = "xxhash-rust" -version = "0.8.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" - -[[package]] -name = "xz2" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" -dependencies = [ - "lzma-sys", -] - -[[package]] -name = "yansi" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - -[[package]] -name = "yoke" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" -dependencies = [ - "stable_deref_trait", - "yoke-derive", - "zerofrom", -] - -[[package]] -name = "yoke-derive" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", - "synstructure", -] - -[[package]] -name = "zerocopy" -version = "0.8.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87" -dependencies = [ - "zerocopy-derive", -] - -[[package]] -name = "zerocopy-derive" -version = "0.8.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "zerofrom" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" -dependencies = [ - "zerofrom-derive", -] - -[[package]] -name = "zerofrom-derive" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", - "synstructure", -] - -[[package]] -name = "zeroize" -version = "1.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" - -[[package]] -name = "zerotrie" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" -dependencies = [ - "displaydoc", - "yoke", - "zerofrom", -] - -[[package]] -name = "zerovec" -version = "0.11.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" -dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", -] - -[[package]] -name = "zerovec-derive" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.117", -] - -[[package]] -name = "zlib-rs" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513" - -[[package]] -name = "zmij" -version = "1.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" - -[[package]] -name = "zstd" -version = "0.13.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" -dependencies = [ - "zstd-safe", -] - -[[package]] -name = "zstd-safe" -version = "7.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" -dependencies = [ - "zstd-sys", -] - -[[package]] -name = "zstd-sys" -version = "2.0.16+zstd.1.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" -dependencies = [ - "cc", - "pkg-config", -] - -[[package]] -name = "zune-core" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9" - -[[package]] -name = "zune-jpeg" -version = "0.5.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296" -dependencies = [ - "zune-core", -] diff --git a/pkgs/development/python-modules/daft/default.nix b/pkgs/development/python-modules/daft/default.nix index c8d0ceae2321..280ea502d949 100644 --- a/pkgs/development/python-modules/daft/default.nix +++ b/pkgs/development/python-modules/daft/default.nix @@ -5,7 +5,6 @@ fetchFromGitHub, # cargoDeps - fetchgit, rustPlatform, # nativeBuildInputs @@ -91,29 +90,16 @@ buildPythonPackage (finalAttrs: { hash = "sha256-vz9lCm2zQaWM+9jPH2fnhGEQiCYPH0Jl477yaZDQ370="; }; - cargoDeps = - (rustPlatform.importCargoLock.override { - fetchgit = - args: - if (args.url or null) == "https://github.com/Eventual-Inc/azure-sdk-for-rust" then - fetchgit ( - args - // { - postFetch = (args.postFetch or "") + '' - substituteInPlace $out/services/Cargo.toml \ - --replace-fail '"mgmt/batch",' '"mgmt/batch", "svc/blobstorage",' - ''; - } - ) - else - fetchgit args; - }) - { - lockFile = ./Cargo.lock; - outputHashes = { - "azure_core-0.21.0" = "sha256-I8kzIkguRa3REwii0xsFFpNhE90/QX5msXwE6rrzDlY="; - }; - }; + cargoDeps = rustPlatform.fetchCargoVendor { + inherit (finalAttrs) pname version src; + hash = "sha256-8pezsGc2iYlYdPgZFjmFq1shkCWCG6F69Cx/+P1iKU8="; + + # azure-sdk-for-rust omits svc/blobstorage from the services workspace + postBuild = '' + substituteInPlace "$out"/git/*/services/Cargo.toml \ + --replace-fail '"mgmt/batch",' '"mgmt/batch", "svc/blobstorage",' + ''; + }; postPatch = '' substituteInPlace Cargo.toml \ diff --git a/pkgs/development/python-modules/environs/default.nix b/pkgs/development/python-modules/environs/default.nix index 4f289a479369..bc56238842ff 100644 --- a/pkgs/development/python-modules/environs/default.nix +++ b/pkgs/development/python-modules/environs/default.nix @@ -13,14 +13,14 @@ buildPythonPackage (finalAttrs: { pname = "environs"; - version = "15.0.1"; + version = "15.1.0"; pyproject = true; src = fetchFromGitHub { owner = "sloria"; repo = "environs"; tag = finalAttrs.version; - hash = "sha256-rsXR3KjLRdGnF8EX0TXzd0r61xY2rrNO5TDdoX1SnO0="; + hash = "sha256-t3T31kI2Bh5biJrIzHJXJpEXWps9cLQRnlTZYKwtAtA="; }; build-system = [ flit-core ]; diff --git a/pkgs/development/python-modules/gradio/client.nix b/pkgs/development/python-modules/gradio/client.nix index d45ab10c0567..e965ae5094b3 100644 --- a/pkgs/development/python-modules/gradio/client.nix +++ b/pkgs/development/python-modules/gradio/client.nix @@ -31,7 +31,7 @@ buildPythonPackage (finalAttrs: { pname = "gradio-client"; - version = "2.5.0"; + version = "2.6.0"; pyproject = true; # no tests on pypi diff --git a/pkgs/development/python-modules/gradio/default.nix b/pkgs/development/python-modules/gradio/default.nix index cf31fdfbc9d9..f80dc78be301 100644 --- a/pkgs/development/python-modules/gradio/default.nix +++ b/pkgs/development/python-modules/gradio/default.nix @@ -82,7 +82,7 @@ let in buildPythonPackage (finalAttrs: { pname = "gradio"; - version = "6.20.0"; # please always backport gradio changes + version = "6.22.0"; # please always backport gradio changes pyproject = true; __structuredAttrs = true; @@ -90,7 +90,7 @@ buildPythonPackage (finalAttrs: { owner = "gradio-app"; repo = "gradio"; tag = "gradio@${finalAttrs.version}"; - hash = "sha256-q5OoMguG/f0A3c6X+zotafc3kRRuebxMBPUIlrlcNFI="; + hash = "sha256-9FcGnZ/yktKM8sTGpgTv3QLIe2IoGbSw10rLWgj1zSU="; }; patches = [ @@ -107,7 +107,7 @@ buildPythonPackage (finalAttrs: { inherit (finalAttrs) version src; inherit pnpm; fetcherVersion = 4; - hash = "sha256-xCxr/jnp9emeB6THGt4cumvApw6fSZQwG2NGOcvR0yQ="; + hash = "sha256-TX4sLAfka/j002OsUKqxqi5B6Fb+DXSGdeL+w6V9XuM="; }; env = { diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index aa4d16d001ae..59fca361568d 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -59,8 +59,8 @@ in "sha256-o5hZAxSZklg7hzL7MWCBYnnYTRoBSSAKPLpub1NVO74="; mypy-boto3-amp = - buildMypyBoto3Package "amp" "1.43.54" - "sha256-i/iC+OeJWJMOqBlegdYokbH7NJ/H8ahKLhctUZAarBs="; + buildMypyBoto3Package "amp" "1.43.62" + "sha256-h42x1hJbjLtZrYis16d9HkcASfrFAkboeedwrwOthZk="; mypy-boto3-amplify = buildMypyBoto3Package "amplify" "1.43.0" @@ -223,8 +223,8 @@ in "sha256-Ula0Hx4jZ6JVlT9v4P88bmtQSYyFtofeZiN9vAILqxw="; mypy-boto3-cloudformation = - buildMypyBoto3Package "cloudformation" "1.43.38" - "sha256-u0rjspNF01rMTNE1gCrxMlA85Ve1Ma0KGb7FzHuCGjo="; + buildMypyBoto3Package "cloudformation" "1.43.62" + "sha256-dcBm0aFySX9u7mKe1+RHl4faTkkpGU65ef6ocxGAXhk="; mypy-boto3-cloudfront = buildMypyBoto3Package "cloudfront" "1.43.8" @@ -602,8 +602,8 @@ in "sha256-oPQuxAKSUTpHGyq1J80W57cISh+d+4IGN8ClJdhkfnw="; mypy-boto3-iam = - buildMypyBoto3Package "iam" "1.43.29" - "sha256-kcinFHd0QJt3ELvYR4xm4o1j6NZ+hzfHA0pZHgDvCUA="; + buildMypyBoto3Package "iam" "1.43.60" + "sha256-Sh82poyz+WLAAPIFYgQ0bRwZYWoSJ5l8VweyY55zTYM="; mypy-boto3-identitystore = buildMypyBoto3Package "identitystore" "1.43.0" @@ -706,8 +706,8 @@ in "sha256-9XMdnVsYUmz8Uf9kAgVMbG960vy0TOJturoD9/ZoM98="; mypy-boto3-kafka = - buildMypyBoto3Package "kafka" "1.43.36" - "sha256-MUtSVAMTjMWokZVY8t6VLsGnqzp/M1yg50lGtV+irL8="; + buildMypyBoto3Package "kafka" "1.43.60" + "sha256-yl6FIgBJslNzGQtSXomgJEb3GCXdxYBeimlhfTssejk="; mypy-boto3-kafkaconnect = buildMypyBoto3Package "kafkaconnect" "1.43.0" @@ -766,8 +766,8 @@ in "sha256-gYTCgaRwH3zKi6gg4MC8DUwXQT+jZO6lqc/vi+JUahU="; mypy-boto3-lambda = - buildMypyBoto3Package "lambda" "1.43.48" - "sha256-94PUbPDQAeunE7As6Yo5Vv+Q9KAt/phsDde6wyA0ywc="; + buildMypyBoto3Package "lambda" "1.43.60" + "sha256-wPfm2YTA/FEglmeGkV7zAS6czJ04LeQS4LcfMJZnhRw="; mypy-boto3-lex-models = buildMypyBoto3Package "lex-models" "1.43.3" @@ -806,8 +806,8 @@ in "sha256-EunrKwNaYp0CDiwp8frI7zASilMF4wYHjDSuCsJ6aJM="; mypy-boto3-logs = - buildMypyBoto3Package "logs" "1.43.41" - "sha256-HAB24HG1jburH8wOPipqP1G1U7PX3i5BGp6mPUSa100="; + buildMypyBoto3Package "logs" "1.43.62" + "sha256-qF00eFrV3huxoy0GDbRoACCUayzRe5fHjuhdtUNlaaU="; mypy-boto3-lookoutequipment = buildMypyBoto3Package "lookoutequipment" "1.43.0" @@ -842,8 +842,8 @@ in "sha256-ce8c73a1ksdQpCN6cSg5KMkbVqomFNyZnaf7pag9wBg="; mypy-boto3-marketplace-catalog = - buildMypyBoto3Package "marketplace-catalog" "1.43.42" - "sha256-MPkuedDLQD9OY3lBkdQ+R+Np3y+MTOUiLZkWm2T4rTY="; + buildMypyBoto3Package "marketplace-catalog" "1.43.62" + "sha256-MAW9xJR1wGS5oWB1hovpJkh2q1VDx0psAC/GOKJRXzo="; mypy-boto3-marketplace-entitlement = buildMypyBoto3Package "marketplace-entitlement" "1.43.0" @@ -946,8 +946,8 @@ in "sha256-rkVxsY4MQ+eB3uQhD3kI7bBpCHiDVcQDNUXA5zUyeok="; mypy-boto3-network-firewall = - buildMypyBoto3Package "network-firewall" "1.43.38" - "sha256-kkxtrL98SOemo4LBPn5d2U0R0a5Yb9C0XBGTqAhRurM="; + buildMypyBoto3Package "network-firewall" "1.43.62" + "sha256-byxKwV6TDM/mo/my8h9aVDzbYMywCVSU/RfyNv9sW6Q="; mypy-boto3-networkmanager = buildMypyBoto3Package "networkmanager" "1.43.0" @@ -990,8 +990,8 @@ in "sha256-0rAEnU+3VsESGKlu8OTnY//rzwRqvROhRFga+vnwd1k="; mypy-boto3-outposts = - buildMypyBoto3Package "outposts" "1.43.40" - "sha256-f+z9dYLo4uhsRvaCUcR+dbYpEv7xmlfgvUR1+eM+NeU="; + buildMypyBoto3Package "outposts" "1.43.62" + "sha256-OVufytfGy6zctCHDMblG+bHySHJQE66Ly4Umid4Dx2g="; mypy-boto3-panorama = buildMypyBoto3Package "panorama" "1.43.0" @@ -1070,8 +1070,8 @@ in "sha256-YrrEKl3aGz//5Z5JGapHhWtk6hBXQ4cuRQmLqGYztzg="; mypy-boto3-quicksight = - buildMypyBoto3Package "quicksight" "1.43.57" - "sha256-otcgily4wXXQktUyD34UjHsosKnlDhW/v5oeFS49jDg="; + buildMypyBoto3Package "quicksight" "1.43.62" + "sha256-+OasKLJhOVR7NtZuUYL79KQKyV4ztY6kgooTgDIvLmU="; mypy-boto3-ram = buildMypyBoto3Package "ram" "1.43.0" @@ -1082,8 +1082,8 @@ in "sha256-ZmYC3YQujmfSUK0pOGCGFwT7LrSa3oJfo9juUb+2Xpk="; mypy-boto3-rds = - buildMypyBoto3Package "rds" "1.43.51" - "sha256-YFCezjQ5tIk0JdeOajx3jg59D9KiB7opjoaBOomNq6c="; + buildMypyBoto3Package "rds" "1.43.62" + "sha256-2DJ8h1PXMiIf5KIvqdEx17ZS44Hz8MXVcM5xbNkc1VI="; mypy-boto3-rds-data = buildMypyBoto3Package "rds-data" "1.43.37" @@ -1170,8 +1170,8 @@ in "sha256-T+JIJpHxD7IzAwq8yxgq6zbVMj/btpbhKnylMyfFvvU="; mypy-boto3-sagemaker = - buildMypyBoto3Package "sagemaker" "1.43.57" - "sha256-zjWk5zLO9t38AOAzx3vpM6neltfvKdE8P0uLVdvkp68="; + buildMypyBoto3Package "sagemaker" "1.43.60" + "sha256-1ruaaxLwOdyzh0OFgyEhPu7DDEqyV6bt2WEhiw8Rtow="; mypy-boto3-sagemaker-a2i-runtime = buildMypyBoto3Package "sagemaker-a2i-runtime" "1.43.0" diff --git a/pkgs/development/python-modules/svgdigitizer/default.nix b/pkgs/development/python-modules/svgdigitizer/default.nix index e328ca34bc3a..f118ffb8cfbb 100644 --- a/pkgs/development/python-modules/svgdigitizer/default.nix +++ b/pkgs/development/python-modules/svgdigitizer/default.nix @@ -28,7 +28,7 @@ buildPythonPackage (finalAttrs: { pname = "svgdigitizer"; - version = "0.14.4"; + version = "0.14.5"; pyproject = true; __structuredAttrs = true; @@ -36,7 +36,7 @@ buildPythonPackage (finalAttrs: { owner = "echemdb"; repo = "svgdigitizer"; tag = finalAttrs.version; - hash = "sha256-sDMSzoXa8RnygFjveh1SrF+bFit7OMQh2kbiZ478cM4="; + hash = "sha256-7a+IY3bxZI3DpkyUx4TQeDNBz80LhfK4s70Bl94liM0="; }; build-system = [ diff --git a/pkgs/development/python-modules/torpy/default.nix b/pkgs/development/python-modules/torpy/default.nix index 57bdff800e93..5030ac3a826b 100644 --- a/pkgs/development/python-modules/torpy/default.nix +++ b/pkgs/development/python-modules/torpy/default.nix @@ -2,24 +2,29 @@ lib, buildPythonPackage, fetchFromGitHub, + setuptools, cryptography, pytestCheckHook, requests, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "torpy"; version = "1.1.6"; - format = "setuptools"; + pyproject = true; + + __structuredAttrs = true; src = fetchFromGitHub { owner = "torpyorg"; repo = "torpy"; - rev = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-Ni7GcpkxzAMtP4wBOFsi4KnxK+nC0XCZR/2Z/eS/C+w="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ cryptography requests ]; @@ -39,4 +44,4 @@ buildPythonPackage rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ larsr ]; }; -} +}) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index df53a308b133..598d800dfadf 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -56,632 +56,632 @@ let in { types-aiobotocore-accessanalyzer = - buildTypesAiobotocorePackage "accessanalyzer" "3.7.0" - "sha256-hN4flHBRlkfH1l1gbe6Q0I3blMgc7pJkYnK3HLGSQbM="; + buildTypesAiobotocorePackage "accessanalyzer" "3.8.0" + "sha256-TV/lWv8KMkb0PV34/8ZqbrrFFtlonAJnuh8AuLP3TUk="; types-aiobotocore-account = - buildTypesAiobotocorePackage "account" "3.7.0" - "sha256-Y3TZ2EJqf3xV6qv/eb7GepQQ+v1+lUOeob++oY5bA7I="; + buildTypesAiobotocorePackage "account" "3.8.0" + "sha256-6KonHXkKVD9Hhwx1pfFzQ0ggtBnxajQqcIsKocnA13k="; types-aiobotocore-acm = - buildTypesAiobotocorePackage "acm" "3.7.0" - "sha256-1Bb1khmPLxELWjZQeI0IUK6OH7g7fQoLnfre5t2LO/8="; + buildTypesAiobotocorePackage "acm" "3.8.0" + "sha256-bk4YJ7KUJZjOe/WPxQbTr/QwcJ3sQxqvn+MHvAGxiyQ="; types-aiobotocore-acm-pca = - buildTypesAiobotocorePackage "acm-pca" "3.7.0" - "sha256-YkpGQYQtesSvRa7dvZiRGCzl9U7/2i9TMc1N+ZrTmLI="; + buildTypesAiobotocorePackage "acm-pca" "3.8.0" + "sha256-MQ0QMD3+FPIRpB/AoakZ7TOuhnrkN74WS2gNN8SiIxw="; types-aiobotocore-aiops = - buildTypesAiobotocorePackage "aiops" "3.7.0" - "sha256-zI9vxHfMGvAUcc191OdU8DIocVCaAUWZZ3+5e1o92Do="; + buildTypesAiobotocorePackage "aiops" "3.8.0" + "sha256-xQ6WWOfQGzD9N3yz+wJX6AD2bNTnFQbAt4aJeVVJxxs="; types-aiobotocore-alexaforbusiness = buildTypesAiobotocorePackage "alexaforbusiness" "2.13.0" "sha256-+w/InoQR2aZ5prieGhgEEp7auBiSSghG5zIIHY5Kyao="; types-aiobotocore-amp = - buildTypesAiobotocorePackage "amp" "3.7.0" - "sha256-UxNsUeVcG1IcUsAAoODx++aOJJrrPqLFlo6y7y/5Cpc="; + buildTypesAiobotocorePackage "amp" "3.8.0" + "sha256-oT0eyLJ3yVoZEEhlyJSSgocr5qM4ii6vUTIqzIk7V4w="; types-aiobotocore-amplify = - buildTypesAiobotocorePackage "amplify" "3.7.0" - "sha256-gVfA6bLj27ip4QeddGd8fD3XnB+yHZl1VG3RzCxqOXw="; + buildTypesAiobotocorePackage "amplify" "3.8.0" + "sha256-ht3vfEic/yZlxJ+TEFdSp5sk6KQ8MwcvQ46jwLxujSc="; types-aiobotocore-amplifybackend = - buildTypesAiobotocorePackage "amplifybackend" "3.7.0" - "sha256-8gotXVdpNHE+4BAXCAiFCKJ0aDLN8N8ROGgq+rdDMVY="; + buildTypesAiobotocorePackage "amplifybackend" "3.8.0" + "sha256-ty6vtESwxpWfGEAh/NcaHW2Al/2rf7bH2iJVLbBuF7Y="; types-aiobotocore-amplifyuibuilder = - buildTypesAiobotocorePackage "amplifyuibuilder" "3.7.0" - "sha256-WV5bLhtQ+TdLfblvtBfL/4eHoF+x5Exaava3WOM86+g="; + buildTypesAiobotocorePackage "amplifyuibuilder" "3.8.0" + "sha256-f4Aull1pQhJueRWImvPSLfrisERpV7GP0Wbg7v7UDFA="; types-aiobotocore-apigateway = - buildTypesAiobotocorePackage "apigateway" "3.7.0" - "sha256-f7UfO264MPyqr4HyIk7sv9tzebHx5HYxKrR+lCczrW8="; + buildTypesAiobotocorePackage "apigateway" "3.8.0" + "sha256-0SbZx9Y1w1z2lDuFn77435t57NSqZOBbH0bvYPLKN4o="; types-aiobotocore-apigatewaymanagementapi = - buildTypesAiobotocorePackage "apigatewaymanagementapi" "3.7.0" - "sha256-PVKmM72M5w+gvzG6OM3ecInNxhbVI+4Ny/TXNzeqwzs="; + buildTypesAiobotocorePackage "apigatewaymanagementapi" "3.8.0" + "sha256-d3k//FfTL7CEtk/QHf+Nsy3tvLMfGnYkbIbA0S9CrjU="; types-aiobotocore-apigatewayv2 = - buildTypesAiobotocorePackage "apigatewayv2" "3.7.0" - "sha256-uOsEkffmklTAXOOAXx705I5J5jCh4pITc4KL7lx4Jlw="; + buildTypesAiobotocorePackage "apigatewayv2" "3.8.0" + "sha256-KmnUcsKSAh+HJ9PQbbD7ufGkE6TDE2gx62JEUNMQvaE="; types-aiobotocore-appconfig = - buildTypesAiobotocorePackage "appconfig" "3.7.0" - "sha256-AVQLgT8b25nrspFHiBalxdVqZfq0N2G77FAuf4+JkjI="; + buildTypesAiobotocorePackage "appconfig" "3.8.0" + "sha256-6nbInwY4CWKyD2U8U0TM4xh3as9DUh+wQXE1BztABuI="; types-aiobotocore-appconfigdata = - buildTypesAiobotocorePackage "appconfigdata" "3.7.0" - "sha256-51esYq5HP7Y/wUnw80+WiSKZ4Od8kDZ8ylgoHecGsSo="; + buildTypesAiobotocorePackage "appconfigdata" "3.8.0" + "sha256-sU2IrkdaI8YnCqMAacTBVSiuEfpJ+gGlHbyng3Zyj1w="; types-aiobotocore-appfabric = - buildTypesAiobotocorePackage "appfabric" "3.7.0" - "sha256-BbCpvi5DAkRitJiSHZ2CxfTi0ZjxKCeev8xItokvqiQ="; + buildTypesAiobotocorePackage "appfabric" "3.8.0" + "sha256-T1mhUU7YUeFAIMKNq7uSFTXmUWqRgucTOHmw4qyqPP4="; types-aiobotocore-appflow = - buildTypesAiobotocorePackage "appflow" "3.7.0" - "sha256-qM30c+eZfhnbLJDgKpWoXCQFegib4GPogrEE25KyXKM="; + buildTypesAiobotocorePackage "appflow" "3.8.0" + "sha256-+3vCZ3lc/CKoswelcu5H8nPTAiCN6D4vm0b3JCx86Pc="; types-aiobotocore-appintegrations = - buildTypesAiobotocorePackage "appintegrations" "3.7.0" - "sha256-QIyG4sWYbvDpd4yhjh+oOKEnWrqGPE8cvu5hHdNMEWE="; + buildTypesAiobotocorePackage "appintegrations" "3.8.0" + "sha256-vrkzCZHq1Fkuh98xek7ARK3mSzcUKtPlmvyqRI+X0wM="; types-aiobotocore-application-autoscaling = - buildTypesAiobotocorePackage "application-autoscaling" "3.7.0" - "sha256-KvjcCJnUUOM9x5yav2N1D/RabTZzH9X6U21pqrLMIAI="; + buildTypesAiobotocorePackage "application-autoscaling" "3.8.0" + "sha256-dlRWwUGP0EE36e8hMyLnXkNUIzWiZYeUGvBYxDU737E="; types-aiobotocore-application-insights = - buildTypesAiobotocorePackage "application-insights" "3.7.0" - "sha256-KFbtxYvLTBNqbETnVynXAg+3FufhHAgqllV+LiMqEvI="; + buildTypesAiobotocorePackage "application-insights" "3.8.0" + "sha256-0FvVEbyV1pIdDJHdgtSozEGakX0rjYGV5yQXxJVVkbk="; types-aiobotocore-applicationcostprofiler = - buildTypesAiobotocorePackage "applicationcostprofiler" "3.7.0" - "sha256-rL4I6n/Ma8OgSXCkjS5p+tgwVsda8PldHQ4Iwb8I3hc="; + buildTypesAiobotocorePackage "applicationcostprofiler" "3.8.0" + "sha256-6I6fPYnKf5sN7Of8bNNj46tuM2XCQ2qibtZ6qV6cmsU="; types-aiobotocore-appmesh = - buildTypesAiobotocorePackage "appmesh" "3.7.0" - "sha256-9tHP+aFIoVSC/E47oGyyzg9c1pw88pyTbANwr0Q2qj4="; + buildTypesAiobotocorePackage "appmesh" "3.8.0" + "sha256-ZuSgLKSPpe6kJV30NYTF7Q4KyZ2Knqk1U+ipckeeUY0="; types-aiobotocore-apprunner = - buildTypesAiobotocorePackage "apprunner" "3.7.0" - "sha256-QHi5ZlHY6jybgVjjV+Js1hYuxfNHz88dSYnZYg7DejU="; + buildTypesAiobotocorePackage "apprunner" "3.8.0" + "sha256-Wvc2NQN6VNQpM8n/R00bD6Ajb1p7uRijkb/adOtA4sk="; types-aiobotocore-appstream = - buildTypesAiobotocorePackage "appstream" "3.7.0" - "sha256-DW3cMDgBvN03nDpKXRWCq0Wb65XHl7TZVg67WVz5LD8="; + buildTypesAiobotocorePackage "appstream" "3.8.0" + "sha256-wLk87oe/TTowmJyrUA1FcGt7bDqljetWS8o5olTNeH8="; types-aiobotocore-appsync = - buildTypesAiobotocorePackage "appsync" "3.7.0" - "sha256-fAa52ygaouYw3MsPavXVtuPk6inNETdEjV+6HiRajZ4="; + buildTypesAiobotocorePackage "appsync" "3.8.0" + "sha256-ms4j+7e+wW2NggTdD4uWXifrMU/KSUqHBHTuyS8WIvU="; types-aiobotocore-arc-zonal-shift = - buildTypesAiobotocorePackage "arc-zonal-shift" "3.7.0" - "sha256-LMPz8jx1Vz4xS90cbkadCyzmkKkk6ajWvtAoisiGpYM="; + buildTypesAiobotocorePackage "arc-zonal-shift" "3.8.0" + "sha256-xvm9klK5RODs7943i6PLzCiqBV6JUxEUno20Ne4Ka8I="; types-aiobotocore-athena = - buildTypesAiobotocorePackage "athena" "3.7.0" - "sha256-BvSJ2iNn2YplD2qv5OcFlnzQKltWcfhYnJJrydkFazE="; + buildTypesAiobotocorePackage "athena" "3.8.0" + "sha256-xwYs8cbHp6l5gHsdX0g1XKc9WUWSPFGGnGWU1LslFcA="; types-aiobotocore-auditmanager = - buildTypesAiobotocorePackage "auditmanager" "3.7.0" - "sha256-KgrvKWJf8Y4TjbnaQyAARZvQww5QR9R9IS++kSxgNeg="; + buildTypesAiobotocorePackage "auditmanager" "3.8.0" + "sha256-Q++4MqRw3IVYWy7Mn0ciDAY4ZGxkyGU2ZAgaNIFOO0A="; types-aiobotocore-autoscaling = - buildTypesAiobotocorePackage "autoscaling" "3.7.0" - "sha256-RqL8kuj35Iu2SnBGSc1EzGhwLSiOhQu0QnuY9CtS6+o="; + buildTypesAiobotocorePackage "autoscaling" "3.8.0" + "sha256-BomjS9wFU73VAoP3IeFbxzWiDmgp7lLD+th6emvohtY="; types-aiobotocore-autoscaling-plans = - buildTypesAiobotocorePackage "autoscaling-plans" "3.7.0" - "sha256-qDP+ekgwdencTmlDProJKbRVrIY/JPEnccgBENOJxP8="; + buildTypesAiobotocorePackage "autoscaling-plans" "3.8.0" + "sha256-KB1ABluHwEMoyogjUSgA1+hOc+TijqtCPEZsegMPx0w="; types-aiobotocore-backup = - buildTypesAiobotocorePackage "backup" "3.7.0" - "sha256-eqVZXJyX9aJsTEpe9q6GOMY8BwACrtTV+mnozP12GCE="; + buildTypesAiobotocorePackage "backup" "3.8.0" + "sha256-1QJosVGi8DMj6wZhCJoKLw01RuSZs5ei8SMtKAzbPC4="; types-aiobotocore-backup-gateway = - buildTypesAiobotocorePackage "backup-gateway" "3.7.0" - "sha256-8LoaUgIUDs4IZOlBJKsRYMvxT1+vlQJtkotM8duCRPo="; + buildTypesAiobotocorePackage "backup-gateway" "3.8.0" + "sha256-bUoHpi6tpHf56CjiXjFSvsv5EzHAhOoApYyOfCLJHE0="; types-aiobotocore-backupstorage = buildTypesAiobotocorePackage "backupstorage" "2.13.0" "sha256-YUKtBdBrdwL2yqDqOovvzDPbcv/sD8JLRnKz3Oh7iSU="; types-aiobotocore-batch = - buildTypesAiobotocorePackage "batch" "3.7.0" - "sha256-Zv1QxwgHTPaI7cZ05KlfR22wOwkeDRYsGwj3RdUHNjc="; + buildTypesAiobotocorePackage "batch" "3.8.0" + "sha256-WIOGg5MevoWNkJCUYXST217IHsYL/Pl6yfsaFgWu2U8="; types-aiobotocore-billingconductor = - buildTypesAiobotocorePackage "billingconductor" "3.7.0" - "sha256-ZG/AahoSRd8slVCN1REXrVwzaASNLQ38oSkTHJ2VGYo="; + buildTypesAiobotocorePackage "billingconductor" "3.8.0" + "sha256-55414gq0mGUE9iRFRFEJLK+eWwhCnFEJP50AFU7RlLI="; types-aiobotocore-braket = - buildTypesAiobotocorePackage "braket" "3.7.0" - "sha256-KPkylNUiyHgidbwPmWFvzLfpMnYD+rJVQ/ojtYXBcc4="; + buildTypesAiobotocorePackage "braket" "3.8.0" + "sha256-QDqbERJfGYoU5IAKYkDaLtxLIK0bPfkH+m4C84VIZPs="; types-aiobotocore-budgets = - buildTypesAiobotocorePackage "budgets" "3.7.0" - "sha256-a+vTv09WuO+EvhO0+O/YvnKeIibXH6SHRFGuJHNsgKg="; + buildTypesAiobotocorePackage "budgets" "3.8.0" + "sha256-Bl88eeCxZ7ppR+zeiwsstENGs9EvP+NMCf51CWQk+Fc="; types-aiobotocore-ce = - buildTypesAiobotocorePackage "ce" "3.7.0" - "sha256-RWTU5qNV+QDC//CZ+nguM5/fDrT0gfGE/aKBxjeC0kE="; + buildTypesAiobotocorePackage "ce" "3.8.0" + "sha256-IHr+2Z/QfkwkjJkBVbbauPud6r2Vh3fZV12+yBhhAiQ="; types-aiobotocore-chime = - buildTypesAiobotocorePackage "chime" "3.7.0" - "sha256-FuYd2jjvoqy7rp/7Bglkp+8rfTpHsQzJNSrJxAtABTk="; + buildTypesAiobotocorePackage "chime" "3.8.0" + "sha256-EZMD+N22H0BNTS4hFy1h3jp7CEveu8dqliC+nJIlGkA="; types-aiobotocore-chime-sdk-identity = - buildTypesAiobotocorePackage "chime-sdk-identity" "3.7.0" - "sha256-WMgtfmptbUP/0D+KwGAaMBesiGxEyNVh6eQbJr/z+UY="; + buildTypesAiobotocorePackage "chime-sdk-identity" "3.8.0" + "sha256-vCLNrVVES+Q290eh7lYMShAb7P/mVSJr1u9Iv02L3TU="; types-aiobotocore-chime-sdk-media-pipelines = - buildTypesAiobotocorePackage "chime-sdk-media-pipelines" "3.7.0" - "sha256-JY0N+gYkRhiDu2lOGy2xwRAZnHwpUmYg6/yv+s76v6M="; + buildTypesAiobotocorePackage "chime-sdk-media-pipelines" "3.8.0" + "sha256-7bIcEkmL4vlCR2FlGWF74xC9QC5W6hOU36QyYFt1Ay0="; types-aiobotocore-chime-sdk-meetings = - buildTypesAiobotocorePackage "chime-sdk-meetings" "3.7.0" - "sha256-La/ayhWHzgwQp6V8UcJHrxzB8IezGJf8VtozFZeAroM="; + buildTypesAiobotocorePackage "chime-sdk-meetings" "3.8.0" + "sha256-SAG0UTB0Vsx9v/rfg0CzwY/PBrTWXHgorlIZDrcZIIg="; types-aiobotocore-chime-sdk-messaging = - buildTypesAiobotocorePackage "chime-sdk-messaging" "3.7.0" - "sha256-LGAPTc7MtktNeeXb0Cq+ZEfpHK0IYE7dQtPd3c0IAA0="; + buildTypesAiobotocorePackage "chime-sdk-messaging" "3.8.0" + "sha256-jflp7G++NfpgUsULhaS8nRG6rz8JF+l3+cSwmYRcEhM="; types-aiobotocore-chime-sdk-voice = - buildTypesAiobotocorePackage "chime-sdk-voice" "3.7.0" - "sha256-0NPNBVw7P5eTGAhbYueod/XSJKnq76l1wVzC498nqsc="; + buildTypesAiobotocorePackage "chime-sdk-voice" "3.8.0" + "sha256-Ebq4NjQ3pAJc9xdDQNMjUwHez4SuisLWWZXfeAFCTyU="; types-aiobotocore-cleanrooms = - buildTypesAiobotocorePackage "cleanrooms" "3.7.0" - "sha256-R5rA/HiMJcmHUkXEE4oIAIcd6LXGA28kuGuEW8IVYPA="; + buildTypesAiobotocorePackage "cleanrooms" "3.8.0" + "sha256-5fdOt2izef0LJYiPvbvJrN2SmS1k8vz87V7IH2OvmXE="; types-aiobotocore-cloud9 = - buildTypesAiobotocorePackage "cloud9" "3.7.0" - "sha256-xTjjkmJ2fl2zaMrgyeNyD40aHcwpF6UXxn/Y5C8H8xA="; + buildTypesAiobotocorePackage "cloud9" "3.8.0" + "sha256-xre7G6hOnqfvrG2ZxggHnyiSL6gbBx+j1BUhbopi160="; types-aiobotocore-cloudcontrol = - buildTypesAiobotocorePackage "cloudcontrol" "3.7.0" - "sha256-s0lGQQOxRnTy/+jkxEB5iPG9AAf1hRKSZzxjZOavcW4="; + buildTypesAiobotocorePackage "cloudcontrol" "3.8.0" + "sha256-dPFa5NRBNfhAvzLz3wBqUS8qyLarecgC5hw0hNcKQSI="; types-aiobotocore-clouddirectory = - buildTypesAiobotocorePackage "clouddirectory" "3.7.0" - "sha256-yw2equ0/nFY1Jgntz0/uCadSXYunMXKdoMcwENmxvHM="; + buildTypesAiobotocorePackage "clouddirectory" "3.8.0" + "sha256-mKB9nl9YNfgM4JmN3JNk3cOcEEiCeE3WjtV/eIzL/S8="; types-aiobotocore-cloudformation = - buildTypesAiobotocorePackage "cloudformation" "3.7.0" - "sha256-jdknoRGB2saxvACfuJfe1WsrtGRag6YX3Ar99nf5IxU="; + buildTypesAiobotocorePackage "cloudformation" "3.8.0" + "sha256-0gmnQvuDAJfF6kZKBnGUJoRQYReIyeGbwE8I9iAHAAA="; types-aiobotocore-cloudfront = - buildTypesAiobotocorePackage "cloudfront" "3.7.0" - "sha256-xo59zro/dZNiE2elY9chVyAmbe7l27+duOKtBO5ubHM="; + buildTypesAiobotocorePackage "cloudfront" "3.8.0" + "sha256-dKXo5YgiNDFY+188dmP0Fa4L1UvjvIxSSDg9HTUaNJI="; types-aiobotocore-cloudhsm = - buildTypesAiobotocorePackage "cloudhsm" "3.7.0" - "sha256-jNYy4RqVM6EFqv6f2OMU7i8DrFPI6LUFeCwywdTJgKM="; + buildTypesAiobotocorePackage "cloudhsm" "3.8.0" + "sha256-wt/FFwZN+oM6TrW05C8eyWeA8JyzFIItFDFK04q3wi4="; types-aiobotocore-cloudhsmv2 = - buildTypesAiobotocorePackage "cloudhsmv2" "3.7.0" - "sha256-W06pYhG9tf/sipjRNQKwnVMDPdgGAoeYcIYtTao62Sk="; + buildTypesAiobotocorePackage "cloudhsmv2" "3.8.0" + "sha256-+tCUQO9vLV+bj+Sr+A1aQ3YaJXJA2DGSmRmYLwfAVVk="; types-aiobotocore-cloudsearch = - buildTypesAiobotocorePackage "cloudsearch" "3.7.0" - "sha256-R2SqB3l31HgXDO0MJh23eWtmMCN22kETpcKInqBZQe0="; + buildTypesAiobotocorePackage "cloudsearch" "3.8.0" + "sha256-2/ECOe2Ksk+pQyxhRYFOnlRmVsO6EHn6DV5qNOZ+aVg="; types-aiobotocore-cloudsearchdomain = - buildTypesAiobotocorePackage "cloudsearchdomain" "3.7.0" - "sha256-aVCQhAFfJxjBTybddLwNoZFxnRYgnw42xZc1mrlSSy8="; + buildTypesAiobotocorePackage "cloudsearchdomain" "3.8.0" + "sha256-LBPyalrIgcE20yhMgteps29AbIwudI8MxBGw8NMHvas="; types-aiobotocore-cloudtrail = - buildTypesAiobotocorePackage "cloudtrail" "3.7.0" - "sha256-v7LogXqKff7ht+nHNu33EW2l7gDYITF63R+CMGim/Os="; + buildTypesAiobotocorePackage "cloudtrail" "3.8.0" + "sha256-hUcBOamdbpqV8F8Ff5NAJHJJa0M2axmaT2KWqc+QsRQ="; types-aiobotocore-cloudtrail-data = - buildTypesAiobotocorePackage "cloudtrail-data" "3.7.0" - "sha256-WO5MpjVFJ3T52s7ErlIaS6n0kvbRxeKChRCeZGDCjWI="; + buildTypesAiobotocorePackage "cloudtrail-data" "3.8.0" + "sha256-IADjU2gsNoAcGmzuvCX4+NF5kdZZHqIKdHDvrPCXh0I="; types-aiobotocore-cloudwatch = - buildTypesAiobotocorePackage "cloudwatch" "3.7.0" - "sha256-+b1Exmy7k3B9/rfhAPRRTPJgLBJHa0VGCUJ7jjoZX2k="; + buildTypesAiobotocorePackage "cloudwatch" "3.8.0" + "sha256-ehZf6MlVBw+kxCenP/Om744Rw4mm+onJMXzzoAtvhdI="; types-aiobotocore-codeartifact = - buildTypesAiobotocorePackage "codeartifact" "3.7.0" - "sha256-ioutudILLyYw5RWN2mKkKWQ/G/VIoHozmnFr2gfGv9c="; + buildTypesAiobotocorePackage "codeartifact" "3.8.0" + "sha256-yb/nSWrkXEXhLLRj4bCmeiQb8l5qwrwqUIFu7LP/eWk="; types-aiobotocore-codebuild = - buildTypesAiobotocorePackage "codebuild" "3.7.0" - "sha256-SiyH0cnHGobGHY0b016tzlfEvxAWeK7o/hf7VjIu/mk="; + buildTypesAiobotocorePackage "codebuild" "3.8.0" + "sha256-mN4CzC6FFyYC+p+ao1LAHw5F7jCf8RbCj3KRsKUfmw8="; types-aiobotocore-codecatalyst = - buildTypesAiobotocorePackage "codecatalyst" "3.7.0" - "sha256-53J3i2FOoMscK9F5axvBf32s+VrCE1e4wVsf2JS5k/k="; + buildTypesAiobotocorePackage "codecatalyst" "3.8.0" + "sha256-hLFSk6fLTBLrhegnnCBhzivcwqQ9RhVZzHRhKfjjVr8="; types-aiobotocore-codecommit = - buildTypesAiobotocorePackage "codecommit" "3.7.0" - "sha256-rvClmbFk62L8EIqxD1uRzNAWMAvPPfbfAEOvmVWlEsg="; + buildTypesAiobotocorePackage "codecommit" "3.8.0" + "sha256-i11jMMPBQkN45mJLxh72PGuMmb3OtBjQQ0ewuCGNE+k="; types-aiobotocore-codeconnections = - buildTypesAiobotocorePackage "codeconnections" "3.7.0" - "sha256-0ri/DlF8t86tLy3IkTaZLH/ZOLR9v/kQO2asJlwD6qc="; + buildTypesAiobotocorePackage "codeconnections" "3.8.0" + "sha256-TsSV0LPUU6woke73Sj0syPUzb/BzyVzzZnaXGm4rZjc="; types-aiobotocore-codedeploy = - buildTypesAiobotocorePackage "codedeploy" "3.7.0" - "sha256-M2oVkK/bA5v8Nq1m1QnA+1EX0Bo76xNGPyXeysq8NXI="; + buildTypesAiobotocorePackage "codedeploy" "3.8.0" + "sha256-MLmdTSCswWneBm0MH7qvDIqYhEoOq8IT2NFNca4nji8="; types-aiobotocore-codeguru-reviewer = - buildTypesAiobotocorePackage "codeguru-reviewer" "3.7.0" - "sha256-cJIlVDaoaC5eW92f6276qLlbMI8o+ReAbSJa/9CglKw="; + buildTypesAiobotocorePackage "codeguru-reviewer" "3.8.0" + "sha256-YYbOiHkzKeN9UMPpE/83zJem4oNltxtPKdigQ6VVxiM="; types-aiobotocore-codeguru-security = - buildTypesAiobotocorePackage "codeguru-security" "3.7.0" - "sha256-COcNBKEiuUwNdMPX/GxPolFJj+P2/eqjHBAE95rQf2M="; + buildTypesAiobotocorePackage "codeguru-security" "3.8.0" + "sha256-0hTfNChzO9uJZKHlZ6gEjM4E7aoD+mG+6m8Lq1rQfJo="; types-aiobotocore-codeguruprofiler = - buildTypesAiobotocorePackage "codeguruprofiler" "3.7.0" - "sha256-dcXGwUGXZdy8w6++IFNzc6Lcb22FG10RpSp+lJTMnSM="; + buildTypesAiobotocorePackage "codeguruprofiler" "3.8.0" + "sha256-FBHhzMtZ12yx1ncyI5LePJ07IBvYK2EZ0Yy+b2o/qK8="; types-aiobotocore-codepipeline = - buildTypesAiobotocorePackage "codepipeline" "3.7.0" - "sha256-7IrdHV674OjUW1m7PTM3G5+hSe500sY8rY3m3VTHkqQ="; + buildTypesAiobotocorePackage "codepipeline" "3.8.0" + "sha256-Ws1GWO4i2DuA8R26NjYsnPytmlxWRtWbYu66UfkC6rI="; types-aiobotocore-codestar = buildTypesAiobotocorePackage "codestar" "2.13.3" "sha256-Z1ewx2RjmxbOQZ7wXaN54PVOuRs6LP3rMpsrVTacwjo="; types-aiobotocore-codestar-connections = - buildTypesAiobotocorePackage "codestar-connections" "3.7.0" - "sha256-C8c5SsKP882yrgNNbVM2gyqqadt7LVHjCwt/EC0aHhA="; + buildTypesAiobotocorePackage "codestar-connections" "3.8.0" + "sha256-htS73FiaAdVaUwwTwHDw0f9VXkR7FlSw8fZq484hxjs="; types-aiobotocore-codestar-notifications = - buildTypesAiobotocorePackage "codestar-notifications" "3.7.0" - "sha256-XVas2vKprWZrWRSzQ50XsZc4bjBK5fmyJ9jRAaBZyWg="; + buildTypesAiobotocorePackage "codestar-notifications" "3.8.0" + "sha256-ELWOrPX9l7ivbqX64iNbxu4iKd1NQi3NTq7iNPj4dbA="; types-aiobotocore-cognito-identity = - buildTypesAiobotocorePackage "cognito-identity" "3.7.0" - "sha256-ICI+kiRFPP9ddpEsIEpan1RXDMvRzIzSrzP6E3Jkzpc="; + buildTypesAiobotocorePackage "cognito-identity" "3.8.0" + "sha256-i0+EValBs1vLL8GJ0S959upzqXK82oMNHbzmfAjXtY0="; types-aiobotocore-cognito-idp = - buildTypesAiobotocorePackage "cognito-idp" "3.7.0" - "sha256-XLXJp0nVPsszs0z7qS3rD+C9IovozcX+Tr2FLvFkXXM="; + buildTypesAiobotocorePackage "cognito-idp" "3.8.0" + "sha256-8vSK/0AKwTWW4NsRj22SGt8Lgc5F8vJ9QsDEem37l2M="; types-aiobotocore-cognito-sync = - buildTypesAiobotocorePackage "cognito-sync" "3.7.0" - "sha256-ak+hXx1NAw9tL9iT6iOG09tQYHV5CxQywxbHkRR5EyM="; + buildTypesAiobotocorePackage "cognito-sync" "3.8.0" + "sha256-D+FwTGi4LxKj1L794Hx/JLyMQrTMjjcff5okupsCwto="; types-aiobotocore-comprehend = - buildTypesAiobotocorePackage "comprehend" "3.7.0" - "sha256-FIo2q77bP78+nTynZiEMlKaQ7NMesrl325Uj9WTtg78="; + buildTypesAiobotocorePackage "comprehend" "3.8.0" + "sha256-sbG/xtIfiXzx7+rxhziFkJxXpsudWqRzOx9H2sUO2dI="; types-aiobotocore-comprehendmedical = - buildTypesAiobotocorePackage "comprehendmedical" "3.7.0" - "sha256-rPEbxlmWJG3mg2Ithk4ZOU5NbxRA7+QXbHZsycBUeWU="; + buildTypesAiobotocorePackage "comprehendmedical" "3.8.0" + "sha256-gFUauGsdVBYOulj+fcdjca5dsB10fZgHSR4Lu8jPimw="; types-aiobotocore-compute-optimizer = - buildTypesAiobotocorePackage "compute-optimizer" "3.7.0" - "sha256-0F0iIpmwcivX0r7SP7EogYCaKG0j1iujWgGkUdXWYUo="; + buildTypesAiobotocorePackage "compute-optimizer" "3.8.0" + "sha256-kcWOiyoGrB1UNWWuV7VpEt5kKeEArEs4PoGe23t/bK8="; types-aiobotocore-config = - buildTypesAiobotocorePackage "config" "3.7.0" - "sha256-J9G0qMTXaOyW6RTY1jIEFCxUswElkdPx1hqHlFtTXgw="; + buildTypesAiobotocorePackage "config" "3.8.0" + "sha256-lRWxNvIQCcmjR/tmLVvkxYnwfgCfHoz2EYVRahm8AG0="; types-aiobotocore-connect = - buildTypesAiobotocorePackage "connect" "3.7.0" - "sha256-Ie9B4OuYjzePqNf6Bvc4tq777YWIljN9sNWQWVgyszA="; + buildTypesAiobotocorePackage "connect" "3.8.0" + "sha256-BKgWqSV43o37UzPsRKnPj6RxE6E/4ePkRiAGqHHlXPI="; types-aiobotocore-connect-contact-lens = - buildTypesAiobotocorePackage "connect-contact-lens" "3.7.0" - "sha256-/RUg/woLn9qm6bonp/8DumKP8auEWdrtqne8+2s+kdQ="; + buildTypesAiobotocorePackage "connect-contact-lens" "3.8.0" + "sha256-FpI7drHdOFwgXibCtz3ixnObCisLqHSN3BeT4jei+eo="; types-aiobotocore-connectcampaigns = - buildTypesAiobotocorePackage "connectcampaigns" "3.7.0" - "sha256-q7Kffps5ugA14xf9DHynAhHNZLcOP9HO85GTCTyuMq8="; + buildTypesAiobotocorePackage "connectcampaigns" "3.8.0" + "sha256-V31ZItoG2qkiW9KxAxCUPlAqV+nJ3QrLK/v/mS+kom0="; types-aiobotocore-connectcases = - buildTypesAiobotocorePackage "connectcases" "3.7.0" - "sha256-EVE6JD9a20FX1ASvY3jJyXn5SquyG+n/mUHzXS3EM64="; + buildTypesAiobotocorePackage "connectcases" "3.8.0" + "sha256-NF54r4IfJX7NvetA3P/52Sq9sA31VrW1KpVE7ATgGTc="; types-aiobotocore-connectparticipant = - buildTypesAiobotocorePackage "connectparticipant" "3.7.0" - "sha256-8tIUgHaTd1mNN0na3vi6K8vFf9aCDn8OhlJyymJVqZM="; + buildTypesAiobotocorePackage "connectparticipant" "3.8.0" + "sha256-One3YHAosNYL2Ln7jPNrSQX3mgxVhqq4oFFOCU/+l4A="; types-aiobotocore-controltower = - buildTypesAiobotocorePackage "controltower" "3.7.0" - "sha256-h8+gkONNokS2n4u0nkijcNdblsHHC449B2wQjDIC+uo="; + buildTypesAiobotocorePackage "controltower" "3.8.0" + "sha256-Xt4XK77VyC43S42BHwLv5MKgF7CZbnWEuW9xCyWK3ow="; types-aiobotocore-cur = - buildTypesAiobotocorePackage "cur" "3.7.0" - "sha256-O7s257Pb7kDbhgKxVYR3pStZmbVjP5MDE0ZN9Z3oGG4="; + buildTypesAiobotocorePackage "cur" "3.8.0" + "sha256-RK+XyXCF+IscV7cj2ZG6j8LcDMTlEd/PevawvhFiZWE="; types-aiobotocore-customer-profiles = - buildTypesAiobotocorePackage "customer-profiles" "3.7.0" - "sha256-aiTOMWHCVVXNQjyaYnqnUn+AvJddfe1Onxqq+7C8siE="; + buildTypesAiobotocorePackage "customer-profiles" "3.8.0" + "sha256-gjhhJoN2VBlacfkKnkWMAs48k8C4qOnKwEy5+o/LL8A="; types-aiobotocore-databrew = - buildTypesAiobotocorePackage "databrew" "3.7.0" - "sha256-X0ccuclYoQ4YsBkFnevEzGq2uVuU5twu+CbEEM/zUeE="; + buildTypesAiobotocorePackage "databrew" "3.8.0" + "sha256-BNPg4NNriaJTAxfOlLp0JLl5LXQId3HFTsVfjFjA1HY="; types-aiobotocore-dataexchange = - buildTypesAiobotocorePackage "dataexchange" "3.7.0" - "sha256-19hTbA1UNLzybIZxiV2oSPAKJ36YkdfWIU/Wks63UQk="; + buildTypesAiobotocorePackage "dataexchange" "3.8.0" + "sha256-8Axab+DTO46eOwzZ0tX4uDIlmOAcgneBiCRGViSpOcM="; types-aiobotocore-datapipeline = - buildTypesAiobotocorePackage "datapipeline" "3.7.0" - "sha256-IHr4Az6ZRdSI/v7NUO/2FsUSdnVYtqG2jb6+CqNa9Zs="; + buildTypesAiobotocorePackage "datapipeline" "3.8.0" + "sha256-PYrHvxfRpnshmF1GVBcQcDzITbkFrsP4ccq1Y9zOP4g="; types-aiobotocore-datasync = - buildTypesAiobotocorePackage "datasync" "3.7.0" - "sha256-AP0XaRclqTJ8fMAdJzazLrfjeM5vx7ejcVF9+WOg5dg="; + buildTypesAiobotocorePackage "datasync" "3.8.0" + "sha256-ywMpQzeC2otle0bztlNldRS/uROHFxL0nYpNBuQO1eE="; types-aiobotocore-dax = - buildTypesAiobotocorePackage "dax" "3.7.0" - "sha256-vjFmcHKGerivLXGruRA6fLFTxrAKBfeGOv1rgvVlYd0="; + buildTypesAiobotocorePackage "dax" "3.8.0" + "sha256-38GauiqA/jkdF0qNIZbp7b4irP9Ia9g51RZgtdhHF8I="; types-aiobotocore-detective = - buildTypesAiobotocorePackage "detective" "3.7.0" - "sha256-gr9C3CIZnj/I0+GkJ8FfkYTUnMcr+h/MU2Wi+G1pFws="; + buildTypesAiobotocorePackage "detective" "3.8.0" + "sha256-wTPXcSi5yEZglllrifVQikwynjE9L4Kj+KpQtfK2pcY="; types-aiobotocore-devicefarm = - buildTypesAiobotocorePackage "devicefarm" "3.7.0" - "sha256-rsiBPL6JG68BvhExf0fCsK5BI1zGajkAx5ySOy3JB2c="; + buildTypesAiobotocorePackage "devicefarm" "3.8.0" + "sha256-XM8FkpGVemA10/9hHdx2fCNg5b6WgvoYIgSUsTvSV/k="; types-aiobotocore-devops-guru = - buildTypesAiobotocorePackage "devops-guru" "3.7.0" - "sha256-VgE4PnoqaEu8rV0TKGtQ4XDp2rD/gXpxBIj73HSeGJI="; + buildTypesAiobotocorePackage "devops-guru" "3.8.0" + "sha256-wV9YpEqlAOjU9rICDt37ZkcKa0ZNG3tekJY4kTmhJPI="; types-aiobotocore-directconnect = - buildTypesAiobotocorePackage "directconnect" "3.7.0" - "sha256-Q0F3q6//CmcPrC0LybjzjzBBwvQJgZGk4wZHYJ6PAJ4="; + buildTypesAiobotocorePackage "directconnect" "3.8.0" + "sha256-b6SmCzR9HmA/rR8xduAlmNdOOct5nV4WeSgRid10Yms="; types-aiobotocore-discovery = - buildTypesAiobotocorePackage "discovery" "3.7.0" - "sha256-tPDm9pG53NW6bLbcIbXmjrVDJDeIJ07wMylvCvM4+yk="; + buildTypesAiobotocorePackage "discovery" "3.8.0" + "sha256-7o/nzYUCFOwZLLcVSJNPbqrH1KZyVK8Jg2/Zl+mh2Xs="; types-aiobotocore-dlm = - buildTypesAiobotocorePackage "dlm" "3.7.0" - "sha256-eKeYRnLRSk+PQCYgWFEFnnsUmtrhNKtZPa+M3GMM1t4="; + buildTypesAiobotocorePackage "dlm" "3.8.0" + "sha256-ydR9t3gXKxL/uqe+vW+zcQejApzPDRc24HnZ/KrzL2U="; types-aiobotocore-dms = - buildTypesAiobotocorePackage "dms" "3.7.0" - "sha256-08KznNVQCoGqGS2mDtbYISW3JtpHRPpa/WIKfbQ/i/M="; + buildTypesAiobotocorePackage "dms" "3.8.0" + "sha256-JCxfsR0UzHXOsrBi++J5VwDh1uYyDUIQtYo+bAmL19U="; types-aiobotocore-docdb = - buildTypesAiobotocorePackage "docdb" "3.7.0" - "sha256-2RrVq3pGIQWfU8uI2fhSBV+6VjSnEFFnb9FcYEzTLl8="; + buildTypesAiobotocorePackage "docdb" "3.8.0" + "sha256-XRVkHT5Gp9s003zFvMc8RsCnaZpyNbva5fS2qAfx1xM="; types-aiobotocore-docdb-elastic = - buildTypesAiobotocorePackage "docdb-elastic" "3.7.0" - "sha256-oH+3JqSoeHPI4OXMzZa33QJiMea3Xw5DDZl9DmFMXVQ="; + buildTypesAiobotocorePackage "docdb-elastic" "3.8.0" + "sha256-NJEHWLRVZJFoxZPIUIvQSioIrInbXE0qAclTy5tnHC8="; types-aiobotocore-drs = - buildTypesAiobotocorePackage "drs" "3.7.0" - "sha256-2q2UqQ+mCOA3aW0fOmZL/Upi1b0GPuQn9DyvOIkNsMc="; + buildTypesAiobotocorePackage "drs" "3.8.0" + "sha256-+RsaaqXJLhHeVfTW6HO6+bSW0vGbC40G+q+U9Jcigzs="; types-aiobotocore-ds = - buildTypesAiobotocorePackage "ds" "3.7.0" - "sha256-UFeXnz877xxdWnYIKMUNubj3LKU20sTCsORYf7sgt6g="; + buildTypesAiobotocorePackage "ds" "3.8.0" + "sha256-o+9kCeqw2hQX9Fp322ibvtzCpqTQkMe/iHktuPdAITg="; types-aiobotocore-dynamodb = - buildTypesAiobotocorePackage "dynamodb" "3.7.0" - "sha256-uyPJkjc07Y1GHaC4oRZqC42QgOY8LmXjLNA95XCAVV0="; + buildTypesAiobotocorePackage "dynamodb" "3.8.0" + "sha256-+cmwzj8WDPvK5cXPuGesyZ669NC7sWOZtW5b0tlJWp0="; types-aiobotocore-dynamodbstreams = - buildTypesAiobotocorePackage "dynamodbstreams" "3.7.0" - "sha256-ir0ffWxtGEPihKirKzeEytZbrTLb6FdEH7NZHxBJlmQ="; + buildTypesAiobotocorePackage "dynamodbstreams" "3.8.0" + "sha256-2cJ8pt2KIO3VA3gCMmSkiYNRHIRfW0DE/Yzm9DAnCgY="; types-aiobotocore-ebs = - buildTypesAiobotocorePackage "ebs" "3.7.0" - "sha256-3lZv6kh52tiJ2txUQFKrLxFwkKY2+LPAAa1gcxzr4Ds="; + buildTypesAiobotocorePackage "ebs" "3.8.0" + "sha256-Lgmegzqab9m5b9Rl/KRSUp3eaqatWDXfU3MGP4K4uCU="; types-aiobotocore-ec2 = - buildTypesAiobotocorePackage "ec2" "3.7.0" - "sha256-sr+Iqn/vW2jxXCYw3qXi7O9tqOaPdiuAMABkr45KkPs="; + buildTypesAiobotocorePackage "ec2" "3.8.0" + "sha256-zc5u5Ox5sKOYnNsCliBOhww30/0p1kahUKKY7I6ZJLU="; types-aiobotocore-ec2-instance-connect = - buildTypesAiobotocorePackage "ec2-instance-connect" "3.7.0" - "sha256-kBduFFziwpclOQlKa/acLfHhG9CKl7JFn04vYkqFnEQ="; + buildTypesAiobotocorePackage "ec2-instance-connect" "3.8.0" + "sha256-w3IHGfGskQlZ0n8EkfVmAQtEyQq3QL8Qy+wqa7GWYHs="; types-aiobotocore-ecr = - buildTypesAiobotocorePackage "ecr" "3.7.0" - "sha256-jwO16n53l+jLA/zHpNG3PU/iWUdCuT+mgipyjs4I2hw="; + buildTypesAiobotocorePackage "ecr" "3.8.0" + "sha256-r9pHu6rYiFNSAZWojxeMdwJPoom4fc7rgdt2GeBF0DA="; types-aiobotocore-ecr-public = - buildTypesAiobotocorePackage "ecr-public" "3.7.0" - "sha256-DiEksJtfYzDJnBXGRtnMQdWQoWF+g3VqIXwJ0q2sZxU="; + buildTypesAiobotocorePackage "ecr-public" "3.8.0" + "sha256-42jY5XnuBSHn+UodqFTDsO2ISXW3JktJ7x6Ezk+RHUQ="; types-aiobotocore-ecs = - buildTypesAiobotocorePackage "ecs" "3.7.0" - "sha256-1BPbC4S2TTyT2WquZS5IMKCjcuDFC89Bt0CKUnTBP3M="; + buildTypesAiobotocorePackage "ecs" "3.8.0" + "sha256-eDU86sBPeGsMJEVpxLSiWQmXK5JbRDPO6JYO71EFo/U="; types-aiobotocore-efs = - buildTypesAiobotocorePackage "efs" "3.7.0" - "sha256-wT8rpC+EUwQp/Pk+9hfegciidAhBmN0mWNcQ2qbv4N4="; + buildTypesAiobotocorePackage "efs" "3.8.0" + "sha256-KaMzaT9BdazP7pgLA8kAMfePGvJU0BSknsTt4waOwHw="; types-aiobotocore-eks = - buildTypesAiobotocorePackage "eks" "3.7.0" - "sha256-j3ZSATOlw8t4mR9np6qlI40P2cmK0H4n+RgUr+tw/P8="; + buildTypesAiobotocorePackage "eks" "3.8.0" + "sha256-LLwQGeiDeXTt+nFxLym/ujB0u4LkDv4CCW8C02QGsFQ="; types-aiobotocore-elastic-inference = buildTypesAiobotocorePackage "elastic-inference" "2.20.0" "sha256-jFSY7JBVjDQi6dCqlX2LG7jxpSKfILv3XWbYidvtGos="; types-aiobotocore-elasticache = - buildTypesAiobotocorePackage "elasticache" "3.7.0" - "sha256-mDnDkYsSk2Qx8mQ0I/wCGylvGed9EPS6ivxQ04xyKBQ="; + buildTypesAiobotocorePackage "elasticache" "3.8.0" + "sha256-CryIrBCFAhNlp39y7IXvwKoCFrrKcAU3e0Jgkcbhc0o="; types-aiobotocore-elasticbeanstalk = - buildTypesAiobotocorePackage "elasticbeanstalk" "3.7.0" - "sha256-/8YzvK0QuVukrgPI6L8myiQs1SPucHejJ8h8rHSNWj8="; + buildTypesAiobotocorePackage "elasticbeanstalk" "3.8.0" + "sha256-WKG93cB2ROmTaGbESLmg1PXb3nis4xElhx/LMZdhdaA="; types-aiobotocore-elastictranscoder = buildTypesAiobotocorePackage "elastictranscoder" "2.25.2" "sha256-5t214U60d2kSf8bmUiEkj4OMFf3+SbNRGqLif1Rj28E="; types-aiobotocore-elb = - buildTypesAiobotocorePackage "elb" "3.7.0" - "sha256-vj+lD8Ua3rECLi4k/iDOOKq/K3qXeWgwkDyWEA010co="; + buildTypesAiobotocorePackage "elb" "3.8.0" + "sha256-Zt+xUzP1Al2GpIcx+m7+VoV4QtySRX3DkNKzEZ6/6/I="; types-aiobotocore-elbv2 = - buildTypesAiobotocorePackage "elbv2" "3.7.0" - "sha256-2lb6+htHa0KH+hCoCyTqoZFLSKC4xy06U9+gaPWvkw8="; + buildTypesAiobotocorePackage "elbv2" "3.8.0" + "sha256-ct02QamX9dpPWJw3tYa9C++DBakMO7JysfXfrvD+lK8="; types-aiobotocore-emr = - buildTypesAiobotocorePackage "emr" "3.7.0" - "sha256-yCjZyhPmgO8OCtSsvqC4zob8pSueU3QxlksHk4kMpkQ="; + buildTypesAiobotocorePackage "emr" "3.8.0" + "sha256-hr3Ul+sIaOdRdugw28qp2R90jFJLW2FnPR/bAUbefeM="; types-aiobotocore-emr-containers = - buildTypesAiobotocorePackage "emr-containers" "3.7.0" - "sha256-PvUdlmKyamrb74vB+A05VbzL4Okv12yYL0R4RGFKTj8="; + buildTypesAiobotocorePackage "emr-containers" "3.8.0" + "sha256-FSN6co2PwGJxC5WHqfx2ranXnaVZtGt6fg6YP5vAi3Q="; types-aiobotocore-emr-serverless = - buildTypesAiobotocorePackage "emr-serverless" "3.7.0" - "sha256-Eqx3r+g0T4o3btTjd3xW22MiYyJmODL7/52j8PMZhKo="; + buildTypesAiobotocorePackage "emr-serverless" "3.8.0" + "sha256-X6i7+USRKti8g8YAVHbTkesVfcnsrOSWMsKpDAKkzas="; types-aiobotocore-entityresolution = - buildTypesAiobotocorePackage "entityresolution" "3.7.0" - "sha256-KsPRUUuFpw6Fwzni+1chWOX1d5N5YTMIPcmRhsZs+QQ="; + buildTypesAiobotocorePackage "entityresolution" "3.8.0" + "sha256-cvzfe0KJaoiyC99BYtIiNaWWMXzZhX4NM8r0Z7eenOk="; types-aiobotocore-es = - buildTypesAiobotocorePackage "es" "3.7.0" - "sha256-rXSIfNV7ZDzH9j4zDdyeD9vEYmpu8H12HCNOUCyTk3M="; + buildTypesAiobotocorePackage "es" "3.8.0" + "sha256-RIt8f2lS3LqaYyDV8RQ///+Fx2W7KCpUAMbTJiFYLjU="; types-aiobotocore-events = - buildTypesAiobotocorePackage "events" "3.7.0" - "sha256-qKTQ8cv9xj/E541i/IWWYtOSd7n3I8vO4INQEws4gvY="; + buildTypesAiobotocorePackage "events" "3.8.0" + "sha256-obYBY711W2MWWLCbSmTJu2FxzvoHzTrQnKIV9PMKySc="; types-aiobotocore-evidently = buildTypesAiobotocorePackage "evidently" "3.1.1" "sha256-g+XQEgqqZul8kOg0kstdYMvw2tu6zhC9GZGgs7WH3Mo="; types-aiobotocore-finspace = - buildTypesAiobotocorePackage "finspace" "3.7.0" - "sha256-t8g9Lom5iJi2qLfaLf47VkYYL55CcNFPrUcGRIWCJ+c="; + buildTypesAiobotocorePackage "finspace" "3.8.0" + "sha256-SvlqVx4Bh/V62y94lcpm5xJPT98iXK4HU2xZCNRhw64="; types-aiobotocore-finspace-data = - buildTypesAiobotocorePackage "finspace-data" "3.7.0" - "sha256-0sObPw4IwlgJaz4OBBzPXmfXXdIhBvMTjrGZC4BEm7M="; + buildTypesAiobotocorePackage "finspace-data" "3.8.0" + "sha256-q3JceBhmJlC7B3dRMy2dLgVOxReobx/C3jNHYhHGeHU="; types-aiobotocore-firehose = - buildTypesAiobotocorePackage "firehose" "3.7.0" - "sha256-6PJCcEqA7WU4KI0I7un/WAHJlGYefmHsvz2wZzVoOZU="; + buildTypesAiobotocorePackage "firehose" "3.8.0" + "sha256-rqs6/KcAqxsUBYZoqK4gGcbVSB5uPUPK5LF5G3jKcnI="; types-aiobotocore-fis = - buildTypesAiobotocorePackage "fis" "3.7.0" - "sha256-w3KkeY2i795vZk7SJHN+LIhscs8rt9HjhnWDnVbE12Q="; + buildTypesAiobotocorePackage "fis" "3.8.0" + "sha256-1M+QVMXmGcBzo8EtZcrfS65UgdE3fB4/0JHxo0paZT0="; types-aiobotocore-fms = - buildTypesAiobotocorePackage "fms" "3.7.0" - "sha256-28IP5s87+Dzl7VbuEtfXeVD5d8M/Gg7DMiy7pp6g2t8="; + buildTypesAiobotocorePackage "fms" "3.8.0" + "sha256-Yp9+eL59DX9To5W3DYPA/KAyeLTVPYj+u7XSq1p8xzU="; types-aiobotocore-forecast = - buildTypesAiobotocorePackage "forecast" "3.7.0" - "sha256-V8126NUZHRY3Jn/vSZZZbyCH6OhZy1Di6oJrq0wjSkU="; + buildTypesAiobotocorePackage "forecast" "3.8.0" + "sha256-x2LMfvIuPgte+Daas5l17wLutMsV4Q/6o6+MHrluMnI="; types-aiobotocore-forecastquery = - buildTypesAiobotocorePackage "forecastquery" "3.7.0" - "sha256-8IUJNiOh9iFfoThoj2AcGasifp7/nJHtE/6pjrmf0Zs="; + buildTypesAiobotocorePackage "forecastquery" "3.8.0" + "sha256-yH/6qS+AgIGa3nDNAUU1NbM2Xlg4ruaFgDSCGGoU8wY="; types-aiobotocore-frauddetector = - buildTypesAiobotocorePackage "frauddetector" "3.7.0" - "sha256-nSeI67wVdDKP6VV4+EW/zCWYNtXq87db6cKI2qgTkrA="; + buildTypesAiobotocorePackage "frauddetector" "3.8.0" + "sha256-JP/iKnjMMKqhtDRdajUH1lhF+NKFfXffLmY+wqq2JFI="; types-aiobotocore-freetier = - buildTypesAiobotocorePackage "freetier" "3.7.0" - "sha256-6LoNmKGMSUFkO2Wmu31ZIdEGf6aOGqYaO4mSOP6inM8="; + buildTypesAiobotocorePackage "freetier" "3.8.0" + "sha256-rNwzvkTlxF2A2FWP3Jn33ncvkkd4Lfd9F4vU5oD1Ivc="; types-aiobotocore-fsx = - buildTypesAiobotocorePackage "fsx" "3.7.0" - "sha256-FpSKdklaIzkvpDjbCFZcRDRrKevDNJHaXMcg63H3xbI="; + buildTypesAiobotocorePackage "fsx" "3.8.0" + "sha256-C5cbXS343/b+nOsGICmi7bVnDYQPDmqtIuFX1ZWxwes="; types-aiobotocore-gamelift = - buildTypesAiobotocorePackage "gamelift" "3.7.0" - "sha256-1oTB45z6BWf2eH66AsCkEspteBL+374Kwp/JliSQaMA="; + buildTypesAiobotocorePackage "gamelift" "3.8.0" + "sha256-ucITXuJN9iJp/jpqC+IjCJCAXgC6SpQSr9Z3ZWZ/i/s="; types-aiobotocore-gamesparks = buildTypesAiobotocorePackage "gamesparks" "2.7.0" "sha256-oVbKtuLMPpCQcZYx/cH1Dqjv/t6/uXsveflfFVqfN+8="; types-aiobotocore-glacier = - buildTypesAiobotocorePackage "glacier" "3.7.0" - "sha256-bmdHgVjAEJ5mS7CaHtR37giYYyVGenASbSDUhsPyQGQ="; + buildTypesAiobotocorePackage "glacier" "3.8.0" + "sha256-MK/Li3TBbr/4ZzaWDBoSv1VaeqQubTvFkQb69niPLDY="; types-aiobotocore-globalaccelerator = - buildTypesAiobotocorePackage "globalaccelerator" "3.7.0" - "sha256-fXtV1XhEYW8bWE0C2nbMK9BCr/dO6tCIskANVi8SA4Q="; + buildTypesAiobotocorePackage "globalaccelerator" "3.8.0" + "sha256-LRl5pvM93obsygIMLZindo2RJCcuSerfSYg21xZLLpw="; types-aiobotocore-glue = - buildTypesAiobotocorePackage "glue" "3.7.0" - "sha256-5WlTOidHtsVh3rKxpfIufALneg+9g9o+D5xfrLSEFPo="; + buildTypesAiobotocorePackage "glue" "3.8.0" + "sha256-oSLmD2Q1ehanGR0e/PkRg5JDq4Tea5QrlZ6E5o+4W84="; types-aiobotocore-grafana = - buildTypesAiobotocorePackage "grafana" "3.7.0" - "sha256-/qUvIz/Li2P/Bh5wEY+TaYgNqFGvHrl5OOoeV550ofE="; + buildTypesAiobotocorePackage "grafana" "3.8.0" + "sha256-baEwgysFIZ0sqLs8Ce1lCYlwWdHjoW1YcfULyd0LDr4="; types-aiobotocore-greengrass = - buildTypesAiobotocorePackage "greengrass" "3.7.0" - "sha256-KHcqQIUtGuW2x/ETnvscsNZFbovB+qM5O/WE2o/8lL4="; + buildTypesAiobotocorePackage "greengrass" "3.8.0" + "sha256-PYy8Hq5GLsTw0fU7RBOrAxSYUD4LVOtiuyhu8vuoWLo="; types-aiobotocore-greengrassv2 = - buildTypesAiobotocorePackage "greengrassv2" "3.7.0" - "sha256-Qm1UqudmcuKKghvAlxU8EclyUEtcnOld2Xt7Z4ihF+8="; + buildTypesAiobotocorePackage "greengrassv2" "3.8.0" + "sha256-nw84dUammVctscSvCALbHfeH+AoZTnPOWfm7EJVED3s="; types-aiobotocore-groundstation = - buildTypesAiobotocorePackage "groundstation" "3.7.0" - "sha256-3/13REWwu1NoIp//wwKMEV37Gvz+guE7Cogo74kCPr4="; + buildTypesAiobotocorePackage "groundstation" "3.8.0" + "sha256-zWSsSCpQHSM+kP02pzWHirNI6+3Vdqbw/y+svgvVpuM="; types-aiobotocore-guardduty = - buildTypesAiobotocorePackage "guardduty" "3.7.0" - "sha256-PxBziC4y1XuBbXj/+rHgkXY3OlI6tTSKIFW4IrhKG6E="; + buildTypesAiobotocorePackage "guardduty" "3.8.0" + "sha256-0QEK6HAVWTSQ1vCpW/bz+lPiZPQqu/0EE0srx9tlkcQ="; types-aiobotocore-health = - buildTypesAiobotocorePackage "health" "3.7.0" - "sha256-UFSnAnmBFmTGJ9dcFBV36wY8RwVGUrASNyk6Z0Yifi0="; + buildTypesAiobotocorePackage "health" "3.8.0" + "sha256-FmCc4A9dfpQhbzFyH5x6MDqLTsE7dsqD2sxDpKBL9L4="; types-aiobotocore-healthlake = - buildTypesAiobotocorePackage "healthlake" "3.7.0" - "sha256-Y7rDElgnSITjTebtlR0b2m5PbuNNtW95vzCtXnJj2s4="; + buildTypesAiobotocorePackage "healthlake" "3.8.0" + "sha256-sGFP3win2/3htNlBhIO0FPqBkFFAxwKYFTX7tOiHVBM="; types-aiobotocore-honeycode = buildTypesAiobotocorePackage "honeycode" "2.13.0" "sha256-DeeheoQeFEcDH21DSNs2kSR1rjnPLtTgz0yNCFnE+Io="; types-aiobotocore-iam = - buildTypesAiobotocorePackage "iam" "3.7.0" - "sha256-oLxt2MuYxZvaicJT6plpLlBCHKNcW6Njv2EfuDtWqQs="; + buildTypesAiobotocorePackage "iam" "3.8.0" + "sha256-veDFYKpW1pMd3fyIIeW5k5OhWL466PVPJ7uuNGMe91Q="; types-aiobotocore-identitystore = - buildTypesAiobotocorePackage "identitystore" "3.7.0" - "sha256-OhEGCdrz/CZdsaiMyQa3+VNhK3SEk4fq0Hgt5UPcr44="; + buildTypesAiobotocorePackage "identitystore" "3.8.0" + "sha256-iq7n5X39eAEYifr2KPbYJhsbVlmuGtVy/jeb8lYCITc="; types-aiobotocore-imagebuilder = - buildTypesAiobotocorePackage "imagebuilder" "3.7.0" - "sha256-C6RQGD6FEbIiuEGtvTp//fTFsYRVyFVyXFY6Ke6aUko="; + buildTypesAiobotocorePackage "imagebuilder" "3.8.0" + "sha256-NtuXmbMBgOLF/S3bn1w4aaaSEcvvb/rMCoUWBmRTOE0="; types-aiobotocore-importexport = - buildTypesAiobotocorePackage "importexport" "3.7.0" - "sha256-HfKDrkpoaEBME0yvifeIKZmDhr95eJLti7v7k1226y0="; + buildTypesAiobotocorePackage "importexport" "3.8.0" + "sha256-MhtjS56BNhfyA5eLmbFXcvNnp5mzZ5JBG7dHeSRq9rI="; types-aiobotocore-inspector = - buildTypesAiobotocorePackage "inspector" "3.7.0" - "sha256-Ym9XIYxZ2ufr8YAi4aKDRvN6LUBfC3pNvqjzZB7KMe4="; + buildTypesAiobotocorePackage "inspector" "3.8.0" + "sha256-1LrGSpNbjQakyFykV4VLYuZb3aQ9vxIfTJCwjvIwuTg="; types-aiobotocore-inspector2 = - buildTypesAiobotocorePackage "inspector2" "3.7.0" - "sha256-oIKsmv6K9HJlq6KTmbTr/Xj0k2Hu899zxAQXp27GF/E="; + buildTypesAiobotocorePackage "inspector2" "3.8.0" + "sha256-FCPwQNnVpGpsEvrWzWvu55/SX3Ik+NgRqbzIR6Vi6pw="; types-aiobotocore-internetmonitor = - buildTypesAiobotocorePackage "internetmonitor" "3.7.0" - "sha256-SWzP/8wLy44f4zL+aV3Th758DW52ABuVQd0sgC1umtk="; + buildTypesAiobotocorePackage "internetmonitor" "3.8.0" + "sha256-3krMjI51J3HQJJUc0mMQn0bPnDsTGKT4SbSBRhYWc3A="; types-aiobotocore-iot = - buildTypesAiobotocorePackage "iot" "3.7.0" - "sha256-tnA7BpHJ4CexvLbhnZoE4vQbb3tFEklZXTbmoUzetpg="; + buildTypesAiobotocorePackage "iot" "3.8.0" + "sha256-ZwKbtDQDiOdlIBqS2ethhQIb/pS7PA6l1F02XTLxWw4="; types-aiobotocore-iot-data = - buildTypesAiobotocorePackage "iot-data" "3.7.0" - "sha256-gjikqLNIOKC98pddZMncHdlWLQzjQmHoL6E9RQ4D1jQ="; + buildTypesAiobotocorePackage "iot-data" "3.8.0" + "sha256-ht3z9xaUzfshstcNk/ZcIiY7CeXK51VwbuQwj2LLRsA="; types-aiobotocore-iot-jobs-data = - buildTypesAiobotocorePackage "iot-jobs-data" "3.7.0" - "sha256-esbnmtowzZ7lyVOpPV28D8xJ5/FPkQX0Qwm+XMAfv3E="; + buildTypesAiobotocorePackage "iot-jobs-data" "3.8.0" + "sha256-SDg4GdttXOGqcw0z2PRZLDmFZ0QkR80JAjzkmXXX+ds="; types-aiobotocore-iot-roborunner = buildTypesAiobotocorePackage "iot-roborunner" "2.12.2" @@ -700,8 +700,8 @@ in "sha256-Yf1vvasgtUxFiEfSrlPq0Q2yhbAOGyRATzid+qYjlj8="; types-aiobotocore-iotdeviceadvisor = - buildTypesAiobotocorePackage "iotdeviceadvisor" "3.7.0" - "sha256-pAMFk90d66BOEqKkNH+QY1GI5vkf0qFXUlBCgWNcE50="; + buildTypesAiobotocorePackage "iotdeviceadvisor" "3.8.0" + "sha256-tvbrL7uePzZqIa4F2Jz2YfXhKDpjn9zA4ZUO/xReaMo="; types-aiobotocore-iotevents = buildTypesAiobotocorePackage "iotevents" "3.7.0" @@ -716,148 +716,148 @@ in "sha256-WzdCGMVRCl8x+UswlyApMYMYT3Rvtng0ID2YyV08NzA="; types-aiobotocore-iotfleetwise = - buildTypesAiobotocorePackage "iotfleetwise" "3.7.0" - "sha256-55pKYrOWYbBoC01qzwB39yqeLwo6itjsLkPn0x8t1TI="; + buildTypesAiobotocorePackage "iotfleetwise" "3.8.0" + "sha256-Yogb6BJQXzIlnKUHmDwv3MySFwjyT9zZ1l0GwFMhtSo="; types-aiobotocore-iotsecuretunneling = - buildTypesAiobotocorePackage "iotsecuretunneling" "3.7.0" - "sha256-FC1oSqIHnxlIgf3HzIIvfdkQ5kpY+AnAvZBGmY9k8q0="; + buildTypesAiobotocorePackage "iotsecuretunneling" "3.8.0" + "sha256-zaypX8ZPF5KMxGPMbAGn88ZCzYOj0uqZMIgiTdJUBUA="; types-aiobotocore-iotsitewise = - buildTypesAiobotocorePackage "iotsitewise" "3.7.0" - "sha256-ev+EX394ua/ZNHMZdWfdvY5JRJi7NHOWvsbxhE1djWc="; + buildTypesAiobotocorePackage "iotsitewise" "3.8.0" + "sha256-XGCAqsutuDmspoyT6SCaYiZe1mwnYA0rMP3ejNYVQts="; types-aiobotocore-iotthingsgraph = - buildTypesAiobotocorePackage "iotthingsgraph" "3.7.0" - "sha256-RAGnwWmRW9BeqxK2qldFMY8fh4Y3QUG4usWFUVJc6ac="; + buildTypesAiobotocorePackage "iotthingsgraph" "3.8.0" + "sha256-+e2DcbAcMDQTdYBsJuDHmd9ti05FMJmZ5V/DCl2nKaY="; types-aiobotocore-iottwinmaker = - buildTypesAiobotocorePackage "iottwinmaker" "3.7.0" - "sha256-3x/g1dYdAn6B5z+Qc3tIk13LsQx73W+uI91rVrF239o="; + buildTypesAiobotocorePackage "iottwinmaker" "3.8.0" + "sha256-5xAdeSjEA/VZUmbtOtbK5oiTwQUPDTr1rnG40+LfIx0="; types-aiobotocore-iotwireless = - buildTypesAiobotocorePackage "iotwireless" "3.7.0" - "sha256-b25l5Ol+apkVJgq/TCzikX22MU00H9PKLlfF4uaNHLQ="; + buildTypesAiobotocorePackage "iotwireless" "3.8.0" + "sha256-5PR1jssqq+eKSMk6vN0M29UxFdwfdYjekZAruvgSYSg="; types-aiobotocore-ivs = - buildTypesAiobotocorePackage "ivs" "3.7.0" - "sha256-re7NmI5Qj9tb9+RzxqIlAug6voMuOXi6+xjgptsidfg="; + buildTypesAiobotocorePackage "ivs" "3.8.0" + "sha256-rw/PD66oAlO7Y1v6xaU54gHzwNgPhymA75gZov5KbmU="; types-aiobotocore-ivs-realtime = - buildTypesAiobotocorePackage "ivs-realtime" "3.7.0" - "sha256-HvvLL6PYWW/WUUBpDE3PfB7+hRvLLtCOmwobEdPsyYY="; + buildTypesAiobotocorePackage "ivs-realtime" "3.8.0" + "sha256-yXfvCFy016YXMM5CjQ6amOnupC/sWWXlY8Ya46fy/Q0="; types-aiobotocore-ivschat = - buildTypesAiobotocorePackage "ivschat" "3.7.0" - "sha256-3+cJAl1h7w75HvmMvDoG2brOfMzTBvnHh88BhXmkyic="; + buildTypesAiobotocorePackage "ivschat" "3.8.0" + "sha256-0A/W/mnF88Nhi+hI/us104wPyJ93yVtfEDF7/rfQLGA="; types-aiobotocore-kafka = - buildTypesAiobotocorePackage "kafka" "3.7.0" - "sha256-W5hU71ZZdOTl1dtlAIKqnAUv39ovzPs4vl/w6KA0gxs="; + buildTypesAiobotocorePackage "kafka" "3.8.0" + "sha256-/NCIq5fPq4ou2s8ERei2FMLjaUfdAqCmoTABPjUFSxM="; types-aiobotocore-kafkaconnect = - buildTypesAiobotocorePackage "kafkaconnect" "3.7.0" - "sha256-Gyk43kjQmNt47MR2VbDq4bFWTWJ0UnNDHt2UBFb5tVY="; + buildTypesAiobotocorePackage "kafkaconnect" "3.8.0" + "sha256-rAAr+SlpItRjwbMhn+ZOOzE771lvbFCVJdzY5KOrnrk="; types-aiobotocore-kendra = - buildTypesAiobotocorePackage "kendra" "3.7.0" - "sha256-ebBScLc20kfdnKm2os6n7MUrGTeZo6eXYR7nJCzergc="; + buildTypesAiobotocorePackage "kendra" "3.8.0" + "sha256-huXu2WzRlU0Oqi1T0pJeFbcpBdOPNX99fxm1LLD4VG4="; types-aiobotocore-kendra-ranking = - buildTypesAiobotocorePackage "kendra-ranking" "3.7.0" - "sha256-SMSIoG34aeFm197vQAe2KQHEtGApUya2sY6othhRYRQ="; + buildTypesAiobotocorePackage "kendra-ranking" "3.8.0" + "sha256-h2EEdT05YIGgMxGrJim2z2gbu9AEPPBGgLeK5NR5NSc="; types-aiobotocore-keyspaces = - buildTypesAiobotocorePackage "keyspaces" "3.7.0" - "sha256-OIb4U993Ofjb11F5Rr0B722LrT280M9bAgebbrqcdlU="; + buildTypesAiobotocorePackage "keyspaces" "3.8.0" + "sha256-oURHyFE4CmtYgKeh9Un4we5/jARmS2xkDVYF3BjX8CY="; types-aiobotocore-kinesis = - buildTypesAiobotocorePackage "kinesis" "3.7.0" - "sha256-0kUorAAX8c85DaK1tLCB3+kfRhSLgLeymwW+P07lh70="; + buildTypesAiobotocorePackage "kinesis" "3.8.0" + "sha256-mBIHJXjPoRLabwbhfyFHU2Wv21JdE4EBFAf/ocv95sM="; types-aiobotocore-kinesis-video-archived-media = - buildTypesAiobotocorePackage "kinesis-video-archived-media" "3.7.0" - "sha256-/+d8uU49ECUa8n54rHI+35fG7wwXBHpblf1HZiAKSu4="; + buildTypesAiobotocorePackage "kinesis-video-archived-media" "3.8.0" + "sha256-kgJ5SCIXcz9ztkRtOMxOkC4nv/u8PXTBmN83fa0hQ0E="; types-aiobotocore-kinesis-video-media = - buildTypesAiobotocorePackage "kinesis-video-media" "3.7.0" - "sha256-R+guEYKMgzXxZUF8QKi833hJ6XaLMmxWAWy91ncXll4="; + buildTypesAiobotocorePackage "kinesis-video-media" "3.8.0" + "sha256-jyEOwGHkNQN18likJXyTv6yIv+/YJzdpvBhjDtUtg3Y="; types-aiobotocore-kinesis-video-signaling = - buildTypesAiobotocorePackage "kinesis-video-signaling" "3.7.0" - "sha256-BVcx4TGVRYZTuOOZzg2Iks5TXeq+vAFcij+QSeQ9svE="; + buildTypesAiobotocorePackage "kinesis-video-signaling" "3.8.0" + "sha256-SMUkYTv2NP93xpVulnBT4KBrctpA6u1lvdkH6btsnb8="; types-aiobotocore-kinesis-video-webrtc-storage = - buildTypesAiobotocorePackage "kinesis-video-webrtc-storage" "3.7.0" - "sha256-TEfXDpFrxyyiEzkzPUQsA+m6nmkGH/HeeGX4BroBuNo="; + buildTypesAiobotocorePackage "kinesis-video-webrtc-storage" "3.8.0" + "sha256-VaCcwzAylyh3mSLQYf4vOi7J8l+S5fH9h+h+0h9wRCo="; types-aiobotocore-kinesisanalytics = - buildTypesAiobotocorePackage "kinesisanalytics" "3.7.0" - "sha256-A+WSXNq/LSaMeAvBKSk9VQWysF29DoJydiyDwyZFuus="; + buildTypesAiobotocorePackage "kinesisanalytics" "3.8.0" + "sha256-1TBFgx//FZ5iqp9Skx2Nnv3D2nCG48mIkAGdo/FgrV8="; types-aiobotocore-kinesisanalyticsv2 = - buildTypesAiobotocorePackage "kinesisanalyticsv2" "3.7.0" - "sha256-iI3raCdgb2HEECR24HsqRDma9aJKR16gxWPLjsxpTEQ="; + buildTypesAiobotocorePackage "kinesisanalyticsv2" "3.8.0" + "sha256-1cLDZQ16ZArmsZnwcsxSngEyMKqhU/5Szwa8hMMIiTM="; types-aiobotocore-kinesisvideo = - buildTypesAiobotocorePackage "kinesisvideo" "3.7.0" - "sha256-K4gHQR6Brhb/kV0Cwkq9Oi9VsQD+3AgerzOIegrbgCc="; + buildTypesAiobotocorePackage "kinesisvideo" "3.8.0" + "sha256-Q3n4qm2WSxdRRz8QHqOe9cNNTRm0QWt6eC2gRklQ2bE="; types-aiobotocore-kms = - buildTypesAiobotocorePackage "kms" "3.7.0" - "sha256-DSa+PtKezDfUDyY2SGSZw373zWrrRTe6s08lUK/DAz0="; + buildTypesAiobotocorePackage "kms" "3.8.0" + "sha256-lod8LBtkel5M9uNcGN9qHB9euCpd9mcjUtV9xDV48zE="; types-aiobotocore-lakeformation = - buildTypesAiobotocorePackage "lakeformation" "3.7.0" - "sha256-hS3yT+IU7Xcaw1xZX70d3wj3T+7r00jbmrVARsLp39c="; + buildTypesAiobotocorePackage "lakeformation" "3.8.0" + "sha256-zBJGH6fWDGwvNELNYzctxiC3+22f3SI/IMS/z+iwr1E="; types-aiobotocore-lambda = - buildTypesAiobotocorePackage "lambda" "3.7.0" - "sha256-KTfLhBF5045trIEuHci7qjqvNVdJhAKaHcrIv/T4sxw="; + buildTypesAiobotocorePackage "lambda" "3.8.0" + "sha256-7vLLgWhsOMoPcWMsPOGudyjs0f1wV1SH4A9T2hn1Zjo="; types-aiobotocore-lex-models = - buildTypesAiobotocorePackage "lex-models" "3.7.0" - "sha256-b4anWJAGn8cL9SQjCMFf9xNcOOY0MclOU9ecEnJotCk="; + buildTypesAiobotocorePackage "lex-models" "3.8.0" + "sha256-jdy7WhiaiZOK6XvgHEqp1zQ/3bEs7vF8b2Pj7IJi45A="; types-aiobotocore-lex-runtime = - buildTypesAiobotocorePackage "lex-runtime" "3.7.0" - "sha256-hhjmbBwTzimKrqE159ibSh+DtoTHzA9YlnkYGwJJnJc="; + buildTypesAiobotocorePackage "lex-runtime" "3.8.0" + "sha256-1/4zdVgYZumB011ZK8+gPpUh647+rUmkskVfxdPHSgk="; types-aiobotocore-lexv2-models = - buildTypesAiobotocorePackage "lexv2-models" "3.7.0" - "sha256-vV/4Nl3ELcNSV7lZ65ViOHvpioqOEtTRSyHOVQfT73s="; + buildTypesAiobotocorePackage "lexv2-models" "3.8.0" + "sha256-VQD2eEuv4rsBixQJGsTV3Ndz6pcswhOB0OzBzXp/FLk="; types-aiobotocore-lexv2-runtime = - buildTypesAiobotocorePackage "lexv2-runtime" "3.7.0" - "sha256-2UYtKDytIwMT1zLAn4dUxICrpNFWR+kBsThvCxK8aJQ="; + buildTypesAiobotocorePackage "lexv2-runtime" "3.8.0" + "sha256-f9NlmQn80W8sNI+a7un7hWI75KNwnTU5lu8kwbSmKb8="; types-aiobotocore-license-manager = - buildTypesAiobotocorePackage "license-manager" "3.7.0" - "sha256-nKN9IeGRw61x19GZ4y5icE+dAMB0GXHIRT8oh4WpRKw="; + buildTypesAiobotocorePackage "license-manager" "3.8.0" + "sha256-8cNAO3Nz3kFIh0oGX+jdrzv0iTC7IeyzY2y8vigG1bU="; types-aiobotocore-license-manager-linux-subscriptions = - buildTypesAiobotocorePackage "license-manager-linux-subscriptions" "3.7.0" - "sha256-p4NDE7+zD79nrrIYOaVz8lkBD90AfhCevcbkfqfY1Eg="; + buildTypesAiobotocorePackage "license-manager-linux-subscriptions" "3.8.0" + "sha256-qk6/UDjY7eozxMOMU1nZzStLQcTGa6qzuAnIeTnp2Wk="; types-aiobotocore-license-manager-user-subscriptions = - buildTypesAiobotocorePackage "license-manager-user-subscriptions" "3.7.0" - "sha256-mGF2VTVdjbLl8BHd3UY0qoC9YsffI2q118O+s9tTQxI="; + buildTypesAiobotocorePackage "license-manager-user-subscriptions" "3.8.0" + "sha256-3pz254sSbO9+3n1RmGz9ijZ5yjHSWNF5Suv87BQwNPo="; types-aiobotocore-lightsail = - buildTypesAiobotocorePackage "lightsail" "3.7.0" - "sha256-pV3XxpkyNwhhhPcxm6oKYqvYblQs2YljltZqo1uMlq8="; + buildTypesAiobotocorePackage "lightsail" "3.8.0" + "sha256-QHPLmYurrvAqMBWK0ShxbKMjd9fMwnPtHxPF/khk7u0="; types-aiobotocore-location = - buildTypesAiobotocorePackage "location" "3.7.0" - "sha256-aKRDwrS6IJXcLr/YDFAsdfOHW7z9yOGALqwDcTd22UY="; + buildTypesAiobotocorePackage "location" "3.8.0" + "sha256-ZDnwMOwYDHTFGh5pO6oIO+9VSP3FrcOOvEeLL1o5+D8="; types-aiobotocore-logs = - buildTypesAiobotocorePackage "logs" "3.7.0" - "sha256-rLnfIWBZb/NlO7JJ3l6H/1upo5QXl7ti1cSZfwjzzKs="; + buildTypesAiobotocorePackage "logs" "3.8.0" + "sha256-cOs24Ubxda0lHuEqNMWUWBRIFc+viNqzWiyhRUdtVQo="; types-aiobotocore-lookoutequipment = - buildTypesAiobotocorePackage "lookoutequipment" "3.7.0" - "sha256-50MhZxpCiPxReKMwF0W+5QGXwPNU4Y//TwHKHvlhxA8="; + buildTypesAiobotocorePackage "lookoutequipment" "3.8.0" + "sha256-ozpbCLckple24vE5SoKmrMYcG6bueGRcm9K+/h3aofA="; types-aiobotocore-lookoutmetrics = buildTypesAiobotocorePackage "lookoutmetrics" "2.24.2" @@ -868,164 +868,164 @@ in "sha256-HvNqynXLpYFJceCmrlncodqWuoczilMB8QtbCS5pcDM="; types-aiobotocore-m2 = - buildTypesAiobotocorePackage "m2" "3.7.0" - "sha256-2cKO/R6yT7uP7+CFfPPMi/e+yR7O/14hqp6XY8CaalM="; + buildTypesAiobotocorePackage "m2" "3.8.0" + "sha256-tu3INobdh97DVaVSL6jhihffTOaXAuXwMRJ7IygAM58="; types-aiobotocore-machinelearning = - buildTypesAiobotocorePackage "machinelearning" "3.7.0" - "sha256-0n8nOUlpG2DwLItruS0rV9f5tPLNb1FxQilq02+qvBM="; + buildTypesAiobotocorePackage "machinelearning" "3.8.0" + "sha256-xz7Z9lMcYt7defxAjQh1hcz3KlgaiXzXm+kuyd6K7jg="; types-aiobotocore-macie = buildTypesAiobotocorePackage "macie" "2.7.0" "sha256-hJJtGsK2b56nKX1ZhiarC+ffyjHYWRiC8II4oyDZWWw="; types-aiobotocore-macie2 = - buildTypesAiobotocorePackage "macie2" "3.7.0" - "sha256-26ohDMcZu1D2LdKL4+g6nGnJj1wA37Ap7hpnwk1ndYM="; + buildTypesAiobotocorePackage "macie2" "3.8.0" + "sha256-WnEfs2fgIFZWgZzUVYdhWxrfvoDPpse2YilpH2FsM1s="; types-aiobotocore-managedblockchain = - buildTypesAiobotocorePackage "managedblockchain" "3.7.0" - "sha256-h0FB2boqcLTxH41i354OXTd7K3KORVSn/kaBaHXuCIg="; + buildTypesAiobotocorePackage "managedblockchain" "3.8.0" + "sha256-7UN+fAnnRG+Yi3dHDT+R/BgrLpHNQaN89rmfZb55Ipg="; types-aiobotocore-managedblockchain-query = - buildTypesAiobotocorePackage "managedblockchain-query" "3.7.0" - "sha256-Z93SanbnjcJNE6LMsQ1nXoTBvXziH0cDA6QpLUZgfdM="; + buildTypesAiobotocorePackage "managedblockchain-query" "3.8.0" + "sha256-lDQW4Uo/qhurLCKdXEWOPyIcdVqox23QRYtGFlnOHJM="; types-aiobotocore-marketplace-catalog = - buildTypesAiobotocorePackage "marketplace-catalog" "3.7.0" - "sha256-50F8u/yNHqPP9ajuQxsaswZ7/THwa6Qb3tN0dH5KJ6A="; + buildTypesAiobotocorePackage "marketplace-catalog" "3.8.0" + "sha256-J5+DxPPGvlPd2eic4cimuwk4MGXY9p9siLHvqGxNjCs="; types-aiobotocore-marketplace-entitlement = - buildTypesAiobotocorePackage "marketplace-entitlement" "3.7.0" - "sha256-EDOLl8tLN9bkkY5xlvJ0DriSUd6zKDN69FWvy4d1iNE="; + buildTypesAiobotocorePackage "marketplace-entitlement" "3.8.0" + "sha256-+sAcUqwa2XAUNQ4HCBhCBxwkWDR/GMmT83/naBHFio0="; types-aiobotocore-marketplacecommerceanalytics = - buildTypesAiobotocorePackage "marketplacecommerceanalytics" "3.7.0" - "sha256-O6rRe0lXvmRJT2rWuxtedQTKURsa8JtcIsWbKqEQrx4="; + buildTypesAiobotocorePackage "marketplacecommerceanalytics" "3.8.0" + "sha256-dV1yF+Ltf7XSYkEtQptQ1XggS2+zOq7qufW2PrOQBnQ="; types-aiobotocore-mediaconnect = - buildTypesAiobotocorePackage "mediaconnect" "3.7.0" - "sha256-RbLOw72DKVB2FVEvXMDa8Ouio338eVbjvQFrl7tgyv8="; + buildTypesAiobotocorePackage "mediaconnect" "3.8.0" + "sha256-lZBE16p54nyEBLEiQKISDf6og63Ks9OOU61gUh/f6cw="; types-aiobotocore-mediaconvert = - buildTypesAiobotocorePackage "mediaconvert" "3.7.0" - "sha256-GVkMEMBN+gZ5uNs9OIGUJdqP4xu9r4Lfmqx9PQhr/5o="; + buildTypesAiobotocorePackage "mediaconvert" "3.8.0" + "sha256-LIoZJQx4VquorbRYkEGSOXC3pZPtE8xBrZaYCGvjPv0="; types-aiobotocore-medialive = - buildTypesAiobotocorePackage "medialive" "3.7.0" - "sha256-bgPnY/uoux2DMJLXckptUZ8i+JykTuGHpI0Rryee0x0="; + buildTypesAiobotocorePackage "medialive" "3.8.0" + "sha256-UpiSk5rA6Oo7AmRenzktgyBUMriaji1hxBCfAnW7L64="; types-aiobotocore-mediapackage = - buildTypesAiobotocorePackage "mediapackage" "3.7.0" - "sha256-IbyWAA75EW+gdgoNuAjSmoJPowfWN9QXAcu/PAqHfp4="; + buildTypesAiobotocorePackage "mediapackage" "3.8.0" + "sha256-D83ZhZrKaiICVjxmvxp7t9ZHZM1O1Zl5cspzaULHYfw="; types-aiobotocore-mediapackage-vod = - buildTypesAiobotocorePackage "mediapackage-vod" "3.7.0" - "sha256-+IN5LP5YXdPMD0bFtV7fTbdCSfHUBnYVwv/9ViSbTbY="; + buildTypesAiobotocorePackage "mediapackage-vod" "3.8.0" + "sha256-v7zj1usdOPaxmhBVnGsSqny7DlNn3Z7MUY7HFWpyfV0="; types-aiobotocore-mediapackagev2 = - buildTypesAiobotocorePackage "mediapackagev2" "3.7.0" - "sha256-cdanrM2oyC1WB1A7QqHwWP05TSMM5znFsBuMEywpqRk="; + buildTypesAiobotocorePackage "mediapackagev2" "3.8.0" + "sha256-symkhiZs8OkjSdbp52R7TTVhih2a3unxvPKqN6CCpwQ="; types-aiobotocore-mediastore = - buildTypesAiobotocorePackage "mediastore" "3.7.0" - "sha256-fH7AhkoSIS8H/WpDCFPMGoHysKm7om5WOvxQV0PRpkw="; + buildTypesAiobotocorePackage "mediastore" "3.8.0" + "sha256-ctWui2wOqCfTGNgrfNOLx5py2zSxx40Li6w0IWGRbmw="; types-aiobotocore-mediastore-data = - buildTypesAiobotocorePackage "mediastore-data" "3.7.0" - "sha256-Rf/YMU/+87Ow46SYOTo31Bw4f4vNa2ehl/+MviHAiBU="; + buildTypesAiobotocorePackage "mediastore-data" "3.8.0" + "sha256-oS1Ewj4mg0oC6Cj2rp+FxfzdhrRk4WL8eqnZIfbRGBc="; types-aiobotocore-mediatailor = - buildTypesAiobotocorePackage "mediatailor" "3.7.0" - "sha256-f0oWra49sGxwHanbiGL/Tr4jtmW+L/ZebuoihIbJ8RI="; + buildTypesAiobotocorePackage "mediatailor" "3.8.0" + "sha256-DKvktjROiAhR0sYL3f5Kbxf7NDmQs0cI1oXdF+H7Dc8="; types-aiobotocore-medical-imaging = - buildTypesAiobotocorePackage "medical-imaging" "3.7.0" - "sha256-LiXRPLNDdD3EZtxA91KE7PwQeuu7UTMy4h2+2UyvAu4="; + buildTypesAiobotocorePackage "medical-imaging" "3.8.0" + "sha256-fklKVVPLhZP86zoLgTzBWixEa6cR9qkwXOzAxcWvBHs="; types-aiobotocore-memorydb = - buildTypesAiobotocorePackage "memorydb" "3.7.0" - "sha256-4koH10MxS7Fspt/46Fl9fDP2n9qQZr+xjBbIkB6neFE="; + buildTypesAiobotocorePackage "memorydb" "3.8.0" + "sha256-mU044LDeWhZBVkev4uuXO8E7PGex8a6tBSuFrQk+kc8="; types-aiobotocore-meteringmarketplace = - buildTypesAiobotocorePackage "meteringmarketplace" "3.7.0" - "sha256-QfWmkSyhQaGvKJUzouVjuvuMZNKI05D9z711X8JXwqA="; + buildTypesAiobotocorePackage "meteringmarketplace" "3.8.0" + "sha256-jLqguMoVgDmxp7BgcfHkJlOICBjfQ0ncr/CSuayMvUI="; types-aiobotocore-mgh = - buildTypesAiobotocorePackage "mgh" "3.7.0" - "sha256-Fblevjw0kgxdiGZiDOW9weTde0/bvOJnbxy6SYzbeJQ="; + buildTypesAiobotocorePackage "mgh" "3.8.0" + "sha256-5u4c2Iq0Z/DdoEXMeJrqRJq0Pq8y23RPCs74FZSdPj8="; types-aiobotocore-mgn = - buildTypesAiobotocorePackage "mgn" "3.7.0" - "sha256-7pHSbM1pbFCFYyZyVHtNeR4I1NpzVn5PJTHCGSQOTI0="; + buildTypesAiobotocorePackage "mgn" "3.8.0" + "sha256-/IDxkXpXYZ7NiwgRHr9cFqgEfyvQ3hXQAewMFPiVk78="; types-aiobotocore-migration-hub-refactor-spaces = - buildTypesAiobotocorePackage "migration-hub-refactor-spaces" "3.7.0" - "sha256-i6mS7XiOv2p01gGEYG6Fxfrv8pu/gBSTUTbPKmIZqTw="; + buildTypesAiobotocorePackage "migration-hub-refactor-spaces" "3.8.0" + "sha256-bYL2KIZEHc8HzpnOeSx5L3UxgfgW+XrG/VJ00nikbB0="; types-aiobotocore-migrationhub-config = - buildTypesAiobotocorePackage "migrationhub-config" "3.7.0" - "sha256-BqDHdM/QIuPZJGmFPULrcd4iBmgtIbZ9/YJgpkFyN7E="; + buildTypesAiobotocorePackage "migrationhub-config" "3.8.0" + "sha256-BxI8KWGoIxNFNXRRz0DRo2Sz5xkg9nzPtDHq+0VmutU="; types-aiobotocore-migrationhuborchestrator = - buildTypesAiobotocorePackage "migrationhuborchestrator" "3.7.0" - "sha256-y60op/mf/uCaRS2/VVVEV5rFnjRwgX7KuS3Londw6wM="; + buildTypesAiobotocorePackage "migrationhuborchestrator" "3.8.0" + "sha256-eZNeyVD/zx1ePuw1Ugnqj5nZMzqI5Vf3FXJLHFXPKCg="; types-aiobotocore-migrationhubstrategy = - buildTypesAiobotocorePackage "migrationhubstrategy" "3.7.0" - "sha256-ajIv0gOby+w/hFcsqJGVZavdNtwSOyopLW1eV3piQTg="; + buildTypesAiobotocorePackage "migrationhubstrategy" "3.8.0" + "sha256-Q4APJE/eQ+8il1CQVEJTuVsIuNQ36On/riIfMnnqQgQ="; types-aiobotocore-mobile = buildTypesAiobotocorePackage "mobile" "2.13.2" "sha256-OxB91BCAmYnY72JBWZaBlEkpAxN2Q5aY4i1Pt3eD9hc="; types-aiobotocore-mq = - buildTypesAiobotocorePackage "mq" "3.7.0" - "sha256-/GatR9n9ILxDnvBH0pTYAD1kQIm3NYPt4P8/au2YYAY="; + buildTypesAiobotocorePackage "mq" "3.8.0" + "sha256-eew4+yeRvT7uUuZu1IwzP2qwHkjADvZRmTe3xSZVUHY="; types-aiobotocore-mturk = - buildTypesAiobotocorePackage "mturk" "3.7.0" - "sha256-C4nnrlJ967Y5GKawRd+r6pUddZis2J+p+GZJPtWU7w8="; + buildTypesAiobotocorePackage "mturk" "3.8.0" + "sha256-lmcFY4eKCULjOCess2UeEqmUStpOk1DuNOqJj3EJGgw="; types-aiobotocore-mwaa = - buildTypesAiobotocorePackage "mwaa" "3.7.0" - "sha256-zHeGd6dmRpzPsKIFNxlD3OZbNCFH7MHGvy1efCOdvDo="; + buildTypesAiobotocorePackage "mwaa" "3.8.0" + "sha256-2q1Ju+70xhikArmKdIfxRXFBVUa8x3EV7/pjfA8E9YE="; types-aiobotocore-neptune = - buildTypesAiobotocorePackage "neptune" "3.7.0" - "sha256-097F7wyV2MDe6PQb0FVPEBl3lbjASxuBN2L2/OD7Gy8="; + buildTypesAiobotocorePackage "neptune" "3.8.0" + "sha256-0EHB+tUKqpKhWm3ykARXvyU5fmP+FyanPin0qn8zA6M="; types-aiobotocore-network-firewall = - buildTypesAiobotocorePackage "network-firewall" "3.7.0" - "sha256-MHIv0SSsCfHTL/toCQIZ3sbS6qNEUgPdtLLFLUzsewU="; + buildTypesAiobotocorePackage "network-firewall" "3.8.0" + "sha256-x0xxdxHZCU8Shovn8F1YaBkEAbnKw0xWA/KPeC+BUvE="; types-aiobotocore-networkmanager = - buildTypesAiobotocorePackage "networkmanager" "3.7.0" - "sha256-+mrwp/UZkYABXKsj8QCEYPIMWkKKkucrleYZstb2p2c="; + buildTypesAiobotocorePackage "networkmanager" "3.8.0" + "sha256-aN4h4udMGDx6REgK2BDp3ADK8YHrnbSdZskr5WyMRqo="; types-aiobotocore-networkmonitor = - buildTypesAiobotocorePackage "networkmonitor" "3.7.0" - "sha256-TACN40HBZMyFJauZxyl/zkZ3E0hpKClXQ7Zu+IQIl4U="; + buildTypesAiobotocorePackage "networkmonitor" "3.8.0" + "sha256-MbEMeXR6x9Dzu6YakHlQAuwH/1hTl/+X8102SalQElE="; types-aiobotocore-nimble = buildTypesAiobotocorePackage "nimble" "2.15.2" "sha256-PChX5Jbgr0d1YaTZU9AbX3cM7NrhkyunK6/X3l+I8Q0="; types-aiobotocore-oam = - buildTypesAiobotocorePackage "oam" "3.7.0" - "sha256-MpE/onrGp8MojaOsG7W9XQXmpRBpTg1omX4C3XWRjJE="; + buildTypesAiobotocorePackage "oam" "3.8.0" + "sha256-VoK+31HqheJv4WW95RbH0MEGIeBskZ0JHrVpgKqYjuM="; types-aiobotocore-omics = - buildTypesAiobotocorePackage "omics" "3.7.0" - "sha256-Xl7L6xJuJqrylDv5+TDN6QXlNP9mwcedfOaQVdOBhuw="; + buildTypesAiobotocorePackage "omics" "3.8.0" + "sha256-4nhGLCkM0qiAK35yBFbhGSG7gJVsiiqv67lJRb12YiM="; types-aiobotocore-opensearch = - buildTypesAiobotocorePackage "opensearch" "3.7.0" - "sha256-ICDHHEGzqZjhwJhz6ixzYmbkbi8BAx2xwKMA5VGwxk8="; + buildTypesAiobotocorePackage "opensearch" "3.8.0" + "sha256-d0jbWssa20R1iLeDfBB01C7p2Kc0C7ILc/RrJOLD6q4="; types-aiobotocore-opensearchserverless = - buildTypesAiobotocorePackage "opensearchserverless" "3.7.0" - "sha256-n+Ql55Ez1yBoBPz9liiIBvAd7EOfb426CAI9YnrBnlg="; + buildTypesAiobotocorePackage "opensearchserverless" "3.8.0" + "sha256-zMrlnrUdt587repiH9siJvBrC81v5DB6OcXuKyZ/RRM="; types-aiobotocore-opsworks = buildTypesAiobotocorePackage "opsworks" "2.24.2" @@ -1036,92 +1036,92 @@ in "sha256-i+qoE5XXWpZ7dQeDagkD2MhnBjwbKTJYyZxATDh8h9M="; types-aiobotocore-organizations = - buildTypesAiobotocorePackage "organizations" "3.7.0" - "sha256-hy0V/KEpom/cLWqA05M2gIanqfgwssDmpX8lQRvxrlw="; + buildTypesAiobotocorePackage "organizations" "3.8.0" + "sha256-JaIvQwOaTvvXCgTwZGTzi6lRpZRS953Mc/MjZDHiNNI="; types-aiobotocore-osis = - buildTypesAiobotocorePackage "osis" "3.7.0" - "sha256-MScBO8kqGTyiR7QPPHBKiWoRYPumJFKpWMpk3Or9dFQ="; + buildTypesAiobotocorePackage "osis" "3.8.0" + "sha256-hSk0D2JRC2DSG8qkpig2nMdwzAj5PoBNwpZmAtmgWMo="; types-aiobotocore-outposts = - buildTypesAiobotocorePackage "outposts" "3.7.0" - "sha256-X6OpBYzayqIBgf/d7xNjvykOu6F4fBc9wPCsL1EkzLs="; + buildTypesAiobotocorePackage "outposts" "3.8.0" + "sha256-dYBP/dI9HUhmGfLJYl4+/RH801h27N8yAcHMS4VX4T8="; types-aiobotocore-panorama = buildTypesAiobotocorePackage "panorama" "3.7.0" "sha256-yn1EAIvzNfFR1a3r8y9Ri5nOdprgEAYBuXw2Wt1hYIs="; types-aiobotocore-payment-cryptography = - buildTypesAiobotocorePackage "payment-cryptography" "3.7.0" - "sha256-pFRQxEnL6iaxCbPNF3veZE1cUhpdLF/H2+e8BFzRmjI="; + buildTypesAiobotocorePackage "payment-cryptography" "3.8.0" + "sha256-4q1QYDmeVcxIkNq7z0OIE1aK8seWKhJtqFsaZQ5oC/Y="; types-aiobotocore-payment-cryptography-data = - buildTypesAiobotocorePackage "payment-cryptography-data" "3.7.0" - "sha256-2JqM7rFvb+GOJj9g34RfnvC658DGxmR2zCmfSn5P3oo="; + buildTypesAiobotocorePackage "payment-cryptography-data" "3.8.0" + "sha256-eGgQ9EM3ZMX/wpuyN7bU10IBD+k4WfuQ6vhbvFsOGaY="; types-aiobotocore-personalize = - buildTypesAiobotocorePackage "personalize" "3.7.0" - "sha256-6sYcu1dPGuNButE/QiFxekliyy9FrKwo/56lVe08VbI="; + buildTypesAiobotocorePackage "personalize" "3.8.0" + "sha256-gTNNWV3BfpW+8RxChIT/020o0pP7fJV5XmQ0aHVpe1I="; types-aiobotocore-personalize-events = - buildTypesAiobotocorePackage "personalize-events" "3.7.0" - "sha256-LiOfdcaJccXv1gCwIqdJ4mO6BgwR0Qe8+W3/caMA5Zg="; + buildTypesAiobotocorePackage "personalize-events" "3.8.0" + "sha256-B1eYaw8kVq5VdCLvbHYdsAiKGi3gAAUDBt3SxH3o1ak="; types-aiobotocore-personalize-runtime = - buildTypesAiobotocorePackage "personalize-runtime" "3.7.0" - "sha256-CAvnEMX7hfAKnl8VSUAVk1KLvm4SXMRNR7HlthSzy0k="; + buildTypesAiobotocorePackage "personalize-runtime" "3.8.0" + "sha256-Ja/Ul0q7BwrKzC9+snrsYzVfB6PZ5tmNDgCWl0Hmp8Q="; types-aiobotocore-pi = - buildTypesAiobotocorePackage "pi" "3.7.0" - "sha256-oj2oswbo0sZ9lJ8Sa7Vb9w+Fq2LQTqBK/krZpSyWnzQ="; + buildTypesAiobotocorePackage "pi" "3.8.0" + "sha256-WU4COLkd+390YWKb8UdxZUL5OOi0lEXqPkBJUxAMBAw="; types-aiobotocore-pinpoint = - buildTypesAiobotocorePackage "pinpoint" "3.7.0" - "sha256-Od3FqXiKKb0JlpY0xh5RLylKGA6HMmvb4KqeXm/aeKU="; + buildTypesAiobotocorePackage "pinpoint" "3.8.0" + "sha256-1KPJkHGhHqATvvzeQLTyX09DtxUhtfSRBqWOs/SGF6c="; types-aiobotocore-pinpoint-email = - buildTypesAiobotocorePackage "pinpoint-email" "3.7.0" - "sha256-A30vr6kQKDsfHfvmrslKJdbsXLAmhT+pmqFHmQ6q9kc="; + buildTypesAiobotocorePackage "pinpoint-email" "3.8.0" + "sha256-+2FHKZX4d7dY7q/wlw0he8wQb7fi1nMcq9tiLsP4a1o="; types-aiobotocore-pinpoint-sms-voice = - buildTypesAiobotocorePackage "pinpoint-sms-voice" "3.7.0" - "sha256-t/ijYqFZfqGSUrA1UshxCV4PZsDWQWzcGmUugD5DNgY="; + buildTypesAiobotocorePackage "pinpoint-sms-voice" "3.8.0" + "sha256-NtGcQU1j+LXng/BYGex7ftL3rtQJKDtZPuhKKSiZGtE="; types-aiobotocore-pinpoint-sms-voice-v2 = - buildTypesAiobotocorePackage "pinpoint-sms-voice-v2" "3.7.0" - "sha256-0DAOHdYMd/YNmtTOoNcQXh4UDr9A2dJacmck9b2fL8M="; + buildTypesAiobotocorePackage "pinpoint-sms-voice-v2" "3.8.0" + "sha256-mi5hfaAROkvhfYBAXQr1CPjGoOLqMsVjkqYmTQQDsBg="; types-aiobotocore-pipes = - buildTypesAiobotocorePackage "pipes" "3.7.0" - "sha256-kJXcyOgXif+mmUbU1uKXfsOm94WfgsIcVeymaOHr99U="; + buildTypesAiobotocorePackage "pipes" "3.8.0" + "sha256-P2Hu+qj36SDxpf9GXxpNc8aMTaxiIAsefT1eeLtAe6g="; types-aiobotocore-polly = - buildTypesAiobotocorePackage "polly" "3.7.0" - "sha256-Ps/gSJwoAMX1NN961uSM5Sxe3hMQewlJgn7A2zwYCis="; + buildTypesAiobotocorePackage "polly" "3.8.0" + "sha256-Ylsp/MRIw3oCh21QUp0/8TzqwKmAmo7xxcVB8t7iNCQ="; types-aiobotocore-pricing = - buildTypesAiobotocorePackage "pricing" "3.7.0" - "sha256-S+03Ujuxg+PdJzedB3kbDHxBC3JKrdTRiOXtcY2kbfQ="; + buildTypesAiobotocorePackage "pricing" "3.8.0" + "sha256-0UYCz0HdXkycYk+w2E4H/AVrGWaFpQ94utXyBieiNO4="; types-aiobotocore-privatenetworks = buildTypesAiobotocorePackage "privatenetworks" "2.22.0" "sha256-yaYvgVKcr3l2eq0dMzmQEZHxgblTLlVF9cZRnObiB7M="; types-aiobotocore-proton = - buildTypesAiobotocorePackage "proton" "3.7.0" - "sha256-muGL/lOWt2mRCQduEOC0jYxPEECeHqNIaIszXwNVCJI="; + buildTypesAiobotocorePackage "proton" "3.8.0" + "sha256-x73B2DyuhOGtTBZwuoG7s/USu4c29Qs2mq9Qjc6SOYg="; types-aiobotocore-qapps = - buildTypesAiobotocorePackage "qapps" "3.7.0" - "sha256-TKuyEigjUuqx5pNU3CPXce+vpp5l9vvp1vOjL8sr3ec="; + buildTypesAiobotocorePackage "qapps" "3.8.0" + "sha256-bXh+xsVd2Rzgz0ze73e6UqTyFR8V1mcNr+FGqIYotcw="; types-aiobotocore-qbusiness = - buildTypesAiobotocorePackage "qbusiness" "3.7.0" - "sha256-3OMotaulvLUsnEkpRicSyQNnHfwfG190fSem2+yfKIg="; + buildTypesAiobotocorePackage "qbusiness" "3.8.0" + "sha256-9E6QJ9/jEwo4Zm1vrSX8LmSvk0rNr63iAwyn5A3FipE="; types-aiobotocore-qconnect = - buildTypesAiobotocorePackage "qconnect" "3.7.0" - "sha256-PoUit9W0/vnqQIdEUjzAoq8wgLGCN5+Z0gh7MK/akXU="; + buildTypesAiobotocorePackage "qconnect" "3.8.0" + "sha256-AAQfQECzT/PGyU3ZPlRAJdcKKe0oBejIcN+Uvg4Ae8Y="; types-aiobotocore-qldb = buildTypesAiobotocorePackage "qldb" "2.24.2" @@ -1132,196 +1132,196 @@ in "sha256-Lk9RLigcg4F/AsgKneBUoyPyeUh46ra+BLCw94b74eU="; types-aiobotocore-quicksight = - buildTypesAiobotocorePackage "quicksight" "3.7.0" - "sha256-XPpNfJlaH5+S1lXX9ExJ/Z7InAira93TQpI73/x+Gck="; + buildTypesAiobotocorePackage "quicksight" "3.8.0" + "sha256-Hy4YuHmQLl+8aQo+HNsaUhHlHx7ImLwVrV5XU1jp4Tg="; types-aiobotocore-ram = - buildTypesAiobotocorePackage "ram" "3.7.0" - "sha256-xXjZghdJfD63mEPatjo3we+wXr+RhUm5SyBLM9DvmbY="; + buildTypesAiobotocorePackage "ram" "3.8.0" + "sha256-8pj/XXHLXRqvWBNsVoKubplfV69aSVpHZnJKCU3Jijw="; types-aiobotocore-rbin = - buildTypesAiobotocorePackage "rbin" "3.7.0" - "sha256-lOkl3CjpOZjjpOQT3J8bsP4H7l9JybJX5w352LEAXR0="; + buildTypesAiobotocorePackage "rbin" "3.8.0" + "sha256-66izw8WsRm5ry3antqdF4z8KEjqJkdqcICi1/gJvIJw="; types-aiobotocore-rds = - buildTypesAiobotocorePackage "rds" "3.7.0" - "sha256-N1f/0k1IlBzg7UbF/Xuty6DvJLnPdUOxhqDYalVOxJ0="; + buildTypesAiobotocorePackage "rds" "3.8.0" + "sha256-hYAZVdOkeDg1yQmnMj+3+obf776Q/hTJMdEJciROF54="; types-aiobotocore-rds-data = - buildTypesAiobotocorePackage "rds-data" "3.7.0" - "sha256-9c/PWUy/c/7vrF95M/lZUJ6Fp8PvhBX1Jzff3MeAnpE="; + buildTypesAiobotocorePackage "rds-data" "3.8.0" + "sha256-s7sEAW5AfVxmDRIqFydLFSrkKfVZkSDrJ8ddO7VbOxU="; types-aiobotocore-redshift = - buildTypesAiobotocorePackage "redshift" "3.7.0" - "sha256-fo9upMExqXAjcQmCeXz9pDXBW4ppOe+EHHj1sOuQvfg="; + buildTypesAiobotocorePackage "redshift" "3.8.0" + "sha256-tM5tEgTsiv6wwcogndckhahT1sX6jwW9gi8PqOR7QR8="; types-aiobotocore-redshift-data = - buildTypesAiobotocorePackage "redshift-data" "3.7.0" - "sha256-H00XQfkDIBtmhEuAiy2+V+er+P2MsJl841xQAipAcHo="; + buildTypesAiobotocorePackage "redshift-data" "3.8.0" + "sha256-FKAr4sj2PlnWylszTjEo6pi6uyyIs9dUJgN5Z+PvF5c="; types-aiobotocore-redshift-serverless = - buildTypesAiobotocorePackage "redshift-serverless" "3.7.0" - "sha256-0PUZiN7F9iQxYxN9ZXb6q60UNu4Ce7sC34TSPOOzyg0="; + buildTypesAiobotocorePackage "redshift-serverless" "3.8.0" + "sha256-Q+2u1devvhGEhfrngDMtjieU4NomJW3qUIuEKC4Edrc="; types-aiobotocore-rekognition = - buildTypesAiobotocorePackage "rekognition" "3.7.0" - "sha256-YEPKovf1EwVjK8MOBfCdASiEYEHoamd+qe+2OcJLO4M="; + buildTypesAiobotocorePackage "rekognition" "3.8.0" + "sha256-p1VZoe1+XZjBR1vY+0ndaJpwQB2ETA8dCSqzB/nS6ds="; types-aiobotocore-resiliencehub = - buildTypesAiobotocorePackage "resiliencehub" "3.7.0" - "sha256-L+r4SEpkqJ8N06aep1cqUEO8f5fUjJ7tnQs3fCPeIoI="; + buildTypesAiobotocorePackage "resiliencehub" "3.8.0" + "sha256-ivZzzqLmWBduboe0I8jLcN5uTmjYXdSMsN3lFYxfbP4="; types-aiobotocore-resource-explorer-2 = - buildTypesAiobotocorePackage "resource-explorer-2" "3.7.0" - "sha256-rxnUK4zmqzgZ7IfnUzSE/koWjbcNoJHMPlLty6Bduz8="; + buildTypesAiobotocorePackage "resource-explorer-2" "3.8.0" + "sha256-lrvZj2al00KLmIhR/TESNrAdr78QWoCPZNlw171/tkM="; types-aiobotocore-resource-groups = - buildTypesAiobotocorePackage "resource-groups" "3.7.0" - "sha256-Vb1COcRDR4EP2n2bfkAevkzkaFjyQHTIlu9S/mq0TPY="; + buildTypesAiobotocorePackage "resource-groups" "3.8.0" + "sha256-gNjVc/S4ulJRIuzoUxCA1ZGgsdhrxIQnAsqUtSj0UsA="; types-aiobotocore-resourcegroupstaggingapi = - buildTypesAiobotocorePackage "resourcegroupstaggingapi" "3.7.0" - "sha256-67P+o1UgbPWbPUrBBDKlY6CMtobnWn9jb1nKmvesauw="; + buildTypesAiobotocorePackage "resourcegroupstaggingapi" "3.8.0" + "sha256-RnOTj6xMBmzoujaGvdoml6Uek2zTSVqmMxFIh1VFPzI="; types-aiobotocore-robomaker = buildTypesAiobotocorePackage "robomaker" "2.24.2" "sha256-EczunxMisSO9t2iYzXuzTeFiNalu2EyDRIOE7TW5fOg="; types-aiobotocore-rolesanywhere = - buildTypesAiobotocorePackage "rolesanywhere" "3.7.0" - "sha256-CyQAy6oRXDsSJV3fGwIJ6oJR8qpnFsh8/hzIV6/LSWI="; + buildTypesAiobotocorePackage "rolesanywhere" "3.8.0" + "sha256-UUEMJgKqy37F8VxCYjjEsbrtD4vlunpFhjt0i9otsGE="; types-aiobotocore-route53 = - buildTypesAiobotocorePackage "route53" "3.7.0" - "sha256-mxb/hw3iqG9GJk3Wd4ONt0PaMq+7lygpvrdaPuToAAY="; + buildTypesAiobotocorePackage "route53" "3.8.0" + "sha256-BQ4Hyr2WZxohigUVtrOfoHiSfWd/eij8RASwTmoxo/M="; types-aiobotocore-route53-recovery-cluster = - buildTypesAiobotocorePackage "route53-recovery-cluster" "3.7.0" - "sha256-mWsX2sEiVWRBksrSe47GUB3WM96xcDhN0xJnloCmPVU="; + buildTypesAiobotocorePackage "route53-recovery-cluster" "3.8.0" + "sha256-s6Vq+JkwQLDiqb9jTkp0YL7jIo9Lu9G/wQwqsWxzuZw="; types-aiobotocore-route53-recovery-control-config = - buildTypesAiobotocorePackage "route53-recovery-control-config" "3.7.0" - "sha256-3JJvVX0doMsYqLxXJvltUo+NqP1JI9FZTDQU3vGG97w="; + buildTypesAiobotocorePackage "route53-recovery-control-config" "3.8.0" + "sha256-hcA0U0R3ZyKUTYnERs0WLSAYKnZHV1HpH8rcMFKLqHE="; types-aiobotocore-route53-recovery-readiness = - buildTypesAiobotocorePackage "route53-recovery-readiness" "3.7.0" - "sha256-Oas2bcddDi1jXMtzp3qzYxS/39vWY991hQ56qgVUH2Q="; + buildTypesAiobotocorePackage "route53-recovery-readiness" "3.8.0" + "sha256-L0FeJ+byISjFt8/W79yNPGDEnvFoNGD8yM3/yXaMQd4="; types-aiobotocore-route53domains = - buildTypesAiobotocorePackage "route53domains" "3.7.0" - "sha256-QykAWBDH8SmjG+NKiYxwjGD9YMZ91FGRZCl1z/qfHos="; + buildTypesAiobotocorePackage "route53domains" "3.8.0" + "sha256-xbAEjsrXh3FQFRh6KOK0yiYC1fcT9yMxMNHOS87c0r4="; types-aiobotocore-route53resolver = - buildTypesAiobotocorePackage "route53resolver" "3.7.0" - "sha256-TJx9I+olL/8DZjykkaxwxiGj/MiiCo6/9C6u7ApK/Ss="; + buildTypesAiobotocorePackage "route53resolver" "3.8.0" + "sha256-MHfRAsJk8bqPKO8oJb5fHcW4gY3BuAMCfuhgVZPOWzw="; types-aiobotocore-rum = - buildTypesAiobotocorePackage "rum" "3.7.0" - "sha256-BvwQD5G+XSMOGfjIHPi8maS545KRz5h2H/lecsUn9p0="; + buildTypesAiobotocorePackage "rum" "3.8.0" + "sha256-KYOgvIR9GrLyeZiuIXALDgxQ99syNCtu/GjsSTeC1Bc="; types-aiobotocore-s3 = - buildTypesAiobotocorePackage "s3" "3.7.0" - "sha256-bsc4hT27qRM3B5kbmOpNqxn3xi4Cs8ygFubNjj1oRXY="; + buildTypesAiobotocorePackage "s3" "3.8.0" + "sha256-RdQ3aM9XbMfBEJfbbEgGw6zF2o3KDw4OE7dYnd6NuJo="; types-aiobotocore-s3control = - buildTypesAiobotocorePackage "s3control" "3.7.0" - "sha256-k9XJ+Md/6cehqW4fdDtcqPNqaavwtKN2n86wjmCsX2Y="; + buildTypesAiobotocorePackage "s3control" "3.8.0" + "sha256-ACHYla+TkOioQ0/PBb5+oKMQflivMMjLajabtem1N98="; types-aiobotocore-s3outposts = - buildTypesAiobotocorePackage "s3outposts" "3.7.0" - "sha256-fHup/cVHoqAPRCZlJ4k/E7GWv5qOBaFjgUJ/gxmW8gY="; + buildTypesAiobotocorePackage "s3outposts" "3.8.0" + "sha256-oiGGCykPW9XdpqOdpeiouogncL+wYVWCCETElnu80i4="; types-aiobotocore-sagemaker = - buildTypesAiobotocorePackage "sagemaker" "3.7.0" - "sha256-4/4HYEQaKkwBDaEWAxPsMdCTdxe5s5sC3V75dLfomdA="; + buildTypesAiobotocorePackage "sagemaker" "3.8.0" + "sha256-r+nTiRlfE0u3R6cYkY7G25Mtwu27nm1306rK44dXNWU="; types-aiobotocore-sagemaker-a2i-runtime = - buildTypesAiobotocorePackage "sagemaker-a2i-runtime" "3.7.0" - "sha256-GuYO59sV8hlm9XldWDvf6ZZk8Zaq1sYhHNufrj8fMyA="; + buildTypesAiobotocorePackage "sagemaker-a2i-runtime" "3.8.0" + "sha256-H2nsfkX1WhVuRTx1txaeViz7xl/MghJIDrRE6frdPuA="; types-aiobotocore-sagemaker-edge = - buildTypesAiobotocorePackage "sagemaker-edge" "3.7.0" - "sha256-AF8Mac03UB+D8D+mRExpHQWfRKRmbvH4vndmErpMxvY="; + buildTypesAiobotocorePackage "sagemaker-edge" "3.8.0" + "sha256-6pXXypzArZxnRLPo2QPGJG1QUA8QFv71+g+OmTCKwuE="; types-aiobotocore-sagemaker-featurestore-runtime = - buildTypesAiobotocorePackage "sagemaker-featurestore-runtime" "3.7.0" - "sha256-xi4QbdA63RXZ06kuQRtlBujUD9pPZmf54qaULnRAXLE="; + buildTypesAiobotocorePackage "sagemaker-featurestore-runtime" "3.8.0" + "sha256-33uAsVV9vWVuwUZ54nFSRRPmX4hL+yUBoVtrRroexdA="; types-aiobotocore-sagemaker-geospatial = - buildTypesAiobotocorePackage "sagemaker-geospatial" "3.7.0" - "sha256-ciTDcE97Z5M/1+cBYMyeMFh2LS+/3xgodw48W9NUpyA="; + buildTypesAiobotocorePackage "sagemaker-geospatial" "3.8.0" + "sha256-y+Wvl2d5w98jH/EWw+itdU2OexegO9BYpQVfu6qqDV4="; types-aiobotocore-sagemaker-metrics = - buildTypesAiobotocorePackage "sagemaker-metrics" "3.7.0" - "sha256-c8tPLcfg+UNrgUedC4JGEaCtcH3jAk6Ze7Tsgp6I+ew="; + buildTypesAiobotocorePackage "sagemaker-metrics" "3.8.0" + "sha256-uPlVbZxKBt3AbcauBjFFGXGrNe0tNCRQCkBVxWTf3KE="; types-aiobotocore-sagemaker-runtime = - buildTypesAiobotocorePackage "sagemaker-runtime" "3.7.0" - "sha256-Oi79+FCQgwWve4L2R9505dj8FPi7wD0QjQm9rJHF/0I="; + buildTypesAiobotocorePackage "sagemaker-runtime" "3.8.0" + "sha256-/hhyDFyLfUqvLj5rTqGA1Za0YovELykHF4nEZmwcURg="; types-aiobotocore-savingsplans = - buildTypesAiobotocorePackage "savingsplans" "3.7.0" - "sha256-GAWKfDaMToJ/G3djeb8XSIS/+RyCf47ayLF1fpU6XEc="; + buildTypesAiobotocorePackage "savingsplans" "3.8.0" + "sha256-t25/mSJtBuk93SB4wHJCxkPPAmGzhEjDnJ55Bg34ONg="; types-aiobotocore-scheduler = - buildTypesAiobotocorePackage "scheduler" "3.7.0" - "sha256-u3QpAhtFisanKievtIuEh8klEeD4IYndPIZ2Nhs7b2U="; + buildTypesAiobotocorePackage "scheduler" "3.8.0" + "sha256-7t1Se3hvhUH0+ie5Z8ZmSdH/YIQrS6AA6un3GBs0OL8="; types-aiobotocore-schemas = - buildTypesAiobotocorePackage "schemas" "3.7.0" - "sha256-dtAoC5n52YYx7jGK4Lh8w1onHOrVATM18umOtaCgyBI="; + buildTypesAiobotocorePackage "schemas" "3.8.0" + "sha256-nRFhabmiXsbrxP/mFCZrlia7II/VPxFWOci3/phJIbk="; types-aiobotocore-sdb = - buildTypesAiobotocorePackage "sdb" "3.7.0" - "sha256-ODbg//Vt5WVGWNXWOVL4A7KIvsCuxIaHFL6vwiH4Sso="; + buildTypesAiobotocorePackage "sdb" "3.8.0" + "sha256-SGybv5JCy/H4APcuz6G5iyTWRvznPzE0FMB1iZhfeYU="; types-aiobotocore-secretsmanager = - buildTypesAiobotocorePackage "secretsmanager" "3.7.0" - "sha256-Q34iqqWkzProVV2jE28eGsf2xauMp83QTCgQlfbP6d4="; + buildTypesAiobotocorePackage "secretsmanager" "3.8.0" + "sha256-+xh+UAk7IV4B2NBynoo9zDCP8vuZbqMTFigj9xWziT0="; types-aiobotocore-securityhub = - buildTypesAiobotocorePackage "securityhub" "3.7.0" - "sha256-zeLPiM5MJa9Rpt+KQD3wZ32qzREmORlcyGlKgc76fQM="; + buildTypesAiobotocorePackage "securityhub" "3.8.0" + "sha256-F4GXvzkqRuKYrSz+vgNUH8kNlC+6QTV1uuTrjoju8JQ="; types-aiobotocore-securitylake = - buildTypesAiobotocorePackage "securitylake" "3.7.0" - "sha256-yCjlmybslu4XxHh2YMnAPg5izH5OFn+vhlcVC1/041Y="; + buildTypesAiobotocorePackage "securitylake" "3.8.0" + "sha256-VdDzfaUL/UKSa5bdwAEbUCvL4+5Y/Ln9cDy11bNGA9c="; types-aiobotocore-serverlessrepo = - buildTypesAiobotocorePackage "serverlessrepo" "3.7.0" - "sha256-e/Cnt9VmuYiv2bTjefIGxp/EwCQjxvNfDvjr5uhL9DU="; + buildTypesAiobotocorePackage "serverlessrepo" "3.8.0" + "sha256-0dsd7Vk5bSDNkIA4I1oSTkFnDGvBdo3U/PrBOeOln/M="; types-aiobotocore-service-quotas = - buildTypesAiobotocorePackage "service-quotas" "3.7.0" - "sha256-HpZWg8tYeYg8dwHfxrkukhhPs8fT7fotRMBdVpuWXQw="; + buildTypesAiobotocorePackage "service-quotas" "3.8.0" + "sha256-fVwqzxnmY0bV9r5XxLzibVI5yVr/Gq+8pc8/ZwGIQCU="; types-aiobotocore-servicecatalog = - buildTypesAiobotocorePackage "servicecatalog" "3.7.0" - "sha256-MsLC/FeRUtLE3tE77WP1uYcewy9yy/6KZFBllyDD0P0="; + buildTypesAiobotocorePackage "servicecatalog" "3.8.0" + "sha256-SJgWdSispGZJa/Rd5AjpGoHObS9XcNSLUXKFlDE3Kyo="; types-aiobotocore-servicecatalog-appregistry = - buildTypesAiobotocorePackage "servicecatalog-appregistry" "3.7.0" - "sha256-Fj3v0n/jPe8Dk6AoN0AV6jQOMXO3iTpyVg/q7n/GZYY="; + buildTypesAiobotocorePackage "servicecatalog-appregistry" "3.8.0" + "sha256-OBQBp0ABQ98rd6xGwMRz7LNpN/gZwEMmQG0jEPWY4hI="; types-aiobotocore-servicediscovery = - buildTypesAiobotocorePackage "servicediscovery" "3.7.0" - "sha256-G2OASowQXGO+aZO3rs/mVQkamhpcXFRGuhUdJsDCugY="; + buildTypesAiobotocorePackage "servicediscovery" "3.8.0" + "sha256-MXCvhBB4Hh8FDICYtTJ5284IvLHtQ5RE5mbh5kr0+z0="; types-aiobotocore-ses = - buildTypesAiobotocorePackage "ses" "3.7.0" - "sha256-IhpkDDISDM3V8bLoPZ/coORNF2RiaP/tH3IfwfcUcFQ="; + buildTypesAiobotocorePackage "ses" "3.8.0" + "sha256-Ciwb1+TWafzjk/IMbbDl37unH/9HO17seKfubLIhZvA="; types-aiobotocore-sesv2 = - buildTypesAiobotocorePackage "sesv2" "3.7.0" - "sha256-7kavM49331R56b+jTP9Wr2Ck3L47HSXlxhWN3zx6fBY="; + buildTypesAiobotocorePackage "sesv2" "3.8.0" + "sha256-eceYxj0YsHoGGyxLb7IaAw4NTIFhQRZDZBrgZpz7eAA="; types-aiobotocore-shield = - buildTypesAiobotocorePackage "shield" "3.7.0" - "sha256-9cRSeJZANIHvYw0jQiq9miMlOoyyQbc532GZR012ZN0="; + buildTypesAiobotocorePackage "shield" "3.8.0" + "sha256-Ef7eR/fxBm5U0AtMng/igDSwnprh8Qsp34zDsq7Uzyc="; types-aiobotocore-signer = - buildTypesAiobotocorePackage "signer" "3.7.0" - "sha256-bnVdO2iVvxS5OIf77onZG/mURhiXCq9TnCVZnOnTXjQ="; + buildTypesAiobotocorePackage "signer" "3.8.0" + "sha256-7bZO7gE9YDlozJLVBLXEjhY6Qvpyqd/lZJ8DJa9+Tl4="; types-aiobotocore-simspaceweaver = buildTypesAiobotocorePackage "simspaceweaver" "3.7.0" @@ -1336,162 +1336,162 @@ in "sha256-nlg8QppdMa4MMLUQZXcxnypzv5II9PqEtuVc09UmjKU="; types-aiobotocore-snow-device-management = - buildTypesAiobotocorePackage "snow-device-management" "3.7.0" - "sha256-Jj/YTv6RrQa5/l8N55cqS8PhileL8+2g9SM7d2ZPGjw="; + buildTypesAiobotocorePackage "snow-device-management" "3.8.0" + "sha256-2uis1mOwbktudjIYjILsnj/4mIiRUZ51Oopby77rae0="; types-aiobotocore-snowball = - buildTypesAiobotocorePackage "snowball" "3.7.0" - "sha256-PoXUp2MHUPWUT54hFcFXwsbDtCIE+ueAh0Gyk8KgWFw="; + buildTypesAiobotocorePackage "snowball" "3.8.0" + "sha256-xXv7nW94TeCdu5iIPG06NAm580G6qnSYZpHrYJndCwE="; types-aiobotocore-sns = - buildTypesAiobotocorePackage "sns" "3.7.0" - "sha256-+efzRKUthVbllsHY7SHOoUW4OvZpCTfqkU6ZoTgFBuw="; + buildTypesAiobotocorePackage "sns" "3.8.0" + "sha256-Yg7DrHAZchgrY3Y0xV3bKWoeH6G7uhlNiZri5wJB3V0="; types-aiobotocore-sqs = - buildTypesAiobotocorePackage "sqs" "3.7.0" - "sha256-UgABZPkqtuwY/S9qmYmZeiaQ0bHEqFHTxXlqUobRfQA="; + buildTypesAiobotocorePackage "sqs" "3.8.0" + "sha256-g0G0TfsbpBWWz0sCBVBpGCTT7XsQxpkgzIJm6C4Ffzw="; types-aiobotocore-ssm = - buildTypesAiobotocorePackage "ssm" "3.7.0" - "sha256-2qhF5kquinBlwFSV76nTBr1w1Ji3TQl+UuozG+t3ugM="; + buildTypesAiobotocorePackage "ssm" "3.8.0" + "sha256-n++L1/HS0lJAZvbreLHF2jsfYCouxBQ1YwAxccZXh3Y="; types-aiobotocore-ssm-contacts = - buildTypesAiobotocorePackage "ssm-contacts" "3.7.0" - "sha256-mbmikPYw67D+qDiIuZfDCv+/dv1lupa9nAvsmWS1A2E="; + buildTypesAiobotocorePackage "ssm-contacts" "3.8.0" + "sha256-waBPsdCb6VYHl4ksss+5NBWS5TIDuy5PIjRUa5hjcFU="; types-aiobotocore-ssm-incidents = - buildTypesAiobotocorePackage "ssm-incidents" "3.7.0" - "sha256-k0A4HqUfoR4D2WtslVunbja0bZ/fkTmmiivUg1Z5U7g="; + buildTypesAiobotocorePackage "ssm-incidents" "3.8.0" + "sha256-RT88KQ13QWrwm3CidVSZOtG4KcBP4vatFpVytUI+bhs="; types-aiobotocore-ssm-sap = - buildTypesAiobotocorePackage "ssm-sap" "3.7.0" - "sha256-zsV2Nb79imZ8MzbeuDVeDy8VNc4Nl4JRn0Rxkm0cQo0="; + buildTypesAiobotocorePackage "ssm-sap" "3.8.0" + "sha256-7V7gm8gtycscQ7ZHJvitcL/sMgjV6FB/O3c4matZKig="; types-aiobotocore-sso = - buildTypesAiobotocorePackage "sso" "3.7.0" - "sha256-w78lj+KbaI6Oi8tv4FFi44FI05xOS90EP5IKVct9qhA="; + buildTypesAiobotocorePackage "sso" "3.8.0" + "sha256-dkcBJ6jrBcHEKdQksTmsFfAer2G2g4spMTbMa/BjD/4="; types-aiobotocore-sso-admin = - buildTypesAiobotocorePackage "sso-admin" "3.7.0" - "sha256-NOgV845NrnVhMh8pNq++Mk3+YjdKFqpo8Q45EdFfE7c="; + buildTypesAiobotocorePackage "sso-admin" "3.8.0" + "sha256-24C5jazNxBBmF3bapfJKM90T8kR5C08jazah/iAEI4g="; types-aiobotocore-sso-oidc = - buildTypesAiobotocorePackage "sso-oidc" "3.7.0" - "sha256-9dLnw04eLgPW2lZ9KdP9qfndT6/mj48gohOmRFpVa+c="; + buildTypesAiobotocorePackage "sso-oidc" "3.8.0" + "sha256-YFKPlVoOz3hrCDYHAk5ZWIB6XjA3Kua/fFfFgOZgkCg="; types-aiobotocore-stepfunctions = - buildTypesAiobotocorePackage "stepfunctions" "3.7.0" - "sha256-zLT7wuqpOIGi2JbfD9D1+9sdPnfvGs7BETQqLCSUjMY="; + buildTypesAiobotocorePackage "stepfunctions" "3.8.0" + "sha256-OTgBMoSvpWIJHqdvkq/7efLEwghx8eu/+9N4Qrv040M="; types-aiobotocore-storagegateway = - buildTypesAiobotocorePackage "storagegateway" "3.7.0" - "sha256-s+CAKtIiRQo/CIlFSl05Qguf4jg18b02KRTPWe/NtsU="; + buildTypesAiobotocorePackage "storagegateway" "3.8.0" + "sha256-9cWYie+8XvIV9lX8xQNM5HDmidnJHrYh7a6J8BsoNms="; types-aiobotocore-sts = - buildTypesAiobotocorePackage "sts" "3.7.0" - "sha256-pXEJ5Quh41XCX+Q5LFuBh3SpiD/c4/04USa7QURBOzs="; + buildTypesAiobotocorePackage "sts" "3.8.0" + "sha256-DU2fZML4blGFKvylKqZab+YMCbM2my849IaxqlqtyVs="; types-aiobotocore-support = - buildTypesAiobotocorePackage "support" "3.7.0" - "sha256-HdWai/n4XaPOFsuKZlLMMZiXOH42MmOPgDzzZab6klE="; + buildTypesAiobotocorePackage "support" "3.8.0" + "sha256-o5Jt9CqyS34SHFTfiLs/wvV/eMGufPDubSwTFKWS4CU="; types-aiobotocore-support-app = - buildTypesAiobotocorePackage "support-app" "3.7.0" - "sha256-bv4qaMc+qbdpUrGpVzxH5TdG+vlA8nP5s+vlfINtnVU="; + buildTypesAiobotocorePackage "support-app" "3.8.0" + "sha256-kWwhVzvk2Lb2FBcW08AUVglmYG1vSMQxXUap54ZDZLk="; types-aiobotocore-swf = - buildTypesAiobotocorePackage "swf" "3.7.0" - "sha256-uBuoOqboxr/hIU5iPrwNYS8VhofJ50YyAZw5h1Mnctg="; + buildTypesAiobotocorePackage "swf" "3.8.0" + "sha256-TUaFgJ4Y5tO3XraJye89wCRfYXSx90MlqYuq9R1A3IE="; types-aiobotocore-synthetics = - buildTypesAiobotocorePackage "synthetics" "3.7.0" - "sha256-bn+T6M+U7kcwpuYnPEH3MbgbU/HDX7M3z8S2MDpofe8="; + buildTypesAiobotocorePackage "synthetics" "3.8.0" + "sha256-jfzuXQ8+MEU7darrbKA/mSl8L+ibv3HoiVwWJAkSnEE="; types-aiobotocore-textract = - buildTypesAiobotocorePackage "textract" "3.7.0" - "sha256-zanugixBwYpCW07zFgrpWOgmPiIivcCU2E9rDGE71Rs="; + buildTypesAiobotocorePackage "textract" "3.8.0" + "sha256-OZ2u0vQ+mjzG49shUSFJTdsS9FamI2u2bkceHGRjoVs="; types-aiobotocore-timestream-query = - buildTypesAiobotocorePackage "timestream-query" "3.7.0" - "sha256-lV+xoBwmwDN43DwKSFgnDhQIOg+TCmW4p8UGzuceB5c="; + buildTypesAiobotocorePackage "timestream-query" "3.8.0" + "sha256-fIda+RpLRbalAAdWfg8aEHzNn+9Es7KllHQz1B4K8WA="; types-aiobotocore-timestream-write = - buildTypesAiobotocorePackage "timestream-write" "3.7.0" - "sha256-az1b5MfaxOoky0LK5RmSwhjyi3wiBwiEdjtec64vVJQ="; + buildTypesAiobotocorePackage "timestream-write" "3.8.0" + "sha256-AA3OeQ9BZY3R70RVDbQCPtyrPNj3YNtSNh1z3f9qiDs="; types-aiobotocore-tnb = - buildTypesAiobotocorePackage "tnb" "3.7.0" - "sha256-WztQK0vAAS9+kaAbJadW7l2K+1AqjDvELA/kL4vT2oE="; + buildTypesAiobotocorePackage "tnb" "3.8.0" + "sha256-/FDrVBs47zsYp4bSZ2OV5u7tFk12mafWG6eWle4iYII="; types-aiobotocore-transcribe = - buildTypesAiobotocorePackage "transcribe" "3.7.0" - "sha256-vH5hQv6AMRw2Hbffty1MUjNaCkxF5s0sauZG/68Xdd8="; + buildTypesAiobotocorePackage "transcribe" "3.8.0" + "sha256-1mIDDrE21TtgOMJfx4jzuk7DhmNLvhTsGrVnc3EhEN4="; types-aiobotocore-transfer = - buildTypesAiobotocorePackage "transfer" "3.7.0" - "sha256-FWcxoAqj4/H3N+NuauCZl16sFyfIwfWOsksLYztlA60="; + buildTypesAiobotocorePackage "transfer" "3.8.0" + "sha256-yUs2TlnOm3CaTdGEy8aYxuOHs6XWaolarAiR+3Tm3/4="; types-aiobotocore-translate = - buildTypesAiobotocorePackage "translate" "3.7.0" - "sha256-z6WlR/lNlKShy3rFJOhYZg8X0LuKh55BH5egM2OI5vQ="; + buildTypesAiobotocorePackage "translate" "3.8.0" + "sha256-j+KY5PmGWI+dyeIo4MZ3P2bryKqSmmroUaESltrcfjE="; types-aiobotocore-verifiedpermissions = - buildTypesAiobotocorePackage "verifiedpermissions" "3.7.0" - "sha256-N9AR7PVpiZu7UhRH60Bh524cNwIhD2eOeffYTgJbX6I="; + buildTypesAiobotocorePackage "verifiedpermissions" "3.8.0" + "sha256-nUBL8bCx82J0oiwzqUOImTUmd2s06uVaSWkf45RSk/I="; types-aiobotocore-voice-id = - buildTypesAiobotocorePackage "voice-id" "3.7.0" - "sha256-MWGa8UDcfxT/hTSZoB/eh80x6os8tjPZOG3oH5hrBtI="; + buildTypesAiobotocorePackage "voice-id" "3.8.0" + "sha256-8CJ9xIl5fioWFFbQsM5tio0I+YHKYwxHyu+PwQWIZi0="; types-aiobotocore-vpc-lattice = - buildTypesAiobotocorePackage "vpc-lattice" "3.7.0" - "sha256-YMwg73zvYq+/j8gYlnOiNbJcXBG1wH4bU9AyhODxZJ8="; + buildTypesAiobotocorePackage "vpc-lattice" "3.8.0" + "sha256-AS2+zlRaFYuNccjqJtrm1nbOWjLvOV6ebEd0KVowVd8="; types-aiobotocore-waf = - buildTypesAiobotocorePackage "waf" "3.7.0" - "sha256-8Q3slnNW50o1eVFvI18TCyOZYj33kdT4hDE5GyrXZBY="; + buildTypesAiobotocorePackage "waf" "3.8.0" + "sha256-/uqK6vPLwkzvFex65viLJsjBHhOwoObw14D6nDRYG/k="; types-aiobotocore-waf-regional = - buildTypesAiobotocorePackage "waf-regional" "3.7.0" - "sha256-sdA/KAqDo6yVrzY2X5H1FYGwDgxB3JEsLNzbCy3tsBI="; + buildTypesAiobotocorePackage "waf-regional" "3.8.0" + "sha256-WSye8Luy3Ka3q0VIkJeb0CQDMACsbeQg1cNI4mhSsxU="; types-aiobotocore-wafv2 = - buildTypesAiobotocorePackage "wafv2" "3.7.0" - "sha256-CqvBSyY83nIYoaIn/1wAF1rM+t55y2fZZMOmu6DABZ8="; + buildTypesAiobotocorePackage "wafv2" "3.8.0" + "sha256-w/q1rs8RydoPVuvH1JnJ5v+yhRjLEktCxrCfm0vipjY="; types-aiobotocore-wellarchitected = - buildTypesAiobotocorePackage "wellarchitected" "3.7.0" - "sha256-9c7lpZJt7W+Xd3FmGk8qXVhzlWW2u5KsWYoL9NHku6s="; + buildTypesAiobotocorePackage "wellarchitected" "3.8.0" + "sha256-obED8QWKS/GYlahstqD35Xa1GZJDwvRBnDuu4t4RolQ="; types-aiobotocore-wisdom = - buildTypesAiobotocorePackage "wisdom" "3.7.0" - "sha256-hduCFQqtkNnX710yTisFUF3rvTMad1T0QvNC2ONyQVw="; + buildTypesAiobotocorePackage "wisdom" "3.8.0" + "sha256-WYddHMQ926qOq3uC2NbJqIxvTUqQc9K6/Q/6yExXofY="; types-aiobotocore-workdocs = - buildTypesAiobotocorePackage "workdocs" "3.7.0" - "sha256-0CtDTCrr5s18TeSeRHgXXEHmrQ0xHxrbl3zZjljaiTA="; + buildTypesAiobotocorePackage "workdocs" "3.8.0" + "sha256-HFX9gJ/e+Fay413zlroZuB+6QXlF47iSh3ig3o9iIDE="; types-aiobotocore-worklink = buildTypesAiobotocorePackage "worklink" "2.15.1" "sha256-VvuxiybvGaehPqyVUYGO1bbVSQ0OYgk6LbzgoKLHF2c="; types-aiobotocore-workmail = - buildTypesAiobotocorePackage "workmail" "3.7.0" - "sha256-r7P4xmMZLSU6Hf51gC5qbRl2i+bLBj0sfZwRAD4XHWY="; + buildTypesAiobotocorePackage "workmail" "3.8.0" + "sha256-sI+SvwTATHYr5IDem+i866tLgbNMP8VrWu16KPcVCfY="; types-aiobotocore-workmailmessageflow = - buildTypesAiobotocorePackage "workmailmessageflow" "3.7.0" - "sha256-H3qDKntXafHonJnYsKyNsmtG8IX5kqGmLV+Xj8fsb3I="; + buildTypesAiobotocorePackage "workmailmessageflow" "3.8.0" + "sha256-yj6tbGemI+hxc/R/OkEtVJyDFaLZFUaA3MKaGHXLyfs="; types-aiobotocore-workspaces = - buildTypesAiobotocorePackage "workspaces" "3.7.0" - "sha256-ys91rbOAHnqGxZw37I8AjKfPsQ3+ld6egecdiae8urY="; + buildTypesAiobotocorePackage "workspaces" "3.8.0" + "sha256-6T/dUHKa+MtgcY/G34jbtgqLEgu+g3wvgOj/atfMRc0="; types-aiobotocore-workspaces-web = - buildTypesAiobotocorePackage "workspaces-web" "3.7.0" - "sha256-qE8L6qG/Gf7394nLwtI4x8jHsPq1wxoqmHvxkQsV0ps="; + buildTypesAiobotocorePackage "workspaces-web" "3.8.0" + "sha256-qN/e24/cufnOIzI9o4Mqfr6jylEIBmghVz6zftzwp+k="; types-aiobotocore-xray = - buildTypesAiobotocorePackage "xray" "3.7.0" - "sha256-/2d9Jhs2R2RragN21pN1y9kV6HQ85R6RseKXyntBW0k="; + buildTypesAiobotocorePackage "xray" "3.8.0" + "sha256-QpfiMYudHgjgJUWsqBxzghNiojH6VZEOa7DgpPk7vPk="; } diff --git a/pkgs/development/python-modules/types-aiobotocore/update.sh b/pkgs/development/python-modules/types-aiobotocore/update.sh index 92926329d1d6..5d30fee1650d 100755 --- a/pkgs/development/python-modules/types-aiobotocore/update.sh +++ b/pkgs/development/python-modules/types-aiobotocore/update.sh @@ -167,8 +167,8 @@ packages=( types-aiobotocore-iot-jobs-data # types-aiobotocore-iotanalytics types-aiobotocore-iotdeviceadvisor - types-aiobotocore-iotevents - types-aiobotocore-iotevents-data + # types-aiobotocore-iotevents + # types-aiobotocore-iotevents-data types-aiobotocore-iotfleetwise types-aiobotocore-iotsecuretunneling types-aiobotocore-iotsitewise @@ -245,7 +245,7 @@ packages=( types-aiobotocore-organizations types-aiobotocore-osis types-aiobotocore-outposts - types-aiobotocore-panorama + # types-aiobotocore-panorama types-aiobotocore-payment-cryptography types-aiobotocore-payment-cryptography-data types-aiobotocore-personalize @@ -314,7 +314,7 @@ packages=( types-aiobotocore-sesv2 types-aiobotocore-shield types-aiobotocore-signer - types-aiobotocore-simspaceweaver + # types-aiobotocore-simspaceweaver types-aiobotocore-snow-device-management types-aiobotocore-snowball types-aiobotocore-sns diff --git a/pkgs/kde/misc/ktextaddons/default.nix b/pkgs/kde/misc/ktextaddons/default.nix index 85a88eb4a882..649d204f6d60 100644 --- a/pkgs/kde/misc/ktextaddons/default.nix +++ b/pkgs/kde/misc/ktextaddons/default.nix @@ -8,11 +8,11 @@ }: mkKdeDerivation rec { pname = "ktextaddons"; - version = "2.1.1"; + version = "2.1.2"; src = fetchurl { url = "mirror://kde/stable/ktextaddons/ktextaddons-${version}.tar.xz"; - hash = "sha256-fOWWG3qCrVDk/ytDhtdkzSnTCGAOu7X9duJJLTHg9fA="; + hash = "sha256-87REiQTxZW1tfNWlV9Iv4cUGJOsy7TafNHJr7/nOBYk="; }; extraBuildInputs = [ diff --git a/pkgs/servers/http/nginx/generic.nix b/pkgs/servers/http/nginx/generic.nix index 52e09101fb9e..362a0defe732 100644 --- a/pkgs/servers/http/nginx/generic.nix +++ b/pkgs/servers/http/nginx/generic.nix @@ -51,11 +51,7 @@ outer@{ let - moduleNames = map ( - mod: - mod.name - or (throw "The nginx module with source ${toString mod.src} does not have a `name` attribute. This prevents duplicate module detection and is no longer supported.") - ) modules; + moduleNames = map (mod: mod.pname) modules; mapModules = attrPath: @@ -67,7 +63,7 @@ let if supports nginxVersion then mod.${attrPath} or [ ] else - throw "Module at ${toString mod.src} does not support nginx version ${nginxVersion}!" + throw "Module ${mod.name} does not support nginx version ${nginxVersion}!" ); in @@ -107,7 +103,7 @@ stdenv.mkDerivation { perl ] ++ buildInputs - ++ mapModules "inputs" + ++ mapModules "buildInputs" ++ lib.optional withGeoIP geoip ++ lib.optional withImageFilter gd; @@ -171,8 +167,7 @@ stdenv.mkDerivation { ++ lib.optional ( stdenv.buildPlatform != stdenv.hostPlatform ) "--crossbuild=${stdenv.hostPlatform.uname.system}::${stdenv.hostPlatform.uname.processor}" - ++ configureFlags - ++ map (mod: "--add-module=${mod.src}") modules; + ++ configureFlags; env = { NIX_CFLAGS_COMPILE = toString ( @@ -213,6 +208,15 @@ stdenv.mkDerivation { preConfigure = '' setOutputFlags= '' + # Make all modules source trees writable + + '' + for module in ${toString modules}; do + dst="$NIX_BUILD_TOP/$(basename "$module")" + cp --recursive "$module" "$dst" + chmod --recursive +w "$dst" + appendToVar configureFlags "--add-module=$dst" + done + '' + preConfigure + lib.concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules; @@ -243,7 +247,7 @@ stdenv.mkDerivation { sha256 = "sha256-M7V3ZJfKImur2OoqXcoL+CbgFj/huWnfZ4xMCmvkqfc="; }) ] - ++ mapModules "patches" + ++ mapModules "nginxPatches" ) ++ extraPatches; diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix deleted file mode 100644 index 5965512283cd..000000000000 --- a/pkgs/servers/http/nginx/modules.nix +++ /dev/null @@ -1,1124 +0,0 @@ -{ - lib, - config, - nixosTests, - applyPatches, - fetchFromGitHub, - fetchFromGitLab, - fetchhg, - fetchpatch, - runCommand, - stdenv, - - arpa2common, - brotli, - curl, - expat, - fdk_aac, - ffmpeg-headless, - ffmpeg_6-headless, - geoip, - libbsd, - libiconv, - libjpeg, - libkrb5, - libmaxminddb, - libmodsecurity, - libuuid, - libxml2, - lmdb, - luajit_openresty, - msgpuck, - openssl, - pam, - psol, - which, - yajl, - zlib, - zstd, -}: - -let - - http_proxy_connect_module_generic = patchName: rec { - name = "http_proxy_connect"; - src = fetchFromGitHub { - name = "http_proxy_connect_module_generic"; - owner = "chobits"; - repo = "ngx_http_proxy_connect_module"; - # 2023-06-19 - rev = "dcb9a2c614d376b820d774db510d4da12dfe1e5b"; - hash = "sha256-AzMhTSzmk3osSYy2q28/hko1v2AOTnY/dP5IprqGlQo="; - }; - - patches = [ - "${src}/patch/${patchName}.patch" - ]; - - meta = { - description = "Forward proxy module for CONNECT request handling"; - homepage = "https://github.com/chobits/ngx_http_proxy_connect_module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - -in - -let - self = { - akamai-token-validate = { - name = "akamai-token-validate"; - src = fetchFromGitHub { - name = "akamai-token-validate"; - owner = "kaltura"; - repo = "nginx-akamai-token-validate-module"; - rev = "34fd0c94d2c43c642f323491c4f4a226cd83b962"; - sha256 = "0yf34s11vgkcl03wbl6gjngm3p9hs8vvm7hkjkwhjh39vkk2a7cy"; - }; - - inputs = [ openssl ]; - - meta = { - description = "Validates Akamai v2 query string tokens"; - homepage = "https://github.com/kaltura/nginx-akamai-token-validate-module"; - license = lib.licenses.agpl3Only; - maintainers = [ ]; - }; - }; - - auth-a2aclr = { - name = "auth-a2aclr"; - src = fetchFromGitLab { - name = "auth-a2aclr"; - owner = "arpa2"; - repo = "nginx-auth-a2aclr"; - rev = "bbabf9480bb2b40ac581551883a18dfa6522dd63"; - sha256 = "sha256-h2LgMhreCgod+H/bNQzY9BvqG9ezkwikwWB3T6gHH04="; - }; - - inputs = [ - (arpa2common.overrideAttrs (old: rec { - version = "0.7.1"; - - src = fetchFromGitLab { - owner = "arpa2"; - repo = "arpa2common"; - rev = "v${version}"; - sha256 = "sha256-8zVsAlGtmya9EK4OkGUMu2FKJRn2Q3bg2QWGjqcii64="; - }; - })) - ]; - - meta = { - description = "Integrate ARPA2 Resource ACLs into nginx"; - homepage = "https://gitlab.com/arpa2/nginx-auth-a2aclr"; - license = lib.licenses.isc; - maintainers = [ ]; - }; - }; - - aws-auth = { - name = "aws-auth"; - src = fetchFromGitHub { - name = "aws-auth"; - owner = "anomalizer"; - repo = "ngx_aws_auth"; - rev = "2.1.1"; - sha256 = "10z67g40w7wpd13fwxyknkbg3p6hn61i4v8xw6lh27br29v1y6h9"; - }; - - meta = { - description = "Proxy to authenticated AWS services"; - homepage = "https://github.com/anomalizer/ngx_aws_auth"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - brotli = { - name = "brotli"; - src = - let - src' = fetchFromGitHub { - name = "brotli"; - owner = "google"; - repo = "ngx_brotli"; - rev = "6e975bcb015f62e1f303054897783355e2a877dc"; - sha256 = "sha256-G0IDYlvaQzzJ6cNTSGbfuOuSXFp3RsEwIJLGapTbDgo="; - }; - in - runCommand "brotli" { } '' - cp -a ${src'} $out - substituteInPlace $out/filter/config \ - --replace '$ngx_addon_dir/deps/brotli/c' ${lib.getDev brotli} - ''; - - inputs = [ brotli ]; - - meta = { - description = "Brotli compression"; - homepage = "https://github.com/google/ngx_brotli"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - cache-purge = { - name = "cache-purge"; - src = fetchFromGitHub { - name = "cache-purge"; - owner = "nginx-modules"; - repo = "ngx_cache_purge"; - rev = "2.5.1"; - sha256 = "0va4jz36mxj76nmq05n3fgnpdad30cslg7c10vnlhdmmic9vqncd"; - }; - - meta = { - description = "Adds ability to purge content from FastCGI, proxy, SCGI and uWSGI caches"; - homepage = "https://github.com/nginx-modules/ngx_cache_purge"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - coolkit = { - name = "coolkit"; - src = fetchFromGitHub { - name = "coolkit"; - owner = "FRiCKLE"; - repo = "ngx_coolkit"; - rev = "0.2"; - sha256 = "1idj0cqmfsdqawjcqpr1fsq670fdki51ksqk2lslfpcs3yrfjpqh"; - }; - - meta = { - description = "Collection of small and useful nginx add-ons"; - homepage = "https://github.com/FRiCKLE/ngx_coolkit"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - dav = { - name = "dav"; - src = fetchFromGitHub { - name = "dav"; - owner = "arut"; - repo = "nginx-dav-ext-module"; - rev = "v3.0.0"; - sha256 = "000dm5zk0m1hm1iq60aff5r6y8xmqd7djrwhgnz9ig01xyhnjv9w"; - }; - - inputs = [ expat ]; - - meta = { - description = "WebDAV PROPFIND,OPTIONS,LOCK,UNLOCK support"; - homepage = "https://github.com/arut/nginx-dav-ext-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - develkit = { - name = "develkit"; - src = fetchFromGitHub { - name = "develkit"; - owner = "vision5"; - repo = "ngx_devel_kit"; - rev = "v0.3.3"; - hash = "sha256-/RQUVHwIdNqm3UemQ/oNs2ksg8beziA4Pxejd5Yg0Pg="; - }; - - meta = { - description = "Adds additional generic tools that module developers can use in their own modules"; - homepage = "https://github.com/vision5/ngx_devel_kit"; - license = lib.licenses.bsd3; - maintainers = [ ]; - }; - }; - - echo = rec { - name = "echo"; - version = "0.63"; - - src = fetchFromGitHub { - name = "echo"; - owner = "openresty"; - repo = "echo-nginx-module"; - rev = "v${version}"; - hash = "sha256-K7oOE0yxPYLf+3YMVbBsncpHRpGHXjs/8B5QPO3MQC4="; - }; - - meta = { - description = "Brings echo, sleep, time, exec and more shell-style goodies to Nginx"; - homepage = "https://github.com/openresty/echo-nginx-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - fancyindex = { - name = "fancyindex"; - src = fetchFromGitHub { - name = "fancyindex"; - owner = "aperezdc"; - repo = "ngx-fancyindex"; - rev = "v0.5.2"; - sha256 = "0nar45lp3jays3p6b01a78a6gwh6v0snpzcncgiphcqmj5kw8ipg"; - }; - - meta = { - description = "Fancy indexes module"; - homepage = "https://github.com/aperezdc/ngx-fancyindex"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ aneeshusa ]; - }; - }; - - fluentd = { - name = "fluentd"; - src = fetchFromGitHub { - name = "fluentd"; - owner = "fluent"; - repo = "nginx-fluentd-module"; - rev = "8af234043059c857be27879bc547c141eafd5c13"; - sha256 = "1ycb5zd9sw60ra53jpak1m73zwrjikwhrrh9q6266h1mlyns7zxm"; - }; - - meta = { - description = "Fluentd data collector"; - homepage = "https://github.com/fluent/nginx-fluentd-module"; - license = lib.licenses.asl20; - maintainers = [ ]; - }; - }; - - geoip2 = { - name = "geoip2"; - src = fetchFromGitHub { - name = "geoip2"; - owner = "leev"; - repo = "ngx_http_geoip2_module"; - rev = "3.4"; - sha256 = "CAs1JZsHY7RymSBYbumC2BENsXtZP3p4ljH5QKwz5yg="; - }; - - inputs = [ libmaxminddb ]; - - meta = { - description = "Creates variables with values from the maxmind geoip2 databases"; - homepage = "https://github.com/leev/ngx_http_geoip2_module"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ pinpox ]; - }; - }; - - http_proxy_connect_module_v24 = - http_proxy_connect_module_generic "proxy_connect_rewrite_102101" - // { - supports = with lib.versions; version: major version == "1" && minor version == "24"; - }; - - http_proxy_connect_module_v25 = - http_proxy_connect_module_generic "proxy_connect_rewrite_102101" - // { - supports = with lib.versions; version: major version == "1" && minor version == "25"; - }; - - ipscrub = { - name = "ipscrub"; - src = - fetchFromGitHub { - name = "ipscrub"; - owner = "masonicboom"; - repo = "ipscrub"; - rev = "v1.0.1"; - sha256 = "0qcx15c8wbsmyz2hkmyy5yd7qn1n84kx9amaxnfxkpqi05vzm1zz"; - } - + "/ipscrub"; - - inputs = [ libbsd ]; - - meta = { - description = "IP address anonymizer"; - homepage = "https://github.com/masonicboom/ipscrub"; - license = lib.licenses.bsd3; - maintainers = [ ]; - }; - }; - - limit-speed = { - name = "limit-speed"; - src = fetchFromGitHub { - name = "limit-speed"; - owner = "yaoweibin"; - repo = "nginx_limit_speed_module"; - rev = "f77ad4a56fbb134878e75827b40cf801990ed936"; - sha256 = "0kkrd08zpcwx938i2is07vq6pgjkvn97xzjab0g4zaz8bivgmjp8"; - }; - - meta = { - description = "Limit the total speed from the specific user"; - homepage = "https://github.com/yaoweibin/nginx_limit_speed_module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - live = { - name = "live"; - src = fetchFromGitHub { - name = "live"; - owner = "arut"; - repo = "nginx-live-module"; - rev = "5e4a1e3a718e65e5206c24eba00d42b0d1c4b7dd"; - sha256 = "1kpnhl4b50zim84z22ahqxyxfq4jv8ab85kzsy2n5ciqbyg491lz"; - }; - - meta = { - description = "HTTP live module"; - homepage = "https://github.com/arut/nginx-live-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - lua = rec { - name = "lua"; - version = "0.10.29"; - - src = fetchFromGitHub { - name = "lua"; - owner = "openresty"; - repo = "lua-nginx-module"; - rev = "v${version}"; - hash = "sha256-z62Vwrthl1FJiTdrdhifZZe6crdi8c6sTkUim6KmVlU="; - }; - - inputs = [ luajit_openresty ]; - - preConfigure = '' - export LUAJIT_LIB="${luajit_openresty}/lib" - export LUAJIT_INC="$(realpath ${luajit_openresty}/include/luajit-*)" - - # make source directory writable to allow generating src/ngx_http_lua_autoconf.h - lua_src=$TMPDIR/lua-src - cp -r "${src}/" "$lua_src" - chmod -R +w "$lua_src" - export configureFlags="''${configureFlags//"${src}"/"$lua_src"}" - unset lua_src - ''; - - allowMemoryWriteExecute = true; - - meta = { - description = "Embed the Power of Lua"; - homepage = "https://github.com/openresty/lua-nginx-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - lua-upstream = { - name = "lua-upstream"; - src = fetchFromGitHub { - name = "lua-upstream"; - owner = "openresty"; - repo = "lua-upstream-nginx-module"; - rev = "v0.07"; - sha256 = "1gqccg8airli3i9103zv1zfwbjm27h235qjabfbfqk503rjamkpk"; - }; - - inputs = [ luajit_openresty ]; - allowMemoryWriteExecute = true; - - meta = { - description = "Expose Lua API to ngx_lua for Nginx upstreams"; - homepage = "https://github.com/openresty/lua-upstream-nginx-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - modsecurity = { - name = "modsecurity"; - src = fetchFromGitHub { - name = "modsecurity-nginx"; - owner = "owasp-modsecurity"; - repo = "ModSecurity-nginx"; - # unstable 2025-02-17 - rev = "0b4f0cf38502f34a30c8543039f345cfc075670d"; - hash = "sha256-P3IwKFR4NbaMXYY+O9OHfZWzka4M/wr8sJpX94LzQTU="; - }; - - inputs = [ - curl - geoip - libmodsecurity - libxml2 - lmdb - yajl - ]; - - meta = { - description = "Open source, cross platform web application firewall (WAF)"; - homepage = "https://github.com/SpiderLabs/ModSecurity"; - license = lib.licenses.asl20; - maintainers = [ ]; - }; - }; - - moreheaders = { - name = "moreheaders"; - src = fetchFromGitHub { - name = "moreheaders"; - owner = "openresty"; - repo = "headers-more-nginx-module"; - rev = "v0.36"; - sha256 = "sha256-X+ygIesQ9PGm5yM+u1BOLYVpm1172P8jWwXNr3ixFY4="; - }; - - meta = { - description = "Set, add, and clear arbitrary output headers"; - homepage = "https://github.com/openresty/headers-more-nginx-module"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ SuperSandro2000 ]; - }; - }; - - mpeg-ts = { - name = "mpeg-ts"; - src = fetchFromGitHub { - name = "mpeg-ts"; - owner = "arut"; - repo = "nginx-ts-module"; - rev = "v0.1.1"; - sha256 = "12dxcyy6wna1fccl3a9lnsbymd6p4apnwz6c24w74v97qvpfdxqd"; - }; - - meta = { - description = "MPEG-TS Live Module"; - homepage = "https://github.com/arut/nginx-ts-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - naxsi = { - name = "naxsi"; - src = - fetchFromGitHub { - name = "naxsi"; - owner = "nbs-system"; - repo = "naxsi"; - rev = "95ac520eed2ea04098a76305fd0ad7e9158840b7"; - sha256 = "0b5pnqkgg18kbw5rf2ifiq7lsx5rqmpqsql6hx5ycxjzxj6acfb3"; - } - + "/naxsi_src"; - - meta = { - description = "Open-source, high performance, low rules maintenance WAF"; - homepage = "https://github.com/nbs-system/naxsi"; - license = lib.licenses.gpl3; - maintainers = [ ]; - }; - }; - - njs = rec { - name = "njs"; - src = fetchFromGitHub { - owner = "nginx"; - repo = "njs"; - tag = "0.9.4"; - hash = "sha256-Ee55QKaeZ0mYGKUroKr/AYGoOCakEonU483qkhmZdzU="; - }; - - # njs module sources have to be writable during nginx build, so we copy them - # to a temporary directory and change the module path in the configureFlags - preConfigure = '' - NJS_SOURCE_DIR=$(readlink -m "$TMPDIR/${src}") - mkdir -p "$(dirname "$NJS_SOURCE_DIR")" - cp --recursive "${src}" "$NJS_SOURCE_DIR" - chmod -R u+rwX,go+rX "$NJS_SOURCE_DIR" - export configureFlags="''${configureFlags/"${src}"/"$NJS_SOURCE_DIR/nginx"} --with-ld-opt='-lz'" - unset NJS_SOURCE_DIR - ''; - - inputs = [ - which - zlib - ]; - - passthru.tests = nixosTests.nginx-njs; - - meta = { - description = "Subset of the JavaScript language that allows extending nginx functionality"; - homepage = "https://nginx.org/en/docs/njs/"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ jvanbruegge ]; - }; - }; - - pagespeed = { - name = "pagespeed"; - src = - let - moduleSrc = fetchFromGitHub { - name = "pagespeed"; - owner = "apache"; - repo = "incubator-pagespeed-ngx"; - rev = "v${psol.version}-stable"; - sha256 = "0ry7vmkb2bx0sspl1kgjlrzzz6lbz07313ks2lr80rrdm2zb16wp"; - }; - in - runCommand "ngx_pagespeed" - { - meta = { - description = "PageSpeed module for Nginx"; - homepage = "https://developers.google.com/speed/pagespeed/module/"; - license = lib.licenses.asl20; - }; - } - '' - cp -r "${moduleSrc}" "$out" - chmod -R +w "$out" - ln -s "${psol}" "$out/psol" - ''; - - inputs = [ - zlib - libuuid - ]; # psol deps - allowMemoryWriteExecute = true; - - meta = { - description = "Automatic PageSpeed optimization"; - homepage = "https://github.com/apache/incubator-pagespeed-ngx"; - license = lib.licenses.asl20; - maintainers = [ ]; - }; - }; - - pam = { - name = "pam"; - src = fetchFromGitHub { - name = "pam"; - owner = "sto"; - repo = "ngx_http_auth_pam_module"; - rev = "v1.5.3"; - sha256 = "sha256:09lnljdhjg65643bc4535z378lsn4llbq67zcxlln0pizk9y921a"; - }; - - inputs = [ pam ]; - - meta = { - description = "Use PAM for simple http authentication"; - homepage = "https://github.com/sto/ngx_http_auth_pam_module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - pinba = { - name = "pinba"; - src = fetchFromGitHub { - name = "pinba"; - owner = "tony2001"; - repo = "ngx_http_pinba_module"; - rev = "28131255d4797a7e2f82a6a35cf9fc03c4678fe6"; - sha256 = "00fii8bjvyipq6q47xhjhm3ylj4rhzmlk3qwxmfpdn37j7bc8p8c"; - }; - - meta = { - description = "Pinba module for nginx"; - homepage = "https://github.com/tony2001/ngx_http_pinba_module"; - license = lib.licenses.unfree; # no license in repo - maintainers = [ ]; - }; - }; - - push-stream = { - name = "push-stream"; - src = fetchFromGitHub { - name = "push-stream"; - owner = "wandenberg"; - repo = "nginx-push-stream-module"; - rev = "1cdc01521ed44dc614ebb5c0d19141cf047e1f90"; - sha256 = "0ijka32b37dl07k2jl48db5a32ix43jaczrpjih84cvq8yph0jjr"; - }; - - meta = { - description = "Pure stream http push technology"; - homepage = "https://github.com/wandenberg/nginx-push-stream-module"; - license = lib.licenses.gpl3; - maintainers = [ ]; - }; - }; - - rtmp = { - name = "rtmp"; - src = applyPatches { - src = fetchFromGitHub { - name = "rtmp"; - owner = "arut"; - repo = "nginx-rtmp-module"; - rev = "v1.2.2"; - sha256 = "0y45bswk213yhkc2v1xca2rnsxrhx8v6azxz9pvi71vvxcggqv6h"; - }; - - patches = [ - # GCC 16's improved unused variable analysis detects some unused - # variables which were fixed upstream but not released. - (fetchpatch { - name = "remove-unused-variables-ngx-rtmp-handler.patch"; - url = "https://github.com/arut/nginx-rtmp-module/commit/6c7719d0ba32e00b563ec70bd43dad11960fa9c4.patch"; - hash = "sha256-c2hSp4CamBYMwkU9EOUSnfXvCYVOIxm1WzMR/M7Ojcc="; - }) - (fetchpatch { - name = "remove-unused-variables-ngx-rtmp-eval.patch"; - url = "https://github.com/arut/nginx-rtmp-module/commit/c56fd73def3eb407155ecebc28af84ea83dc99e5.patch"; - hash = "sha256-APXdEsRp3SSUKM9ud8tbZEPsfOe/055TRD7FFHE2k9w="; - }) - ]; - }; - - meta = { - description = "Media Streaming Server"; - homepage = "https://github.com/arut/nginx-rtmp-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - secure-token = rec { - name = "secure-token"; - version = "1.5"; - src = fetchFromGitHub { - name = "secure-token"; - owner = "kaltura"; - repo = "nginx-secure-token-module"; - tag = version; - hash = "sha256-qYTjGS9pykRqMFmNls52YKxEdXYhHw+18YC2zzdjEpU="; - }; - - inputs = [ openssl ]; - - meta = { - description = "Generates CDN tokens, either as a cookie or as a query string parameter"; - homepage = "https://github.com/kaltura/nginx-secure-token-module"; - license = lib.licenses.agpl3Only; - maintainers = [ ]; - }; - }; - - set-misc = { - name = "set-misc"; - src = fetchFromGitHub { - name = "set-misc"; - owner = "openresty"; - repo = "set-misc-nginx-module"; - rev = "v0.33"; - hash = "sha256-jMMj3Ki1uSfQzagoB/O4NarxPjiaF9YRwjSKo+cgMxo="; - }; - - meta = { - description = "Various set_xxx directives added to the rewrite module (md5/sha1, sql/json quoting and many more)"; - homepage = "https://github.com/openresty/set-misc-nginx-module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - shibboleth = { - name = "shibboleth"; - src = fetchFromGitHub { - name = "shibboleth"; - owner = "nginx-shib"; - repo = "nginx-http-shibboleth"; - rev = "3f5ff4212fa12de23cb1acae8bf3a5a432b3f43b"; - sha256 = "136zjipaz7iikgcgqwdv1mrh3ya996zyzbkdy6d4k07s2h9g7hy6"; - }; - - meta = { - description = "Shibboleth auth request"; - homepage = "https://github.com/nginx-shib/nginx-http-shibboleth"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - sla = { - name = "sla"; - src = fetchFromGitHub { - name = "sla"; - owner = "goldenclone"; - repo = "nginx-sla"; - rev = "7778f0125974befbc83751d0e1cadb2dcea57601"; - sha256 = "1x5hm6r0dkm02ffny8kjd7mmq8przyd9amg2qvy5700x6lb63pbs"; - }; - - meta = { - description = "Implements a collection of augmented statistics based on HTTP-codes and upstreams response time"; - homepage = "https://github.com/goldenclone/nginx-sla"; - license = lib.licenses.unfree; # no license in repo - maintainers = [ ]; - }; - }; - - slowfs-cache = { - name = "slowfs-cache"; - src = fetchFromGitHub { - name = "slowfs-cache"; - owner = "FRiCKLE"; - repo = "ngx_slowfs_cache"; - rev = "1.10"; - sha256 = "1gyza02pcws3zqm1phv3ag50db5gnapxyjwy8skjmvawz7p5bmxr"; - }; - - meta = { - description = "Adds ability to cache static files"; - homepage = "https://github.com/friCKLE/ngx_slowfs_cache"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - sorted-querystring = { - name = "sorted-querystring"; - src = fetchFromGitHub { - name = "sorted-querystring"; - owner = "wandenberg"; - repo = "nginx-sorted-querystring-module"; - rev = "0.3"; - sha256 = "0p6b0hcws39n27fx4xp9k4hb3pcv7b6kah4qqaj0pzjy3nbp4gj7"; - }; - - meta = { - description = "Expose querystring parameters sorted in a variable"; - homepage = "https://github.com/wandenberg/nginx-sorted-querystring-module"; - license = lib.licenses.mit; - maintainers = [ ]; - }; - }; - - spnego-http-auth = { - name = "spnego-http-auth"; - src = fetchFromGitHub { - name = "spnego-http-auth"; - owner = "stnoonan"; - repo = "spnego-http-auth-nginx-module"; - rev = "3575542b3147bd03a6c68a750c3662b0d72ed94e"; - hash = "sha256-s0m5h7m7dsPD5o2SvBb9L2kB57jwXZK5SkdkGuOmlgs="; - }; - - inputs = [ libkrb5 ]; - - meta = { - description = "SPNEGO HTTP Authentication Module"; - homepage = "https://github.com/stnoonan/spnego-http-auth-nginx-module"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ - de11n - despsyched - ]; - }; - }; - - statsd = { - name = "statsd"; - src = fetchFromGitHub { - name = "statsd"; - owner = "harvesthq"; - repo = "nginx-statsd"; - rev = "b970e40467a624ba710c9a5106879a0554413d15"; - sha256 = "1x8j4i1i2ahrr7qvz03vkldgdjdxi6mx75mzkfizfcc8smr4salr"; - }; - - meta = { - description = "Send statistics to statsd"; - homepage = "https://github.com/harvesthq/nginx-statsd"; - license = lib.licenses.bsd3; - maintainers = [ ]; - }; - }; - - stream-sts = { - name = "stream-sts"; - src = fetchFromGitHub { - name = "stream-sts"; - owner = "vozlt"; - repo = "nginx-module-stream-sts"; - rev = "v0.1.1"; - sha256 = "1jdj1kik6l3rl9nyx61xkqk7hmqbncy0rrqjz3dmjqsz92y8zaya"; - }; - - meta = { - description = "Stream server traffic status core module"; - homepage = "https://github.com/vozlt/nginx-module-stream-sts"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - sts = { - name = "sts"; - src = fetchFromGitHub { - name = "sts"; - owner = "vozlt"; - repo = "nginx-module-sts"; - rev = "v0.1.1"; - sha256 = "0nvb29641x1i7mdbydcny4qwlvdpws38xscxirajd2x7nnfdflrk"; - }; - - meta = { - description = "Stream server traffic status module"; - homepage = "https://github.com/vozlt/nginx-module-sts"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - subsFilter = { - name = "subsFilter"; - src = fetchFromGitHub { - name = "subsFilter"; - owner = "yaoweibin"; - repo = "ngx_http_substitutions_filter_module"; - rev = "e12e965ac1837ca709709f9a26f572a54d83430e"; - sha256 = "sha256-3sWgue6QZYwK69XSi9q8r3WYGVyMCIgfqqLvPBHqJKU="; - }; - - meta = { - description = "Filter module which can do both regular expression and fixed string substitutions"; - homepage = "https://github.com/yaoweibin/ngx_http_substitutions_filter_module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - sysguard = { - name = "sysguard"; - src = fetchFromGitHub { - name = "sysguard"; - owner = "vozlt"; - repo = "nginx-module-sysguard"; - rev = "e512897f5aba4f79ccaeeebb51138f1704a58608"; - sha256 = "19c6w6wscbq9phnx7vzbdf4ay6p2ys0g7kp2rmc9d4fb53phrhfx"; - }; - - meta = { - description = "Nginx sysguard module"; - homepage = "https://github.com/vozlt/nginx-module-sysguard"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - upload = { - name = "upload"; - src = fetchFromGitHub { - name = "upload"; - owner = "fdintino"; - repo = "nginx-upload-module"; - rev = "2.3.0"; - sha256 = "8veZP516oC7TESO368ZsZreetbDt+1eTcamk7P1kWjU="; - }; - - meta = { - description = "Handle file uploads using multipart/form-data encoding and resumable uploads"; - homepage = "https://github.com/fdintino/nginx-upload-module"; - license = lib.licenses.bsd3; - maintainers = [ ]; - }; - }; - - upstream-check = { - name = "upstream-check"; - src = fetchFromGitHub { - name = "upstream-check"; - owner = "yaoweibin"; - repo = "nginx_upstream_check_module"; - rev = "e538034b6ad7992080d2403d6d3da56e4f7ac01e"; - sha256 = "06y7k04072xzqyqyb08m0vaaizkp4rfwm0q7i735imbzw2rxb74l"; - }; - - meta = { - description = "Support upstream health check"; - homepage = "https://github.com/yaoweibin/nginx_upstream_check_module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - upstream-tarantool = { - name = "upstream-tarantool"; - src = fetchFromGitHub { - name = "upstream-tarantool"; - owner = "tarantool"; - repo = "nginx_upstream_module"; - rev = "v2.7.1"; - sha256 = "0ya4330in7zjzqw57djv4icpk0n1j98nvf0f8v296yi9rjy054br"; - }; - - inputs = [ - msgpuck.dev - yajl - ]; - - meta = { - description = "Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)"; - homepage = "https://github.com/tarantool/nginx_upstream_module"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - url = { - name = "url"; - src = fetchFromGitHub { - name = "url"; - owner = "vozlt"; - repo = "nginx-module-url"; - rev = "9299816ca6bc395625c3683fbd2aa7b916bfe91e"; - sha256 = "0mk1gjmfnry6hgdsnlavww9bn7223idw50jlkhh5k00q5509w4ip"; - }; - - meta = { - description = "URL encoding converting module"; - homepage = "https://github.com/vozlt/nginx-module-url"; - license = lib.licenses.bsd2; - maintainers = [ ]; - }; - }; - - video-thumbextractor = rec { - name = "video-thumbextractor"; - version = "1.0.0"; - src = fetchFromGitHub { - name = "video-thumbextractor"; - owner = "wandenberg"; - repo = "nginx-video-thumbextractor-module"; - tag = version; - hash = "sha256-F2cuzCbJdGYX0Zmz9MSXTB7x8+FBR6pPpXtLlDRCcj8="; - }; - - inputs = [ - ffmpeg-headless - libjpeg - ]; - - meta = { - description = "Extract thumbs from a video file"; - homepage = "https://github.com/wandenberg/nginx-video-thumbextractor-module"; - license = lib.licenses.gpl3; - maintainers = [ ]; - }; - }; - - vod = rec { - name = "vod"; - version = "1.7.0"; - - src = applyPatches { - name = "vod"; - src = fetchFromGitHub { - owner = "dio-az"; - repo = "nginx-vod-module"; - tag = "v${version}"; - hash = "sha256-IcXbbmAs16F9qOEJWgH6XqP5sBMYszclGByVghj0eBM="; - }; - - postPatch = '' - substituteInPlace vod/media_set.h \ - --replace-fail "MAX_CLIPS (128)" "MAX_CLIPS (1024)" - ''; - }; - - inputs = [ - ffmpeg-headless - fdk_aac - openssl - libxml2 - libiconv - ]; - - passthru.tests = nixosTests.frigate; - - meta = { - description = "VOD packager"; - homepage = "https://github.com/kaltura/nginx-vod-module"; - license = lib.licenses.agpl3Only; - maintainers = [ ]; - }; - }; - - vts = { - name = "vts"; - src = fetchFromGitHub { - name = "vts"; - owner = "vozlt"; - repo = "nginx-module-vts"; - rev = "v0.2.2"; - sha256 = "sha256-ReTmYGVSOwtnYDMkQDMWwxw09vT4iHYfYZvgd8iBotk="; - }; - - meta = { - description = "Virtual host traffic status module"; - homepage = "https://github.com/vozlt/nginx-module-vts"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ SuperSandro2000 ]; - }; - }; - - zip = { - name = "zip"; - src = fetchFromGitHub { - name = "zip"; - owner = "evanmiller"; - repo = "mod_zip"; - rev = "8e65b82c82c7890f67a6107271c127e9881b6313"; - hash = "sha256-2bUyGsLSaomzaijnAcHQV9TNSuV7Z3G9EUbrZzLG+mk="; - }; - - meta = { - description = "Streaming ZIP archiver for nginx"; - homepage = "https://github.com/evanmiller/mod_zip"; - license = lib.licenses.bsd3; - broken = stdenv.hostPlatform.isDarwin; - maintainers = with lib.maintainers; [ - DutchGerman - friedow - ]; - }; - }; - - zstd = { - name = "zstd"; - src = fetchFromGitHub { - name = "zstd"; - owner = "tokers"; - repo = "zstd-nginx-module"; - rev = "f4ba115e0b0eaecde545e5f37db6aa18917d8f4b"; - hash = "sha256-N8D3KRpd79O8sdlPngtK9Ii7XT2imS4F+nkqsHMHw/w="; - }; - - inputs = [ zstd ]; - - meta = { - description = "Nginx modules for the Zstandard compression"; - homepage = "https://github.com/tokers/zstd-nginx-module"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ SuperSandro2000 ]; - }; - }; - }; -in -self -// lib.optionalAttrs config.allowAliases { - # deprecated or renamed packages - modsecurity-nginx = self.modsecurity; - fastcgi-cache-purge = throw "fastcgi-cache-purge was renamed to cache-purge"; - ngx_aws_auth = throw "ngx_aws_auth was renamed to aws-auth"; - opentracing = throw "opentracing-cpp was removed because opentracing as been archived upstream"; # Added 2025-10-19 -} diff --git a/pkgs/servers/http/nginx/modules/akamai-token-validate/package.nix b/pkgs/servers/http/nginx/modules/akamai-token-validate/package.nix new file mode 100644 index 000000000000..68e250681e19 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/akamai-token-validate/package.nix @@ -0,0 +1,27 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, + openssl, +}: + +mkNginxPlugin (finalAttrs: { + pname = "akamai-token-validate"; + version = "0-unstable-2026-06-26"; + + src = fetchFromGitHub { + owner = "kaltura"; + repo = "nginx-akamai-token-validate-module"; + rev = "34fd0c94d2c43c642f323491c4f4a226cd83b962"; + hash = "sha256-nh0l5txpQAn5lBOeujfSMN1Rn5XP0MUHoGy+HYImw3k="; + }; + + buildInputs = [ openssl ]; + + meta = { + description = "Validates Akamai v2 query string tokens"; + homepage = "https://github.com/kaltura/nginx-akamai-token-validate-module"; + license = lib.licenses.agpl3Only; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/aliases.nix b/pkgs/servers/http/nginx/modules/aliases.nix new file mode 100644 index 000000000000..6d2c8b0a279d --- /dev/null +++ b/pkgs/servers/http/nginx/modules/aliases.nix @@ -0,0 +1,14 @@ +# Removed or renamed nginx modules + +self: { + # keep-sorted start case=no numeric=yes block=yes + + fastcgi-cache-purge = throw "fastcgi-cache-purge was renamed to cache-purge"; + http_proxy_connect_module_v24 = throw "http_proxy_connect_module_v24 was removed because it was not compatible with any supported nginx version"; # Added 2026-07-29 + http_proxy_connect_module_v25 = throw "http_proxy_connect_module_v25 was removed because it was not compatible with any supported nginx version"; # Added 2026-07-29 + modsecurity-nginx = self.modsecurity; + ngx_aws_auth = throw "ngx_aws_auth was renamed to aws-auth"; + opentracing = throw "opentracing-cpp was removed because opentracing as been archived upstream"; # Added 2025-10-19 + statsd = throw "statsd was removed because its upstream source vanished"; # Added 2026-07-28 + # keep-sorted end +} diff --git a/pkgs/servers/http/nginx/modules/auth-a2aclr/package.nix b/pkgs/servers/http/nginx/modules/auth-a2aclr/package.nix new file mode 100644 index 000000000000..69ce5288d03c --- /dev/null +++ b/pkgs/servers/http/nginx/modules/auth-a2aclr/package.nix @@ -0,0 +1,39 @@ +{ + fetchFromGitLab, + lib, + mkNginxPlugin, + arpa2common, +}: + +mkNginxPlugin (finalAttrs: { + pname = "auth-a2aclr"; + version = "0-unstable-2020-08-03"; + + src = fetchFromGitLab { + owner = "arpa2"; + repo = "nginx-auth-a2aclr"; + rev = "bbabf9480bb2b40ac581551883a18dfa6522dd63"; + hash = "sha256-h2LgMhreCgod+H/bNQzY9BvqG9ezkwikwWB3T6gHH04="; + }; + + buildInputs = [ + (arpa2common.overrideAttrs (old: rec { + version = "0.7.1"; + + src = fetchFromGitLab { + owner = "arpa2"; + repo = "arpa2common"; + rev = "v${version}"; + hash = "sha256-8zVsAlGtmya9EK4OkGUMu2FKJRn2Q3bg2QWGjqcii64="; + }; + })) + ]; + + meta = { + broken = true; # overridden arpa2common package fails to build + description = "Integrate ARPA2 Resource ACLs into nginx"; + homepage = "https://gitlab.com/arpa2/nginx-auth-a2aclr"; + license = lib.licenses.isc; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/aws-auth/package.nix b/pkgs/servers/http/nginx/modules/aws-auth/package.nix new file mode 100644 index 000000000000..5499a506a3b8 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/aws-auth/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "aws-auth"; + version = "2.1.1"; + + src = fetchFromGitHub { + owner = "anomalizer"; + repo = "ngx_aws_auth"; + tag = finalAttrs.version; + hash = "sha256-CRofdhJ5HQGp4R1tEoOx0Nzx1rTTd+5GaJcfDsg75oM="; + }; + + meta = { + description = "Proxy to authenticated AWS services"; + homepage = "https://github.com/anomalizer/ngx_aws_auth"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/brotli/package.nix b/pkgs/servers/http/nginx/modules/brotli/package.nix new file mode 100644 index 000000000000..1b2747af8207 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/brotli/package.nix @@ -0,0 +1,32 @@ +{ + brotli, + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "brotli"; + version = "1.0.0rc-unstable-2022-04-29"; + + src = fetchFromGitHub { + owner = "google"; + repo = "ngx_brotli"; + rev = "6e975bcb015f62e1f303054897783355e2a877dc"; + hash = "sha256-G0IDYlvaQzzJ6cNTSGbfuOuSXFp3RsEwIJLGapTbDgo="; + }; + + postPatch = '' + substituteInPlace filter/config \ + --replace-fail '$ngx_addon_dir/deps/brotli/c' ${lib.getDev brotli} + ''; + + buildInputs = [ brotli ]; + + meta = { + description = "Brotli compression"; + homepage = "https://github.com/google/ngx_brotli"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/builder.nix b/pkgs/servers/http/nginx/modules/builder.nix new file mode 100644 index 000000000000..9289199c96f1 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/builder.nix @@ -0,0 +1,51 @@ +{ + lib, + stdenv, + nix-update-script, + nginx, +}: + +# This builder provides a thin facade that wraps the fod into a derivation +# so that plugins can be picked up for automated updates. The actual build +# happens when they are passed into the nginx build, which is why there is +# no need to build these in hydra. + +lib.extendMkDerivation { + constructDrv = stdenv.mkDerivation; + extendDrvArgs = finalAttrs: args: { + name = "nginx-mod-${args.pname}-${args.version}"; + dontConfigure = true; + dontBuild = true; + dontFixup = true; + + installPhase = '' + runHook preInstall + cp \ + --recursive \ + --no-preserve=ownership \ + . \ + "$out" + runHook postInstall + ''; + + passthru = args.passthru or { } // { + updateScript = + args.passthru.updateScript or (nix-update-script { + extraArgs = [ "--version=stable" ]; + }); + tests = { + nginx = nginx.override { + modules = [ finalAttrs.finalPackage ]; + }; + } + // args.passthru.tests or { }; + }; + + meta = ( + args.meta or { } + // { + hydraPlatforms = [ ]; + } + ); + }; +} diff --git a/pkgs/servers/http/nginx/modules/cache-purge/package.nix b/pkgs/servers/http/nginx/modules/cache-purge/package.nix new file mode 100644 index 000000000000..8e2211d8b05d --- /dev/null +++ b/pkgs/servers/http/nginx/modules/cache-purge/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "cache-purge"; + version = "2.5.1"; + + src = fetchFromGitHub { + owner = "nginx-modules"; + repo = "ngx_cache_purge"; + tag = finalAttrs.version; + hash = "sha256-jVm8E4u1NkjtBoGdRzUDo6l27XPDFoCrNUf2asaXRG0="; + }; + + meta = { + description = "Adds ability to purge content from FastCGI, proxy, SCGI and uWSGI caches"; + homepage = "https://github.com/nginx-modules/ngx_cache_purge"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/coolkit/package.nix b/pkgs/servers/http/nginx/modules/coolkit/package.nix new file mode 100644 index 000000000000..74c234f1cfb5 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/coolkit/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "coolkit"; + version = "0.2"; + + src = fetchFromGitHub { + owner = "FRiCKLE"; + repo = "ngx_coolkit"; + tag = finalAttrs.version; + hash = "sha256-EF/psh+aXUc1FRPrGUqczYFjsHYhX8wkV7hpVzEDssU="; + }; + + meta = { + description = "Collection of small and useful nginx add-ons"; + homepage = "https://github.com/FRiCKLE/ngx_coolkit"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/dav/package.nix b/pkgs/servers/http/nginx/modules/dav/package.nix new file mode 100644 index 000000000000..0ca2af925244 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/dav/package.nix @@ -0,0 +1,27 @@ +{ + lib, + fetchFromGitHub, + mkNginxPlugin, + expat, +}: + +mkNginxPlugin (finalAttrs: { + pname = "dav"; + version = "3.0.0"; + + src = fetchFromGitHub { + owner = "arut"; + repo = "nginx-dav-ext-module"; + tag = "v${finalAttrs.version}"; + sha256 = "000dm5zk0m1hm1iq60aff5r6y8xmqd7djrwhgnz9ig01xyhnjv9w"; + }; + + buildInputs = [ expat ]; + + meta = { + description = "WebDAV PROPFIND,OPTIONS,LOCK,UNLOCK support"; + homepage = "https://github.com/arut/nginx-dav-ext-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/develkit/package.nix b/pkgs/servers/http/nginx/modules/develkit/package.nix new file mode 100644 index 000000000000..cb2fceae3cdf --- /dev/null +++ b/pkgs/servers/http/nginx/modules/develkit/package.nix @@ -0,0 +1,24 @@ +{ + lib, + fetchFromGitHub, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "develkit"; + version = "0.3.3"; + + src = fetchFromGitHub { + owner = "vision5"; + repo = "ngx_devel_kit"; + tag = "v${finalAttrs.version}"; + hash = "sha256-/RQUVHwIdNqm3UemQ/oNs2ksg8beziA4Pxejd5Yg0Pg="; + }; + + meta = { + description = "Adds additional generic tools that module developers can use in their own modules"; + homepage = "https://github.com/vision5/ngx_devel_kit"; + license = lib.licenses.bsd3; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/echo/package.nix b/pkgs/servers/http/nginx/modules/echo/package.nix new file mode 100644 index 000000000000..ea4a748cc50f --- /dev/null +++ b/pkgs/servers/http/nginx/modules/echo/package.nix @@ -0,0 +1,25 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "echo"; + version = "0.63"; + + src = fetchFromGitHub { + name = "echo"; + owner = "openresty"; + repo = "echo-nginx-module"; + tag = "v${finalAttrs.version}"; + hash = "sha256-K7oOE0yxPYLf+3YMVbBsncpHRpGHXjs/8B5QPO3MQC4="; + }; + + meta = { + description = "Brings echo, sleep, time, exec and more shell-style goodies to Nginx"; + homepage = "https://github.com/openresty/echo-nginx-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/fancyindex/package.nix b/pkgs/servers/http/nginx/modules/fancyindex/package.nix new file mode 100644 index 000000000000..e91359568288 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/fancyindex/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "fancyindex"; + version = "0.5.2"; + + src = fetchFromGitHub { + owner = "aperezdc"; + repo = "ngx-fancyindex"; + tag = "v${finalAttrs.version}"; + hash = "sha256-70bEZ5EVM3jjY5b9azXYBvJnFDoqgGXu0F7JcWkhWVk="; + }; + + meta = { + description = "Fancy indexes module"; + homepage = "https://github.com/aperezdc/ngx-fancyindex"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aneeshusa ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/fluentd/package.nix b/pkgs/servers/http/nginx/modules/fluentd/package.nix new file mode 100644 index 000000000000..57cd3676de7c --- /dev/null +++ b/pkgs/servers/http/nginx/modules/fluentd/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "fluentd"; + version = "0.3-unstable-2014-03-28"; + + src = fetchFromGitHub { + owner = "fluent"; + repo = "nginx-fluentd-module"; + rev = "8af234043059c857be27879bc547c141eafd5c13"; + hash = "sha256-tf+jrac1QGOEwQnmDPmMMvM/Tg1TXTmKysBwndovi/k="; + }; + + meta = { + description = "Fluentd data collector"; + homepage = "https://github.com/fluent/nginx-fluentd-module"; + license = lib.licenses.asl20; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/geoip2/package.nix b/pkgs/servers/http/nginx/modules/geoip2/package.nix new file mode 100644 index 000000000000..2f961b4ecdf9 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/geoip2/package.nix @@ -0,0 +1,27 @@ +{ + fetchFromGitHub, + lib, + libmaxminddb, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "geoip2"; + version = "3.4"; + + src = fetchFromGitHub { + owner = "leev"; + repo = "ngx_http_geoip2_module"; + tag = finalAttrs.version; + hash = "sha256-CAs1JZsHY7RymSBYbumC2BENsXtZP3p4ljH5QKwz5yg="; + }; + + buildInputs = [ libmaxminddb ]; + + meta = { + description = "Creates variables with values from the maxmind geoip2 databases"; + homepage = "https://github.com/leev/ngx_http_geoip2_module"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ pinpox ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/ipscrub/package.nix b/pkgs/servers/http/nginx/modules/ipscrub/package.nix new file mode 100644 index 000000000000..4df0a250122a --- /dev/null +++ b/pkgs/servers/http/nginx/modules/ipscrub/package.nix @@ -0,0 +1,29 @@ +{ + fetchFromGitHub, + lib, + libbsd, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "ipscrub"; + version = "1.0.1"; + + src = fetchFromGitHub { + owner = "masonicboom"; + repo = "ipscrub"; + tag = "v${finalAttrs.version}"; + hash = "sha256-/4f6dwER39md7aqq1CdBNlh8mi/e1wnF91UvjlgJnWE="; + }; + + sourceRoot = "${finalAttrs.src.name}/ipscrub"; + + buildInputs = [ libbsd ]; + + meta = { + description = "IP address anonymizer"; + homepage = "https://github.com/masonicboom/ipscrub"; + license = lib.licenses.bsd3; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/limit-speed/package.nix b/pkgs/servers/http/nginx/modules/limit-speed/package.nix new file mode 100644 index 000000000000..41ccaaa2a14c --- /dev/null +++ b/pkgs/servers/http/nginx/modules/limit-speed/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "limit-speed"; + version = "0.1-unstable-2014-03-21"; + + src = fetchFromGitHub { + owner = "yaoweibin"; + repo = "nginx_limit_speed_module"; + rev = "f77ad4a56fbb134878e75827b40cf801990ed936"; + hash = "sha256-6Mr6dlzoq08eWEr+fpLdU75r8D5ARxHRSJ2z+xFoeU4="; + }; + + meta = { + description = "Limit the total speed from the specific user"; + homepage = "https://github.com/yaoweibin/nginx_limit_speed_module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/live/package.nix b/pkgs/servers/http/nginx/modules/live/package.nix new file mode 100644 index 000000000000..47348080bc28 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/live/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "live"; + version = "0-unstable-2018-11-18"; + + src = fetchFromGitHub { + owner = "arut"; + repo = "nginx-live-module"; + rev = "5e4a1e3a718e65e5206c24eba00d42b0d1c4b7dd"; + hash = "sha256-n4ZEnl84smKF138WtBTakmDXfcdQCfEJqvGDsgiF9s4="; + }; + + meta = { + description = "HTTP live module"; + homepage = "https://github.com/arut/nginx-live-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/lua-upstream/package.nix b/pkgs/servers/http/nginx/modules/lua-upstream/package.nix new file mode 100644 index 000000000000..5d2eaa351c44 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/lua-upstream/package.nix @@ -0,0 +1,30 @@ +{ + fetchFromGitHub, + lib, + luajit_openresty, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "lua-upstream"; + version = "0.07"; + + src = fetchFromGitHub { + name = "lua-upstream"; + owner = "openresty"; + repo = "lua-upstream-nginx-module"; + tag = "v${finalAttrs.version}"; + hash = "sha256-886qZB6gTOyWW0riMgQ8osrF3Q/7DxBSHJHmqNBjDL8="; + }; + + buildInputs = [ luajit_openresty ]; + + allowMemoryWriteExecute = true; + + meta = { + description = "Expose Lua API to ngx_lua for Nginx upstreams"; + homepage = "https://github.com/openresty/lua-upstream-nginx-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/lua/package.nix b/pkgs/servers/http/nginx/modules/lua/package.nix new file mode 100644 index 000000000000..58c3094376ad --- /dev/null +++ b/pkgs/servers/http/nginx/modules/lua/package.nix @@ -0,0 +1,34 @@ +{ + fetchFromGitHub, + lib, + luajit_openresty, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "lua"; + version = "0.10.29"; + + src = fetchFromGitHub { + owner = "openresty"; + repo = "lua-nginx-module"; + rev = "v${finalAttrs.version}"; + hash = "sha256-z62Vwrthl1FJiTdrdhifZZe6crdi8c6sTkUim6KmVlU="; + }; + + buildInputs = [ luajit_openresty ]; + + preConfigure = '' + export LUAJIT_LIB="${luajit_openresty}/lib" + export LUAJIT_INC="$(realpath ${luajit_openresty}/include/luajit-*)" + ''; + + allowMemoryWriteExecute = true; + + meta = { + description = "Embed the Power of Lua"; + homepage = "https://github.com/openresty/lua-nginx-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/modsecurity/package.nix b/pkgs/servers/http/nginx/modules/modsecurity/package.nix new file mode 100644 index 000000000000..43b18cb900a4 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/modsecurity/package.nix @@ -0,0 +1,39 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, + curl, + geoip, + libmodsecurity, + libxml2, + lmdb, + yajl, +}: + +mkNginxPlugin (finalAttrs: { + pname = "modsecurity"; + version = "1.0.3-unstable-2025-02-17"; + + src = fetchFromGitHub { + owner = "owasp-modsecurity"; + repo = "ModSecurity-nginx"; + rev = "0b4f0cf38502f34a30c8543039f345cfc075670d"; + hash = "sha256-P3IwKFR4NbaMXYY+O9OHfZWzka4M/wr8sJpX94LzQTU="; + }; + + buildInputs = [ + curl + geoip + libmodsecurity + libxml2 + lmdb + yajl + ]; + + meta = { + description = "Open source, cross platform web application firewall (WAF)"; + homepage = "https://github.com/owasp-modsecurity/ModSecurity"; + license = lib.licenses.asl20; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/moreheaders/package.nix b/pkgs/servers/http/nginx/modules/moreheaders/package.nix new file mode 100644 index 000000000000..051206ac8db2 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/moreheaders/package.nix @@ -0,0 +1,24 @@ +{ + lib, + fetchFromGitHub, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "moreheaders"; + version = "0.36"; + + src = fetchFromGitHub { + owner = "openresty"; + repo = "headers-more-nginx-module"; + tag = "v${finalAttrs.version}"; + sha256 = "sha256-X+ygIesQ9PGm5yM+u1BOLYVpm1172P8jWwXNr3ixFY4="; + }; + + meta = { + description = "Set, add, and clear arbitrary output headers"; + homepage = "https://github.com/openresty/headers-more-nginx-module"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/mpeg-ts/package.nix b/pkgs/servers/http/nginx/modules/mpeg-ts/package.nix new file mode 100644 index 000000000000..6e91ed228dd0 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/mpeg-ts/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "mpeg-ts"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "arut"; + repo = "nginx-ts-module"; + tag = "v${finalAttrs.version}"; + hash = "sha256-Dffm7sYnbXI4Ecx8bq8i17Tql7Y0qUEZc0FZbrxnvYk="; + }; + + meta = { + description = "MPEG-TS Live Module"; + homepage = "https://github.com/arut/nginx-ts-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/naxsi/package.nix b/pkgs/servers/http/nginx/modules/naxsi/package.nix new file mode 100644 index 000000000000..c1af28a7d076 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/naxsi/package.nix @@ -0,0 +1,26 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "naxsi"; + version = "1.0-unstable-2020-09-10"; + + src = fetchFromGitHub { + owner = "nbs-system"; + repo = "naxsi"; + rev = "95ac520eed2ea04098a76305fd0ad7e9158840b7"; + sha256 = "0b5pnqkgg18kbw5rf2ifiq7lsx5rqmpqsql6hx5ycxjzxj6acfb3"; + }; + + sourceRoot = "${finalAttrs.src.name}/naxsi_src"; + + meta = { + description = "Open-source, high performance, low rules maintenance WAF"; + homepage = "https://github.com/nbs-system/naxsi"; + license = lib.licenses.gpl3; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/njs/package.nix b/pkgs/servers/http/nginx/modules/njs/package.nix new file mode 100644 index 000000000000..a6b3af2f36ff --- /dev/null +++ b/pkgs/servers/http/nginx/modules/njs/package.nix @@ -0,0 +1,39 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, + nixosTests, + which, + zlib, +}: + +mkNginxPlugin (finalAttrs: { + pname = "njs"; + version = "0.9.4"; + + src = fetchFromGitHub { + owner = "nginx"; + repo = "njs"; + tag = finalAttrs.version; + hash = "sha256-Ee55QKaeZ0mYGKUroKr/AYGoOCakEonU483qkhmZdzU="; + }; + + preConfigure = '' + configureFlags="''${configureFlags/--add-module=*nginx-mod-${finalAttrs.pname}-${finalAttrs.version}/&/nginx}" + + appendToVar configureFlags "--with-ld-opt=-lz" + ''; + + buildInputs = [ + which + zlib + ]; + + passthru.tests = nixosTests.nginx-njs; + meta = { + description = "Subset of the JavaScript language that allows extending nginx functionality"; + homepage = "https://nginx.org/en/docs/njs/"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jvanbruegge ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/pagespeed/package.nix b/pkgs/servers/http/nginx/modules/pagespeed/package.nix new file mode 100644 index 000000000000..696bdfdde986 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/pagespeed/package.nix @@ -0,0 +1,51 @@ +{ + fetchFromGitHub, + lib, + libuuid, + mkNginxPlugin, + psol, + runCommand, + zlib, +}: + +mkNginxPlugin (finalAttrs: { + pname = "pagespeed"; + version = psol.version; + + src = + let + moduleSrc = fetchFromGitHub { + owner = "apache"; + repo = "incubator-pagespeed-ngx"; + rev = "v${psol.version}-stable"; + sha256 = "0ry7vmkb2bx0sspl1kgjlrzzz6lbz07313ks2lr80rrdm2zb16wp"; + }; + in + runCommand "ngx_pagespeed" + { + meta = { + description = "PageSpeed module for Nginx"; + homepage = "https://developers.google.com/speed/pagespeed/module/"; + license = lib.licenses.asl20; + }; + } + '' + cp -r "${moduleSrc}" "$out" + chmod -R +w "$out" + ln -s "${psol}" "$out/psol" + ''; + + buildInputs = [ + zlib + libuuid + ]; # psol deps + + allowMemoryWriteExecute = true; + + meta = { + description = "Automatic PageSpeed optimization"; + homepage = "https://github.com/apache/incubator-pagespeed-ngx"; + license = lib.licenses.asl20; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/pam/package.nix b/pkgs/servers/http/nginx/modules/pam/package.nix new file mode 100644 index 000000000000..bb2bb00331b8 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/pam/package.nix @@ -0,0 +1,27 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, + pam, +}: + +mkNginxPlugin (finalAttrs: { + pname = "pam"; + version = "1.5.3"; + + src = fetchFromGitHub { + owner = "sto"; + repo = "ngx_http_auth_pam_module"; + tag = "v${finalAttrs.version}"; + hash = "sha256-Kojk0/zxAktpZ/8YvCglVlN0xi+jELYGMcU8CZukliY="; + }; + + buildInputs = [ pam ]; + + meta = { + description = "Use PAM for simple http authentication"; + homepage = "https://github.com/sto/ngx_http_auth_pam_module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/pinba/package.nix b/pkgs/servers/http/nginx/modules/pinba/package.nix new file mode 100644 index 000000000000..69be9eeb5709 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/pinba/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "pinba"; + version = "0-unstable-2019-05-13"; + + src = fetchFromGitHub { + owner = "tony2001"; + repo = "ngx_http_pinba_module"; + rev = "28131255d4797a7e2f82a6a35cf9fc03c4678fe6"; + sha256 = "00fii8bjvyipq6q47xhjhm3ylj4rhzmlk3qwxmfpdn37j7bc8p8c"; + }; + + meta = { + description = "Pinba module for nginx"; + homepage = "https://github.com/tony2001/ngx_http_pinba_module"; + license = lib.licenses.unfree; # no license in repo + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/push-stream/package.nix b/pkgs/servers/http/nginx/modules/push-stream/package.nix new file mode 100644 index 000000000000..8d9df1b59130 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/push-stream/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "push-stream"; + version = "0.5.4-unstable-2020-05-03"; + + src = fetchFromGitHub { + owner = "wandenberg"; + repo = "nginx-push-stream-module"; + rev = "1cdc01521ed44dc614ebb5c0d19141cf047e1f90"; + hash = "sha256-WUoAr0d4M4JglDd/puQgPYqhymqIUCnmAbSdscRQU0Y="; + }; + + meta = { + description = "Pure stream http push technology"; + homepage = "https://github.com/wandenberg/nginx-push-stream-module"; + license = lib.licenses.gpl3; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/rtmp/package.nix b/pkgs/servers/http/nginx/modules/rtmp/package.nix new file mode 100644 index 000000000000..3b51a1838329 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/rtmp/package.nix @@ -0,0 +1,40 @@ +{ + lib, + fetchFromGitHub, + fetchpatch, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "rtmp"; + version = "1.2.2"; + + src = fetchFromGitHub { + owner = "arut"; + repo = "nginx-rtmp-module"; + tag = "v${finalAttrs.version}"; + sha256 = "0y45bswk213yhkc2v1xca2rnsxrhx8v6azxz9pvi71vvxcggqv6h"; + }; + + patches = [ + # GCC 16's improved unused variable analysis detects some unused + # variables which were fixed upstream but not released. + (fetchpatch { + name = "remove-unused-variables-ngx-rtmp-handler.patch"; + url = "https://github.com/arut/nginx-rtmp-module/commit/6c7719d0ba32e00b563ec70bd43dad11960fa9c4.patch"; + hash = "sha256-c2hSp4CamBYMwkU9EOUSnfXvCYVOIxm1WzMR/M7Ojcc="; + }) + (fetchpatch { + name = "remove-unused-variables-ngx-rtmp-eval.patch"; + url = "https://github.com/arut/nginx-rtmp-module/commit/c56fd73def3eb407155ecebc28af84ea83dc99e5.patch"; + hash = "sha256-APXdEsRp3SSUKM9ud8tbZEPsfOe/055TRD7FFHE2k9w="; + }) + ]; + + meta = { + description = "Media Streaming Server"; + homepage = "https://github.com/arut/nginx-rtmp-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/secure-token/package.nix b/pkgs/servers/http/nginx/modules/secure-token/package.nix new file mode 100644 index 000000000000..e0a4303e0212 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/secure-token/package.nix @@ -0,0 +1,27 @@ +{ + lib, + fetchFromGitHub, + mkNginxPlugin, + openssl, +}: + +mkNginxPlugin (finalAttrs: { + pname = "secure-token"; + version = "1.5"; + + src = fetchFromGitHub { + owner = "kaltura"; + repo = "nginx-secure-token-module"; + tag = finalAttrs.version; + hash = "sha256-qYTjGS9pykRqMFmNls52YKxEdXYhHw+18YC2zzdjEpU="; + }; + + buildInputs = [ openssl ]; + + meta = { + description = "Generates CDN tokens, either as a cookie or as a query string parameter"; + homepage = "https://github.com/kaltura/nginx-secure-token-module"; + license = lib.licenses.agpl3Only; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/set-misc/package.nix b/pkgs/servers/http/nginx/modules/set-misc/package.nix new file mode 100644 index 000000000000..0f299ad65240 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/set-misc/package.nix @@ -0,0 +1,33 @@ +{ + lib, + fetchFromGitHub, + mkNginxPlugin, + nginx, + nginxModules, +}: + +mkNginxPlugin (finalAttrs: { + pname = "set-misc"; + version = "0.33"; + + src = fetchFromGitHub { + owner = "openresty"; + repo = "set-misc-nginx-module"; + tag = "v${finalAttrs.version}"; + hash = "sha256-jMMj3Ki1uSfQzagoB/O4NarxPjiaF9YRwjSKo+cgMxo="; + }; + + passthru.tests.nginx = nginx.override { + modules = [ + nginxModules.develkit + finalAttrs.finalPackage + ]; + }; + + meta = { + description = "Various set_xxx directives added to the rewrite module (md5/sha1, sql/json quoting and many more)"; + homepage = "https://github.com/openresty/set-misc-nginx-module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/shibboleth/package.nix b/pkgs/servers/http/nginx/modules/shibboleth/package.nix new file mode 100644 index 000000000000..061783d0fb99 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/shibboleth/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "shibboleth"; + version = "2.0.1-unstable-2020-09-04"; + + src = fetchFromGitHub { + owner = "nginx-shib"; + repo = "nginx-http-shibboleth"; + rev = "3f5ff4212fa12de23cb1acae8bf3a5a432b3f43b"; + hash = "sha256-xsPzEhT6gEma8W2u779JSfkBcw27cfzYmzGer26U34w="; + }; + + meta = { + description = "Shibboleth auth request"; + homepage = "https://github.com/nginx-shib/nginx-http-shibboleth"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/sla/package.nix b/pkgs/servers/http/nginx/modules/sla/package.nix new file mode 100644 index 000000000000..e3d3cdd57716 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/sla/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "sla"; + version = "0-unstable-2015-09-21"; + + src = fetchFromGitHub { + owner = "goldenclone"; + repo = "nginx-sla"; + rev = "7778f0125974befbc83751d0e1cadb2dcea57601"; + sha256 = "1x5hm6r0dkm02ffny8kjd7mmq8przyd9amg2qvy5700x6lb63pbs"; + }; + + meta = { + description = "Implements a collection of augmented statistics based on HTTP-codes and upstreams response time"; + homepage = "https://github.com/goldenclone/nginx-sla"; + license = lib.licenses.unfree; # no license in repo + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/slowfs-cache/package.nix b/pkgs/servers/http/nginx/modules/slowfs-cache/package.nix new file mode 100644 index 000000000000..9affd94a69dc --- /dev/null +++ b/pkgs/servers/http/nginx/modules/slowfs-cache/package.nix @@ -0,0 +1,25 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "slowfs-cache"; + version = "1.10"; + + src = fetchFromGitHub { + owner = "FRiCKLE"; + repo = "ngx_slowfs_cache"; + tag = finalAttrs.version; + hash = "sha256-uddV7vlc7SqnRp5L36+yr6wGylNjwxsq/kNzdgVQ378="; + }; + + meta = { + description = "Adds ability to cache static files"; + homepage = "https://github.com/friCKLE/ngx_slowfs_cache"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; + +}) diff --git a/pkgs/servers/http/nginx/modules/sorted-querystring/package.nix b/pkgs/servers/http/nginx/modules/sorted-querystring/package.nix new file mode 100644 index 000000000000..6e9dc33ddf6e --- /dev/null +++ b/pkgs/servers/http/nginx/modules/sorted-querystring/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "sorted-querystring"; + version = "0.3"; + + src = fetchFromGitHub { + owner = "wandenberg"; + repo = "nginx-sorted-querystring-module"; + tag = finalAttrs.version; + hash = "sha256-Rz5ylx1e/gukwphANc06m92xIJnpdtLdETYNzRkEy1w="; + }; + + meta = { + description = "Expose querystring parameters sorted in a variable"; + homepage = "https://github.com/wandenberg/nginx-sorted-querystring-module"; + license = lib.licenses.mit; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/spnego-http-auth/package.nix b/pkgs/servers/http/nginx/modules/spnego-http-auth/package.nix new file mode 100644 index 000000000000..fcc8cfc0556f --- /dev/null +++ b/pkgs/servers/http/nginx/modules/spnego-http-auth/package.nix @@ -0,0 +1,30 @@ +{ + fetchFromGitHub, + lib, + libkrb5, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "spnego-http-auth"; + version = "1.1.1-unstable-2023-04-14"; + + src = fetchFromGitHub { + owner = "stnoonan"; + repo = "spnego-http-auth-nginx-module"; + rev = "3575542b3147bd03a6c68a750c3662b0d72ed94e"; + hash = "sha256-s0m5h7m7dsPD5o2SvBb9L2kB57jwXZK5SkdkGuOmlgs="; + }; + + buildInputs = [ libkrb5 ]; + + meta = { + description = "SPNEGO HTTP Authentication Module"; + homepage = "https://github.com/stnoonan/spnego-http-auth-nginx-module"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ + de11n + despsyched + ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/stream-sts/package.nix b/pkgs/servers/http/nginx/modules/stream-sts/package.nix new file mode 100644 index 000000000000..831b82bdb13d --- /dev/null +++ b/pkgs/servers/http/nginx/modules/stream-sts/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "stream-sts"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "vozlt"; + repo = "nginx-module-stream-sts"; + tag = "v${finalAttrs.version}"; + hash = "sha256-yquPvEhfY1nb+BLnDDyzC1d4Jp49mO5tonlQM+MMssk="; + }; + + meta = { + description = "Stream server traffic status core module"; + homepage = "https://github.com/vozlt/nginx-module-stream-sts"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/sts/package.nix b/pkgs/servers/http/nginx/modules/sts/package.nix new file mode 100644 index 000000000000..33899501dae0 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/sts/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "sts"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "vozlt"; + repo = "nginx-module-sts"; + tag = "v${finalAttrs.version}"; + hash = "sha256-M1PXnLWniyZVjp3pjobmt23KMfGWNb9aPTH0QEwSa1s="; + }; + + meta = { + description = "Stream server traffic status module"; + homepage = "https://github.com/vozlt/nginx-module-sts"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/subsFilter/package.nix b/pkgs/servers/http/nginx/modules/subsFilter/package.nix new file mode 100644 index 000000000000..d45359fd3a88 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/subsFilter/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "subsFilter"; + version = "0.6.4-unstable-2022-01-24"; + + src = fetchFromGitHub { + owner = "yaoweibin"; + repo = "ngx_http_substitutions_filter_module"; + rev = "e12e965ac1837ca709709f9a26f572a54d83430e"; + hash = "sha256-3sWgue6QZYwK69XSi9q8r3WYGVyMCIgfqqLvPBHqJKU="; + }; + + meta = { + description = "Filter module which can do both regular expression and fixed string substitutions"; + homepage = "https://github.com/yaoweibin/ngx_http_substitutions_filter_module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/sysguard/package.nix b/pkgs/servers/http/nginx/modules/sysguard/package.nix new file mode 100644 index 000000000000..7ed1535a2b42 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/sysguard/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "sysguard"; + version = "0-unstable-2017-03-21"; + + src = fetchFromGitHub { + owner = "vozlt"; + repo = "nginx-module-sysguard"; + rev = "e512897f5aba4f79ccaeeebb51138f1704a58608"; + sha256 = "19c6w6wscbq9phnx7vzbdf4ay6p2ys0g7kp2rmc9d4fb53phrhfx"; + }; + + meta = { + description = "Nginx sysguard module"; + homepage = "https://github.com/vozlt/nginx-module-sysguard"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/upload/package.nix b/pkgs/servers/http/nginx/modules/upload/package.nix new file mode 100644 index 000000000000..52075d9ee2dc --- /dev/null +++ b/pkgs/servers/http/nginx/modules/upload/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "upload"; + version = "2.3.0"; + + src = fetchFromGitHub { + owner = "fdintino"; + repo = "nginx-upload-module"; + tag = finalAttrs.version; + hash = "sha256-8veZP516oC7TESO368ZsZreetbDt+1eTcamk7P1kWjU="; + }; + + meta = { + description = "Handle file uploads using multipart/form-data encoding and resumable uploads"; + homepage = "https://github.com/fdintino/nginx-upload-module"; + license = lib.licenses.bsd3; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/upstream-check/package.nix b/pkgs/servers/http/nginx/modules/upstream-check/package.nix new file mode 100644 index 000000000000..b91fd1190405 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/upstream-check/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "upstream-check"; + version = "0.3.0-unstable-2019-11-03"; + + src = fetchFromGitHub { + owner = "yaoweibin"; + repo = "nginx_upstream_check_module"; + rev = "e538034b6ad7992080d2403d6d3da56e4f7ac01e"; + hash = "sha256-lJzVs+B/1VjGiQeDyl0md/6o1AYVgeWxx7+LAwiYxxs="; + }; + + meta = { + description = "Support upstream health check"; + homepage = "https://github.com/yaoweibin/nginx_upstream_check_module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/upstream-tarantool/package.nix b/pkgs/servers/http/nginx/modules/upstream-tarantool/package.nix new file mode 100644 index 000000000000..fa7c35dd1422 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/upstream-tarantool/package.nix @@ -0,0 +1,32 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, + msgpuck, + yajl, +}: + +mkNginxPlugin (finalAttrs: { + pname = "upstream-tarantool"; + version = "2.7.1"; + + src = fetchFromGitHub { + owner = "tarantool"; + repo = "nginx_upstream_module"; + tag = "v${finalAttrs.version}"; + sha256 = "0ya4330in7zjzqw57djv4icpk0n1j98nvf0f8v296yi9rjy054br"; + }; + + buildInputs = [ + msgpuck.dev + yajl + ]; + + meta = { + description = "Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)"; + homepage = "https://github.com/tarantool/nginx_upstream_module"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; + +}) diff --git a/pkgs/servers/http/nginx/modules/url/package.nix b/pkgs/servers/http/nginx/modules/url/package.nix new file mode 100644 index 000000000000..14895761a41a --- /dev/null +++ b/pkgs/servers/http/nginx/modules/url/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "url"; + version = "0-unstable-2017-03-21"; + + src = fetchFromGitHub { + owner = "vozlt"; + repo = "nginx-module-url"; + rev = "9299816ca6bc395625c3683fbd2aa7b916bfe91e"; + sha256 = "0mk1gjmfnry6hgdsnlavww9bn7223idw50jlkhh5k00q5509w4ip"; + }; + + meta = { + description = "URL encoding converting module"; + homepage = "https://github.com/vozlt/nginx-module-url"; + license = lib.licenses.bsd2; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/video-thumbextractor/package.nix b/pkgs/servers/http/nginx/modules/video-thumbextractor/package.nix new file mode 100644 index 000000000000..54070a0ea7e0 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/video-thumbextractor/package.nix @@ -0,0 +1,31 @@ +{ + fetchFromGitHub, + mkNginxPlugin, + lib, + ffmpeg-headless, + libjpeg, +}: + +mkNginxPlugin (finalAttrs: { + pname = "video-thumbextractor"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "wandenberg"; + repo = "nginx-video-thumbextractor-module"; + tag = finalAttrs.version; + hash = "sha256-F2cuzCbJdGYX0Zmz9MSXTB7x8+FBR6pPpXtLlDRCcj8="; + }; + + buildInputs = [ + ffmpeg-headless + libjpeg + ]; + + meta = { + description = "Extract thumbs from a video file"; + homepage = "https://github.com/wandenberg/nginx-video-thumbextractor-module"; + license = lib.licenses.gpl3; + maintainers = [ ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/vod/package.nix b/pkgs/servers/http/nginx/modules/vod/package.nix new file mode 100644 index 000000000000..29ac8fdf85c3 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/vod/package.nix @@ -0,0 +1,46 @@ +{ + lib, + fetchFromGitHub, + mkNginxPlugin, + ffmpeg-headless, + fdk_aac, + openssl, + libxml2, + libiconv, + nixosTests, +}: + +mkNginxPlugin (finalAttrs: { + pname = "vod"; + version = "1.9.1"; + + src = fetchFromGitHub { + owner = "dio-az"; + repo = "nginx-vod-module"; + tag = "v${finalAttrs.version}"; + hash = "sha256-18LA3Thiz4EnVkRp6j5BuTyIcd0zXgyyvW6yuzm7vRs="; + }; + + postPatch = '' + substituteInPlace vod/media_set.h \ + --replace-fail "MAX_CLIPS (128)" "MAX_CLIPS (1024)" + ''; + + buildInputs = [ + ffmpeg-headless + fdk_aac + openssl + libxml2 + libiconv + ]; + + passthru.tests = { inherit (nixosTests) frigate; }; + + meta = { + changelog = "https://github.com/dio-az/nginx-vod-module/releases/tag/${finalAttrs.src.tag}"; + description = "VOD packager"; + homepage = "https://github.com/dio-az/nginx-vod-module"; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.hexa ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/vts/package.nix b/pkgs/servers/http/nginx/modules/vts/package.nix new file mode 100644 index 000000000000..fffb783fd6fe --- /dev/null +++ b/pkgs/servers/http/nginx/modules/vts/package.nix @@ -0,0 +1,24 @@ +{ + fetchFromGitHub, + lib, + mkNginxPlugin, +}: + +mkNginxPlugin (finalAttrs: { + pname = "vts"; + version = "0.2.2"; + + src = fetchFromGitHub { + owner = "vozlt"; + repo = "nginx-module-vts"; + tag = "v${finalAttrs.version}"; + hash = "sha256-ReTmYGVSOwtnYDMkQDMWwxw09vT4iHYfYZvgd8iBotk="; + }; + + meta = { + description = "Virtual host traffic status module"; + homepage = "https://github.com/vozlt/nginx-module-vts"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/zip/package.nix b/pkgs/servers/http/nginx/modules/zip/package.nix new file mode 100644 index 000000000000..1ff4e5bf658a --- /dev/null +++ b/pkgs/servers/http/nginx/modules/zip/package.nix @@ -0,0 +1,38 @@ +{ + fetchFromGitHub, + fetchpatch, + lib, + mkNginxPlugin, + stdenv, +}: + +mkNginxPlugin (finalAttrs: { + pname = "zip"; + version = "1.3.0"; + + src = fetchFromGitHub { + owner = "evanmiller"; + repo = "mod_zip"; + tag = finalAttrs.version; + hash = "sha256-Q5Z/0uVa8nVoQGH1Pfow9KHgnZdTGN8crbgWi/xCH/c="; + }; + + patches = [ + (fetchpatch { + name = "fix-upstream-subrequest-crc-calculation.patch"; + url = "https://github.com/evanmiller/mod_zip/commit/8e65b82c82c7890f67a6107271c127e9881b6313.patch"; + hash = "sha256-rPmdWlTJID/GoS3Ud8S7DM93icA9zWTJ1a4DIVzH5Ug="; + }) + ]; + + meta = { + description = "Streaming ZIP archiver for nginx"; + homepage = "https://github.com/evanmiller/mod_zip"; + license = lib.licenses.bsd3; + broken = stdenv.hostPlatform.isDarwin; + maintainers = with lib.maintainers; [ + DutchGerman + friedow + ]; + }; +}) diff --git a/pkgs/servers/http/nginx/modules/zstd/package.nix b/pkgs/servers/http/nginx/modules/zstd/package.nix new file mode 100644 index 000000000000..012ae4695367 --- /dev/null +++ b/pkgs/servers/http/nginx/modules/zstd/package.nix @@ -0,0 +1,36 @@ +{ + fetchFromGitHub, + fetchpatch, + lib, + mkNginxPlugin, + zstd, +}: + +mkNginxPlugin (finalAttrs: { + pname = "zstd"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "tokers"; + repo = "zstd-nginx-module"; + tag = finalAttrs.version; + hash = "sha256-1gCV7uUsuYnZfb9e8VfjWkUloVINOUH5qzeJ03kIHgs="; + }; + + patches = [ + (fetchpatch { + name = "fix-module-order.patch"; + url = "https://github.com/tokers/zstd-nginx-module/commit/f4ba115e0b0eaecde545e5f37db6aa18917d8f4b.patch"; + hash = "sha256-QCd/oBqAAdKpze903Cd119I+FSVYoEW+j38Hhg45hL8="; + }) + ]; + + buildInputs = [ zstd ]; + + meta = { + description = "Nginx modules for the Zstandard compression"; + homepage = "https://github.com/tokers/zstd-nginx-module"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + }; +}) diff --git a/pkgs/servers/http/tengine/default.nix b/pkgs/servers/http/tengine/default.nix index 615404118e76..c6a7aabab8f3 100644 --- a/pkgs/servers/http/tengine/default.nix +++ b/pkgs/servers/http/tengine/default.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { gperftools jemalloc ] - ++ lib.concatMap (mod: mod.inputs or [ ]) modules; + ++ lib.concatMap (mod: mod.buildInputs or [ ]) modules; patches = [ ../nginx/nix-etag-1.15.4.patch @@ -129,7 +129,7 @@ stdenv.mkDerivation rec { ] ++ optional (gd != null) "--with-http_image_filter_module" ++ optional (with stdenv.hostPlatform; isLinux || isFreeBSD) "--with-file-aio" - ++ map (mod: "--add-module=${mod.src}") modules; + ++ map (mod: "--add-module=${mod}") modules; env.NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2 -Wno-error=implicit-fallthrough -Wno-unterminated-string-initialization" diff --git a/pkgs/servers/kanidm/1_10.nix b/pkgs/servers/kanidm/1_10.nix index 079ef35443be..543296dd86f3 100644 --- a/pkgs/servers/kanidm/1_10.nix +++ b/pkgs/servers/kanidm/1_10.nix @@ -1,5 +1,5 @@ import ./generic.nix { - version = "1.10.4"; - hash = "sha256-+PutvVt7mqnZN+/vr0FwstB8JPuO3kJ4TSmX2Sx8WvA="; - cargoHash = "sha256-rfANfheiQnHEcbBODRW0nrPrlPdWQx3S7NmSQ50q010="; + version = "1.10.5"; + hash = "sha256-mNdG5iPtnhwvy9PABaRPV6KQfvD+/ZKH2hC6Hfo0y48="; + cargoHash = "sha256-UE/jZaX/mEJUHBqsk2o0rBcocpoFg5XWAmVk4smm5mc="; } diff --git a/pkgs/servers/sql/postgresql/ext/pgvector.nix b/pkgs/servers/sql/postgresql/ext/pgvector.nix index 4c7db028c84e..646393488be8 100644 --- a/pkgs/servers/sql/postgresql/ext/pgvector.nix +++ b/pkgs/servers/sql/postgresql/ext/pgvector.nix @@ -7,13 +7,13 @@ postgresqlBuildExtension (finalAttrs: { pname = "pgvector"; - version = "0.8.5"; + version = "0.8.6"; src = fetchFromGitHub { owner = "pgvector"; repo = "pgvector"; tag = "v${finalAttrs.version}"; - hash = "sha256-uGvp76uGEKVq+UH4zd4yf4RQenL3linf9SO/X+P2GH8="; + hash = "sha256-4PVr0dW6CL3ov1W5BPJU1CAphwOyXwqUoYgWCPXjto8="; }; meta = { diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 079a8e6296e3..08d69741489e 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1034,7 +1034,6 @@ mapAliases { graphia = throw "'graphia' has been removed due to being unmaintained and broken"; # Added 2026-05-05 graphite-gtk-theme = throw "'graphite-gtk-theme' has been removed because it depended on 'gtk-engine-murrine', which was removed because it was unmaintained upstream and depended on GTK 2."; # Added 2026-07-22 graphite-kde-theme = throw "'graphite-kde-theme' has been removed, as it is only compatible with Plasma 5, which is EOL"; # Added 2025-08-20 - greybird = throw "'greybird' has been removed because it depended on 'gtk-engine-murrine', which was removed because it was unmaintained upstream and depended on GTK 2."; # Added 2026-07-22 gringo = throw "'gringo' has been renamed to/replaced by 'clingo'"; # Converted to throw 2025-10-27 grip = throw "'grip' has been removed because it depended on the deprecated GTK2 engine."; # Added 2026-07-30 grub2_full = throw "'grub2_full' has been renamed to/replaced by 'grub2'"; # Converted to throw 2025-10-27 @@ -2042,7 +2041,6 @@ mapAliases { qMasterPassword-wayland = warnAlias "'qMasterPassword-wayland' has been renamed to/replaced by 'qmasterpassword-wayland'" qmasterpassword-wayland; # Added 2026-02-01 qmenumodel = warnAlias "'qmenumodel' has been renamed to 'libsForQt5.qmenumodel'" libsForQt5.qmenumodel; # Added 2026-03-26 qnial = throw "'qnial' has been removed due to failing to build and being unmaintained"; # Added 2025-06-26 - qogir-theme = throw "'qogir-theme' has been removed because it depended on 'gtk-engine-murrine', which was removed because it was unmaintained upstream and depended on GTK 2."; # Added 2026-07-22 qrscan = throw "qrscan has been removed, as it does not build with supported LLVM versions"; # Added 2025-08-19 qscintilla = throw "'qscintilla' has been renamed to/replaced by 'libsForQt5.qscintilla'"; # Converted to throw 2025-10-27 qscintilla-qt6 = throw "'qscintilla-qt6' has been renamed to/replaced by 'qt6Packages.qscintilla'"; # Converted to throw 2025-10-27 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8c541588411..fbf9cd665c28 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7459,7 +7459,21 @@ with pkgs; ]; }; - nginxModules = recurseIntoAttrs (callPackage ../servers/http/nginx/modules.nix { }); + mkNginxPlugin = callPackage ../servers/http/nginx/modules/builder.nix { }; + nginxModules = recurseIntoAttrs ( + lib.makeExtensible ( + self: + let + packages = lib.packagesFromDirectoryRecursive { + inherit callPackage; + directory = ../servers/http/nginx/modules; + }; + + aliases = import ../servers/http/nginx/modules/aliases.nix self; + in + packages // (lib.optionalAttrs config.allowAliases aliases) + ) + ); # We should move to dynamic modules and create a nginxFull package with all modules nginxShibboleth = nginxStable.override {