diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index 1b2d8501a02a..563fbf507342 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -72,6 +72,8 @@ - `nodePackages.wavedrom-cli` has been removed, as it was unmaintained within nixpkgs. +- `arti` has been updated to major version 2, which removed the long-deprecated `proxy.socks_port` and `proxy.dns_port` and the legacy syntax for specifying directory authorities. For more information, see the [changelog for 2.0.0](https://gitlab.torproject.org/tpo/core/arti/-/blob/arti-v2.0.0/CHANGELOG.md). + - `kanata` now requires `karabiner-dk` version 6.0+ or later. The package has been updated to use the new `karabiner-dk` package and the `darwinDriver` output stays at the version defined in the package. @@ -81,6 +83,8 @@ - `forgejo` has been updated to major version 14. For more information, see the [release blog post](https://forgejo.org/2026-01-release-v14-0/) and [full release notes](https://codeberg.org/forgejo/forgejo/src/branch/forgejo/release-notes-published/14.0.0.md) +- `bartender` has been updated to major version 6. This removes support for MacOS Sonoma (and adds support for Tahoe). For more information, see [the release notes](https://www.macbartender.com/Bartender6/release_notes/) or [the Bartender 6 support page](https://www.macbartender.com/Bartender6/support/). + - `lima` has been updated from `1.x` to `2.x`. This major update includes several breaking changes, such as `/tmp/lima` no longer being mounted by default. - `minio_legacy_fs` has been removed. If you used that package, migrate your data to be compatible with the newest minio and use the package `minio`. diff --git a/lib/systems/default.nix b/lib/systems/default.nix index e04f079035db..534af380738d 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -384,7 +384,7 @@ let if pkgs.stdenv.hostPlatform.canExecute final then lib.getExe (pkgs.writeShellScriptBin "exec" ''exec "$@"'') else if final.isWindows then - "${wine}/bin/wine${optionalString (final.parsed.cpu.bits == 64) "64"}" + "${wine}/bin/wine" else if final.isLinux && pkgs.stdenv.hostPlatform.isLinux && final.qemuArch != null then "${pkgs.qemu-user}/bin/qemu-${final.qemuArch}" else if final.isWasi then diff --git a/maintainers/github-teams.json b/maintainers/github-teams.json index 4b8c7efb8566..7600899c8c84 100644 --- a/maintainers/github-teams.json +++ b/maintainers/github-teams.json @@ -508,7 +508,6 @@ "id": 5536808, "maintainers": { "johanot": 998763, - "offlinehacker": 585547, "saschagrunert": 695473, "srhb": 219362 }, diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 8c4f2c636e3e..c66180c9329f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -19706,12 +19706,6 @@ githubId = 9677399; name = "Ofek Lev"; }; - offline = { - email = "jaka@x-truder.net"; - github = "offlinehacker"; - githubId = 585547; - name = "Jaka Hudoklin"; - }; offsetcyan = { github = "offsetcyan"; githubId = 49906709; diff --git a/nixos/modules/services/video/wivrn.nix b/nixos/modules/services/video/wivrn.nix index 5508a51137c3..1f67c871eb0e 100644 --- a/nixos/modules/services/video/wivrn.nix +++ b/nixos/modules/services/video/wivrn.nix @@ -66,7 +66,6 @@ let serverExec = concatStringsSep " " ( [ serverPackageExe - "--systemd" enabledConfig ] ++ cfg.extraServerFlags @@ -126,24 +125,29 @@ in Like upstream, the application option is a list including the application and it's flags. In the case of the NixOS module however, the first element of the list must be a package. The module will assert otherwise. The application can be set to a single package because it gets passed to lib.toList, though this will not allow for flags to be passed. + WiVRn has good default configurations and most options can be configured at runtime so it is recommended to leave this empty and try the defaults before attempting manual configuration. + See ''; default = { }; example = literalExpression '' { - scale = 0.5; - bitrate = 100000000; - encoders = [ + # left eye, hardware; right eye, software; transparency, hardware + encoder = [ { - encoder = "nvenc"; + encoder = "vulkan"; + codec = "h265"; + } + { + encoder = "x264"; codec = "h264"; - width = 1.0; - height = 1.0; - offset_x = 0.0; - offset_y = 0.0; + } + { + encoder = "vulkan"; + codec = "h265"; } ]; - application = [ pkgs.wlx-overlay-s ]; + application = [ pkgs.wayvr ]; } ''; }; @@ -206,6 +210,7 @@ in RestrictSUIDSGID = true; } ); + # Needs Steam in the PATH to allow launching games from the headset path = [ cfg.steam.package ]; wantedBy = mkIf cfg.autoStart [ "default.target" ]; restartTriggers = [ diff --git a/nixos/modules/system/boot/systemd/logind.nix b/nixos/modules/system/boot/systemd/logind.nix index d0878542514d..22d9195536b3 100644 --- a/nixos/modules/system/boot/systemd/logind.nix +++ b/nixos/modules/system/boot/systemd/logind.nix @@ -52,9 +52,6 @@ ++ lib.optionals config.systemd.package.withMachined [ "dbus-org.freedesktop.machine1.service" ] - ++ lib.optionals config.systemd.package.withPortabled [ - "dbus-org.freedesktop.portable1.service" - ] ++ [ "dbus-org.freedesktop.login1.service" "user@.service" diff --git a/nixos/tests/cadvisor.nix b/nixos/tests/cadvisor.nix index f63f900362d5..6f80d78f4f44 100644 --- a/nixos/tests/cadvisor.nix +++ b/nixos/tests/cadvisor.nix @@ -1,7 +1,6 @@ { lib, ... }: { name = "cadvisor"; - meta.maintainers = with lib.maintainers; [ offline ]; nodes = { machine = { diff --git a/nixos/tests/docker.nix b/nixos/tests/docker.nix index 4279e190a213..7d6b3c400f36 100644 --- a/nixos/tests/docker.nix +++ b/nixos/tests/docker.nix @@ -2,11 +2,6 @@ { pkgs, ... }: { name = "docker"; - meta = with pkgs.lib.maintainers; { - maintainers = [ - offline - ]; - }; nodes = { docker = diff --git a/nixos/tests/elk.nix b/nixos/tests/elk.nix index 48e505f24c7c..d10eb1192c89 100644 --- a/nixos/tests/elk.nix +++ b/nixos/tests/elk.nix @@ -19,7 +19,6 @@ let inherit name; meta = with pkgs.lib.maintainers; { maintainers = [ - offline basvandijk ]; }; diff --git a/nixos/tests/espanso.nix b/nixos/tests/espanso.nix index eb4bc6f2020b..1634d9b0de37 100644 --- a/nixos/tests/espanso.nix +++ b/nixos/tests/espanso.nix @@ -13,37 +13,43 @@ let { imports = [ ./common/user-account.nix ]; services.espanso.enable = true; - system.activationScripts.espanso-config = { - deps = [ "users" ]; - text = - let - confdir = "${config.users.users.alice.home}/.config/espanso"; - espanso_conf = - let - settingsFormat = pkgs.formats.yaml { }; - in - settingsFormat.generate "base.yaml" { - matches = [ - { - trigger = ":nixostest"; - replace = "My NixOS Test Passed!"; - } - ]; - }; - in - '' - mkdir -p ${confdir}/{config,match} - touch ${confdir}/config/default.yml - cp ${espanso_conf} ${confdir}/match/base.yml - chown -R ${config.users.users.alice.name} ${confdir} - ''; - }; + systemd.tmpfiles.settings.espanso = + let + confdir = "${config.users.users.alice.home}/.config/espanso"; + mode = "0755"; + user = config.users.users.alice.name; + group = config.users.users.alice.group; + in + { + "${config.users.users.alice.home}/.config".d = { inherit mode user group; }; + "${confdir}".d = { inherit mode user group; }; + "${confdir}/config".d = { inherit mode user group; }; + "${confdir}/match".d = { inherit mode user group; }; + "${confdir}/config/default.yml".f = { + mode = "0644"; + inherit user group; + }; + "${confdir}/match/base.yml".f = { + mode = "0644"; + inherit user group; + argument = lib.toJSON { + matches = [ + { + trigger = ":nixostest"; + replace = "My NixOS Test Passed!"; + } + ]; + }; + }; + }; }; in - lib.mkMerge [ - base - conf - ]; + { + imports = [ + base + conf + ]; + }; enableOCR = true; testScript = '' diff --git a/nixos/tests/flannel.nix b/nixos/tests/flannel.nix index 9bcd920bdc70..3dd6962491aa 100644 --- a/nixos/tests/flannel.nix +++ b/nixos/tests/flannel.nix @@ -2,8 +2,6 @@ { name = "flannel"; - meta.maintainers = with lib.maintainers; [ offline ]; - nodes = let flannelConfig = { diff --git a/nixos/tests/influxdb.nix b/nixos/tests/influxdb.nix index f8ec355469f7..c66792ab76e4 100644 --- a/nixos/tests/influxdb.nix +++ b/nixos/tests/influxdb.nix @@ -3,9 +3,6 @@ { pkgs, ... }: { name = "influxdb"; - meta = with pkgs.lib.maintainers; { - maintainers = [ offline ]; - }; nodes = { one = diff --git a/nixos/tests/influxdb2.nix b/nixos/tests/influxdb2.nix index f054039fa9a3..cc9539c5120e 100644 --- a/nixos/tests/influxdb2.nix +++ b/nixos/tests/influxdb2.nix @@ -1,9 +1,6 @@ { pkgs, ... }: { name = "influxdb2"; - meta = with pkgs.lib.maintainers; { - maintainers = [ offline ]; - }; nodes.machine = { lib, ... }: diff --git a/nixos/tests/mongodb.nix b/nixos/tests/mongodb.nix index e0174d4dd345..863c2941a840 100644 --- a/nixos/tests/mongodb.nix +++ b/nixos/tests/mongodb.nix @@ -12,7 +12,6 @@ in { name = "mongodb"; meta.maintainers = with pkgs.lib.maintainers; [ - offline phile314 niklaskorz ]; diff --git a/nixos/tests/peerflix.nix b/nixos/tests/peerflix.nix index 92a03157f568..c71727e11f08 100644 --- a/nixos/tests/peerflix.nix +++ b/nixos/tests/peerflix.nix @@ -3,9 +3,6 @@ { pkgs, ... }: { name = "peerflix"; - meta = with pkgs.lib.maintainers; { - maintainers = [ offline ]; - }; nodes = { peerflix = diff --git a/nixos/tests/rabbitmq.nix b/nixos/tests/rabbitmq.nix index ab339b95d2ab..68d3e09d0845 100644 --- a/nixos/tests/rabbitmq.nix +++ b/nixos/tests/rabbitmq.nix @@ -8,9 +8,6 @@ let in { name = "rabbitmq"; - meta = with pkgs.lib.maintainers; { - maintainers = [ offline ]; - }; nodes.machine = { services.rabbitmq = { diff --git a/pkgs/applications/emulators/libretro/cores/dosbox-pure.nix b/pkgs/applications/emulators/libretro/cores/dosbox-pure.nix index 8b91a6f195a1..7ccf48d09dfd 100644 --- a/pkgs/applications/emulators/libretro/cores/dosbox-pure.nix +++ b/pkgs/applications/emulators/libretro/cores/dosbox-pure.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "dosbox-pure"; - version = "0-unstable-2026-02-01"; + version = "0-unstable-2026-02-05"; src = fetchFromGitHub { owner = "schellingb"; repo = "dosbox-pure"; - rev = "77f067eed8e0ea2ad9e86fbc690922f1f1671fc4"; - hash = "sha256-mIeTBcx3XK4V2+t4MGc8klhDODuDDACFlI/758zDLPc="; + rev = "6fe60a669e8781d738150ad2353b87c1e1de7dd4"; + hash = "sha256-6hIevmWusjg8Wr9A5ov6RLovirtOIEhHtEYLQ7EHVh0="; }; hardeningDisable = [ "format" ]; diff --git a/pkgs/applications/emulators/libretro/cores/play.nix b/pkgs/applications/emulators/libretro/cores/play.nix index 7bf4deaa6132..4d265d072343 100644 --- a/pkgs/applications/emulators/libretro/cores/play.nix +++ b/pkgs/applications/emulators/libretro/cores/play.nix @@ -14,13 +14,13 @@ }: mkLibretroCore { core = "play"; - version = "0-unstable-2026-01-26"; + version = "0-unstable-2026-02-09"; src = fetchFromGitHub { owner = "jpd002"; repo = "Play-"; - rev = "900e599dd26e4b292ff55738cc8881530eed46ce"; - hash = "sha256-9lr7RDSdQ/FN3mgoh8ZTsL1J8vXyab+TqhvM8yp7G7c="; + rev = "b75abf3f5638df99d69fd9169a1a46bd325c98c0"; + hash = "sha256-KdRQPQiLnuO6RCsBjN7Ta1myrQtabrVf+rqlWypi/bw="; fetchSubmodules = true; }; diff --git a/pkgs/applications/networking/browsers/firefox/packages/firefox-devedition.nix b/pkgs/applications/networking/browsers/firefox/packages/firefox-devedition.nix index 2bd496dc0cfc..56ef842a6531 100644 --- a/pkgs/applications/networking/browsers/firefox/packages/firefox-devedition.nix +++ b/pkgs/applications/networking/browsers/firefox/packages/firefox-devedition.nix @@ -10,13 +10,13 @@ buildMozillaMach rec { pname = "firefox-devedition"; binaryName = "firefox-devedition"; - version = "148.0b10"; + version = "148.0b13"; applicationName = "Firefox Developer Edition"; requireSigning = false; branding = "browser/branding/aurora"; src = fetchurl { url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "ae20edec5b4fbeb8a55e3054c219734845fbd8eaee14e4e867df1979da508d3b8a1bc0bc22d8de677419e94ccdc06885c661494233c62615cc002874cc4adf0f"; + sha512 = "950dcb33c1d639ff54ae47c2573fbbdd9882b7d9cd7da0cab5f3fe891f2c466fb05a58fd74a941e887255b04f239eb39434f555c40999137e0ec3dbe1899c82b"; }; # buildMozillaMach sets MOZ_APP_REMOTINGNAME during configuration, but diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix index 95f66bed73dd..1911198b9802 100644 --- a/pkgs/applications/networking/cluster/cni/default.nix +++ b/pkgs/applications/networking/cluster/cni/default.nix @@ -32,7 +32,6 @@ buildGoModule rec { license = lib.licenses.asl20; homepage = "https://github.com/containernetworking/cni"; maintainers = with lib.maintainers; [ - offline vdemeester ]; platforms = [ diff --git a/pkgs/applications/networking/cluster/kops/default.nix b/pkgs/applications/networking/cluster/kops/default.nix index b6c565a9ee45..2e08c978fd39 100644 --- a/pkgs/applications/networking/cluster/kops/default.nix +++ b/pkgs/applications/networking/cluster/kops/default.nix @@ -60,7 +60,6 @@ let changelog = "https://github.com/kubernetes/kops/tree/master/docs/releases"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline zimbatm yurrriq ]; diff --git a/pkgs/applications/networking/cluster/spark/default.nix b/pkgs/applications/networking/cluster/spark/default.nix index 90792ef3dd29..3b1e20abb868 100644 --- a/pkgs/applications/networking/cluster/spark/default.nix +++ b/pkgs/applications/networking/cluster/spark/default.nix @@ -89,7 +89,6 @@ let platforms = lib.platforms.all; maintainers = with lib.maintainers; [ thoughtpolice - offline kamilchm illustris ]; diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index 955594eeaf0d..627b1f96ae5e 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -137,7 +137,7 @@ in meta = { description = "ZNC FiSH module"; homepage = "https://github.com/oilslump/znc-fish"; - maintainers = [ lib.maintainers.offline ]; + maintainers = [ ]; }; }; @@ -234,9 +234,7 @@ in description = "Push notification service module for ZNC"; homepage = "https://github.com/jreese/znc-push"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ - offline - ]; + maintainers = [ ]; }; }; } diff --git a/pkgs/applications/radio/js8call/default.nix b/pkgs/applications/radio/js8call/default.nix index 028ab8f245b1..fc7fa9564e32 100644 --- a/pkgs/applications/radio/js8call/default.nix +++ b/pkgs/applications/radio/js8call/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { prePatch = '' substituteInPlace CMakeLists.txt \ --replace "/usr/share/applications" "$out/share/applications" \ - --replace "/usr/share/pixmaps" "$out/share/pixmaps" \ + --replace "/usr/share/pixmaps" "$out/share/icons/hicolor/128x128/apps" \ --replace "/usr/bin/" "$out/bin" ''; diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 935e5ab09084..36106475cc2b 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -67,7 +67,6 @@ let docker-meta = { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline vdemeester teutat3s ]; diff --git a/pkgs/applications/virtualization/docker/gc.nix b/pkgs/applications/virtualization/docker/gc.nix index 3f75c0318e76..f6c7e9030a14 100644 --- a/pkgs/applications/virtualization/docker/gc.nix +++ b/pkgs/applications/virtualization/docker/gc.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation { mainProgram = "docker-gc"; license = lib.licenses.asl20; homepage = "https://github.com/spotify/docker-gc"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = docker.meta.platforms; }; } diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index df176c2b84d9..9fd672be28de 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -249,8 +249,7 @@ stdenv.mkDerivation (finalAttrs: { dontAddStaticConfigureFlags = true; outputs = [ "out" ] ++ lib.optional enableDocs "doc" ++ lib.optional guestAgentSupport "ga"; - # On aarch64-linux we would shoot over the Hydra's 2G output limit. - separateDebugInfo = !(stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux); + separateDebugInfo = true; patches = [ ./fix-qemu-ga.patch diff --git a/pkgs/build-support/docker/nix-prefetch-docker.nix b/pkgs/build-support/docker/nix-prefetch-docker.nix index 1a893e47e0f6..1199fabccefa 100644 --- a/pkgs/build-support/docker/nix-prefetch-docker.nix +++ b/pkgs/build-support/docker/nix-prefetch-docker.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { meta = { description = "Script used to obtain source hashes for dockerTools.pullImage"; mainProgram = "nix-prefetch-docker"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/build-support/node/fetch-yarn-deps/fixup.js b/pkgs/build-support/node/fetch-yarn-deps/fixup.js index c8dc8a27f139..b9c8c90b6169 100755 --- a/pkgs/build-support/node/fetch-yarn-deps/fixup.js +++ b/pkgs/build-support/node/fetch-yarn-deps/fixup.js @@ -33,9 +33,7 @@ const fixupYarnLock = async (lockContents, verbose) => { if (hash) pkg.resolved += `#${hash}` - // Rewrite key to remove git+ prefix and .git suffix to prevent yarn git resolver - let fixedDep = dep.replace(/@git\+/, '@').replace(/\.git(#|$)/, '$1') - return [fixedDep, pkg] + return [dep, pkg] }) ) diff --git a/pkgs/by-name/ac/actual-server/missing-hashes.json b/pkgs/by-name/ac/actual-server/missing-hashes.json index 12957bb02129..e85e14e76160 100644 --- a/pkgs/by-name/ac/actual-server/missing-hashes.json +++ b/pkgs/by-name/ac/actual-server/missing-hashes.json @@ -1,30 +1,56 @@ { "@esbuild/aix-ppc64@npm:0.25.10": "6ed1afe8ab7e186e94ca26c359c685d11394deb101f0d61d62ce00f1d29147edf04a441b532f2fd683484cd980973e41e0d9bca7a71fdf2d1bcf767d45d28d18", + "@esbuild/aix-ppc64@npm:0.27.2": "9c18cc2e4a03339a55013aac05b4a3fc4b77e75715dc252d034aa3d43b754abc053a7601b95e31249f4b6e69b68db2f5e6cb04b0ed619f825f2f70daff1a78d7", "@esbuild/android-arm64@npm:0.25.10": "3e2d57893179a673aebeeff8779e96532da0a9f204bd018f94fb7db258d65d1324e47c621a7d5399f5ae0a51337a44897e8e003d940d4120d749e57fb3b139f5", + "@esbuild/android-arm64@npm:0.27.2": "a318fc9ffcdad7fda8bb521af8b17f73d93d9a94b4cca9301fbf72cf3f5a6e945edd589a47388de70f3e9582655dcf5b5bb928a11e306368fae4a9106d5143d2", "@esbuild/android-arm@npm:0.25.10": "c0785d963c24bab19a8a07cfa47c174d7be7bf46e329726686d743a14604b096f3a85f42807ff72dd918094d117396d3005ae88a20f15b2304691fa7d8d6b7fd", + "@esbuild/android-arm@npm:0.27.2": "01114275e096b9177ad2496730087ee081d6e65a75bc087457b527c5baac5a8ccb362435f45232532bf6f97de95e1790dbce127d55abd5e4152c7214682bf4d3", "@esbuild/android-x64@npm:0.25.10": "f49fbfeb6f95589ecc152668266a28ce37cc24c10756c203898be07af127b09eaf077428cef86dbcbd6f207706e8917dc6d354558afcf5cf7c532ea882b13779", + "@esbuild/android-x64@npm:0.27.2": "e92c5b6919081a14c8882f1167cf90b4e4bba745ad6e9a23428f85a1cd5e79dfa3f1d2fc943686b237e4cd09fac52ad3b3791deab6a0419ee10859284d3834aa", "@esbuild/darwin-arm64@npm:0.25.10": "2d049309a05272607dda18f59ce0b262ec1ae383133697b7a0c013c0835ec72910f61fd17a1be744c17562a092b1fa0a945ee1bd2cdcd029922c6401727a46b0", + "@esbuild/darwin-arm64@npm:0.27.2": "5e99db5037167bad4a095fc445b94a2ce02357870ed58b79e13ae6bc09b5cb33d7e03f925492df940f9e0ad685a889f02beec1431d8fbf4c7ced55b2f48f5659", "@esbuild/darwin-x64@npm:0.25.10": "4eae1ae1486307a9cdc521e0416f28dff3f2693d051c81de15378bb100aef809f862526cb9c03360db69aa6832762b01b955f0a8bbcf8adc191af87d9f0e4e4f", + "@esbuild/darwin-x64@npm:0.27.2": "87f2fbc4cf11724ef805b17cbdc7b0a9498332bc4b61d55e110ecc3b09bc488b88c0bd140ea48924e9c97a2063cf7e440fef13dd56e415c46799619d61086910", "@esbuild/freebsd-arm64@npm:0.25.10": "f4915a93ba262028f30fe5d87210ef84e1fa725cb76fbc4ab9c72c4d6a862d79c6ac2c54f6e606a8a53ab1ecf53c21fb5064571147e8a9a10aabf1a7d95f32f6", + "@esbuild/freebsd-arm64@npm:0.27.2": "1ffa23243b913e377a5b09fd97ad9f089be3695aafdd893b60bb7f9be479256d8b7546f0bc96c4e61133fe7aeeaf95a8e941e82a65d99008ff82c99bdec85eee", "@esbuild/freebsd-x64@npm:0.25.10": "94628bffea4936e26570450348be6629b1872ad73cc4af7efdc2bd29ba95a6f3bcfd87b3ce0371f61fee22bbfa5e6f9e148a6c6b8c62c5b32a0786ec4ba7b789", + "@esbuild/freebsd-x64@npm:0.27.2": "44f744b289cf9e115b0adfac1905818d756dfced14213bf144d9016d96f67575ef2a55526f76e29ee775fcfec7274ba3a5e6833f35ed79a4592d3f5eac278267", "@esbuild/linux-arm64@npm:0.25.10": "ec1d900010bba313b403a7350a87e10ad0eb390373b290158e98902cb3ad15738596af7ad188942db1fec027b9e73336f193d8bce821097d13c224ecaa832550", + "@esbuild/linux-arm64@npm:0.27.2": "2b037d74eaff4e9b5a6076760ede873320707636a3495939687cdd0c2c7150883111273bc0a8663fa305c42f439f4748b5ad7f15a1a1ea9fa7db575d9faf2d1b", "@esbuild/linux-arm@npm:0.25.10": "5459fc95b966199b27060a0926d5a1822d4c7f4132150fbbdee99eb3960b8cef8314c451c4f8c4d02e39c12b36267bbd59f030fda8a9b512ca2bd44dbb4bafe7", + "@esbuild/linux-arm@npm:0.27.2": "28cfc3a9ca11fc899649e7a706fb4b2ee57999bd92e86c23726b3ed0f832732411dd0aa3e2bcdb4105759f83bc4e5adc98dc195aaafce736c910db4e43694702", "@esbuild/linux-ia32@npm:0.25.10": "283430e003d45a698a3d5a4e1ccb243f0134679fdb839c4ef1b48c79b2d975969fa676e261a772eaa3042a9870f7392930974cca0a779ee9950698607d174c48", + "@esbuild/linux-ia32@npm:0.27.2": "ac6cc92b9be2ec6d9d483c53fc973e6381765b784a2e1b71fa93ea0cf976344c2e3e0bfda0140b0829b3ec4304d9b886692b2891e68c17d2121066d06e67f0ac", "@esbuild/linux-loong64@npm:0.25.10": "c8ae07926c5d31f66ae81db3267ae62c4f844abb87188a901c91f9ab7b8a88d381152a59a89c1bfef61459dafc0a066f722b3c410ef07801d2570c1497477b44", + "@esbuild/linux-loong64@npm:0.27.2": "625f5b6c2218a3acb2cff8f7f02a53ca89d13925f8932260ddad01595c6907beda4a79e4b767b1101f5971049f88d3ec6ab29cf565b4d61d9b0d7277e2cb578d", "@esbuild/linux-mips64el@npm:0.25.10": "cc3828db4e00fe8ab932c896628cd193aa40dcfb03584f776d3b6be141691f2b0379b5a3070cba56375b00181a13ed955d70e2f2f3c828a5a794ac9eb06f6a07", + "@esbuild/linux-mips64el@npm:0.27.2": "0c62692cb3a297b37212dfde52a861861843a716f6b3bdb73da49ba249a4c001b989ea61dc4540c430fac59ce2f8fc45035cdfac80172c5ddaf1b9df8471aecf", "@esbuild/linux-ppc64@npm:0.25.10": "7f2995c79a76ed739fe85773cd9933f90ef50c003b3cd340db9c738e714e05698d48b355d0495ffef92f7444018454c1c7072992e5411e9466856388b24c1417", + "@esbuild/linux-ppc64@npm:0.27.2": "b804d2dd0a6a85fe1c731828c725731a55ab120d2cc16941d560b2e9af5c2ec51586914ce26a84a326a9d46fa61eb8bb1f843953fe29ddd43b3f3099c491b5ff", "@esbuild/linux-riscv64@npm:0.25.10": "3cba9a06e732e4c86f943699e47a2ac7dcbd225b753d2d004179069c860013a340033f1c7990e5adb62fd0930d6982baf43ce4f4e85a2cbd0d11eda30d7fdb54", + "@esbuild/linux-riscv64@npm:0.27.2": "03e67e7207a83801363e3637f9a35fb6224ed4dc23bbf6eca41904fc42f5a6806e1e591666bf48dbf62eba97d41ff4355413b14dcb2339007b22c693374c49f6", "@esbuild/linux-s390x@npm:0.25.10": "b3e46636050ef3fbd80696545c84fae1969c3f58b0004af07044051b88623601da280d32d146d1f7f2b534ddff764e26dfd0baa6fa098e4379d8b7c476d7b631", + "@esbuild/linux-s390x@npm:0.27.2": "eb24b9c0a4a1492e4ff34a87933f6a3b348739c12f864b408144efdf949871c1fbb02a1cca741bfa11fd08aebe585d046fd3311b462ce4c795e3064ba3912469", "@esbuild/linux-x64@npm:0.25.10": "c677043cba5cf7c1953429d09ed5efa23d6cad209feae2080c3ab14b2f30d56a926ea4a5bc3cd3fa20cfdc3e2c6bca2eaa68e91ee92608819d02aba6c6beacbd", + "@esbuild/linux-x64@npm:0.27.2": "ed1542f203329521fb1f308696c76ba59ed4a4616a24e21bf4820685362bba209d5c44c2f4e66c88dc7b7399df9ace625454d4829ee529d076ccaf61566e11cf", "@esbuild/netbsd-arm64@npm:0.25.10": "28049c2ad9a67b366a843931742d6a5bf535deebc0b5f6918ee69980ee35a4f16d38f1e4dc2bbb1ac00e852bebb5268fff9c41939ad81bc28e4d65ad9143e51b", + "@esbuild/netbsd-arm64@npm:0.27.2": "576dd082047077b9cc41fbeffd728821a4f3b80969c1d2d6c274301122c6de2050f484fd4e946777527b8a15bd2a5ac54f85ca7ab95ea72b5345177e6a888687", "@esbuild/netbsd-x64@npm:0.25.10": "36d4e9ab1b9fc28b26e571b72ec4baeb639e3596a2ac7cddb86c9c812c550fbe8f860abf4915f1053280b904f1a99fd26b2d1cde3c899ba33d394b6d0bdc383a", + "@esbuild/netbsd-x64@npm:0.27.2": "f8994af3e2ff3c9a91e874e58698b66e6f8d4e72dbc0aaf749b74a79420954146ed053359b0a4c213918582cee187d8a371737a33cfb93e624b4d091e5a6c240", "@esbuild/openbsd-arm64@npm:0.25.10": "d477b47a4c4201c5c4b53d14299abace47f54d3f9311534bf667b14f3935cb9bfe40724e758c1ad595e29b8e8b2cd331de0d7c4a84da290261f6a48f94eb489e", + "@esbuild/openbsd-arm64@npm:0.27.2": "f710da24beeb747ef3a11b9d99085a14f5c929f942fd9d9a05b7806d5ff1b85631bfa506eb7a6aed9fd01ec99bf91f24736f9f0e0eb6b7c0019fe0dddd2e615c", "@esbuild/openbsd-x64@npm:0.25.10": "15f4560420b57e548f26913d1bdbd00ae6535d912ce87b7e8e1a366b754511581fbfdf192c5622b1757bb56b082b316336853dfd6f6140a2b4c002c4ceaaff5d", + "@esbuild/openbsd-x64@npm:0.27.2": "62670fbe1f609c5362df7b45968ded512a0860e2ad8a4715a89993abfa2f9f08a28f1294c7857d80e6d3f713639a71d291c06a961b331de67ad350032d1b8e96", "@esbuild/openharmony-arm64@npm:0.25.10": "3dd9f05a63e4bcb67a9097663c03b7d917bd1ae8338bafcd2f0cd788d672d729451ad41b993567ef067c49acf8581fb2bb949a4434e48b9492b6087c2a28032c", + "@esbuild/openharmony-arm64@npm:0.27.2": "e279efdc18301add96ea791ba9ef117cae05346688cd521fd225a60ad166add4bc995af985058e3b6ab9e65a7c49a79108a294d6aa26a1d1685ad0db194e2c56", "@esbuild/sunos-x64@npm:0.25.10": "1733bda6f4f5e13aa764ff27e454f5876ff72ed36bf94600a98791c678831c736f66130d527fa330b7f6cbea3d982491e8454f65a84583eb5da85588dec260fb", + "@esbuild/sunos-x64@npm:0.27.2": "7234302321d36576b5a9f027915417cddc195a67b19cdfb50e69c337ee0dd63a88be6b72d7ef299cd569d1af62e54774303d52d3d6b5e5858db975241ae467d6", "@esbuild/win32-arm64@npm:0.25.10": "16fce99202539f6319f439a0db7b078b95ac4f18c1d9736a6fe0cbea1e88faf725e798af2f1a5ff3f39f9b47eb2fc70ec78b1b5dae35d06682748b245096a2e8", + "@esbuild/win32-arm64@npm:0.27.2": "36620fddf79da3e8e527ef8331436929fa7a0b23c9b591af8f8573d80ed9c4ef45b24c6fa0abbb01d187dec497efa6c9d9d397d575afc1f28477e9ca16a48d73", "@esbuild/win32-ia32@npm:0.25.10": "c6db22bb001c8da006ee83b622b2ae2403583f1bc8e11ae88190801fb19e1c16da6e2356a15b0534463aac1170d6208a230a5aa26cacad4e85fda9991b77a389", + "@esbuild/win32-ia32@npm:0.27.2": "96e8c1fa0ec2b5529ead2ba703e5da7644c138b2f9b6e285c05513f0455e99b2b0dcf399f01779fb384e22810e82f892491e44402772c62d3fe094b025bbdc0f", "@esbuild/win32-x64@npm:0.25.10": "ec3c325501843d502292cc36a6ddb08ce13fdf5accc5c73b3c2084e6862a757edc4f46677ae5c9c32a0087fcbff2a894181b7e1881137641cc91a2ca146d7cc2", + "@esbuild/win32-x64@npm:0.27.2": "1ed08bebd916c16003f3784276ae683ab41d34951a0c272f6e072b8067a2b4bacd6f6f75a8dcea375b8545e15891d305425cf7c8dd31f7deab56ef22cde4a1e2", "@node-rs/jieba-android-arm-eabi@npm:1.10.4": "60a55caf33f914d1b6b2947c88ea5fa9a58a84d2bedfccb8639162991b9092ec86964b64979c0ca0cf0d5e5be2766236a612b67ea03b3b3c4ec4d608dde2475a", "@node-rs/jieba-android-arm64@npm:1.10.4": "e54d5d1c8fab348ef86c1e0aaf4aea8e2e52924ac1c4bed6ef76588b7446122c332b593e4b471b3268eae4386ab991e9eb0337962b8f17bd2dafa1baf1b7c755", "@node-rs/jieba-darwin-arm64@npm:1.10.4": "6ec6503fd063d03c0284210b869e31b8db306777ae7acca8be3a9fa979f57cb7729a35723eda3c76ed6366e7b4022c4b9c5f350ff65cd82925f381965640999c", @@ -39,22 +65,22 @@ "@node-rs/jieba-win32-arm64-msvc@npm:1.10.4": "68146cf2b5324c461847da9fd36aa851aeb5655f94b0178a194630c80926e914b71f5fe60a6853c9197516e2b2680303bf28c405963f8655d0099d335c5178bd", "@node-rs/jieba-win32-ia32-msvc@npm:1.10.4": "38deadbf93c6ffb410a880f8938034635e2ca755b956b7cf0b751f287dbfb4b5e58a492f532f23b30e77a7b3889467055c4d9be4d76df8c4416d97f96c242f93", "@node-rs/jieba-win32-x64-msvc@npm:1.10.4": "073b499e19d211f416a604a791c7a29c99552b328d0565d8381258a49682f87014274eebdaafcc9477238a2fd555b0e18fedccb45a49715ad3332958c6f43905", - "@oxfmt/darwin-arm64@npm:0.17.0": "71b9edea8adcd27da7dbf6fd9d9307aa2721c644ad8ebc75cc7ac94872223c3e1364fa323d979a20a483ac39e0a36dc0cf4ad5d47516a23b4d8321d4a1f6633e", - "@oxfmt/darwin-x64@npm:0.17.0": "4c853c87f8db467c463467062eb7f083d66a5d2cd7b8aa260f62d6d1567d9cc43848f8a07fc5e98fc2376c69689098e98a90b7eb382ddab63cce23d74eae7ab6", - "@oxfmt/linux-arm64-gnu@npm:0.17.0": "4fda05a45aac1872af2545aa66f5025ae1048277400e56aaf2fa230858d4d2dee660a095858238d14a733fe5ab2fb4630c9e4d74ac8dcccd71423b5288868629", - "@oxfmt/linux-arm64-musl@npm:0.17.0": "3cf4c2750cc083464cd77d2f083ee0ead99a1a95330e0129d6145189d16f7a51714e61d3ab231e3a456fe09726d097d39cdcdfee3bbfae31a01a25b188049d59", - "@oxfmt/linux-x64-gnu@npm:0.17.0": "4ff9bbf38f689e6cc4da94618249cce9c2793e0a5aea4e443d248379f3917de8fbda2b6efe847daeff52b9fbb6fe83777290168b53065eb07a0bf6ebd5f51bce", - "@oxfmt/linux-x64-musl@npm:0.17.0": "8415da3d577bbbb95e0c590dd0ce2c9dc274ec415825c6983295635ef5a3b85de9506e970512795ee3a6f5f2ea13b55f17cc929d227248a685377fe2a696c54e", - "@oxfmt/win32-arm64@npm:0.17.0": "9099a962667f5ae861517b8e8497ca535038b232a9018882b0ad5a033e7830ab462717a04797aa1da89f0da9b733e22f41762bf69f277ce5865a0e6a5256d5d2", - "@oxfmt/win32-x64@npm:0.17.0": "02f95c2034b3a805d9c1e45c4b3bb957a775830ee9a31a253ea3fd8ca81f03ea50a89ba6ed06c03ec96d1094cec2be81e7ebf936c16a7d410e41caaced398899", - "@oxlint/darwin-arm64@npm:1.32.0": "2de9d433150abc903561ff2dd058620233033647458554ac9353264e0aaa0e6ae31adcd82c67f93f08a793e578f99a05a98861a1a666f57b8fb2bcf2ec994217", - "@oxlint/darwin-x64@npm:1.32.0": "ab6cb1af8034e49b9ef7412da12d10f93b1f0bcc50d48a5d4051f1f519f27e23ed357cccc8e74068d10b5980b667f773658f2cd1877c5d64bccd6d2a02d4589a", - "@oxlint/linux-arm64-gnu@npm:1.32.0": "ee1b2046013e6c3f4ae6b16d87a83714ddc421a331221b884c885d46236b41a5394e8c2e6430079a5fafb874e02d70ce3953b119a9314253c48fbaaed0f73138", - "@oxlint/linux-arm64-musl@npm:1.32.0": "21a5e03fadf0329fd570f6b0d5030134a182b56c3c76f6d45040718f441e6b7dc9faa4df28c89c03e0f00c6e1b8294619d91fd2acd2aa058895b6435b4c565b5", - "@oxlint/linux-x64-gnu@npm:1.32.0": "e01e573538868746624ae2a45f70b9162a86654961f5baa31c76250414ffc9f46bfb277020e1af4b0c29707e388bcf3e5f299850b318089786bf56f098980fba", - "@oxlint/linux-x64-musl@npm:1.32.0": "96f033d22630060c83eb24675fa0bfbfa6be72b1fcd735c9423a2c4300878d4051119115881058b87ceba0bd555f35c2282a6775f19567d5799909520b8a1f25", - "@oxlint/win32-arm64@npm:1.32.0": "7d17c307a56703016e99638be262225cbecece4d4a43005cb9cccd08f0d9c385de33331a60984e855ecb5ab3de2b461ad15f095efc59251482ee9e0b6ea41a58", - "@oxlint/win32-x64@npm:1.32.0": "b646ba637dbe9c742157b56832f49cffc80b59b28ba48f9cbf34ac59e25c219fd1795e395c68b8941199dbb5bdf78b86b0545b0baf8232b77f4fed8e0f50e027", + "@oxfmt/darwin-arm64@npm:0.26.0": "7935654492f237b7bd24ee1a08c6455d797a97f435e93490e9a315858b4fe3cd961bbd9c81e951de8c0383cf094b0f816b316a2ff26bd1dcec3016c53b4036f1", + "@oxfmt/darwin-x64@npm:0.26.0": "b375a2b7fe93831a1d517ce86fd275c2c67ace54b8b5de8b4195006863b17f0fe99854dd09d364000ef0a0797eaadf97476e5d30e6eb94988062851c8d3dd635", + "@oxfmt/linux-arm64-gnu@npm:0.26.0": "a5239df32f8512334652ebc271df540e48d72e3971f6d363aab76085643f2f4324a5f5ec0c2fd3ffb8c1e84b482fc1835ac481f16790f9d2c8a9c2e70494ecbc", + "@oxfmt/linux-arm64-musl@npm:0.26.0": "20365527d2d4fd48cd04858ab228ca62df0a6c43c6bc1b483ef42feb71c0ad54bf70b847b2495e4509843bbad8f0b82bad026d565b7890695e42f1872334cf46", + "@oxfmt/linux-x64-gnu@npm:0.26.0": "8a0e58fc960d350c00fed4ffbc48572bc8916ffc5c837512c4b397cf91deed916410ca8353a99536943a62e45f5afaf3ed6ec7ba286be35377906eba47064936", + "@oxfmt/linux-x64-musl@npm:0.26.0": "de6737ad58451a8203f1c5c8af797080ea9f8efdc52d00e8ad20ba3855cfdaf796cdb6840e5ac0407873aaadae680bb038313a52218332748ff470b4981e7ee5", + "@oxfmt/win32-arm64@npm:0.26.0": "d70bf0c6117170dd3ce739276352baf59907b74c91e957f0b0fe231f12c2d459eaff37cd8e15a6c9e74c6af98cb5fbec8222948a35f9536196417b74a864c2d8", + "@oxfmt/win32-x64@npm:0.26.0": "8a1dfa4ad594b174f44c9e5a37db585b29c2022c39609007eefb2c5705325268dd88b1bcd98087c87052d48b350205f4997b8a3763f532820491354036e2cfa8", + "@oxlint/darwin-arm64@npm:1.41.0": "f89cbee9ac6b471aacc5f7f9ccd83488768c962da0efffbb87f3c74cd4916744119b553435900d6370c340e0f2d26641d44f073d0394a55667b1f3dda7a4f311", + "@oxlint/darwin-x64@npm:1.41.0": "21f664015813c05f24aeeab89f1819c5b8ae732ccdce3aedf1a8e1c87db3784acd51f9c4e4a1b7368d7fe62ce22e0f5230abdbd3bbbeb01c3b9c2a0a03c5688d", + "@oxlint/linux-arm64-gnu@npm:1.41.0": "6b4f5aa8d658f46989febb54256ab23f3ac98a74d2f23607df97af405f07a62b4e734e138dec94508057937988da33d169e91a69a016b6bfc832ed5412faa311", + "@oxlint/linux-arm64-musl@npm:1.41.0": "3b35d850ed96305fdbb565bbcf065796558624107456c28dee1728230f53f6e10d39564b86c5c716b11d6056fe75614358e5c607ce186084ad077fc298336c80", + "@oxlint/linux-x64-gnu@npm:1.41.0": "d8788979fa8a7fc4dc1ceb5e382c470b2c41a0dafc75c528792b87290466abe5f26ebca4c7aa286a90ee88852dca801bd168a6756eb8fda1a08faf3443f5aff5", + "@oxlint/linux-x64-musl@npm:1.41.0": "892e3141ff0187bb0e94775dffbd9781888f771819089d7d4a01429539fc2c9e94c48a25c4998db8d426e49f84d453a108ed2c35056938ff7efd1e1f5fcafed1", + "@oxlint/win32-arm64@npm:1.41.0": "d4a8dfca1ded97ac0394636d77afeea997b1133460dd4f746dfe722827d14d98fa7a4e3a1e1dcf42d1f97654637c99c329cd051ffcec793619c46b017526097d", + "@oxlint/win32-x64@npm:1.41.0": "522705b9fda83477ca691f3cfd139d32cd0dd177b318fb4a98ca55af4ba3c120ab45104ab10194ac81d191cc575d898c768f25ff23c73604a03f4c8ee1ddc412", "@parcel/watcher-android-arm64@npm:2.5.1": "e9c94ede3bd5c5d999d117d22ac8032a17f8ebc72db3eff04ccb2b4e6718db19f24bf29a66a610e03f4ee95e2cd7b2d30c15b1845eb897b971fec75dbdd76141", "@parcel/watcher-darwin-arm64@npm:2.5.1": "0cab55a55c128ac5742388fc8dbfeb9877018509943801ce8a52b57bb6dca24189d025d38684b1e482cb7816368a52c6434dfe45d3997e2fd2509276f48774ea", "@parcel/watcher-darwin-x64@npm:2.5.1": "bf07b8ca9a435fb885fb0ca6565204d2f2098d7f632faf26a6478bb39f538c73b50afca17c193dc189a80a864d85e40f924ec7f21a0e7ad7d0de6f97f7154134", @@ -88,16 +114,16 @@ "@rollup/rollup-win32-arm64-msvc@npm:4.40.1": "d4c9002b95c4b6ee842faaa5087582a0772578c0969c9ee470697a6d3fd251845481285f5a4027bc8c0524bf277f3437844cae9936c5f96ca753dcca61e2f47f", "@rollup/rollup-win32-ia32-msvc@npm:4.40.1": "446e3ce5b037d1847af84e9a2b52734ae9f5425937fec2558d26ffb5c253dd8925dc35591abd78b0d43f7154222e47ee9aaeb3b167b3d69627805a97c5147185", "@rollup/rollup-win32-x64-msvc@npm:4.40.1": "39fe3c6b86ef880fb1d1261f6096d19707584c628271d6ae01f5a5f50d8a24ef62128b5929064c0aed4390c7c0c0b7cc9590e300fa5f10ed624816748da2fbb2", - "@swc/core-darwin-arm64@npm:1.15.2": "811bb38ede1d92045c3c84169f7b2202bbf7caf2745d26cb9b141cb188465dd94a700733b0d9dc8a97590d9ebb1a92ef5ed40346d3fac7f88832365cca5d2678", - "@swc/core-darwin-x64@npm:1.15.2": "b0fce366539c7daae5aab6041f10e9e70a767b277fff0f6ad3fea09b46d95f0208961ce1c6a0a55486718a3997ffa8dc38bd03030faa09395f9261792a42752e", - "@swc/core-linux-arm-gnueabihf@npm:1.15.2": "b55975abf42d5af0db4a149ad5e8a4935619473517acfccba978d90a300f5d97c4b883f2c3fe95bce57be36b0f0d21ad889a681f492e9e1338a87751d9858602", - "@swc/core-linux-arm64-gnu@npm:1.15.2": "6345874a4385e8a1793a2c80b1e20e7883faed348e118619420c58cfcf6f7106ce76b179c10220f8fdccfa92bd5ca45c3749bc2e36075e8684b58df367a714df", - "@swc/core-linux-arm64-musl@npm:1.15.2": "7b1d51d7f566e42b178b49dd8dde9d630afc6e5d9cf89dcee1af39ad9c1016759e9cc5da37b58c52df50801c3a410edf0c00cc1a7f7ac93027a0628b5a5d05f4", - "@swc/core-linux-x64-gnu@npm:1.15.2": "5e888708763bbe3ddf4e7c4f6de75247ca3eede869fc7964999c7e950ffeace38e36f50ffd67e4644055913a0af5d18dab895c701cf94c83321a48c31044d26b", - "@swc/core-linux-x64-musl@npm:1.15.2": "aadabca760a39a4f4425b83557a836960998d250f7c0b5e3d8104bf4e9597cb00539d89461678dc592053d68dc0bfa4da64de215b5af74890cd1d455dec90728", - "@swc/core-win32-arm64-msvc@npm:1.15.2": "1c009bc927578943b5e08f43ef69dd6997545feeaedacc7fcd415e5a6e7d669186f0591f1e3617b0218a67567216dfa134d77c133a75f44c8f11f44d52c73532", - "@swc/core-win32-ia32-msvc@npm:1.15.2": "88e9beeafa768fb212a64b0652f66d2aa2f6728a0309ce6f8962200d65ff370638578f13b783a83d499e91ffafbfeb9160b3a5fb37521d1120b506e9ddf1e89e", - "@swc/core-win32-x64-msvc@npm:1.15.2": "df51454cdd0a5ea999d267a3230e9c51daef93f0fefec3c3aed5d3f8c8409f89514971edb99270fece2e3342bccf3c55a28a32a87e5cd250f25c2410218ddb8f", + "@swc/core-darwin-arm64@npm:1.15.8": "4458d26f6682bdbf88565d548a04f6e8ed81ea05691204703a511adf4d4ef1889883da727349b5e492b2e53a4f2969fd06ea34f84e32cc5a963ac25194d6caa1", + "@swc/core-darwin-x64@npm:1.15.8": "4075f73359b4cda8d7bcc68a636fbff60db3dea0ef4813b7e1a5ebdaa2c1197b4f888f7565a411f77ee5e8fe2398e3f1c27dfe06b2b087e7004009aeefac2019", + "@swc/core-linux-arm-gnueabihf@npm:1.15.8": "6b82976fd35007ac7be41a7d8529dbb0c93bfa858e532c6a8d3fd899c41ecc9976fa40746f6005cd48d82340fcdf0a426296bef248ac7b77334c3744141fa823", + "@swc/core-linux-arm64-gnu@npm:1.15.8": "ed3a8f363bc589886d44db58dabe6d53ce23d2cb8fe93a80fd05dd1ff46ebf438d2f1d38cf4144f4d5b89504dc73d15bd84540ac23b20d4aeb4f463de99c416a", + "@swc/core-linux-arm64-musl@npm:1.15.8": "b063f086e3e92f622fd8fb1585bf0cf0b49eb910361844a4bdb0d0165fdb906fe53051cfbcd92ccfcbfb13ae6c0d85f2c12e373a01df5a4136b513ae94d7f626", + "@swc/core-linux-x64-gnu@npm:1.15.8": "7028720f8aa475896f0468dcd77cc2512362082357e4e89d6e31ec559c87d25f0f9d7fc1702d59766217ea4ee7cfc0d1de817fde56958537f8f3ed9259673b55", + "@swc/core-linux-x64-musl@npm:1.15.8": "be913db41e70ae8b9553a759f7a9cc80e50c4f521f058672471a182938c3789605c2122c77c32579d2b739ba4f91fa7e8beb8be31f87858e9b52e199c6644e0c", + "@swc/core-win32-arm64-msvc@npm:1.15.8": "7047d7250e10577921b9250985c8e4408767fca73963b594f1e747f64e77eb5e2a4d2067a58debca9d33b2fd69385fd56410d5dca0e15bb6957aec9475909809", + "@swc/core-win32-ia32-msvc@npm:1.15.8": "4992c3c2fe8fc0dd870319080b806e965278a07d23d0463b16b2c95d0299c0b2e03a1b7bb84c7da41002556b8a71f86b721037e743648321c2186d68bd2b4e32", + "@swc/core-win32-x64-msvc@npm:1.15.8": "4faf5a9cbbe7e7afc038aa26ec658e41614c06116265be1a938e91839b027e1a847a0a767d9821165693f84fb98700032ad92830fee875164b672ac2024a035f", "dmg-license@npm:1.0.11": "36c0a7b030801b91216affa9b2bb00caa345b2327f298accb2263a80a0320ca305f90b99da68007d187c830c543410d58a0a2bbc229e8d169b0e1d1652ff42aa", "glob-hasher-darwin-arm64@npm:1.4.2": "1abc74c6f6c6251b8bea6e412090eff4e4918f3489a371971840ee81534344b9f9e62a610efb98157970fc46561161bf23382c8572578da98a7e884d6fb6853e", "glob-hasher-darwin-x64@npm:1.4.2": "44110045f0b2e0b3abaf4f70f917a3c57b9b0c6ee56e5d02932e1772cc63a36b066fb3bc1e6a275c40978b3b2d2ad62752e899bcd966930d4df8884b1d554764", @@ -105,4 +131,4 @@ "glob-hasher-win32-arm64-msvc@npm:1.4.2": "809cd80c3e3e6e7bb82e2fc2ba917ce3ca91287a83faaa7b63cf0a1fcb14c228e974baffb731fa82c34dd8a9236622ab2b5238e21b62f8b0267adaa2da7b4de6", "glob-hasher-win32-x64-msvc@npm:1.4.2": "1ab2a78b788b21754f656cae706fa2e1db34185ffef79a6b85d3f24e169bc01e1faadc6a2588eef5fde5a1fe6ced68acfb815c7b03024c0a746e7c5631b0959e", "iconv-corefoundation@npm:1.1.7": "0189733ef51a9f481379202cb1919f2677efc44aa014ba662a6fd99e47993e350eab0ff724ed18cda8011c9b78c4702b2d374f732955f1def3fd2a14a29d25c0" -} +} \ No newline at end of file diff --git a/pkgs/by-name/ac/actual-server/package.nix b/pkgs/by-name/ac/actual-server/package.nix index b8c7ca807424..0575b638ce7b 100644 --- a/pkgs/by-name/ac/actual-server/package.nix +++ b/pkgs/by-name/ac/actual-server/package.nix @@ -13,13 +13,13 @@ let nodejs = nodejs_22; yarn-berry = yarn-berry_4.override { inherit nodejs; }; - version = "26.1.0"; + version = "26.2.0"; src = fetchFromGitHub { name = "actualbudget-actual-source"; owner = "actualbudget"; repo = "actual"; tag = "v${version}"; - hash = "sha256-WjWmiosDgEj3vTsOIKysR5HrNzkApQppUsdSil4Umbo="; + hash = "sha256-fnfDPN/9TfV1v/myNvCQ70Q0T2oW9XIyomsMdQKyoJo="; }; translations = fetchFromGitHub { name = "actualbudget-translations-source"; @@ -27,8 +27,8 @@ let repo = "translations"; # Note to updaters: this repo is not tagged, so just update this to the Git # tip at the time the update is performed. - rev = "813c3d7cc8feb667c0ea3c25ba13156d75475cfe"; - hash = "sha256-Qv9FFQCZv6WxYffP1W8Hdw15NDiGhkTeAUbyrOV5wxw="; + rev = "a7a0edce994520f3d473c92902992b4eccb81204"; + hash = "sha256-Kha3kPt9rKaw2i/S0nOOVba9QwWtb9SJV/1qs6YJHRE="; }; in @@ -95,7 +95,7 @@ stdenv.mkDerivation (finalAttrs: { missingHashes = ./missing-hashes.json; offlineCache = yarn-berry.fetchYarnBerryDeps { inherit (finalAttrs) src missingHashes; - hash = "sha256-7CxsRmuA53JZJa8IznJKGVvHzE7CeM7XklIZznRqXis="; + hash = "sha256-7ZZGtwQM9+odozLi95MFshNjde3oFTgWkgimj8Ei2W8="; }; pname = "actual-server"; diff --git a/pkgs/by-name/an/angular-language-server/package.nix b/pkgs/by-name/an/angular-language-server/package.nix index 9e5375612f96..c9b45dc68bca 100644 --- a/pkgs/by-name/an/angular-language-server/package.nix +++ b/pkgs/by-name/an/angular-language-server/package.nix @@ -13,14 +13,13 @@ unzip, typescript, }: - stdenvNoCC.mkDerivation (finalAttrs: { pname = "angular-language-server"; - version = "20.3.0"; + version = "21.1.1"; src = fetchurl { name = "angular-language-server-${finalAttrs.version}.zip"; - url = "https://github.com/angular/vscode-ng-language-service/releases/download/v${finalAttrs.version}/ng-template.vsix"; - hash = "sha256-o3e2qVKw/sfnFHbHHdRlB9UjEx1KLD1KVoaAsnlYjmY="; + url = "https://github.com/angular/angular/releases/download/vsix-${finalAttrs.version}/ng-template-${finalAttrs.version}.vsix"; + hash = "sha256-o8NOyQOFnW/sabwvyeIYcOxtOz9sKsIHqRImkT1Mbzs="; }; nativeBuildInputs = [ @@ -70,8 +69,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { LATEST_VERSION=$(curl -H "Accept: application/vnd.github+json" \ ''${GITHUB_TOKEN:+-H "Authorization: bearer $GITHUB_TOKEN"} \ - -Lsf https://api.github.com/repos/angular/vscode-ng-language-service/releases/latest | \ - jq -r .tag_name | cut -c 2-) + -Lsf https://api.github.com/repos/angular/angular/releases | \ + jq -r '.[] | select(.tag_name | startswith("vsix-")) | .tag_name' | \ + sort | \ + tail -n 1 | \ + cut -d '"' -f 2 | \ + cut -c 6-) update-source-version angular-language-server "$LATEST_VERSION" ''; }); @@ -79,9 +82,9 @@ stdenvNoCC.mkDerivation (finalAttrs: { meta = { description = "LSP for angular completions, AOT diagnostic, quick info and go to definitions"; - homepage = "https://github.com/angular/vscode-ng-language-service"; + homepage = "https://github.com/angular/angular"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - changelog = "https://github.com/angular/vscode-ng-language-service/blob/${finalAttrs.version}/CHANGELOG.md"; + changelog = "https://github.com/angular/angular/blob/${finalAttrs.version}/vscode-ng-language-service/CHANGELOG.md"; license = lib.licenses.mit; platforms = lib.platforms.unix; mainProgram = "ngserver"; diff --git a/pkgs/by-name/an/anki/package.nix b/pkgs/by-name/an/anki/package.nix index bc84f683c235..47320e73468a 100644 --- a/pkgs/by-name/an/anki/package.nix +++ b/pkgs/by-name/an/anki/package.nix @@ -26,6 +26,8 @@ yarn-berry_4, runCommand, + wrapGAppsHook3, + swift, mesa, @@ -144,7 +146,9 @@ python3Packages.buildPythonApplication rec { yarn-berry_4.yarnBerryConfigHook imagemagick ] - ++ lib.optional stdenv.hostPlatform.isDarwin swift; + ++ lib.optional stdenv.hostPlatform.isDarwin swift + # Needed for when Qt uses a system's GTK file picker. + ++ lib.optional stdenv.hostPlatform.isLinux wrapGAppsHook3; buildInputs = [ qt6.qtbase @@ -170,6 +174,7 @@ python3Packages.buildPythonApplication rec { dontUseNinjaInstall = false; dontWrapQtApps = true; + dontWrapGApps = stdenv.hostPlatform.isLinux; env = { # Activate optimizations @@ -282,6 +287,7 @@ python3Packages.buildPythonApplication rec { preFixup = '' makeWrapperArgs+=( + ${lib.optionalString stdenv.hostPlatform.isLinux ''"''${gappsWrapperArgs[@]}"''} "''${qtWrapperArgs[@]}" --prefix PATH ':' "${lame}/bin:${mpv-unwrapped}/bin" --prefix PYTHONPATH ':' "$lib/${python3.sitePackages}" diff --git a/pkgs/by-name/an/antigravity/information.json b/pkgs/by-name/an/antigravity/information.json index 9ca34b9e4abd..e5c6b4e09f40 100644 --- a/pkgs/by-name/an/antigravity/information.json +++ b/pkgs/by-name/an/antigravity/information.json @@ -1,22 +1,22 @@ { - "version": "1.15.8", - "vscodeVersion": "1.104.0", + "version": "1.16.5", + "vscodeVersion": "1.107.0", "sources": { "x86_64-linux": { - "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.15.8-5724687216017408/linux-x64/Antigravity.tar.gz", - "sha256": "44afc76e06599b5eed8eab68db3d2c553c77ea6b9cc7652250e3d1a58bbb1498" + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.16.5-6703236727046144/linux-x64/Antigravity.tar.gz", + "sha256": "1953c62452d32a72e595f7fa832c7a7ed9072d22c9cf99df3a22c249a97f5e97" }, "aarch64-linux": { - "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.15.8-5724687216017408/linux-arm/Antigravity.tar.gz", - "sha256": "a39cb7fb78eaceb939e82cf8024fc7e16694a61b32d2af61ba414fe4284e41cd" + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.16.5-6703236727046144/linux-arm/Antigravity.tar.gz", + "sha256": "b828e4a6e5133283b418a3e2afd2f97111ffc804cc2eef56c0e2327396b8ad97" }, "x86_64-darwin": { - "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.15.8-5724687216017408/darwin-x64/Antigravity.zip", - "sha256": "2554e90087f83e92655650a66d51f47c5577fade58627d5ec8b4221e5ed62ed8" + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.16.5-6703236727046144/darwin-x64/Antigravity.zip", + "sha256": "6d859d2427ac9f4cbd435e1568d6a626186e153f38263c4dd3e1c16672f79005" }, "aarch64-darwin": { - "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.15.8-5724687216017408/darwin-arm/Antigravity.zip", - "sha256": "cc3199592ff91325e395ba9fff1a0cd9f3c709bec52ec36d30f27101d6231239" + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.16.5-6703236727046144/darwin-arm/Antigravity.zip", + "sha256": "4b4ece88e76e01ffe7e774a8eadb21134011d0177adb90464ef8f6c2102ff45d" } } } diff --git a/pkgs/by-name/ap/apktool/package.nix b/pkgs/by-name/ap/apktool/package.nix index d5a8db44706e..3132e200e007 100644 --- a/pkgs/by-name/ap/apktool/package.nix +++ b/pkgs/by-name/ap/apktool/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/iBotPeaches/Apktool/releases/tag/v${finalAttrs.version}"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/ar/arti/package.nix b/pkgs/by-name/ar/arti/package.nix index ce6738fac47e..06f4591d2866 100644 --- a/pkgs/by-name/ar/arti/package.nix +++ b/pkgs/by-name/ar/arti/package.nix @@ -12,7 +12,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "arti"; - version = "1.9.0"; + version = "2.0.0"; src = fetchFromGitLab { domain = "gitlab.torproject.org"; @@ -20,10 +20,10 @@ rustPlatform.buildRustPackage (finalAttrs: { owner = "core"; repo = "arti"; tag = "arti-v${finalAttrs.version}"; - hash = "sha256-b5DWu38/iKwKcmp4BNgkeE5F522YRZZiev9gUZ/Rb1E="; + hash = "sha256-eqCQwBP/QLxBwjGvksFwNwNSCng/pf19DiBQ+tA4a7M="; }; - cargoHash = "sha256-SGxSZaY8//FHhySbarfgleafF5YEWJW/fUAwo3576NI="; + cargoHash = "sha256-0CxlvTetxXM+xe6r98T6hzoD/IGfYkI9TqqUe+u1U2I="; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; @@ -79,6 +79,9 @@ rustPlatform.buildRustPackage (finalAttrs: { asl20 mit ]; - maintainers = with lib.maintainers; [ rapiteanu ]; + maintainers = with lib.maintainers; [ + rapiteanu + whispersofthedawn + ]; }; }) diff --git a/pkgs/by-name/au/augeas/package.nix b/pkgs/by-name/au/augeas/package.nix index ab8d027664df..57c960087ed4 100644 --- a/pkgs/by-name/au/augeas/package.nix +++ b/pkgs/by-name/au/augeas/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://augeas.net/"; changelog = "https://github.com/hercules-team/augeas/releases/tag/release-${finalAttrs.version}"; mainProgram = "augtool"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/au/auto-cpufreq/package.nix b/pkgs/by-name/au/auto-cpufreq/package.nix index 4c4206a4f59c..7dd1eecaa8d9 100644 --- a/pkgs/by-name/au/auto-cpufreq/package.nix +++ b/pkgs/by-name/au/auto-cpufreq/package.nix @@ -5,6 +5,7 @@ replaceVars, gobject-introspection, wrapGAppsHook3, + gawk, gtk3, getent, nixosTests, @@ -72,7 +73,10 @@ python3Packages.buildPythonPackage rec { buildInputs = [ gtk3 ]; - propagatedBuildInputs = [ getent ]; + propagatedBuildInputs = [ + getent + gawk + ]; postInstall = # copy script manually diff --git a/pkgs/by-name/ba/bartender/package.nix b/pkgs/by-name/ba/bartender/package.nix index 9047bf89bf0c..63460778435c 100644 --- a/pkgs/by-name/ba/bartender/package.nix +++ b/pkgs/by-name/ba/bartender/package.nix @@ -1,8 +1,7 @@ { lib, stdenvNoCC, - fetchurl, - _7zz, + fetchzip, curl, cacert, xmlstarlet, @@ -12,14 +11,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "bartender"; - version = "5.3.7"; + version = "6.4.1"; - src = fetchurl { - name = "Bartender ${lib.versions.major finalAttrs.version}.dmg"; + src = fetchzip { url = "https://www.macbartender.com/B2/updates/${ builtins.replaceStrings [ "." ] [ "-" ] finalAttrs.version - }/Bartender%20${lib.versions.major finalAttrs.version}.dmg"; - hash = "sha256-8hOe8MTDGyxEZTv0QndjkD3BEJ6kOHcbeU0uhat/N1s="; + }/Bartender%20${lib.versions.major finalAttrs.version}.zip"; + hash = "sha256-UtLTfRhL7JTYzQXf7kyYyGZXy1TLJ0ODk1nRs2pLfQ4="; }; dontPatch = true; @@ -27,15 +25,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { dontBuild = true; dontFixup = true; - nativeBuildInputs = [ _7zz ]; - - sourceRoot = "Bartender ${lib.versions.major finalAttrs.version}.app"; + appName = "Bartender ${lib.versions.major finalAttrs.version}.app"; installPhase = '' runHook preInstall - mkdir -p "$out/Applications/${finalAttrs.sourceRoot}" - cp -R . "$out/Applications/${finalAttrs.sourceRoot}" + mkdir -p "$out/Applications/${finalAttrs.appName}" + cp -R . "$out/Applications/${finalAttrs.appName}" runHook postInstall ''; diff --git a/pkgs/by-name/be/beancount-language-server/package.nix b/pkgs/by-name/be/beancount-language-server/package.nix index 71e68c8db3a8..2c03056895c8 100644 --- a/pkgs/by-name/be/beancount-language-server/package.nix +++ b/pkgs/by-name/be/beancount-language-server/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "beancount-language-server"; - version = "1.4.1"; + version = "1.9.1"; src = fetchFromGitHub { owner = "polarmutex"; repo = "beancount-language-server"; - rev = "v${finalAttrs.version}"; - hash = "sha256-cx/Y0jBpnNN+QVEovpbhCG70VwOqwDE+8lBcRAJtlF4="; + tag = finalAttrs.version; + hash = "sha256-HQXLPXs/huoFSM0tqs8FN/hggJauMwef7SbLb2tZoZc="; }; - cargoHash = "sha256-P3Oug9YNsTmsOz68rGUcYJwq9NsKErHt/fOCvqXixNU="; + cargoHash = "sha256-Zdz+zn8oZnLAarQySVpuBK+Mwf21Bm7Ug9ECNwlAZYs="; doInstallCheck = true; postInstallCheck = '' diff --git a/pkgs/by-name/bo/bosun/package.nix b/pkgs/by-name/bo/bosun/package.nix index 5732891a9489..ce585bf9647f 100644 --- a/pkgs/by-name/bo/bosun/package.nix +++ b/pkgs/by-name/bo/bosun/package.nix @@ -32,7 +32,7 @@ buildGoModule { description = "Time Series Alerting Framework"; license = lib.licenses.mit; homepage = "https://bosun.org"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/br/brig/package.nix b/pkgs/by-name/br/brig/package.nix index 25717a15363f..ae10fcbde46a 100644 --- a/pkgs/by-name/br/brig/package.nix +++ b/pkgs/by-name/br/brig/package.nix @@ -55,7 +55,7 @@ buildGoModule (finalAttrs: { homepage = "https://brig.readthedocs.io"; changelog = "https://github.com/sahib/brig/releases/tag/${finalAttrs.src.rev}"; license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; mainProgram = "brig"; }; }) diff --git a/pkgs/by-name/ca/cadvisor/package.nix b/pkgs/by-name/ca/cadvisor/package.nix index 7a623ffbaf97..0ed14517d55b 100644 --- a/pkgs/by-name/ca/cadvisor/package.nix +++ b/pkgs/by-name/ca/cadvisor/package.nix @@ -38,7 +38,7 @@ buildGoModule (finalAttrs: { mainProgram = "cadvisor"; homepage = "https://github.com/google/cadvisor"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ca/cava/package.nix b/pkgs/by-name/ca/cava/package.nix index 51cc64eced1f..40359a8fb612 100644 --- a/pkgs/by-name/ca/cava/package.nix +++ b/pkgs/by-name/ca/cava/package.nix @@ -70,7 +70,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/karlstav/cava"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ - offline mirrexagon ]; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/cd/cdk8s-cli/package.nix b/pkgs/by-name/cd/cdk8s-cli/package.nix index 8e29f8285f20..165c044da9c7 100644 --- a/pkgs/by-name/cd/cdk8s-cli/package.nix +++ b/pkgs/by-name/cd/cdk8s-cli/package.nix @@ -12,18 +12,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "cdk8s-cli"; - version = "2.204.5"; + version = "2.204.7"; src = fetchFromGitHub { owner = "cdk8s-team"; repo = "cdk8s-cli"; rev = "v${finalAttrs.version}"; - hash = "sha256-WZtS/X6E0/6g/XKbhgUs3Phd+EUhOAksj6m+x7nOFvI="; + hash = "sha256-+VY9vGGb/Fk2YhqDLDsdA/2jjKsiyGEOgaY+YNr0LCo="; }; yarnOfflineCache = fetchYarnDeps { inherit (finalAttrs) src; - hash = "sha256-Y7Bsw6fmLOOjUG0i73Exp++UFFKFa2b7JL55O8Tb1mc="; + hash = "sha256-BFkXKEpK/iTaO7MnkqyTt0VX+yYbSy0y8eqrQb88JdM="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/cg/cgminer/package.nix b/pkgs/by-name/cg/cgminer/package.nix index a82f222a7e8b..19d1e5f0cab3 100644 --- a/pkgs/by-name/cg/cgminer/package.nix +++ b/pkgs/by-name/cg/cgminer/package.nix @@ -73,7 +73,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/ckolivas/cgminer"; license = lib.licenses.gpl3; maintainers = with lib.maintainers; [ - offline mmahut ]; platforms = lib.platforms.linux; diff --git a/pkgs/by-name/cl/cloud-hypervisor/package.nix b/pkgs/by-name/cl/cloud-hypervisor/package.nix index 8a40f5ce020a..3919947697fe 100644 --- a/pkgs/by-name/cl/cloud-hypervisor/package.nix +++ b/pkgs/by-name/cl/cloud-hypervisor/package.nix @@ -55,7 +55,6 @@ rustPlatform.buildRustPackage (finalAttrs: { ]; mainProgram = "cloud-hypervisor"; maintainers = with lib.maintainers; [ - offline qyliss phip1611 ]; diff --git a/pkgs/by-name/cl/cloudflared/package.nix b/pkgs/by-name/cl/cloudflared/package.nix index 62f317af537c..123cf704ac40 100644 --- a/pkgs/by-name/cl/cloudflared/package.nix +++ b/pkgs/by-name/cl/cloudflared/package.nix @@ -9,13 +9,13 @@ buildGoModule (finalAttrs: { pname = "cloudflared"; - version = "2026.1.2"; + version = "2026.2.0"; src = fetchFromGitHub { owner = "cloudflare"; repo = "cloudflared"; tag = finalAttrs.version; - hash = "sha256-DOLCgCZWdxHnwtQ+nD4mJX7y/1BHZkcmDCVHuwiKOlA="; + hash = "sha256-UYMFajks3KThWq36BrRnKJk8y8H9s4hIRuYEnftcm50="; }; vendorHash = null; diff --git a/pkgs/by-name/co/cockpit-zfs/package.nix b/pkgs/by-name/co/cockpit-zfs/package.nix index ee49a41ac1ba..134cd2a35477 100644 --- a/pkgs/by-name/co/cockpit-zfs/package.nix +++ b/pkgs/by-name/co/cockpit-zfs/package.nix @@ -1,9 +1,9 @@ { acl, bash, + cockpit, coreutils, fetchFromGitHub, - firewalld, getent, glibc, iproute2, @@ -15,7 +15,6 @@ msmtp, nodejs, openssh, - python312, samba, shadow, smartmontools, @@ -27,15 +26,6 @@ zfs, }: -let - # Using python312 because py-libzfs is not compatible with newer versions - python = ( - python312.withPackages (ps: [ - ps.pyudev - ps.py-libzfs - ]) - ); -in stdenv.mkDerivation (finalAttrs: { pname = "cockpit-zfs"; version = "1.2.12-2"; @@ -67,7 +57,6 @@ stdenv.mkDerivation (finalAttrs: { acl bash coreutils - firewalld getent glibc iproute2 @@ -76,7 +65,6 @@ stdenv.mkDerivation (finalAttrs: { msmtp nodejs openssh - python samba shadow smartmontools @@ -84,6 +72,8 @@ stdenv.mkDerivation (finalAttrs: { systemd util-linux zfs + cockpit.passthru.python3Packages.pyudev + cockpit.passthru.python3Packages.py-libzfs ]; env = { @@ -151,11 +141,12 @@ stdenv.mkDerivation (finalAttrs: { for script in $out/etc/zfs/zed.d/*; do if [ -f "$script" ]; then wrapProgram "$script" \ + --set PYTHONPATH "/etc/cockpit/${cockpit.passthru.python3Packages.python.sitePackages}" \ --set PATH "${ lib.makeBinPath [ + "/etc/cockpit" coreutils bash - python jq ] }" diff --git a/pkgs/by-name/co/cockpit/package.nix b/pkgs/by-name/co/cockpit/package.nix index a5ce3e74a015..343b0ea3d4ff 100644 --- a/pkgs/by-name/co/cockpit/package.nix +++ b/pkgs/by-name/co/cockpit/package.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchFromGitHub, + asciidoc, autoreconfHook, bashInteractive, cacert, @@ -33,7 +34,7 @@ pam, pkg-config, polkit, - python3Packages, + python312Packages, sscg, systemd, udev, @@ -44,19 +45,26 @@ nixos-icons, }: +let + # Pinned to 3.12 due to cockpit-zfs dependency py-libzfs not being compatible + # with 3.13+ + python3Packages = python312Packages; +in + stdenv.mkDerivation (finalAttrs: { pname = "cockpit"; - version = "353.1"; + version = "355"; src = fetchFromGitHub { owner = "cockpit-project"; repo = "cockpit"; tag = finalAttrs.version; - hash = "sha256-uJBrBsNCYkdq+13UGJ6nPr55HPD4R0BTugWCKrycaIY="; + hash = "sha256-LD3bjb87AvElwMFB5YKwz04PEmWw+DWDP7RGBCzwSb4="; fetchSubmodules = true; }; nativeBuildInputs = [ + asciidoc autoreconfHook makeWrapper docbook_xml_dtd_43 @@ -97,11 +105,8 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace src/tls/cockpit-certificate-helper.in \ --replace-fail 'COCKPIT_CONFIG="@sysconfdir@/cockpit"' 'COCKPIT_CONFIG=/etc/cockpit' - substituteInPlace src/tls/cockpit-certificate-ensure.c \ - --replace-fail '#define COCKPIT_SELFSIGNED_PATH PACKAGE_SYSCONF_DIR COCKPIT_SELFSIGNED_FILENAME' '#define COCKPIT_SELFSIGNED_PATH "/etc" COCKPIT_SELFSIGNED_FILENAME' - - substituteInPlace src/common/cockpitconf.c \ - --replace-fail 'const char *cockpit_config_dirs[] = { PACKAGE_SYSCONF_DIR' 'const char *cockpit_config_dirs[] = { "/etc"' + substituteInPlace src/Makefile.am \ + --replace-fail '-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\"' '-DPACKAGE_SYSCONF_DIR=\""/etc"\"' substituteInPlace src/**/*.c \ --replace-quiet "/bin/sh" "${lib.getExe bashInteractive}" @@ -166,6 +171,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "/usr/lib/polkit-1/polkit-agent-helper-1" "/run/wrappers/bin/polkit-agent-helper-1" ''; + preConfigure = '' + # Make sure our Python comes before any other Python (e.g. from asciidoc) + export PATH="${lib.makeBinPath [ python3Packages.python ]}:$PATH" + ''; + configureFlags = [ "--enable-prefix-only=yes" "--disable-pcp" # TODO: figure out how to package its dependency @@ -270,6 +280,7 @@ stdenv.mkDerivation (finalAttrs: { ''; passthru = { + inherit python3Packages; tests = { inherit (nixosTests) cockpit; }; updateScript = nix-update-script { }; cockpitPath = [ diff --git a/pkgs/by-name/co/cocoon/package.nix b/pkgs/by-name/co/cocoon/package.nix index 5121fdbdbe99..b282d33e26c5 100644 --- a/pkgs/by-name/co/cocoon/package.nix +++ b/pkgs/by-name/co/cocoon/package.nix @@ -6,13 +6,13 @@ }: buildGoModule (finalAttrs: { pname = "cocoon"; - version = "0.8.3"; + version = "0.8.4"; src = fetchFromGitHub { owner = "haileyok"; repo = "cocoon"; tag = "v${finalAttrs.version}"; - hash = "sha256-lyRTLnh+kxuvGfKML1g92+K3pR6okbVVnkCJMkBypRU="; + hash = "sha256-xXXHJcI3icsCeOeI+6L/waK3+UtjhBZosQPLoGN1TiY="; }; ldflags = [ @@ -21,7 +21,7 @@ buildGoModule (finalAttrs: { "-X main.Version=${finalAttrs.version}" ]; - vendorHash = "sha256-cNL9H8cXFEiBKwyZcg1AwFUDXzMINi+vjYecyP8KNP0="; + vendorHash = "sha256-bux3OfHT8f1FVpBAZUP23vo8M6h8nPTJbi/GTUzhdc4="; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/co/code-server/package.nix b/pkgs/by-name/co/code-server/package.nix index eefc92499d8e..143af0cc6731 100644 --- a/pkgs/by-name/co/code-server/package.nix +++ b/pkgs/by-name/co/code-server/package.nix @@ -327,7 +327,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/coder/code-server"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ - offline henkery code-asher ]; diff --git a/pkgs/by-name/co/commonsBcel/package.nix b/pkgs/by-name/co/commons-bcel/package.nix similarity index 100% rename from pkgs/by-name/co/commonsBcel/package.nix rename to pkgs/by-name/co/commons-bcel/package.nix diff --git a/pkgs/by-name/co/commonsBsf/package.nix b/pkgs/by-name/co/commons-bsf/package.nix similarity index 100% rename from pkgs/by-name/co/commonsBsf/package.nix rename to pkgs/by-name/co/commons-bsf/package.nix diff --git a/pkgs/by-name/co/commonsCompress/package.nix b/pkgs/by-name/co/commons-compress/package.nix similarity index 100% rename from pkgs/by-name/co/commonsCompress/package.nix rename to pkgs/by-name/co/commons-compress/package.nix diff --git a/pkgs/by-name/co/commonsDaemon/package.nix b/pkgs/by-name/co/commons-daemon/package.nix similarity index 100% rename from pkgs/by-name/co/commonsDaemon/package.nix rename to pkgs/by-name/co/commons-daemon/package.nix diff --git a/pkgs/by-name/co/commonsFileUpload/package.nix b/pkgs/by-name/co/commons-fileupload/package.nix similarity index 100% rename from pkgs/by-name/co/commonsFileUpload/package.nix rename to pkgs/by-name/co/commons-fileupload/package.nix diff --git a/pkgs/by-name/co/commonsIo/package.nix b/pkgs/by-name/co/commons-io/package.nix similarity index 100% rename from pkgs/by-name/co/commonsIo/package.nix rename to pkgs/by-name/co/commons-io/package.nix diff --git a/pkgs/by-name/co/commonsLang/package.nix b/pkgs/by-name/co/commons-lang/package.nix similarity index 100% rename from pkgs/by-name/co/commonsLang/package.nix rename to pkgs/by-name/co/commons-lang/package.nix diff --git a/pkgs/by-name/co/commonsLogging/package.nix b/pkgs/by-name/co/commons-logging/package.nix similarity index 100% rename from pkgs/by-name/co/commonsLogging/package.nix rename to pkgs/by-name/co/commons-logging/package.nix diff --git a/pkgs/by-name/co/commonsMath/package.nix b/pkgs/by-name/co/commons-math/package.nix similarity index 100% rename from pkgs/by-name/co/commonsMath/package.nix rename to pkgs/by-name/co/commons-math/package.nix diff --git a/pkgs/by-name/co/containerd/package.nix b/pkgs/by-name/co/containerd/package.nix index e22675804685..cbc5bdfe5c3d 100644 --- a/pkgs/by-name/co/containerd/package.nix +++ b/pkgs/by-name/co/containerd/package.nix @@ -103,7 +103,6 @@ buildGoModule rec { changelog = "https://github.com/containerd/containerd/releases/tag/v${version}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline vdemeester getchoo ]; diff --git a/pkgs/by-name/dr/driftnet/package.nix b/pkgs/by-name/dr/driftnet/package.nix index e98af044791a..61f71a70081b 100644 --- a/pkgs/by-name/dr/driftnet/package.nix +++ b/pkgs/by-name/dr/driftnet/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/deiv/driftnet"; changelog = "https://github.com/deiv/driftnet/releases/tag/v${finalAttrs.version}"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "driftnet"; }; diff --git a/pkgs/by-name/du/duplicati/deps.json b/pkgs/by-name/du/duplicati/deps.json index fc51c94409bc..8fbcac2f99dc 100644 --- a/pkgs/by-name/du/duplicati/deps.json +++ b/pkgs/by-name/du/duplicati/deps.json @@ -149,6 +149,11 @@ "version": "2.5.1", "hash": "sha256-ISDd8fS6/cIJIXBFDd7F3FQ0wzWkAo4r8dvycb8iT6c=" }, + { + "pname": "BouncyCastle.Cryptography", + "version": "2.6.2", + "hash": "sha256-Yjk2+x/RcVeccGOQOQcRKCiYzyx1mlFnhS5auCII+Ms=" + }, { "pname": "CoCoL", "version": "1.8.4", @@ -1011,13 +1016,13 @@ }, { "pname": "SSH.NET", - "version": "2025.0.0", - "hash": "sha256-pcmHLjYymuxo8vtzKJUeHi4kJ8RfzeyMFl4cGyuiEhU=" + "version": "2025.1.0", + "hash": "sha256-vtpvE5B+IxoMkq9CQMehoR5ZRtihaHQ4VyhmkkIjL98=" }, { "pname": "SshNet.Agent", - "version": "2024.2.0", - "hash": "sha256-pgyYBMnX8SpOT+NrHinAx2LDWliNEwHZndfUgO6q2Cs=" + "version": "2024.2.0.1", + "hash": "sha256-uUoFNQkAEG8d16TkEKfiU3hgoIIIE62o9129BzWIbjA=" }, { "pname": "Stub.System.Data.SQLite.Core.NetStandard", @@ -1511,13 +1516,13 @@ }, { "pname": "uplink.NET", - "version": "2.13.3484", - "hash": "sha256-YyZ0MQ0olVkCwoujLng+/wlQ3xEwAs7R9yYODoabimw=" + "version": "2.14.3623", + "hash": "sha256-fsOlOkZceVTiJVo6p6CqYcXrUZqO/IaDpDcMBSHkcc0=" }, { "pname": "uplink.NET.Linux", - "version": "2.13.3484", - "hash": "sha256-WwzN4fagyy+KnGSylK06jn9t0xvR1mJOJpn1xwd7934=" + "version": "2.14.3623", + "hash": "sha256-GIeD1Lip+MkRrHbOwwsbbKNZnlnxOiAhhVTyByY1O70=" }, { "pname": "uplink.NET.Mac", @@ -1526,8 +1531,8 @@ }, { "pname": "uplink.NET.Win", - "version": "2.13.3484", - "hash": "sha256-dfRkYTFQrvtX/xvxPjwrbLPFjAPJIMN1ennUnqgvSC4=" + "version": "2.14.3623", + "hash": "sha256-Rv5/hVXKrSOOCn9aHbaH6TmB9H2Xvq1kyJv5sQRygRo=" }, { "pname": "VaultSharp", diff --git a/pkgs/by-name/du/duplicati/fix-unit-tests.patch b/pkgs/by-name/du/duplicati/fix-unit-tests.patch deleted file mode 100644 index c39eaa5bbe76..000000000000 --- a/pkgs/by-name/du/duplicati/fix-unit-tests.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff --git a/Duplicati/UnitTest/Issue6504.cs b/Duplicati/UnitTest/Issue6504.cs -index 1234567..abcdefg 100644 ---- a/Duplicati/UnitTest/Issue6504.cs -+++ b/Duplicati/UnitTest/Issue6504.cs -@@ -93,7 +93,7 @@ namespace Duplicati.UnitTest; - - - // Force the error by making sure the duplicate blocks are from both dblock files -- using (var db = SQLiteLoader.LoadConnection(DBFILE)) -+ using (var db = SQLiteLoader.LoadConnection(DBFILE, 0)) - using (var cmd = db.CreateCommand()) - { - cmd.CommandText = @"SELECT BlockId,VolumeID FROM DuplicateBlock"; -@@ -110,14 +110,14 @@ namespace Duplicati.UnitTest; - var otherVolumeId = blocks.First(x => x.VolumeID != duplicateVolumeId && x.ID != blockToChange.BlockId).VolumeID; - - cmd.CommandText = "UPDATE DuplicateBlock SET VolumeID=@VolumeID WHERE BlockID=@BlockID"; -- cmd.Parameters.AddWithValue("@VolumeID", otherVolumeId); -- cmd.Parameters.AddWithValue("@BlockID", blockToChange.BlockId); -+ ((System.Data.SQLite.SQLiteParameterCollection)cmd.Parameters).AddWithValue("@VolumeID", otherVolumeId); -+ ((System.Data.SQLite.SQLiteParameterCollection)cmd.Parameters).AddWithValue("@BlockID", blockToChange.BlockId); - cmd.ExecuteNonQuery(); - cmd.Parameters.Clear(); - - cmd.CommandText = "UPDATE Block SET VolumeID=@VolumeID WHERE ID=@BlockID"; -- cmd.Parameters.AddWithValue("@VolumeID", duplicateVolumeId); -- cmd.Parameters.AddWithValue("@BlockID", blockToChange.BlockId); -+ ((System.Data.SQLite.SQLiteParameterCollection)cmd.Parameters).AddWithValue("@VolumeID", duplicateVolumeId); -+ ((System.Data.SQLite.SQLiteParameterCollection)cmd.Parameters).AddWithValue("@BlockID", blockToChange.BlockId); - cmd.ExecuteNonQuery(); - } - } diff --git a/pkgs/by-name/du/duplicati/package.nix b/pkgs/by-name/du/duplicati/package.nix index c67c7239ced2..b5cc06f8ff1b 100644 --- a/pkgs/by-name/du/duplicati/package.nix +++ b/pkgs/by-name/du/duplicati/package.nix @@ -14,9 +14,9 @@ let # for update.sh easy to handle - ngclientVersion = "0.0.163"; - ngclientRev = "2546891ad116cb0a7a8df1c2bcf8a11fc17d58a4"; - ngclientHash = "sha256-MQOJHr3JBceO7qZRQvCcR4NNxpc77oRRjBQkmMv9RUA="; + ngclientVersion = "0.0.192"; + ngclientRev = "5237ca55b42e58896da2919ad8a76c034517e98a"; + ngclientHash = "sha256-06LMFg0kRmG4c5s60/+NU8gugkfgWAyTGoLo0+UHRUI="; # from Duplicati/Server/webroot/ngclient/package.json ngclient = buildNpmPackage { @@ -30,7 +30,7 @@ let hash = ngclientHash; }; - npmDepsHash = "sha256-HYKzf7JaoOYvYlVZgMZ0jvYHf96be6abTZNtefgy59Y="; + npmDepsHash = "sha256-i9lW+JDB2TZGfhW1fzrZA36qgkYeMmHbJkeEYxga2ko="; nativeBuildInputs = [ bun ]; @@ -58,20 +58,18 @@ let in buildDotnetModule rec { pname = "duplicati"; - version = "2.2.0.1"; + version = "2.2.0.3"; channel = "stable"; - buildDate = "2025-11-09"; + buildDate = "2026-01-06"; src = fetchFromGitHub { owner = "duplicati"; repo = "duplicati"; tag = "v${version}_${channel}_${buildDate}"; - hash = "sha256-fARK2nAqE9aN2PQSC62yIcYr3e/kBT3BVTBxLwMqk24="; + hash = "sha256-p2hl1S/XsKsbAfWBAgvNMl6z5zGm/FBH3EYSqDvkKy8="; stripRoot = true; }; - patches = [ ./fix-unit-tests.patch ]; - nugetDeps = ./deps.json; dotnet-sdk = dotnetCorePackages.sdk_8_0; diff --git a/pkgs/by-name/du/duplicati/update.sh b/pkgs/by-name/du/duplicati/update.sh index 99540f90487b..663b40c08634 100755 --- a/pkgs/by-name/du/duplicati/update.sh +++ b/pkgs/by-name/du/duplicati/update.sh @@ -1,5 +1,5 @@ #!/usr/bin/env nix-shell -#!nix-shell -i bash -p curl jq nix-prefetch-github +#!nix-shell -i bash -p curl jq nix-prefetch-github prefetch-npm-deps set -euo pipefail @@ -25,8 +25,9 @@ DATE=$(echo "$TAG" | cut -d_ -f3) HASH=$(nix-prefetch-github $OWNNER $REPO --rev "$TAG" | jq -r '.hash') -curl -sL "https://raw.githubusercontent.com/$OWNNER/$REPO/$TAG/Duplicati/Server/webroot/ngclient/package.json" \ - -o "$TMP/package.json" +curl -sL \ + -o "$TMP/package.json" \ + "https://raw.githubusercontent.com/$OWNNER/$REPO/$TAG/Duplicati/Server/webroot/ngclient/package.json" NGCLIENT_VERSION=$( jq -r '.dependencies["@duplicati/ngclient"]' \ @@ -34,14 +35,21 @@ NGCLIENT_VERSION=$( sed 's/^[^0-9]*//' ) -git clone --no-tags https://github.com/duplicati/ngclient.git "$TMP/ngclient" -NGCLIENT_REV=$(cd "$TMP/ngclient" && git log --format="%H %s" | grep "$NGCLIENT_VERSION" | awk '{print $1}') +NGCLIENT_REV=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} \ + -s "https://api.github.com/search/commits?q=repo:duplicati/ngclient+$NGCLIENT_VERSION" | + jq -r '.items[0].sha') NGCLIENT_HASH=$( nix-prefetch-github $OWNNER ngclient --rev "$NGCLIENT_REV" | jq -r .hash ) +curl -sL \ + -o "$TMP/package-lock.json" \ + "https://raw.githubusercontent.com/$OWNNER/ngclient/$NGCLIENT_REV/package-lock.json" + +NGCLIENT_NPM_DEPS_HASH="$(prefetch-npm-deps "$TMP"/package-lock.json)" + echo "version=$VERSION" echo "channel=$CHANNEL" echo "date=$DATE" @@ -49,11 +57,13 @@ echo "date=$DATE" echo "ngclientVersion=$NGCLIENT_VERSION" echo "ngclientRev=$NGCLIENT_REV" echo "ngclientHash=$NGCLIENT_HASH" +echo "npmDepsHash=$NGCLIENT_NPM_DEPS_HASH" sed -i \ -e "/ngclientVersion = /c\ ngclientVersion = \"$NGCLIENT_VERSION\";" \ -e "/ngclientRev = /c\ ngclientRev = \"$NGCLIENT_REV\";" \ -e "/ngclientHash = /c\ ngclientHash = \"$NGCLIENT_HASH\";" \ + -e "/npmDepsHash = /c\ npmDepsHash = \"$NGCLIENT_NPM_DEPS_HASH\";" \ -e "/version = \"/c\ version = \"$VERSION\";" \ -e "/channel = \"/c\ channel = \"$CHANNEL\";" \ -e "/buildDate = \"/c\ buildDate = \"$DATE\";" \ diff --git a/pkgs/by-name/ea/easyrsa/package.nix b/pkgs/by-name/ea/easyrsa/package.nix index 2c88029a56ff..5ca591caf836 100644 --- a/pkgs/by-name/ea/easyrsa/package.nix +++ b/pkgs/by-name/ea/easyrsa/package.nix @@ -63,9 +63,8 @@ stdenv.mkDerivation (finalAttrs: { description = "Simple shell based CA utility"; homepage = "https://openvpn.net/"; license = lib.licenses.gpl2Only; - maintainers = [ - lib.maintainers.offline - lib.maintainers.numinit + maintainers = with lib.maintainers; [ + numinit ]; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/ej/ejabberd/package.nix b/pkgs/by-name/ej/ejabberd/package.nix index 92c2732e6864..1d4026ab63e7 100644 --- a/pkgs/by-name/ej/ejabberd/package.nix +++ b/pkgs/by-name/ej/ejabberd/package.nix @@ -140,7 +140,7 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "ejabberd"; - version = "26.01"; + version = "26.02"; nativeBuildInputs = [ makeWrapper @@ -170,7 +170,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "processone"; repo = "ejabberd"; tag = finalAttrs.version; - hash = "sha256-xhqH1hELosYC7dtHnyrlkCRlbgbM2SU7SLkowGVG9SI="; + hash = "sha256-izP7Rz65Lr4LDOCzZPdDWb3TyXDSTd/8gOPSfovVGM8="; }; passthru.tests = { diff --git a/pkgs/by-name/ej/ejabberd/rebar-deps.nix b/pkgs/by-name/ej/ejabberd/rebar-deps.nix index 34856128bf02..f8cb854d44d6 100644 --- a/pkgs/by-name/ej/ejabberd/rebar-deps.nix +++ b/pkgs/by-name/ej/ejabberd/rebar-deps.nix @@ -264,12 +264,11 @@ let }; erlydtl = builder { name = "erlydtl"; - version = "git"; - src = fetchFromGitHub { - owner = "erlydtl"; - repo = "erlydtl"; - rev = "aae414692b6052e96d890e03bbeeeca0f4dc01c2"; - sha256 = "00p194jgmvzqza7xr7fdm2n091ymkyy66aj4gc82n0kzdlh03vbm"; + version = "0.14.0"; + src = fetchHex { + pkg = "erlydtl"; + version = "0.14.0"; + sha256 = "sha256-2A7ARM2PWICcGdKaxWBb4J6VUECRG2RFBeMendgUNDE="; }; beamDeps = [ ]; }; diff --git a/pkgs/by-name/es/esphome/package.nix b/pkgs/by-name/es/esphome/package.nix index c5aa4ee3dee8..7ebd1f1e8acf 100644 --- a/pkgs/by-name/es/esphome/package.nix +++ b/pkgs/by-name/es/esphome/package.nix @@ -33,14 +33,14 @@ let in python.pkgs.buildPythonApplication rec { pname = "esphome"; - version = "2026.1.4"; + version = "2026.1.5"; pyproject = true; src = fetchFromGitHub { owner = "esphome"; repo = "esphome"; tag = version; - hash = "sha256-j7PlHGLBY9M5jxzvOt6H+zr3nCNPpM/FCMLgevt6MnM="; + hash = "sha256-leQkNa2FK7Wagpr+TKbfg/qkRMII03+dnWXoFZwwn9w="; }; patches = [ @@ -195,6 +195,7 @@ python.pkgs.buildPythonApplication rec { ]; maintainers = with lib.maintainers; [ hexa + picnoir thanegill ]; mainProgram = "esphome"; diff --git a/pkgs/by-name/fa/fakechroot/package.nix b/pkgs/by-name/fa/fakechroot/package.nix index 9cca417b8644..c3a625c905ae 100644 --- a/pkgs/by-name/fa/fakechroot/package.nix +++ b/pkgs/by-name/fa/fakechroot/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/dex4er/fakechroot"; description = "Give a fake chroot environment through LD_PRELOAD"; license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/fa/faustPhysicalModeling/package.nix b/pkgs/by-name/fa/faust-physicalmodeling/package.nix similarity index 97% rename from pkgs/by-name/fa/faustPhysicalModeling/package.nix rename to pkgs/by-name/fa/faust-physicalmodeling/package.nix index eb724acb31fc..80ffaa453b86 100644 --- a/pkgs/by-name/fa/faustPhysicalModeling/package.nix +++ b/pkgs/by-name/fa/faust-physicalmodeling/package.nix @@ -7,7 +7,7 @@ faust2lv2, }: stdenv.mkDerivation (finalAttrs: { - pname = "faustPhysicalModeling"; + pname = "faust-physicalmodeling"; version = "2.83.1"; src = fetchFromGitHub { diff --git a/pkgs/by-name/fi/filebrowser/package.nix b/pkgs/by-name/fi/filebrowser/package.nix index 7c4498e2ae0c..78cee393db85 100644 --- a/pkgs/by-name/fi/filebrowser/package.nix +++ b/pkgs/by-name/fi/filebrowser/package.nix @@ -12,13 +12,13 @@ }: let - version = "2.55.0"; + version = "2.57.1"; src = fetchFromGitHub { owner = "filebrowser"; repo = "filebrowser"; rev = "v${version}"; - hash = "sha256-1ZzTATJEVBr76+CMk8OzxdpWGqFHPPhyC7z2MgfqN+M="; + hash = "sha256-rd/I5M1SoL6fUNkiv/KwWImbtWCoy0/DR993C714xU8="; }; frontend = buildNpmPackage rec { @@ -41,7 +41,7 @@ let ; fetcherVersion = 3; pnpm = pnpm_10; - hash = "sha256-iv0LZoEyF5fASqBKNkTJhLMY0Xpa6x0i4csDoHmGU+g="; + hash = "sha256-AfQNSIiTRv+aEGsrRAymwpUO2IWDtvSruLuuTAjWy/0="; }; installPhase = '' @@ -59,7 +59,7 @@ buildGoModule { pname = "filebrowser"; inherit version src; - vendorHash = "sha256-4WDggP5eL7IPUWTxewxV2JUZZ3kV0PwewQQothz7AC8="; + vendorHash = "sha256-P6R+lBmzYYMqC5D6VwLOE7UnKuYcLN7UDVkZHWLLjMk="; excludedPackages = [ "tools" ]; diff --git a/pkgs/by-name/fr/frescobaldi/package.nix b/pkgs/by-name/fr/frescobaldi/package.nix index 53548207c462..4f8cbd308c0a 100644 --- a/pkgs/by-name/fr/frescobaldi/package.nix +++ b/pkgs/by-name/fr/frescobaldi/package.nix @@ -4,38 +4,37 @@ fetchFromGitHub, python3Packages, lilypond, + qt6, }: python3Packages.buildPythonApplication rec { pname = "frescobaldi"; - version = "3.3.0"; - format = "setuptools"; + version = "4.0.4"; + pyproject = true; src = fetchFromGitHub { owner = "wbsoft"; repo = "frescobaldi"; tag = "v${version}"; - sha256 = "sha256-Q6ruthNcpjLlYydUetkuTECiCIzu055bw40O8BPGq/A="; + hash = "sha256-J0QC+VwNdA24vAW5Fx+cz5IFajkB8GmR4Rae0Q+2zw8="; }; - propagatedBuildInputs = with python3Packages; [ + dependencies = with python3Packages; [ qpageview lilypond - pygame + pygame-ce + pyqt6-sip python-ly - sip4 - pyqt5 - poppler-qt5 - pyqtwebengine + pyqt6 + pyqt6-webengine ]; - nativeBuildInputs = [ python3Packages.pyqtwebengine.wrapQtAppsHook ]; + buildInputs = [ qt6.qtbase ]; + nativeBuildInputs = [ qt6.wrapQtAppsHook ]; - # Needed because source is fetched from git - preBuild = '' - make -C i18n - make -C linux - ''; + build-system = with python3Packages; [ + hatchling + ]; # no tests in shipped with upstream doCheck = false; diff --git a/pkgs/by-name/gi/git-town/package.nix b/pkgs/by-name/gi/git-town/package.nix index 7f7f40b2e1ac..7706c6378ada 100644 --- a/pkgs/by-name/gi/git-town/package.nix +++ b/pkgs/by-name/gi/git-town/package.nix @@ -13,13 +13,13 @@ buildGoModule (finalAttrs: { pname = "git-town"; - version = "22.2.0"; + version = "22.5.0"; src = fetchFromGitHub { owner = "git-town"; repo = "git-town"; tag = "v${finalAttrs.version}"; - hash = "sha256-JY0zWWMln4r2ga1jwxK+RTp8izATyovRHBf4A29pXW4="; + hash = "sha256-7+KCk46TOnOVmmhYtqzC6kC3wQUdWkQKoSpoyb9D9tQ="; }; vendorHash = null; @@ -61,6 +61,8 @@ buildGoModule (finalAttrs: { "TestMockingRunner/MockCommitMessage" "TestMockingRunner/QueryWith" "TestTestCommands/CreateChildFeatureBranch" + "TestTestCommands/CreateChildBranch" + "TestTestCommands/CreateLocalBranchUsingGitTown" ]; in [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; diff --git a/pkgs/by-name/gi/gitbutler/gix-from-crates-io.patch b/pkgs/by-name/gi/gitbutler/gix-from-crates-io.patch index b686317c2c7a..4f6d7d92a4d0 100644 --- a/pkgs/by-name/gi/gitbutler/gix-from-crates-io.patch +++ b/pkgs/by-name/gi/gitbutler/gix-from-crates-io.patch @@ -1,2040 +1,2381 @@ diff --git a/Cargo.lock b/Cargo.lock -index 60b520f8d..8406c39d0 100644 +index 8d2058cf7..25899ae3b 100644 --- a/Cargo.lock +++ b/Cargo.lock -@@ -13,9 +13,9 @@ dependencies = [ - - [[package]] - name = "adler2" --version = "2.0.0" -+version = "2.0.1" +@@ -34,7 +34,7 @@ version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" -+checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - - [[package]] - name = "aes" -@@ -95,9 +95,9 @@ checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" - - [[package]] - name = "android_logger" --version = "0.15.0" -+version = "0.15.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f6f39be698127218cca460cb624878c9aa4e2b47dba3b277963d2bf00bad263b" -+checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3" + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" dependencies = [ - "android_log-sys", - "env_filter", -@@ -115,9 +115,9 @@ dependencies = [ +- "getrandom 0.2.16", ++ "getrandom 0.2.17", + "once_cell", + "version_check", + ] +@@ -145,9 +145,9 @@ dependencies = [ [[package]] - name = "anstream" --version = "0.6.18" -+version = "0.6.20" + name = "anstyle-svg" +-version = "0.1.11" ++version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" -+checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" +-checksum = "26b9ec8c976eada1b0f9747a3d7cc4eae3bef10613e443746e7487f26c872fde" ++checksum = "e22d9f3dea8bbda97c75bd0f0203e23f1e190d6d6f27a40e10063946dc4d4362" dependencies = [ "anstyle", - "anstyle-parse", -@@ -130,37 +130,37 @@ dependencies = [ - - [[package]] - name = "anstyle" --version = "1.0.10" -+version = "1.0.11" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" -+checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" - - [[package]] - name = "anstyle-parse" --version = "0.2.6" -+version = "0.2.7" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" -+checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" - dependencies = [ - "utf8parse", - ] - - [[package]] - name = "anstyle-query" --version = "1.1.2" -+version = "1.1.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" -+checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" - dependencies = [ -- "windows-sys 0.59.0", -+ "windows-sys 0.60.2", - ] - - [[package]] - name = "anstyle-wincon" --version = "3.0.7" -+version = "3.0.10" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" -+checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" - dependencies = [ - "anstyle", -- "once_cell", -- "windows-sys 0.59.0", -+ "once_cell_polyfill", -+ "windows-sys 0.60.2", - ] - - [[package]] -@@ -180,15 +180,15 @@ dependencies = [ - - [[package]] - name = "arboard" --version = "3.5.0" -+version = "3.6.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c1df21f715862ede32a0c525ce2ca4d52626bb0007f8c18b87a384503ac33e70" -+checksum = "55f533f8e0af236ffe5eb979b99381df3258853f00ba2e44b6e1955292c75227" - dependencies = [ + "anstyle-lossy", +@@ -191,11 +191,11 @@ dependencies = [ "clipboard-win", "image", "log", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", "objc2-core-foundation", "objc2-core-graphics", - "objc2-foundation 0.3.1", -@@ -213,14 +213,14 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +- "objc2-foundation 0.3.2", ++ "objc2-foundation", + "parking_lot", + "percent-encoding", + "windows-sys 0.60.2", +@@ -205,9 +205,9 @@ dependencies = [ [[package]] - name = "ashpd" --version = "0.9.2" -+version = "0.11.0" + name = "arc-swap" +-version = "1.8.0" ++version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "4d43c03d9e36dd40cab48435be0b09646da362c278223ca535493877b2c1dee9" -+checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df" +-checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e" ++checksum = "9ded5f9a03ac8f24d1b8a25101ee812cd32cdc8c50a4c50237de2c4915850e73" dependencies = [ - "enumflags2", - "futures-channel", - "futures-util", -- "rand 0.8.5", -+ "rand 0.9.2", - "raw-window-handle", - "serde", - "serde_repr", -@@ -229,7 +229,7 @@ dependencies = [ - "wayland-backend", - "wayland-client", - "wayland-protocols", -- "zbus 4.4.0", -+ "zbus 5.9.0", + "rustversion", ] - - [[package]] -@@ -262,9 +262,9 @@ dependencies = [ - - [[package]] - name = "async-channel" --version = "2.3.1" -+version = "2.5.0" +@@ -218,27 +218,6 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" -+checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" - dependencies = [ - "concurrent-queue", - "event-listener-strategy", -@@ -288,9 +288,9 @@ dependencies = [ + checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +-[[package]] +-name = "ashpd" +-version = "0.11.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df" +-dependencies = [ +- "enumflags2", +- "futures-channel", +- "futures-util", +- "rand 0.9.2", +- "raw-window-handle", +- "serde", +- "serde_repr", +- "tokio", +- "url", +- "wayland-backend", +- "wayland-client", +- "wayland-protocols", +- "zbus 5.12.0", +-] +- [[package]] - name = "async-io" --version = "2.4.0" -+version = "2.5.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" -+checksum = "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca" - dependencies = [ - "async-lock", - "cfg-if", -@@ -299,17 +299,16 @@ dependencies = [ + name = "async-broadcast" + version = "0.7.2" +@@ -290,16 +269,16 @@ dependencies = [ "futures-lite", "parking", "polling", -- "rustix 0.38.44", -+ "rustix 1.0.8", +- "rustix 1.1.3", ++ "rustix", "slab", -- "tracing", -- "windows-sys 0.59.0", -+ "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "async-lock" --version = "3.4.0" -+version = "3.4.1" +-version = "3.4.1" ++version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" -+checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" +-checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" ++checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ "event-listener", "event-listener-strategy", -@@ -350,14 +349,14 @@ checksum = "0289cba6d5143bfe8251d57b4a8cac036adf158525a76533a7082ba65ec76398" +@@ -326,7 +305,7 @@ dependencies = [ + "serde", + "serde_json", + "serde_urlencoded", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + "tokio-stream", + "tokio-util", +@@ -336,13 +315,13 @@ dependencies = [ + + [[package]] + name = "async-openai-macros" +-version = "0.1.0" ++version = "0.1.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0289cba6d5143bfe8251d57b4a8cac036adf158525a76533a7082ba65ec76398" ++checksum = "81872a8e595e8ceceab71c6ba1f9078e313b452a1e31934e6763ef5d308705e4" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] - name = "async-process" --version = "2.3.0" -+version = "2.4.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" -+checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00" - dependencies = [ - "async-channel", - "async-io", -@@ -368,8 +367,7 @@ dependencies = [ +@@ -360,7 +339,7 @@ dependencies = [ "cfg-if", "event-listener", "futures-lite", -- "rustix 0.38.44", -- "tracing", -+ "rustix 1.0.8", +- "rustix 1.1.3", ++ "rustix", ] [[package]] -@@ -380,14 +378,14 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +@@ -371,7 +350,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] - name = "async-signal" --version = "0.2.10" -+version = "0.2.12" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" -+checksum = "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1" - dependencies = [ - "async-io", - "async-lock", -@@ -395,10 +393,10 @@ dependencies = [ +@@ -386,7 +365,7 @@ dependencies = [ "cfg-if", "futures-core", "futures-io", -- "rustix 0.38.44", -+ "rustix 1.0.8", +- "rustix 1.1.3", ++ "rustix", "signal-hook-registry", "slab", -- "windows-sys 0.59.0", -+ "windows-sys 0.60.2", - ] - - [[package]] -@@ -420,7 +418,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" + "windows-sys 0.61.2", +@@ -411,7 +390,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -437,7 +435,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" +@@ -428,7 +407,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -471,9 +469,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" +@@ -468,9 +447,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] - name = "autocfg" --version = "1.4.0" -+version = "1.5.0" + name = "aws-lc-rs" +-version = "1.15.2" ++version = "1.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" -+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - - [[package]] - name = "axum" -@@ -691,9 +689,9 @@ dependencies = [ - - [[package]] - name = "blocking" --version = "1.6.1" -+version = "1.6.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" -+checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" +-checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" ++checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256" dependencies = [ - "async-channel", - "async-task", -@@ -722,7 +720,7 @@ dependencies = [ - "proc-macro-crate 3.3.0", - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", + "aws-lc-sys", + "zeroize", +@@ -478,9 +457,9 @@ dependencies = [ + + [[package]] + name = "aws-lc-sys" +-version = "0.35.0" ++version = "0.37.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" ++checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a" + dependencies = [ + "cc", + "cmake", +@@ -526,9 +505,9 @@ dependencies = [ + + [[package]] + name = "axum-core" +-version = "0.5.5" ++version = "0.5.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" ++checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" + dependencies = [ + "bytes", + "futures-core", +@@ -550,7 +529,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" + dependencies = [ + "futures-core", +- "getrandom 0.2.16", ++ "getrandom 0.2.17", + "instant", + "pin-project-lite", + "rand 0.8.5", +@@ -635,22 +614,13 @@ dependencies = [ + "generic-array", + ] + +-[[package]] +-name = "block2" +-version = "0.5.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" +-dependencies = [ +- "objc2 0.5.2", +-] +- + [[package]] + name = "block2" + version = "0.6.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" + dependencies = [ +- "objc2 0.6.3", ++ "objc2", ] [[package]] -@@ -759,9 +757,9 @@ dependencies = [ +@@ -695,7 +665,7 @@ dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -732,9 +702,9 @@ dependencies = [ [[package]] name = "bumpalo" --version = "3.17.0" -+version = "3.19.0" +-version = "3.19.0" ++version = "3.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" -+checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +-checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" ++checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" [[package]] name = "but" -@@ -941,7 +939,7 @@ dependencies = [ - "insta", +@@ -797,7 +767,7 @@ dependencies = [ + "posthog-rs", + "regex", + "rmcp", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "self_cell", "serde", "serde_json", -- "toml", -+ "toml 0.8.23", - "tracing", - "uuid", - ] -@@ -986,7 +984,7 @@ dependencies = [ - "petgraph 0.8.2", - "serde", - "termtree", -- "toml", -+ "toml 0.8.23", - "tracing", - ] - -@@ -1008,7 +1006,7 @@ dependencies = [ +@@ -840,7 +810,7 @@ dependencies = [ + "gix", + "itertools", + "rmcp", +- "schemars 1.2.0", ++ "schemars 1.2.1", "serde", "serde-error", "serde_json", -- "toml", -+ "toml 0.8.23", - "tracing", - "uuid", - ] -@@ -1057,7 +1055,7 @@ dependencies = [ +@@ -901,7 +871,7 @@ dependencies = [ "insta", + "itertools", + "open", +- "schemars 1.2.0", ++ "schemars 1.2.1", "serde", - "tempfile", -- "toml", -+ "toml 0.8.23", + "serde-error", + "serde_json", +@@ -918,7 +888,7 @@ version = "0.0.0" + dependencies = [ + "convert_case 0.10.0", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -933,7 +903,7 @@ dependencies = [ + "chrono", + "gitbutler-project", + "gix", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde", + "serde_json", + "uuid", +@@ -1020,7 +990,7 @@ dependencies = [ + "rand 0.9.2", + "serde", + "serde_json", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", + "tracing", + "ts-rs", + "unicode-segmentation", +@@ -1134,7 +1104,7 @@ dependencies = [ + "anyhow", + "gix", + "serde", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", + "walkdir", + ] + +@@ -1259,7 +1229,7 @@ dependencies = [ + "futures", + "gix", + "reqwest 0.12.28", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde", + "serde_json", + "strum", +@@ -1287,7 +1257,7 @@ dependencies = [ + "md5", + "serde", + "snapbox", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", "tracing", ] -@@ -1275,9 +1273,9 @@ dependencies = [ +@@ -1338,7 +1308,7 @@ dependencies = [ + "petgraph", + "serde", + "tempfile", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", + "tracing", + ] + +@@ -1512,7 +1482,7 @@ dependencies = [ + "gitbutler-stack", + "gix", + "ollama-rs", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde", + "serde-error", + "serde_json", +@@ -1601,7 +1571,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d" + dependencies = [ + "rust_decimal", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde", + "utf8-width", + ] +@@ -1630,9 +1600,9 @@ dependencies = [ [[package]] name = "bytemuck" --version = "1.23.0" -+version = "1.23.2" +-version = "1.24.0" ++version = "1.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c" -+checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677" +-checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" ++checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" [[package]] name = "byteorder" -@@ -1346,9 +1344,9 @@ dependencies = [ +@@ -1648,9 +1618,9 @@ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + + [[package]] + name = "bytes" +-version = "1.11.0" ++version = "1.11.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" ++checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + dependencies = [ + "serde", + ] +@@ -1691,9 +1661,9 @@ dependencies = [ [[package]] name = "camino" --version = "1.1.9" -+version = "1.1.11" +-version = "1.2.1" ++version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" -+checksum = "5d07aa9a93b00c76f71bc35d598bed923f6d4f3a9ca5c24b7737ae1a292841c0" +-checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" ++checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ - "serde", + "serde_core", ] -@@ -1378,12 +1376,12 @@ dependencies = [ - - [[package]] - name = "cargo_toml" --version = "0.22.1" -+version = "0.22.3" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257" -+checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" - dependencies = [ +@@ -1718,7 +1688,7 @@ dependencies = [ + "semver", "serde", -- "toml", -+ "toml 0.9.5", + "serde_json", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] -@@ -1397,9 +1395,9 @@ dependencies = [ +@@ -1728,7 +1698,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" + dependencies = [ + "serde", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", + ] + + [[package]] +@@ -1742,9 +1712,9 @@ dependencies = [ [[package]] name = "cc" --version = "1.2.23" -+version = "1.2.31" +-version = "1.2.48" ++version = "1.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766" -+checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2" +-checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a" ++checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" dependencies = [ + "find-msvc-tools", "jobserver", - "libc", -@@ -1435,9 +1433,9 @@ dependencies = [ +@@ -1804,9 +1774,9 @@ dependencies = [ [[package]] - name = "cfg-if" --version = "1.0.0" -+version = "1.0.1" + name = "chrono" +-version = "0.4.42" ++version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -+checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" - - [[package]] - name = "cfg_aliases" -@@ -1472,9 +1470,9 @@ dependencies = [ +-checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" ++checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" + dependencies = [ + "iana-time-zone", + "js-sys", +@@ -1828,9 +1798,9 @@ dependencies = [ [[package]] name = "clap" --version = "4.5.42" -+version = "4.5.43" +-version = "4.5.54" ++version = "4.5.56" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882" -+checksum = "50fd97c9dc2399518aa331917ac6f274280ec5eb34e555dd291899745c48ec6f" +-checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" ++checksum = "a75ca66430e33a14957acc24c5077b503e7d374151b2b4b3a10c83b4ceb4be0e" dependencies = [ "clap_builder", "clap_derive", -@@ -1482,9 +1480,9 @@ dependencies = [ +@@ -1838,9 +1808,9 @@ dependencies = [ [[package]] name = "clap_builder" --version = "4.5.42" -+version = "4.5.43" +-version = "4.5.54" ++version = "4.5.56" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966" -+checksum = "c35b5830294e1fa0462034af85cc95225a4cb07092c088c55bda3147cfcd8f65" +-checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" ++checksum = "793207c7fa6300a0608d1080b858e5fdbe713cdc1c8db9fb17777d8a13e63df0" dependencies = [ "anstream", "anstyle", -@@ -1501,20 +1499,20 @@ dependencies = [ +@@ -1851,32 +1821,32 @@ dependencies = [ + + [[package]] + name = "clap_complete" +-version = "4.5.64" ++version = "4.5.65" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4c0da80818b2d95eca9aa614a30783e42f62bf5fdfee24e68cfb960b071ba8d1" ++checksum = "430b4dc2b5e3861848de79627b2bedc9f3342c7da5173a14eaa5d0f8dc18ae5d" + dependencies = [ + "clap", + ] + + [[package]] + name = "clap_derive" +-version = "4.5.49" ++version = "4.5.55" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" ++checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" + dependencies = [ + "anstyle", "heck 0.5.0", "proc-macro2", + "pulldown-cmark", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] name = "clap_lex" --version = "0.7.4" -+version = "0.7.5" +-version = "0.7.6" ++version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" -+checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" +-checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" ++checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] - name = "clipboard-win" --version = "5.4.0" -+version = "5.4.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892" -+checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4" - dependencies = [ - "error-code", - ] -@@ -1527,14 +1525,14 @@ checksum = "cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59" - - [[package]] - name = "cocoa" --version = "0.26.0" -+version = "0.26.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f79398230a6e2c08f5c9760610eb6924b52aa9e7950a619602baba59dcbbdbb2" -+checksum = "ad36507aeb7e16159dfe68db81ccc27571c3ccd4b76fb2fb72fc59e7a4b1b64c" - dependencies = [ - "bitflags 2.9.1", - "block", - "cocoa-foundation", -- "core-foundation 0.10.0", -+ "core-foundation 0.10.1", - "core-graphics", - "foreign-types 0.5.0", - "libc", -@@ -1543,23 +1541,22 @@ dependencies = [ - - [[package]] - name = "cocoa-foundation" --version = "0.2.0" -+version = "0.2.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e14045fb83be07b5acf1c0884b2180461635b433455fa35d1cd6f17f1450679d" -+checksum = "81411967c50ee9a1fc11365f8c585f863a22a9697c89239c452292c40ba79b0d" - dependencies = [ - "bitflags 2.9.1", - "block", -- "core-foundation 0.10.0", -+ "core-foundation 0.10.1", - "core-graphics-types", -- "libc", - "objc", - ] - - [[package]] - name = "colorchoice" --version = "1.0.3" -+version = "1.0.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" -+checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" + name = "cli-prompts" +@@ -1948,11 +1918,11 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "colored" -@@ -1705,9 +1702,9 @@ dependencies = [ - - [[package]] - name = "core-foundation" --version = "0.10.0" -+version = "0.10.1" +-version = "3.0.0" ++version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" -+checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +-checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e" ++checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" dependencies = [ - "core-foundation-sys", - "libc", -@@ -1726,7 +1723,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" - dependencies = [ - "bitflags 2.9.1", -- "core-foundation 0.10.0", -+ "core-foundation 0.10.1", - "core-graphics-types", - "foreign-types 0.5.0", - "libc", -@@ -1739,7 +1736,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" - dependencies = [ - "bitflags 2.9.1", -- "core-foundation 0.10.0", -+ "core-foundation 0.10.1", - "libc", +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", ] -@@ -1825,7 +1822,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] +@@ -2053,7 +2023,7 @@ version = "0.1.16" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" + dependencies = [ +- "getrandom 0.2.16", ++ "getrandom 0.2.17", + "once_cell", + "tiny-keccak", + ] +@@ -2318,7 +2288,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -1835,29 +1832,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" +@@ -2328,7 +2298,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" dependencies = [ "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] - name = "curl" --version = "0.4.47" -+version = "0.4.48" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "d9fb4d13a1be2b58f14d60adba57c9834b78c62fd86c3e76a148f732686e9265" -+checksum = "9e2d5c8f48d9c0c23250e52b55e82a6ab4fdba6650c931f5a0a57a43abda812b" - dependencies = [ +@@ -2340,7 +2310,7 @@ dependencies = [ "curl-sys", "libc", - "openssl-probe", - "openssl-sys", "schannel", -- "socket2 0.5.9", -- "windows-sys 0.52.0", -+ "socket2 0.5.10", -+ "windows-sys 0.59.0", +- "socket2 0.6.1", ++ "socket2 0.6.2", + "windows-sys 0.59.0", ] - [[package]] - name = "curl-sys" --version = "0.4.80+curl-8.12.1" -+version = "0.4.82+curl-8.14.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "55f7df2eac63200c3ab25bde3b2268ef2ee56af3d238e76d61f01c3c49bff734" -+checksum = "c4d63638b5ec65f1a4ae945287b3fd035be4554bbaf211901159c9a2a74fb5be" - dependencies = [ - "cc", - "libc", -@@ -1865,7 +1862,7 @@ dependencies = [ - "openssl-sys", - "pkg-config", - "vcpkg", -- "windows-sys 0.52.0", -+ "windows-sys 0.59.0", - ] - - [[package]] -@@ -1889,7 +1886,7 @@ dependencies = [ +@@ -2389,7 +2359,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -1900,7 +1897,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" - dependencies = [ - "darling_core", +@@ -2403,7 +2373,7 @@ dependencies = [ + "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", + "strsim", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -1982,7 +1979,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" +@@ -2414,7 +2384,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" + dependencies = [ + "darling_core 0.20.11", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -2425,7 +2395,7 @@ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" + dependencies = [ + "darling_core 0.21.3", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -2456,9 +2426,9 @@ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376" + + [[package]] + name = "dbus" +-version = "0.9.9" ++version = "0.9.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "190b6255e8ab55a7b568df5a883e9497edc3e4821c06396612048b430e5ad1e9" ++checksum = "21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4" + dependencies = [ + "libc", + "libdbus-sys", +@@ -2501,7 +2471,7 @@ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2003,7 +2000,7 @@ dependencies = [ - "darling", +@@ -2522,7 +2492,7 @@ dependencies = [ + "darling 0.20.11", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2013,7 +2010,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" +@@ -2532,7 +2502,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2026,7 +2023,7 @@ dependencies = [ +@@ -2545,14 +2515,14 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2052,15 +2049,15 @@ dependencies = [ - - [[package]] - name = "diesel_derives" --version = "2.2.5" -+version = "2.2.7" + name = "deser-hjson" +-version = "2.2.4" ++version = "2.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "68d4216021b3ea446fd2047f5c8f8fe6e98af34508a254a01e4d6bc1e844f84d" -+checksum = "1b96984c469425cb577bf6f17121ecb3e4fe1e81de5d8f780dd372802858d756" +-checksum = "7d94aac4095c08ded7e4b9ba7fc2b2929f11b94bb96897ca188b0f64e01688e1" ++checksum = "1fbc1498156ddf9adc2eb251c1697b3a0dea599c94fb8cf1313f986adcc70f6e" dependencies = [ - "diesel_table_macro_syntax", - "dsl_auto_type", - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", + "serde", ] - - [[package]] -@@ -2080,7 +2077,7 @@ version = "0.2.0" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25" - dependencies = [ -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -2162,7 +2159,7 @@ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" - dependencies = [ - "libc", - "option-ext", -- "redox_users 0.5.0", -+ "redox_users 0.5.2", - "windows-sys 0.60.2", - ] - -@@ -2190,6 +2187,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" +@@ -2649,9 +2619,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" dependencies = [ - "bitflags 2.9.1", -+ "block2 0.6.1", -+ "libc", - "objc2 0.6.1", + "bitflags 2.10.0", +- "block2 0.6.2", ++ "block2", + "libc", +- "objc2 0.6.3", ++ "objc2", ] -@@ -2201,7 +2200,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" + [[package]] +@@ -2662,23 +2632,14 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", +-] +- +-[[package]] +-name = "dlib" +-version = "0.5.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" +-dependencies = [ +- "libloading 0.8.9", ++ "syn 2.0.114", ] [[package]] -@@ -2210,7 +2209,7 @@ version = "0.5.2" + name = "dlopen2" +-version = "0.8.0" ++version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" +-checksum = "b54f373ccf864bf587a89e880fb7610f8d73f3045f13580948ccbcaff26febff" ++checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" dependencies = [ -- "libloading", -+ "libloading 0.8.8", - ] - - [[package]] -@@ -2227,13 +2226,13 @@ dependencies = [ + "dlopen2_derive", + "libc", +@@ -2688,13 +2649,13 @@ dependencies = [ [[package]] name = "dlopen2_derive" --version = "0.4.0" -+version = "0.4.1" +-version = "0.4.1" ++version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" -+checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" +-checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" ++checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2277,7 +2276,7 @@ dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] +@@ -2732,9 +2693,9 @@ dependencies = [ [[package]] -@@ -2303,9 +2302,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" - - [[package]] - name = "dyn-clone" --version = "1.0.19" -+version = "1.0.20" + name = "dtoa" +-version = "1.0.10" ++version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" -+checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" +-checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" ++checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" [[package]] - name = "either" -@@ -2315,16 +2314,16 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" - - [[package]] - name = "embed-resource" --version = "3.0.2" -+version = "3.0.5" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "7fbc6e0d8e0c03a655b53ca813f0463d2c956bc4db8138dbc89f120b066551e3" -+checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38" - dependencies = [ + name = "dtoa-short" +@@ -2772,7 +2733,7 @@ dependencies = [ "cc", "memchr", "rustc_version", -- "toml", -+ "toml 0.9.5", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", "vswhom", -- "winreg 0.52.0", -+ "winreg 0.55.0", + "winreg 0.55.0", ] +@@ -2800,9 +2761,9 @@ dependencies = [ [[package]] -@@ -2356,9 +2355,9 @@ checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" + name = "endi" +-version = "1.1.0" ++version = "1.1.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" ++checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" [[package]] name = "enumflags2" --version = "0.7.11" -+version = "0.7.12" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ba2f4b465f5318854c6f8dd686ede6c0a9dc67d4b1ac241cf0eb51521a309147" -+checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" - dependencies = [ - "enumflags2_derive", - "serde", -@@ -2366,13 +2365,13 @@ dependencies = [ - - [[package]] - name = "enumflags2_derive" --version = "0.7.11" -+version = "0.7.12" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fc4caf64a58d7a6d65ab00639b046ff54399a39f5f2554728895ace4b297cd79" -+checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" +@@ -2822,7 +2783,7 @@ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2403,12 +2402,12 @@ dependencies = [ +@@ -2945,7 +2906,7 @@ checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] [[package]] - name = "errno" --version = "0.3.12" -+version = "0.3.13" +@@ -2985,31 +2946,22 @@ dependencies = [ + "windows-sys 0.60.2", + ] + +-[[package]] +-name = "file-id" +-version = "0.2.3" +-source = "git+https://github.com/notify-rs/notify?rev=978fe719b066a8ce76b9a9d346546b1569eecfb6#978fe719b066a8ce76b9a9d346546b1569eecfb6" +-dependencies = [ +- "windows-sys 0.60.2", +-] +- + [[package]] + name = "filetime" +-version = "0.2.26" ++version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" -+checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" +-checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" ++checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" dependencies = [ + "cfg-if", "libc", -- "windows-sys 0.59.0", -+ "windows-sys 0.60.2", + "libredox", +- "windows-sys 0.60.2", ] [[package]] -@@ -2419,9 +2418,9 @@ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59" - - [[package]] - name = "event-listener" --version = "5.4.0" -+version = "5.4.1" + name = "find-msvc-tools" +-version = "0.1.5" ++version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" -+checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" - dependencies = [ - "concurrent-queue", - "parking", -@@ -2495,11 +2494,11 @@ dependencies = [ +-checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" ++checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] - name = "file-id" --version = "0.2.2" -+version = "0.2.3" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "6bc904b9bbefcadbd8e3a9fb0d464a9b979de6324c03b3c663e8994f46a5be36" -+checksum = "e1fc6a637b6dc58414714eddd9170ff187ecb0933d4c7024d1abbd23a3cc26e9" - dependencies = [ -- "windows-sys 0.52.0", -+ "windows-sys 0.60.2", - ] - - [[package]] -@@ -2528,9 +2527,9 @@ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" + name = "fixedbitset" +@@ -3019,9 +2971,9 @@ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" [[package]] name = "flate2" --version = "1.1.1" -+version = "1.1.2" +-version = "1.1.5" ++version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece" -+checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" +-checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" ++checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" dependencies = [ "crc32fast", - "libz-rs-sys", -@@ -2588,7 +2587,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" + "miniz_oxide", +@@ -3084,7 +3036,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -2703,9 +2702,9 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" +@@ -3218,7 +3170,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] [[package]] - name = "futures-lite" --version = "2.6.0" -+version = "2.6.1" +@@ -3390,7 +3342,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" -+checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" + checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8" dependencies = [ - "fastrand", - "futures-core", -@@ -2722,7 +2721,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "rustix 1.1.3", ++ "rustix", + "windows-link 0.2.1", ] +@@ -3407,9 +3359,9 @@ dependencies = [ + [[package]] -@@ -2919,7 +2918,7 @@ dependencies = [ + name = "getrandom" +-version = "0.2.16" ++version = "0.2.17" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" ++checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" + dependencies = [ "cfg-if", "js-sys", - "libc", -- "wasi 0.11.0+wasi-snapshot-preview1", -+ "wasi 0.11.1+wasi-snapshot-preview1", - "wasm-bindgen", +@@ -3441,7 +3393,7 @@ dependencies = [ + "proc-macro-error2", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", ] -@@ -2997,7 +2996,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "587d0dd757ea38f8a7b4761026162f6b9ab39e2cc7eba386852371841f5fe69b" + [[package]] +@@ -3490,21 +3442,21 @@ checksum = "8df306e4dfc91752e89b74c88ee876c8518890600f82255254828f9192dd003c" dependencies = [ - "git2", -- "gix-path 0.10.19", -+ "gix-path", - "log", - "shellexpand", - "thiserror 2.0.12", -@@ -3066,7 +3065,7 @@ dependencies = [ - "serde-error", - "tempfile", - "tokio", -- "toml", -+ "toml 0.8.23", - "tracing", + "getset", + "nom 8.0.0", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", "url", ] -@@ -3235,7 +3234,7 @@ dependencies = [ - "bstr", - "gix", - "serde", -- "toml", -+ "toml 0.8.23", - "walkdir", + + [[package]] + name = "git2" +-version = "0.20.3" ++version = "0.20.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3e2b37e2f62729cdada11f0e6b3b6fe383c69c29fc619e391223e12856af308c" ++checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b" + dependencies = [ + "bitflags 2.10.0", + "libc", + "libgit2-sys", + "log", +- "openssl-probe", ++ "openssl-probe 0.1.6", + "openssl-sys", + "url", + ] +@@ -3519,7 +3471,7 @@ dependencies = [ + "gix-path 0.10.22", + "log", + "shellexpand", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] -@@ -3318,7 +3317,7 @@ dependencies = [ + [[package]] +@@ -3677,7 +3629,7 @@ name = "gitbutler-git" + version = "0.0.0" + dependencies = [ + "anyhow", +- "file-id 0.2.3 (git+https://github.com/notify-rs/notify?rev=978fe719b066a8ce76b9a9d346546b1569eecfb6)", ++ "file-id", + "futures", + "gix", + "nix 0.30.1", +@@ -3685,7 +3637,7 @@ dependencies = [ + "serde", + "snapbox", + "sysinfo", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + "tracing", + "windows 0.62.2", +@@ -3696,7 +3648,7 @@ name = "gitbutler-notify-debouncer" + version = "0.0.0" + dependencies = [ + "deser-hjson", +- "file-id 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "file-id", + "gitbutler-notify-debouncer", + "mock_instant", + "notify", +@@ -3723,7 +3675,7 @@ dependencies = [ + "gitbutler-stack", "gitbutler-testsupport", - "gix", "serde", -- "toml", -+ "toml 0.8.23", - "tracing", - ] - -@@ -3346,7 +3345,7 @@ dependencies = [ - "serde", - "strum", - "tempfile", -- "toml", -+ "toml 0.8.23", - "tracing", - ] - -@@ -3429,7 +3428,7 @@ dependencies = [ - "serde_json", - "tempfile", - "thiserror 2.0.12", -- "toml", -+ "toml 0.8.23", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", "tracing", "uuid", ] -@@ -3506,7 +3505,7 @@ dependencies = [ +@@ -3750,7 +3702,7 @@ dependencies = [ + "serde", + "strum", + "tempfile", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", + "tracing", + ] + +@@ -3786,7 +3738,7 @@ dependencies = [ + "git2", + "gix", + "serde", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -3823,8 +3775,8 @@ dependencies = [ + "serde", + "serde_json", + "tempfile", +- "thiserror 2.0.17", +- "toml 0.9.10+spec-1.1.0", ++ "thiserror 2.0.18", ++ "toml 0.9.11+spec-1.1.0", + "tracing", + ] + +@@ -3871,7 +3823,7 @@ dependencies = [ "itertools", "serde", "tempfile", -- "toml", -+ "toml 0.8.23", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", ] [[package]] -@@ -3729,15 +3728,16 @@ dependencies = [ +@@ -3970,7 +3922,7 @@ name = "gitbutler-url" + version = "0.0.0" + dependencies = [ + "bstr", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "url", + ] + +@@ -4030,58 +3982,59 @@ dependencies = [ [[package]] name = "gix" - version = "0.73.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.78.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "514c29cc879bdc0286b0cbc205585a49b252809eb86c69df4ce4f855ee75f635" ++checksum = "3428a03ace494ae40308bd3df0b37e7eb7403e24389f27abdff30abf2b5adf17" dependencies = [ -- "gix-actor 0.35.3", +- "gix-actor 0.38.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-attributes 0.30.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-actor", - "gix-attributes 0.27.0", ++ "gix-attributes", "gix-command", - "gix-commitgraph 0.29.0", +- "gix-commitgraph 0.32.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-commitgraph", "gix-config", "gix-credentials", -- "gix-date 0.10.4", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-date", "gix-diff", "gix-dir", - "gix-discover 0.41.0", -@@ -3756,7 +3756,7 @@ dependencies = [ - "gix-object 0.50.1", +- "gix-discover 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-discover", ++ "gix-error", ++ "gix-features", + "gix-filter", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-ignore 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-lock 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-fs", ++ "gix-glob", ++ "gix-hash", ++ "gix-hashtable", ++ "gix-ignore", ++ "gix-index", ++ "gix-lock", + "gix-mailmap", + "gix-merge", + "gix-negotiate", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-object", "gix-odb", "gix-pack", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", "gix-pathspec", "gix-prompt", "gix-protocol", -@@ -3769,12 +3769,12 @@ dependencies = [ +- "gix-ref 0.58.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-ref", + "gix-refspec", + "gix-revision", +- "gix-revwalk 0.26.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-sec 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-revwalk", ++ "gix-sec", + "gix-shallow", "gix-status", "gix-submodule", - "gix-tempfile 18.0.0", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-tempfile 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-tempfile", + "gix-trace", "gix-transport", - "gix-traverse 0.47.0", +- "gix-traverse 0.52.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-traverse", "gix-url", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-worktree 0.47.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-utils", -+ "gix-validate", - "gix-worktree 0.42.0", ++ "gix-validate 0.11.0", ++ "gix-worktree", "gix-worktree-state", - "once_cell", -@@ -3783,28 +3783,15 @@ dependencies = [ - "thiserror 2.0.12", + "serde", + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] --[[package]] --name = "gix-actor" --version = "0.35.2" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "58ebbb8f41071c7cf318a0b1db667c34e1df49db7bf387d282a4e61a3b97882c" --dependencies = [ -- "bstr", -- "gix-date 0.10.3", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "itoa", -- "thiserror 2.0.12", -- "winnow 0.7.12", --] -- [[package]] - name = "gix-actor" - version = "0.35.3" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d1b1ec302f8dc059df125ed46dfdc7e9d33fe7724df19843aea53b5ffd32d5bb" +@@ -4091,22 +4044,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "b50ce5433eaa46187349e59089eea71b0397caa71991b2fa3e124120426d7d15" dependencies = [ "bstr", -- "gix-date 0.10.4", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "gix-date", + "gix-utils", "itoa", +- "thiserror 2.0.17", +- "winnow 0.7.14", +-] +- +-[[package]] +-name = "gix-actor" +-version = "0.38.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", "serde", - "thiserror 2.0.12", -@@ -3819,9 +3806,9 @@ checksum = "6f50d813d5c2ce9463ba0c29eea90060df08e38ad8f34b8a192259f8bce5c078" - dependencies = [ - "bstr", - "gix-glob 0.20.1", -- "gix-path 0.10.19", -- "gix-quote 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "gix-trace 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-path", -+ "gix-quote", -+ "gix-trace", - "kstring", - "smallvec", - "thiserror 2.0.12", -@@ -3831,13 +3818,14 @@ dependencies = [ - [[package]] - name = "gix-attributes" - version = "0.27.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "45442188216d08a5959af195f659cb1f244a50d7d2d0c3873633b1cd7135f638" - dependencies = [ - "bstr", - "gix-glob 0.21.0", -- "gix-path 0.10.20", -- "gix-quote 0.6.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", -+ "gix-quote", -+ "gix-trace", - "kstring", - "serde", - "smallvec", -@@ -3854,14 +3842,6 @@ dependencies = [ - "thiserror 2.0.12", ++ "thiserror 2.0.18", + "winnow 0.7.14", ] +@@ -4117,30 +4059,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "f868f013fee0ebb5c85fae848c34a0b9ef7438acfbaec0c82a3cdbd5eac730a0" + dependencies = [ + "bstr", +- "gix-glob 0.24.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-quote 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-trace 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", +- "kstring", +- "smallvec", +- "thiserror 2.0.17", +- "unicode-bom", +-] +- +-[[package]] +-name = "gix-attributes" +-version = "0.30.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-quote 0.6.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-glob", ++ "gix-path 0.11.0", ++ "gix-quote", ++ "gix-trace", + "kstring", + "serde", + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "unicode-bom", + ] + +@@ -4150,15 +4076,7 @@ version = "0.2.15" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "5e150161b8a75b5860521cb876b506879a3376d3adc857ec7a9d35e7c6a5e531" + dependencies = [ +- "thiserror 2.0.17", +-] +- -[[package]] -name = "gix-bitmap" --version = "0.2.14" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" +-version = "0.2.15" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" -dependencies = [ -- "thiserror 2.0.12", --] -- - [[package]] - name = "gix-chunk" - version = "0.4.11" -@@ -3871,23 +3851,16 @@ dependencies = [ - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] --[[package]] --name = "gix-chunk" --version = "0.4.11" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" --dependencies = [ -- "thiserror 2.0.12", + [[package]] +@@ -4167,26 +4085,19 @@ version = "0.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "63e516efaac951ed21115b11d5514b120c26ccb493d0c0b9ea6cc10edf4fdf44" + dependencies = [ +- "gix-error 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - +-[[package]] +-name = "gix-chunk" +-version = "0.5.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-error", + ] + [[package]] name = "gix-command" - version = "0.6.2" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.7.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6b31b65ca48a352ae86312b27a514a0c661935f96b481ac8b4371f65815eb196" ++checksum = "745bc165b7da500acc26d24888379ae0dfd1ecabe3a47420cdcb92feefb0561d" dependencies = [ "bstr", -- "gix-path 0.10.20", -- "gix-quote 0.6.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-quote 0.6.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", + "gix-quote", + "gix-trace", "shell-words", ] -@@ -3898,7 +3871,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "e05050fd6caa6c731fe3bd7f9485b3b520be062d3d139cb2626e052d6c127951" +@@ -4197,21 +4108,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d0dda2e4d5a61d4a16a780f61f2b7e9406ad1f8da97c35c09ef501f3fdf74de0" dependencies = [ "bstr", -- "gix-chunk 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-chunk 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-error 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "memmap2", +-] +- +-[[package]] +-name = "gix-commitgraph" +-version = "0.32.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-chunk 0.5.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-chunk", - "gix-hash 0.18.0", - "memmap2", - "thiserror 2.0.12", -@@ -3907,10 +3880,11 @@ dependencies = [ - [[package]] - name = "gix-commitgraph" - version = "0.29.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6bb23121e952f43a5b07e3e80890336cb847297467a410475036242732980d06" - dependencies = [ - "bstr", -- "gix-chunk 0.4.11 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-chunk", - "gix-hash 0.19.0", ++ "gix-error", ++ "gix-hash", "memmap2", "serde", -@@ -3920,13 +3894,14 @@ dependencies = [ + ] +@@ -4219,18 +4118,19 @@ dependencies = [ [[package]] name = "gix-config" - version = "0.46.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.51.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5dfb898c5b695fd4acfc3c0ab638525a65545d47706064dcf7b5ead6cdb136c0" ++checksum = "9a153dd4f5789fdf242e19e3f7105f2a114df198570225976fe4a108bac9dee4" dependencies = [ "bstr", "gix-config-value", - "gix-features 0.43.1", - "gix-glob 0.21.0", -- "gix-path 0.10.20", -+ "gix-path", - "gix-ref 0.53.0", - "gix-sec 0.12.0", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-ref 0.58.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-sec 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", ++ "gix-glob", ++ "gix-path 0.11.0", ++ "gix-ref", ++ "gix-sec", "memchr", -@@ -3940,11 +3915,12 @@ dependencies = [ + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "unicode-bom", + "winnow 0.7.14", + ] +@@ -4238,31 +4138,33 @@ dependencies = [ [[package]] name = "gix-config-value" - version = "0.15.1" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.17.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9f012703eb67e263c6c1fc96649fec47694dd3e5d2a91abfc65e4a6a6dc85309" ++checksum = "563361198101cedc975fe5760c91ac2e4126eec22216e81b659b45289feaf1ea" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.10.0", "bstr", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", "libc", - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] -@@ -3952,38 +3928,27 @@ dependencies = [ + [[package]] name = "gix-credentials" - version = "0.30.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.35.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0039dd3ac606dd80b16353a41b61fc237ca5cb8b612f67a9f880adfad4be4e05" ++checksum = "b6ef04ac6b0b9cb75b02afaab4045eafb7b59be41815fbfaaa184a2280af2146" dependencies = [ "bstr", "gix-command", "gix-config-value", -- "gix-date 0.10.4", -- "gix-path 0.10.20", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-date", -+ "gix-path", ++ "gix-path 0.11.0", "gix-prompt", - "gix-sec 0.12.0", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-sec 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-sec", + "gix-trace", "gix-url", "serde", - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] --[[package]] --name = "gix-date" --version = "0.10.3" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "d7235bdf4d9d54a6901928e3a37f91c16f419e6957f520ed929c3d292b84226e" --dependencies = [ -- "bstr", + [[package]] +@@ -4272,19 +4174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "12553b32d1da25671f31c0b084bf1e5cb6d5ef529254d04ec33cdc890bd7f687" + dependencies = [ + "bstr", +- "gix-error 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa", - "jiff", - "smallvec", -- "thiserror 2.0.12", -] - - [[package]] - name = "gix-date" - version = "0.10.4" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "467254054f8df1e85b5f73cb910602767b0122391d994302a091841ba43edfaa" - dependencies = [ - "bstr", +-[[package]] +-name = "gix-date" +-version = "0.13.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-error", "itoa", -@@ -3996,7 +3961,8 @@ dependencies = [ + "jiff", + "serde", +@@ -4294,43 +4184,45 @@ dependencies = [ [[package]] name = "gix-diff" - version = "0.53.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.58.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "de854852010d44a317f30c92d67a983e691c9478c8a3fb4117c1f48626bcdea8" ++checksum = "26bcd367b2c5dbf6bec9ce02ca59eab179fc82cf39f15ec83549ee25c255c99f" dependencies = [ "bstr", - "gix-attributes 0.27.0", -@@ -4006,10 +3972,10 @@ dependencies = [ - "gix-hash 0.19.0", - "gix-index 0.41.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-attributes 0.30.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-attributes", + "gix-command", + "gix-filter", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-fs", ++ "gix-hash", ++ "gix-index", ++ "gix-object", ++ "gix-path 0.11.0", "gix-pathspec", - "gix-tempfile 18.0.0", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-tempfile 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-traverse 0.52.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-worktree 0.47.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-tempfile", + "gix-trace", - "gix-traverse 0.47.0", - "gix-worktree 0.42.0", ++ "gix-traverse", ++ "gix-worktree", "imara-diff", -@@ -4019,7 +3985,8 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] name = "gix-dir" - version = "0.15.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.20.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dad34e4f373f94902df1ba1d2a1df3a1b29eacd15e316ac5972d842e31422dd7" ++checksum = "004129e2c93798141d68ff08cb7f1b3d909c0212747fb8b05c8989635ba90a4e" dependencies = [ "bstr", - "gix-discover 0.41.0", -@@ -4027,10 +3994,10 @@ dependencies = [ - "gix-ignore 0.16.0", - "gix-index 0.41.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-discover 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-ignore 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-discover", ++ "gix-fs", ++ "gix-ignore", ++ "gix-index", ++ "gix-object", ++ "gix-path 0.11.0", "gix-pathspec", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-worktree 0.47.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", + "gix-trace", + "gix-utils", - "gix-worktree 0.42.0", - "thiserror 2.0.12", ++ "gix-worktree", ++ "thiserror 2.0.18", ] -@@ -4045,7 +4012,7 @@ dependencies = [ - "dunce", - "gix-fs 0.15.0", - "gix-hash 0.18.0", -- "gix-path 0.10.19", -+ "gix-path", - "gix-ref 0.52.1", - "gix-sec 0.11.0", - "thiserror 2.0.12", -@@ -4054,13 +4021,14 @@ dependencies = [ + [[package]] - name = "gix-discover" - version = "0.41.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ffb180c91ca1a2cf53e828bb63d8d8f8fa7526f49b83b33d7f46cbeb5d79d30a" +@@ -4341,25 +4233,11 @@ checksum = "950b027b861c6863ddf1b075672ec1ef2006b95c4d12284fc1ec4cdb1ab6639e" dependencies = [ "bstr", "dunce", - "gix-fs 0.16.0", - "gix-hash 0.19.0", -- "gix-path 0.10.20", -+ "gix-path", - "gix-ref 0.53.0", - "gix-sec 0.12.0", - "thiserror 2.0.12", -@@ -4072,9 +4040,9 @@ version = "0.42.1" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "56f4399af6ec4fd9db84dd4cf9656c5c785ab492ab40a7c27ea92b4241923fed" - dependencies = [ -- "gix-path 0.10.19", -- "gix-trace 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-path", -+ "gix-trace", -+ "gix-utils", - "libc", - "prodash 29.0.2", - "walkdir", -@@ -4083,15 +4051,16 @@ dependencies = [ +- "gix-fs 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-ref 0.58.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-sec 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-discover" +-version = "0.46.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "dunce", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-ref 0.58.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-sec 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", ++ "gix-fs", ++ "gix-path 0.11.0", ++ "gix-ref", ++ "gix-sec", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -4371,44 +4249,23 @@ dependencies = [ + "bstr", + ] + +-[[package]] +-name = "gix-error" +-version = "0.0.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +-] +- [[package]] name = "gix-features" - version = "0.43.1" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cd1543cd9b8abcbcebaa1a666a5c168ee2cda4dea50d3961ee0e6d1c42f81e5b" + version = "0.46.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "6a407957e21dc5e6c87086e50e5114a2f9240f9cb11699588a6d900d53cb6c70" +-dependencies = [ +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-trace 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "libc", +- "prodash", +- "walkdir", +-] +- +-[[package]] +-name = "gix-features" +-version = "0.46.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" dependencies = [ "bytes", "crc32fast", "crossbeam-channel", - "flate2", -- "gix-path 0.10.20", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", + "gix-trace", + "gix-utils", "libc", "once_cell", "parking_lot", -@@ -4103,7 +4072,8 @@ dependencies = [ + "prodash", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "walkdir", + "zlib-rs", + ] +@@ -4416,21 +4273,22 @@ dependencies = [ [[package]] name = "gix-filter" - version = "0.20.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.25.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "aa6571a3927e7ab10f64279a088e0dae08e8da05547771796d7389bbe28ad9ff" ++checksum = "7240442915cdd74e1f889566695ce0d0c23c7185b13318a1232ce646af0d18ad" dependencies = [ "bstr", "encoding_rs", -@@ -4112,10 +4082,10 @@ dependencies = [ - "gix-hash 0.19.0", - "gix-object 0.50.1", - "gix-packetline-blocking", -- "gix-path 0.10.20", -- "gix-quote 0.6.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", +- "gix-attributes 0.30.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-attributes", + "gix-command", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-hash", ++ "gix-object", + "gix-packetline", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-quote 0.6.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", + "gix-quote", + "gix-trace", + "gix-utils", "smallvec", - "thiserror 2.0.12", - ] -@@ -4129,21 +4099,22 @@ dependencies = [ - "bstr", - "fastrand", - "gix-features 0.42.1", -- "gix-path 0.10.19", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-path", -+ "gix-utils", - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] - name = "gix-fs" - version = "0.16.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d793f71e955d18f228d20ec433dcce6d0e8577efcdfd11d72d09d7cc2758dfd1" +@@ -4441,23 +4299,10 @@ checksum = "ba74fa163d3b2ba821d5cd207d55fe3daac3d1099613a8559c812d2b15b3c39a" dependencies = [ "bstr", "fastrand", - "gix-features 0.43.1", -- "gix-path 0.10.20", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", +- "gix-features 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-fs" +-version = "0.19.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "fastrand", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", ++ "gix-features", ++ "gix-path 0.11.0", + "gix-utils", - "thiserror 2.0.12", - ] - -@@ -4156,18 +4127,19 @@ dependencies = [ - "bitflags 2.9.1", - "bstr", - "gix-features 0.42.1", -- "gix-path 0.10.19", -+ "gix-path", ++ "thiserror 2.0.18", ] [[package]] - name = "gix-glob" - version = "0.21.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b947db8366823e7a750c254f6bb29e27e17f27e457bf336ba79b32423db62cd5" +@@ -4468,19 +4313,8 @@ checksum = "b03e6cd88cc0dc1eafa1fddac0fb719e4e74b6ea58dd016e71125fde4a326bee" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.10.0", "bstr", - "gix-features 0.43.1", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-features 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +-] +- +-[[package]] +-name = "gix-glob" +-version = "0.24.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bitflags 2.10.0", +- "bstr", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", ++ "gix-path 0.11.0", "serde", ] -@@ -4186,7 +4158,8 @@ dependencies = [ - [[package]] - name = "gix-hash" - version = "0.19.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "251fad79796a731a2a7664d9ea95ee29a9e99474de2769e152238d4fdb69d50e" +@@ -4491,21 +4325,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "2b8e11ea6bbd0fd4ab4a1c66812dd3cc25921a41315b120f352997725a4c79d6" dependencies = [ "faster-hex", - "gix-features 0.43.1", -@@ -4209,7 +4182,8 @@ dependencies = [ - [[package]] - name = "gix-hashtable" - version = "0.9.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c35300b54896153e55d53f4180460931ccd69b7e8d2f6b9d6401122cdedc4f07" - dependencies = [ - "gix-hash 0.19.0", - "hashbrown 0.15.4", -@@ -4224,20 +4198,21 @@ checksum = "ae358c3c96660b10abc7da63c06788dfded603e717edbd19e38c6477911b71c8" - dependencies = [ - "bstr", - "gix-glob 0.20.1", -- "gix-path 0.10.19", -- "gix-trace 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-path", -+ "gix-trace", - "unicode-bom", +- "gix-features 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "sha1-checked", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-hash" +-version = "0.22.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "faster-hex", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", + "serde", + "sha1-checked", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] - name = "gix-ignore" - version = "0.16.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "564d6fddf46e2c981f571b23d6ad40cb08bddcaf6fc7458b1d49727ad23c2870" +@@ -4514,17 +4337,7 @@ version = "0.12.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "52f1eecdd006390cbed81f105417dbf82a6fe40842022006550f2e32484101da" + dependencies = [ +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "hashbrown 0.16.1", +- "parking_lot", +-] +- +-[[package]] +-name = "gix-hashtable" +-version = "0.12.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-hash", + "hashbrown 0.16.1", + "parking_lot", + ] +@@ -4536,21 +4349,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "8953d87c13267e296d547f0fc7eaa8aa8fa5b2a9a34ab1cd5857f25240c7d299" dependencies = [ "bstr", - "gix-glob 0.21.0", -- "gix-path 0.10.20", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", +- "gix-glob 0.24.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-trace 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", +- "unicode-bom", +-] +- +-[[package]] +-name = "gix-ignore" +-version = "0.19.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-glob", ++ "gix-path 0.11.0", + "gix-trace", "serde", "unicode-bom", ] -@@ -4252,15 +4227,15 @@ dependencies = [ +@@ -4565,50 +4366,23 @@ dependencies = [ "bstr", "filetime", "fnv", -- "gix-bitmap 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-bitmap 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-features 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-fs 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-lock 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-object 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-traverse 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-validate 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "hashbrown 0.16.1", +- "itoa", +- "libc", +- "memmap2", +- "rustix 1.1.3", +- "smallvec", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-index" +-version = "0.46.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bitflags 2.10.0", +- "bstr", +- "filetime", +- "fnv", +- "gix-bitmap 0.2.15 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-lock 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-traverse 0.52.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-bitmap", - "gix-features 0.42.1", - "gix-fs 0.15.0", - "gix-hash 0.18.0", - "gix-lock 17.1.0", - "gix-object 0.49.1", - "gix-traverse 0.46.2", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "gix-validate 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "gix-features", ++ "gix-fs", ++ "gix-hash", ++ "gix-lock", ++ "gix-object", ++ "gix-traverse", + "gix-utils", -+ "gix-validate", - "hashbrown 0.14.5", ++ "gix-validate 0.11.0", + "hashbrown 0.16.1", "itoa", "libc", -@@ -4273,21 +4248,22 @@ dependencies = [ - [[package]] - name = "gix-index" - version = "0.41.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2af39fde3ce4ce11371d9ce826f2936ec347318f2d1972fe98c2e7134e267e25" - dependencies = [ - "bitflags 2.9.1", - "bstr", - "filetime", - "fnv", -- "gix-bitmap 0.2.14 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-bitmap", - "gix-features 0.43.1", - "gix-fs 0.16.0", - "gix-hash 0.19.0", - "gix-lock 18.0.0", - "gix-object 0.50.1", - "gix-traverse 0.47.0", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-utils", -+ "gix-validate", - "hashbrown 0.15.4", - "itoa", - "libc", -@@ -4305,28 +4281,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "570f8b034659f256366dc90f1a24924902f20acccd6a15be96d44d1269e7a796" - dependencies = [ - "gix-tempfile 17.1.0", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-utils", - "thiserror 2.0.12", + "memmap2", +- "rustix 1.1.3", ++ "rustix", + "serde", + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] - name = "gix-lock" - version = "18.0.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b9fa71da90365668a621e184eb5b979904471af1b3b09b943a84bc50e8ad42ed" +@@ -4617,70 +4391,63 @@ version = "21.0.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "e16d406220ef9df105645a9ddcaa42e8c882ba920344ace866d0403570aea599" dependencies = [ - "gix-tempfile 18.0.0", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-tempfile 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-lock" +-version = "21.0.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "gix-tempfile 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", ++ "gix-tempfile", + "gix-utils", - "thiserror 2.0.12", ++ "thiserror 2.0.18", ] [[package]] name = "gix-mailmap" - version = "0.27.2" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.30.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9a8982e1874a2034d7dd481bcdd6a05579ba444bcda748511eb0f8e50eb10487" ++checksum = "2e6fd521cb582620b7066b5b420ace1951cb84fe2241fa239b227e1a94fa25dc" dependencies = [ "bstr", -- "gix-actor 0.35.3", -- "gix-date 0.10.4", +- "gix-actor 0.38.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-actor", + "gix-date", "serde", - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] -@@ -4334,7 +4312,8 @@ dependencies = [ + [[package]] name = "gix-merge" - version = "0.6.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.11.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "88c2580b4122a0c40de25f8f20a1817704b5f4e4798c78d29d4a89500af2da89" ++checksum = "d468c28f6b092626b93e24e6785fc890a87ca26823c37aefb411a40152504c17" dependencies = [ "bstr", "gix-command", -@@ -4344,12 +4323,12 @@ dependencies = [ - "gix-hash 0.19.0", - "gix-index 0.41.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -- "gix-quote 0.6.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", + "gix-diff", + "gix-filter", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-quote 0.6.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-fs", ++ "gix-hash", ++ "gix-index", ++ "gix-object", ++ "gix-path 0.11.0", + "gix-quote", "gix-revision", - "gix-revwalk 0.21.0", - "gix-tempfile 18.0.0", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-revwalk 0.26.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-tempfile 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-worktree 0.47.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-revwalk", ++ "gix-tempfile", + "gix-trace", - "gix-worktree 0.42.0", ++ "gix-worktree", "imara-diff", - "thiserror 2.0.12", -@@ -4358,11 +4337,12 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] name = "gix-negotiate" - version = "0.21.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.26.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1d58d4c9118885233be971e0d7a589f5cfb1a8bd6cb6e2ecfb0fc6b1b293c83b" ++checksum = "00dff6d49869f16b8900da7c27b886a45cbf641b1e45aab355d012afe4266b7f" dependencies = [ - "bitflags 2.9.1", - "gix-commitgraph 0.29.0", -- "gix-date 0.10.4", + "bitflags 2.10.0", +- "gix-commitgraph 0.32.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-revwalk 0.26.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-commitgraph", + "gix-date", - "gix-hash 0.19.0", - "gix-object 0.50.1", - "gix-revwalk 0.21.0", -@@ -4377,14 +4357,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "d957ca3640c555d48bb27f8278c67169fa1380ed94f6452c5590742524c40fbb" - dependencies = [ - "bstr", -- "gix-actor 0.35.2", -- "gix-date 0.10.3", -+ "gix-actor", -+ "gix-date", - "gix-features 0.42.1", - "gix-hash 0.18.0", - "gix-hashtable 0.8.1", -- "gix-path 0.10.19", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "gix-validate 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-path", -+ "gix-utils", -+ "gix-validate", - "itoa", ++ "gix-hash", ++ "gix-object", ++ "gix-revwalk", "smallvec", - "thiserror 2.0.12", -@@ -4394,17 +4374,18 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] - name = "gix-object" - version = "0.50.1" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "aff2047f96d57bcc721426e11ec0f9efeb432d5e6ef5f1aa84cfc55198971dca" +@@ -4690,92 +4457,75 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "4d3f705c977d90ace597049252ae1d7fec907edc0fa7616cc91bf5508d0f4006" dependencies = [ "bstr", -- "gix-actor 0.35.3", -- "gix-date 0.10.4", +- "gix-actor 0.38.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-date 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-features 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hashtable 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-validate 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "itoa", +- "smallvec", +- "thiserror 2.0.17", +- "winnow 0.7.14", +-] +- +-[[package]] +-name = "gix-object" +-version = "0.55.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-actor 0.38.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-actor", + "gix-date", - "gix-features 0.43.1", - "gix-hash 0.19.0", - "gix-hashtable 0.9.0", -- "gix-path 0.10.20", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", ++ "gix-features", ++ "gix-hash", ++ "gix-hashtable", ++ "gix-path 0.11.0", + "gix-utils", -+ "gix-validate", ++ "gix-validate 0.11.0", "itoa", "serde", "smallvec", -@@ -4415,18 +4396,19 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "winnow 0.7.14", + ] + [[package]] name = "gix-odb" - version = "0.70.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.75.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9c9d7af10fda9df0bb4f7f9bd507963560b3c66cb15a5b825caf752e0eb109ac" ++checksum = "1d59882d2fdab5e609b0c452a6ef9a3bd12ef6b694be4f82ab8f126ad0969864" dependencies = [ "arc-swap", -- "gix-date 0.10.4", -+ "gix-date", - "gix-features 0.43.1", - "gix-fs 0.16.0", - "gix-hash 0.19.0", - "gix-hashtable 0.9.0", - "gix-object 0.50.1", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", ++ "gix-fs", ++ "gix-hash", ++ "gix-hashtable", ++ "gix-object", "gix-pack", -- "gix-path 0.10.20", -- "gix-quote 0.6.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-quote 0.6.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", + "gix-quote", "parking_lot", "serde", "tempfile", -@@ -4436,15 +4418,16 @@ dependencies = [ - [[package]] - name = "gix-pack" - version = "0.60.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d8571df89bfca5abb49c3e3372393f7af7e6f8b8dbe2b96303593cef5b263019" - dependencies = [ - "clru", -- "gix-chunk 0.4.11 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-chunk", - "gix-features 0.43.1", - "gix-hash 0.19.0", - "gix-hashtable 0.9.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -+ "gix-path", - "gix-tempfile 18.0.0", - "memmap2", - "parking_lot", -@@ -4457,47 +4440,36 @@ dependencies = [ - [[package]] - name = "gix-packetline" - version = "0.19.1" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2592fbd36249a2fea11056f7055cc376301ef38d903d157de41998335bbf1f93" - dependencies = [ - "bstr", - "faster-hex", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-trace", - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] - name = "gix-packetline-blocking" - version = "0.19.1" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" --dependencies = [ -- "bstr", -- "faster-hex", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "thiserror 2.0.12", + name = "gix-pack" + version = "0.65.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "8c44db57ebbbeaad9972c2a60662142660427a1f0a7529314d53fefb4fedad24" + dependencies = [ + "clru", +- "gix-chunk 0.5.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-tempfile 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-chunk", ++ "gix-error", ++ "gix-features", ++ "gix-hash", ++ "gix-hashtable", ++ "gix-object", ++ "gix-path 0.11.0", ++ "gix-tempfile", + "memmap2", + "parking_lot", + "serde", + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "uluru", + ] + + [[package]] + name = "gix-packetline" + version = "0.21.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "6c333badf342e9c2392800a96b9f2cf5bcb33906d2577d6ec923756ff4008a3f" + dependencies = [ + "bstr", + "faster-hex", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", ++ "gix-trace", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -4785,9 +4535,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "7cb06c3e4f8eed6e24fd915fa93145e28a511f4ea0e768bae16673e05ed3f366" + dependencies = [ + "bstr", +- "gix-trace 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ++ "gix-trace", + "gix-validate 0.10.1", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -4797,71 +4547,63 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "c7c3cd795cad18c7acbc6bafe34bfb34ac7273ee81133793f9d1516dd9faf922" + dependencies = [ + "bstr", +- "gix-trace 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-validate 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "thiserror 2.0.17", -] - -[[package]] -name = "gix-path" --version = "0.10.19" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c6279d323d925ad4790602105ae27df4b915e7a7d81e4cdba2603121c03ad111" -+checksum = "fc4e706f328cd494cc8f932172e123a72b9a4711b0db5e411681432a89bd4c94" - dependencies = [ - "bstr", -- "gix-trace 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -- "gix-validate 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "home", -- "once_cell", -+ "faster-hex", +-version = "0.11.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", + "gix-trace", - "thiserror 2.0.12", ++ "gix-validate 0.11.0", ++ "thiserror 2.0.18", ] - [[package]] - name = "gix-path" - version = "0.10.20" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "06d37034a4c67bbdda76f7bcd037b2f7bc0fba0c09a6662b19697a5716e7b2fd" - dependencies = [ - "bstr", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-trace", -+ "gix-validate", - "home", - "once_cell", - "thiserror 2.0.12", -@@ -4506,21 +4478,23 @@ dependencies = [ [[package]] name = "gix-pathspec" - version = "0.12.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.15.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "daedead611c9bd1f3640dc90a9012b45f790201788af4d659f28d94071da7fba" ++checksum = "3df6fd8e514d8b99ec5042ee17909a17750ccf54d0b8b30c850954209c800322" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.10.0", "bstr", - "gix-attributes 0.27.0", +- "gix-attributes 0.30.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-attributes", "gix-config-value", - "gix-glob 0.21.0", -- "gix-path 0.10.20", -+ "gix-path", - "thiserror 2.0.12", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", ++ "gix-glob", ++ "gix-path 0.11.0", ++ "thiserror 2.0.18", ] [[package]] name = "gix-prompt" - version = "0.11.1" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.13.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6ffa1a7a34c81710aaa666a428c142b6c5d640492fcd41267db0740d923c7906" ++checksum = "6d48536da48fa4ae9d99bf46479f37a19a58427711e1927c80790856d4a490f6" dependencies = [ "gix-command", "gix-config-value", -@@ -4532,11 +4506,12 @@ dependencies = [ + "parking_lot", +- "rustix 1.1.3", +- "thiserror 2.0.17", ++ "rustix", ++ "thiserror 2.0.18", + ] + [[package]] name = "gix-protocol" - version = "0.51.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.56.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "12b4b807c47ffcf7c1e5b8119585368a56449f3493da93b931e1d4239364e922" ++checksum = "54f20837b0c70b65f6ac77886be033de3b69d5879f99128b47c42665ab0a17c2" dependencies = [ "bstr", "gix-credentials", -- "gix-date 0.10.4", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-lock 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-date", - "gix-features 0.43.1", - "gix-hash 0.19.0", - "gix-lock 18.0.0", -@@ -4546,9 +4521,9 @@ dependencies = [ ++ "gix-features", ++ "gix-hash", ++ "gix-lock", + "gix-negotiate", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-ref 0.58.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-object", ++ "gix-ref", "gix-refspec", - "gix-revwalk 0.21.0", +- "gix-revwalk 0.26.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-revwalk", "gix-shallow", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-trace", "gix-transport", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-utils", "maybe-async", "serde", - "thiserror 2.0.12", -@@ -4562,17 +4537,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "4a375a75b4d663e8bafe3bf4940a18a23755644c13582fa326e99f8f987d83fd" +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "winnow 0.7.14", + ] + +@@ -4872,18 +4614,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "e912ec04b7b1566a85ad486db0cab6b9955e3e32bcd3c3a734542ab3af084c5b" dependencies = [ "bstr", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "thiserror 2.0.12", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "thiserror 2.0.17", -] - -[[package]] -name = "gix-quote" --version = "0.6.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" +-version = "0.6.1" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" -dependencies = [ - "bstr", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "thiserror 2.0.17", + "gix-utils", - "thiserror 2.0.12", ++ "thiserror 2.0.18", ] -@@ -4582,16 +4547,16 @@ version = "0.52.1" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "d1b7985657029684d759f656b09abc3e2c73085596d5cdb494428823970a7762" - dependencies = [ -- "gix-actor 0.35.2", -+ "gix-actor", - "gix-features 0.42.1", - "gix-fs 0.15.0", - "gix-hash 0.18.0", - "gix-lock 17.1.0", - "gix-object 0.49.1", -- "gix-path 0.10.19", -+ "gix-path", - "gix-tempfile 17.1.0", -- "gix-utils 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -- "gix-validate 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-utils", -+ "gix-validate", - "memmap2", - "thiserror 2.0.12", - "winnow 0.7.12", -@@ -4600,18 +4565,19 @@ dependencies = [ [[package]] - name = "gix-ref" - version = "0.53.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4b7a23209d4e4cbdc2086d294f5f3f8707ac6286768847024d952d8cd3278c5b" +@@ -4892,72 +4624,54 @@ version = "0.58.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "5cf780dcd9ac99fd3fcfc8523479a0e2ffd55f5e0be63e5e3248fb7e46cff966" dependencies = [ -- "gix-actor 0.35.3", +- "gix-actor 0.38.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-features 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-fs 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-lock 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-object 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-tempfile 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-validate 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "memmap2", +- "thiserror 2.0.17", +- "winnow 0.7.14", +-] +- +-[[package]] +-name = "gix-ref" +-version = "0.58.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "gix-actor 0.38.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-lock 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-tempfile 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-utils 0.3.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-actor", - "gix-features 0.43.1", - "gix-fs 0.16.0", - "gix-hash 0.19.0", - "gix-lock 18.0.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -+ "gix-path", - "gix-tempfile 18.0.0", -- "gix-utils 0.3.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", ++ "gix-fs", ++ "gix-hash", ++ "gix-lock", ++ "gix-object", ++ "gix-path 0.11.0", ++ "gix-tempfile", + "gix-utils", -+ "gix-validate", ++ "gix-validate 0.11.0", "memmap2", "serde", - "thiserror 2.0.12", -@@ -4621,12 +4587,13 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "winnow 0.7.14", + ] + [[package]] name = "gix-refspec" - version = "0.31.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.36.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7d29cae1ae31108826e7156a5e60bffacab405f4413f5bc0375e19772cce0055" ++checksum = "60ce400a770a7952e45267803192cc2d1fe0afa08e2c08dde32e04c7908c6e61" dependencies = [ "bstr", - "gix-hash 0.19.0", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-error", ++ "gix-glob", ++ "gix-hash", "gix-revision", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-validate", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-validate 0.11.0", "smallvec", - "thiserror 2.0.12", - ] -@@ -4634,17 +4601,18 @@ dependencies = [ - [[package]] - name = "gix-revision" - version = "0.35.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f651f2b1742f760bb8161d6743229206e962b73d9c33c41f4e4aefa6586cbd3d" - dependencies = [ - "bitflags 2.9.1", - "bstr", - "gix-commitgraph 0.29.0", -- "gix-date 0.10.4", -+ "gix-date", - "gix-hash 0.19.0", - "gix-hashtable 0.9.0", - "gix-object 0.50.1", - "gix-revwalk 0.21.0", -- "gix-trace 0.1.13 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-trace", - "serde", - "thiserror 2.0.12", - ] -@@ -4656,7 +4624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "1bc756b73225bf005ddeb871d1ca7b3c33e2417d0d53e56effa5a36765b52b28" - dependencies = [ - "gix-commitgraph 0.28.0", -- "gix-date 0.10.3", -+ "gix-date", - "gix-hash 0.18.0", - "gix-hashtable 0.8.1", - "gix-object 0.49.1", -@@ -4667,10 +4635,11 @@ dependencies = [ - [[package]] - name = "gix-revwalk" - version = "0.21.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "06e74f91709729e099af6721bd0fa7d62f243f2005085152301ca5cdd86ec02c" - dependencies = [ - "gix-commitgraph 0.29.0", -- "gix-date 0.10.4", -+ "gix-date", - "gix-hash 0.19.0", - "gix-hashtable 0.9.0", - "gix-object 0.50.1", -@@ -4685,7 +4654,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "d0dabbc78c759ecc006b970339394951b2c8e1e38a37b072c105b80b84c308fd" - dependencies = [ - "bitflags 2.9.1", -- "gix-path 0.10.19", -+ "gix-path", - "libc", - "windows-sys 0.59.0", - ] -@@ -4693,19 +4662,21 @@ dependencies = [ - [[package]] - name = "gix-sec" - version = "0.12.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "09f7053ed7c66633b56c57bc6ed3377be3166eaf3dc2df9f1c5ec446df6fdf2c" - dependencies = [ - "bitflags 2.9.1", -- "gix-path 0.10.20", -+ "gix-path", - "libc", - "serde", -- "windows-sys 0.60.2", -+ "windows-sys 0.59.0", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] - name = "gix-shallow" - version = "0.5.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + name = "gix-revision" + version = "0.40.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d936745103243ae4c510f19e0760ce73fb0f08096588fdbe0f0d7fb7ce8944b7" ++checksum = "c719cf7d669439e1fca735bd1c4de54d43c5d30e8883fd6063c4924b213d70c9" + dependencies = [ + "bitflags 2.10.0", + "bstr", +- "gix-commitgraph 0.32.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-revwalk 0.26.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-trace 0.1.17 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-commitgraph", ++ "gix-date", ++ "gix-error", ++ "gix-hash", ++ "gix-hashtable", ++ "gix-object", ++ "gix-revwalk", ++ "gix-trace", + "serde", + ] + +@@ -4967,29 +4681,14 @@ version = "0.26.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "194a50b30aa0c6e6de43c723359c5809a96275a3aa92d323ef7f58b1cdd60f16" + dependencies = [ +- "gix-commitgraph 0.32.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-date 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-error 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hashtable 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-object 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "smallvec", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-revwalk" +-version = "0.26.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "gix-commitgraph 0.32.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-error 0.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-commitgraph", ++ "gix-date", ++ "gix-error", ++ "gix-hash", ++ "gix-hashtable", ++ "gix-object", + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -4999,18 +4698,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "beeb3bc63696cf7acb5747a361693ebdbcaf25b5d27d2308f38e9782983e7bce" + dependencies = [ + "bitflags 2.10.0", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "libc", +- "windows-sys 0.61.2", +-] +- +-[[package]] +-name = "gix-sec" +-version = "0.13.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bitflags 2.10.0", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", + "libc", + "serde", + "windows-sys 0.61.2", +@@ -5019,49 +4707,52 @@ dependencies = [ + [[package]] + name = "gix-shallow" + version = "0.8.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "f4f4660fed3786d28e7e57d31b2de9ab3bf846068e187ccc52ee513de19a0073" dependencies = [ "bstr", - "gix-hash 0.19.0", -@@ -4717,7 +4688,8 @@ dependencies = [ +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-lock 21.0.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-hash", ++ "gix-lock", + "serde", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] name = "gix-status" - version = "0.20.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.25.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2a4afff9b34eeececa8bdc32b42fb318434b6b1391d9f8d45fe455af08dc2d35" ++checksum = "b0c994dbca7f038cfcde6337673523bab6e6b4f544b5046f5120a02bdeafff33" dependencies = [ "bstr", "filetime", -@@ -4729,7 +4701,7 @@ dependencies = [ - "gix-hash 0.19.0", - "gix-index 0.41.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -+ "gix-path", + "gix-diff", + "gix-dir", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", + "gix-filter", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-fs", ++ "gix-hash", ++ "gix-index", ++ "gix-object", ++ "gix-path 0.11.0", "gix-pathspec", - "gix-worktree 0.42.0", +- "gix-worktree 0.47.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-worktree", "portable-atomic", -@@ -4739,11 +4711,12 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] name = "gix-submodule" - version = "0.20.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.25.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "657cc5dd43cbc7a14d9c5aaf02cfbe9c2a15d077cded3f304adb30ef78852d3e" ++checksum = "db1840fe723c6264ee596e5a179e1b9a2df59351f09bae9cea570a472a790bc0" dependencies = [ "bstr", "gix-config", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", "gix-pathspec", "gix-refspec", "gix-url", -@@ -4768,7 +4741,8 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] - name = "gix-tempfile" - version = "18.0.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "666c0041bcdedf5fa05e9bef663c897debab24b7dc1741605742412d1d47da57" +@@ -5069,24 +4760,13 @@ name = "gix-tempfile" + version = "21.0.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d280bba7c547170e42d5228fc6e76c191fb5a7c88808ff61af06460404d1fd91" +-dependencies = [ +- "gix-fs 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "libc", +- "parking_lot", +- "signal-hook 0.4.1", +- "signal-hook-registry", +- "tempfile", +-] +- +-[[package]] +-name = "gix-tempfile" +-version = "21.0.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" dependencies = [ "dashmap", - "gix-fs 0.16.0", -@@ -4807,11 +4781,6 @@ name = "gix-trace" - version = "0.1.13" +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-fs", + "libc", + "parking_lot", ++ "signal-hook 0.4.3", ++ "signal-hook-registry", + "tempfile", + ] + +@@ -5100,11 +4780,11 @@ dependencies = [ + "crc", + "fastrand", + "fs_extra", +- "gix-discover 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-fs 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-lock 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-tempfile 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-worktree 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "gix-discover", ++ "gix-fs", ++ "gix-lock", ++ "gix-tempfile", ++ "gix-worktree", + "io-close", + "is_ci", + "parking_lot", +@@ -5118,32 +4798,28 @@ name = "gix-trace" + version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "e2ccaf54b0b1743a695b482ca0ab9d7603744d8d10b2e5d1a332fef337bee658" + checksum = "6e42a4c2583357721ba2d887916e78df504980f22f1182df06997ce197b89504" - -[[package]] -name = "gix-trace" --version = "0.1.13" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" +-version = "0.1.17" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" dependencies = [ - "tracing-core", +- "tracing", ++ "tracing-core", ] -@@ -4819,7 +4788,8 @@ dependencies = [ + [[package]] name = "gix-transport" - version = "0.48.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.53.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "12f7cc0179fc89d53c54e1f9ce51229494864ab4bf136132d69db1b011741ca3" ++checksum = "de1064c7ffa5a915014a6a5b71fbc5299462ae655348bed23e083b4a735076c3" dependencies = [ "base64 0.22.1", "bstr", -@@ -4828,7 +4798,7 @@ dependencies = [ + "gix-command", "gix-credentials", - "gix-features 0.43.1", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", "gix-packetline", -- "gix-quote 0.6.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-quote 0.6.1 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-sec 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", + "gix-quote", - "gix-sec 0.12.0", ++ "gix-sec", "gix-url", + "reqwest 0.13.1", "serde", -@@ -4843,7 +4813,7 @@ checksum = "b8648172f85aca3d6e919c06504b7ac26baef54e04c55eb0100fa588c102cc33" - dependencies = [ - "bitflags 2.9.1", - "gix-commitgraph 0.28.0", -- "gix-date 0.10.3", -+ "gix-date", - "gix-hash 0.18.0", - "gix-hashtable 0.8.1", - "gix-object 0.49.1", -@@ -4855,11 +4825,12 @@ dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] - name = "gix-traverse" - version = "0.47.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c7cdc82509d792ba0ad815f86f6b469c7afe10f94362e96c4494525a6601bdd5" +@@ -5153,42 +4829,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "37f8b53b4c56b01c43a4491c4edfe2ce66c654eb86232205172ceb1650d21c55" dependencies = [ - "bitflags 2.9.1", - "gix-commitgraph 0.29.0", -- "gix-date 0.10.4", + "bitflags 2.10.0", +- "gix-commitgraph 0.32.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-date 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hashtable 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-object 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-revwalk 0.26.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "smallvec", +- "thiserror 2.0.17", +-] +- +-[[package]] +-name = "gix-traverse" +-version = "0.52.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bitflags 2.10.0", +- "gix-commitgraph 0.32.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-date 0.13.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hashtable 0.12.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-revwalk 0.26.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-commitgraph", + "gix-date", - "gix-hash 0.19.0", - "gix-hashtable 0.9.0", - "gix-object 0.50.1", -@@ -4871,11 +4842,12 @@ dependencies = [ ++ "gix-hash", ++ "gix-hashtable", ++ "gix-object", ++ "gix-revwalk", + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + [[package]] name = "gix-url" - version = "0.32.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.35.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1b76a9d266254ad287ffd44467cd88e7868799b08f4d52e02d942b93e514d16f" ++checksum = "1ca2e50308a8373069e71970939f43ea4a1b5f422cf807d048ebcf07dcc02b2c" dependencies = [ "bstr", - "gix-features 0.43.1", -- "gix-path 0.10.20", -+ "gix-path", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-path 0.11.0", "percent-encoding", "serde", - "thiserror 2.0.12", -@@ -4887,15 +4859,6 @@ name = "gix-utils" - version = "0.3.0" +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -5196,15 +4857,6 @@ name = "gix-utils" + version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "5351af2b172caf41a3728eb4455326d84e0d70fe26fc4de74ab0bd37df4191c5" + checksum = "befcdbdfb1238d2854591f760a48711bed85e72d80a10e8f2f93f656746ef7c5" -dependencies = [ - "fastrand", - "unicode-normalization", @@ -2042,2251 +2383,3399 @@ index 60b520f8d..8406c39d0 100644 - -[[package]] -name = "gix-utils" --version = "0.3.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" +-version = "0.3.1" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" dependencies = [ "bstr", "fastrand", -@@ -4912,15 +4875,6 @@ dependencies = [ - "thiserror 2.0.12", +@@ -5218,7 +4870,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "5b1e63a5b516e970a594f870ed4571a8fdcb8a344e7bd407a20db8bd61dbfde4" + dependencies = [ + "bstr", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -5230,14 +4882,6 @@ dependencies = [ + "bstr", ] -[[package]] -name = "gix-validate" --version = "0.10.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" +-version = "0.11.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" -dependencies = [ - "bstr", -- "thiserror 2.0.12", -] - [[package]] name = "gix-worktree" - version = "0.41.0" -@@ -4936,14 +4890,15 @@ dependencies = [ - "gix-ignore 0.15.0", - "gix-index 0.40.1", - "gix-object 0.49.1", -- "gix-path 0.10.19", -- "gix-validate 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "gix-path", -+ "gix-validate", - ] - - [[package]] - name = "gix-worktree" - version = "0.42.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "55f625ac9126c19bef06dbc6d2703cdd7987e21e35b497bb265ac37d383877b1" + version = "0.47.0" +@@ -5245,50 +4889,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "ef2ad658586ec0039b03e96c664f08b7cb7a2b7cca6947a9c856c9ed59b807b1" dependencies = [ "bstr", - "gix-attributes 0.27.0", -@@ -4954,15 +4909,16 @@ dependencies = [ - "gix-ignore 0.16.0", - "gix-index 0.41.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -- "gix-validate 0.10.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", -+ "gix-path", -+ "gix-validate", +- "gix-attributes 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-fs 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-glob 0.24.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-hash 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-ignore 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-index 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-object 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-path 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "gix-validate 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +-] +- +-[[package]] +-name = "gix-worktree" +-version = "0.47.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +-dependencies = [ +- "bstr", +- "gix-attributes 0.30.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-glob 0.24.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-hash 0.22.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-ignore 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-validate 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-attributes", ++ "gix-fs", ++ "gix-glob", ++ "gix-hash", ++ "gix-ignore", ++ "gix-index", ++ "gix-object", ++ "gix-path 0.11.0", ++ "gix-validate 0.11.0", "serde", ] [[package]] name = "gix-worktree-state" - version = "0.20.0" --source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5" + version = "0.25.0" +-source = "git+https://github.com/GitoxideLabs/gitoxide?branch=main#75ac1d05b3c97eda9a20f22c6cd7f90554df37ab" +source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "06ba9b17cbacc02b25801197b20100f7f9bd621db1e7fce9d3c8ab3175207bf8" ++checksum = "9895abc7654cbd8e102d6a765d3bdfa1567fcd5d2849b8e3d3da6405d64913c9" dependencies = [ "bstr", - "gix-features 0.43.1", -@@ -4972,7 +4928,7 @@ dependencies = [ - "gix-hash 0.19.0", - "gix-index 0.41.0", - "gix-object 0.50.1", -- "gix-path 0.10.20", -+ "gix-path", - "gix-worktree 0.42.0", +- "gix-features 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-features", + "gix-filter", +- "gix-fs 0.19.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-index 0.46.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-object 0.55.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-path 0.11.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", +- "gix-worktree 0.47.0 (git+https://github.com/GitoxideLabs/gitoxide?branch=main)", ++ "gix-fs", ++ "gix-index", ++ "gix-object", ++ "gix-path 0.11.0", ++ "gix-worktree", "io-close", - "thiserror 2.0.12", -@@ -5012,7 +4968,7 @@ dependencies = [ - "proc-macro-error", - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] -@@ -5091,14 +5047,14 @@ dependencies = [ +@@ -5325,7 +4953,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] - name = "h2" --version = "0.3.26" -+version = "0.3.27" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" -+checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" - dependencies = [ - "bytes", - "fnv", -@@ -5106,7 +5062,7 @@ dependencies = [ +@@ -5417,7 +5045,7 @@ dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -5432,7 +5060,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", "slab", "tokio", "tokio-util", -@@ -5115,9 +5071,9 @@ dependencies = [ +@@ -5441,9 +5069,9 @@ dependencies = [ [[package]] name = "h2" --version = "0.4.10" -+version = "0.4.12" +-version = "0.4.12" ++version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5" -+checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" +-checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" ++checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ "atomic-waker", "bytes", -@@ -5125,7 +5081,7 @@ dependencies = [ +@@ -5451,7 +5079,7 @@ dependencies = [ "futures-core", "futures-sink", - "http 1.3.1", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", + "http 1.4.0", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", "slab", "tokio", "tokio-util", -@@ -5208,9 +5164,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - - [[package]] - name = "hermit-abi" --version = "0.4.0" -+version = "0.5.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" -+checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" - - [[package]] - name = "hex" -@@ -5341,14 +5297,14 @@ dependencies = [ - "futures-channel", - "futures-core", - "futures-util", -- "h2 0.3.26", -+ "h2 0.3.27", - "http 0.2.12", - "http-body 0.4.6", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", -- "socket2 0.5.9", -+ "socket2 0.5.10", - "tokio", - "tower-service", - "tracing", -@@ -5364,7 +5320,7 @@ dependencies = [ +@@ -5715,7 +5343,7 @@ dependencies = [ "bytes", "futures-channel", - "futures-util", -- "h2 0.4.10", -+ "h2 0.4.12", - "http 1.3.1", + "futures-core", +- "h2 0.4.12", ++ "h2 0.4.13", + "http 1.4.0", "http-body 1.0.1", "httparse", -@@ -5392,21 +5348,20 @@ dependencies = [ - - [[package]] - name = "hyper-rustls" --version = "0.27.5" -+version = "0.27.7" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" -+checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" - dependencies = [ -- "futures-util", - "http 1.3.1", - "hyper 1.6.0", +@@ -5751,13 +5379,13 @@ dependencies = [ + "http 1.4.0", + "hyper 1.8.1", "hyper-util", -- "rustls 0.23.27", -+ "rustls 0.23.31", +- "rustls 0.23.35", ++ "rustls 0.23.36", "rustls-native-certs", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.2", + "tokio-rustls 0.26.4", "tower-service", -- "webpki-roots 0.26.11", -+ "webpki-roots 1.0.2", +- "webpki-roots 1.0.4", ++ "webpki-roots 1.0.5", ] [[package]] -@@ -5440,9 +5395,9 @@ dependencies = [ +@@ -5791,14 +5419,13 @@ dependencies = [ [[package]] name = "hyper-util" --version = "0.1.13" -+version = "0.1.16" +-version = "0.1.18" ++version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "b1c293b6b3d21eca78250dc7dbebd6b9210ec5530e038cbfe0661b5c47ab06e8" -+checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" +-checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56" ++checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ "base64 0.22.1", "bytes", -@@ -5456,7 +5411,7 @@ dependencies = [ + "futures-channel", +- "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", +@@ -5807,8 +5434,8 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", -- "socket2 0.5.9", -+ "socket2 0.6.0", - "system-configuration 0.6.1", +- "socket2 0.6.1", +- "system-configuration", ++ "socket2 0.6.2", ++ "system-configuration 0.7.0", "tokio", "tower-service", -@@ -5547,9 +5502,9 @@ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" + "tracing", +@@ -5817,9 +5444,9 @@ dependencies = [ + + [[package]] + name = "iana-time-zone" +-version = "0.1.64" ++version = "0.1.65" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" ++checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" + dependencies = [ + "android_system_properties", + "core-foundation-sys", +@@ -5841,9 +5468,9 @@ dependencies = [ + + [[package]] + name = "ico" +-version = "0.4.0" ++version = "0.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" ++checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" + dependencies = [ + "byteorder", + "png 0.17.16", +@@ -5897,9 +5524,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" [[package]] name = "icu_properties" --version = "2.0.0" -+version = "2.0.1" +-version = "2.1.1" ++version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a" -+checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" +-checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" ++checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "displaydoc", "icu_collections", -@@ -5563,9 +5518,9 @@ dependencies = [ + "icu_locale_core", +@@ -5911,9 +5538,9 @@ dependencies = [ [[package]] name = "icu_properties_data" --version = "2.0.0" -+version = "2.0.1" +-version = "2.1.1" ++version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04" -+checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" +-checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" ++checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" [[package]] name = "icu_provider" -@@ -5646,9 +5601,9 @@ dependencies = [ +@@ -6009,9 +5636,9 @@ dependencies = [ [[package]] name = "indexmap" --version = "2.9.0" -+version = "2.10.0" +-version = "2.12.1" ++version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" -+checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" +-checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" ++checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", - "hashbrown 0.15.4", -@@ -5843,7 +5798,7 @@ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" + "hashbrown 0.16.1", +@@ -6060,9 +5687,9 @@ dependencies = [ + + [[package]] + name = "insta" +-version = "1.46.0" ++version = "1.46.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1b66886d14d18d420ab5052cbff544fc5d34d0b2cdd35eb5976aaa10a4a472e5" ++checksum = "e82db8c87c7f1ccecb34ce0c24399b8a73081427f3c7c50a5d597925356115e4" + dependencies = [ + "console", + "once_cell", +@@ -6098,9 +5725,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + + [[package]] + name = "iri-string" +-version = "0.7.9" ++version = "0.7.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" ++checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" + dependencies = [ + "memchr", + "serde", +@@ -6209,14 +5836,14 @@ checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -5895,9 +5850,9 @@ dependencies = [ + name = "jiff-tzdb" +-version = "0.1.4" ++version = "0.1.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524" ++checksum = "68971ebff725b9e2ca27a601c5eb38a4c5d64422c4cbab0c535f248087eda5c2" [[package]] - name = "jpeg-decoder" --version = "0.3.1" -+version = "0.3.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" -+checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07" + name = "jiff-tzdb-platform" +@@ -6261,9 +5888,9 @@ dependencies = [ [[package]] name = "js-sys" -@@ -5954,7 +5909,7 @@ dependencies = [ - "log", - "secret-service", - "security-framework 2.11.1", -- "security-framework 3.2.0", -+ "security-framework 3.3.0", - "windows-sys 0.60.2", - "zeroize", - ] -@@ -5997,7 +5952,7 @@ checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" +-version = "0.3.82" ++version = "0.3.85" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" ++checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3" + dependencies = [ + "once_cell", + "wasm-bindgen", +@@ -6357,7 +5984,7 @@ checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" dependencies = [ "cssparser", "html5ever", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", "selectors", ] -@@ -6027,7 +5982,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" +@@ -6387,7 +6014,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" dependencies = [ "gtk-sys", -- "libloading", -+ "libloading 0.7.4", +- "libloading 0.7.4", ++ "libloading", "once_cell", ] -@@ -6048,9 +6003,9 @@ dependencies = [ +@@ -6405,9 +6032,9 @@ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" [[package]] - name = "libgit2-sys" --version = "0.18.1+1.9.0" -+version = "0.18.2+1.9.1" + name = "libdbus-sys" +-version = "0.2.6" ++version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e1dcb20f84ffcdd825c7a311ae347cce604a6f084a767dec4a4929829645290e" -+checksum = "1c42fe03df2bd3c53a3a9c7317ad91d80c81cd1fb0caec8d7cc4cd2bfa10c222" +-checksum = "5cbe856efeb50e4681f010e9aaa2bf0a644e10139e54cde10fc83a307c23bd9f" ++checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" dependencies = [ - "cc", - "libc", -@@ -6070,11 +6025,21 @@ dependencies = [ + "pkg-config", + ] +@@ -6436,25 +6063,15 @@ dependencies = [ "winapi", ] -+[[package]] -+name = "libloading" -+version = "0.8.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" -+dependencies = [ -+ "cfg-if", -+ "windows-targets 0.53.3", -+] -+ +-[[package]] +-name = "libloading" +-version = "0.8.9" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" +-dependencies = [ +- "cfg-if", +- "windows-link 0.2.1", +-] +- [[package]] name = "libredox" --version = "0.1.3" -+version = "0.1.9" +-version = "0.1.10" ++version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" -+checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" +-checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" ++checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.10.0", "libc", -@@ -6108,9 +6073,9 @@ dependencies = [ - - [[package]] - name = "libz-rs-sys" --version = "0.5.0" -+version = "0.5.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a" -+checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221" - dependencies = [ - "zlib-rs", +- "redox_syscall", ++ "redox_syscall 0.7.0", ] -@@ -6157,9 +6122,9 @@ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" [[package]] - name = "litrs" --version = "0.4.1" -+version = "0.4.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" -+checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed" +@@ -6504,12 +6121,6 @@ dependencies = [ + "libc", + ] +-[[package]] +-name = "linux-raw-sys" +-version = "0.4.15" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +- [[package]] - name = "lock_api" -@@ -6244,7 +6209,7 @@ checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" + name = "linux-raw-sys" + version = "0.11.0" +@@ -6565,8 +6176,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "65fd3f75411f4725061682ed91f131946e912859d0044d39c4ec0aac818d7621" + dependencies = [ + "cc", +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + "time", + ] + +@@ -6612,7 +6223,7 @@ checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -6282,7 +6247,7 @@ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11" +@@ -6644,7 +6255,7 @@ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -6293,9 +6258,9 @@ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0" - - [[package]] - name = "memchr" --version = "2.7.4" -+version = "2.7.5" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" -+checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" - - [[package]] - name = "memmap2" -@@ -6317,12 +6282,12 @@ dependencies = [ - - [[package]] - name = "migrations_internals" --version = "2.2.0" -+version = "2.2.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fd01039851e82f8799046eabbb354056283fb265c8ec0996af940f4e85a380ff" -+checksum = "3bda1634d70d5bd53553cf15dca9842a396e8c799982a3ad22998dc44d961f24" - dependencies = [ - "serde", -- "toml", -+ "toml 0.9.5", - ] - - [[package]] -@@ -6360,15 +6325,15 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - - [[package]] - name = "minisign-verify" --version = "0.2.3" -+version = "0.2.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "6367d84fb54d4242af283086402907277715b8fe46976963af5ebf173f8efba3" -+checksum = "e856fdd13623a2f5f2f54676a4ee49502a96a80ef4a62bcedd23d52427c44d43" - - [[package]] - name = "miniz_oxide" --version = "0.8.8" -+version = "0.8.9" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" -+checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" - dependencies = [ - "adler2", - "simd-adler32", -@@ -6376,14 +6341,14 @@ dependencies = [ +@@ -6744,9 +6355,9 @@ dependencies = [ [[package]] name = "mio" --version = "1.0.3" -+version = "1.0.4" +-version = "1.1.0" ++version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" -+checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +-checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" ++checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ "libc", "log", -- "wasi 0.11.0+wasi-snapshot-preview1", -- "windows-sys 0.52.0", -+ "wasi 0.11.1+wasi-snapshot-preview1", -+ "windows-sys 0.59.0", - ] +@@ -6762,9 +6373,9 @@ checksum = "dce6dd36094cac388f119d2e9dc82dc730ef91c32a6222170d630e5414b956e6" [[package]] -@@ -6394,23 +6359,23 @@ checksum = "4e1d4c44418358edcac6e1d9ce59cea7fb38052429c7704033f1196f0c179e6a" - - [[package]] - name = "muda" --version = "0.17.0" -+version = "0.17.1" + name = "moxcms" +-version = "0.7.10" ++version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "58b89bf91c19bf036347f1ab85a81c560f08c0667c8601bece664d860a600988" -+checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" +-checksum = "80986bbbcf925ebd3be54c26613d861255284584501595cf418320c078945608" ++checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97" dependencies = [ - "crossbeam-channel", + "num-traits", + "pxfm", +@@ -6780,14 +6391,14 @@ dependencies = [ "dpi", "gtk", "keyboard-types", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", "objc2-core-foundation", - "objc2-foundation 0.3.1", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "once_cell", - "png", + "png 0.17.16", "serde", - "thiserror 2.0.12", -- "windows-sys 0.59.0", -+ "windows-sys 0.60.2", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "windows-sys 0.60.2", + ] + +@@ -6797,7 +6408,7 @@ version = "0.7.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" + dependencies = [ +- "getrandom 0.2.16", ++ "getrandom 0.2.17", ] [[package]] -@@ -6661,23 +6626,24 @@ dependencies = [ +@@ -6809,7 +6420,7 @@ dependencies = [ + "libc", + "log", + "openssl", +- "openssl-probe", ++ "openssl-probe 0.1.6", + "openssl-sys", + "schannel", + "security-framework 2.11.1", +@@ -6948,7 +6559,7 @@ dependencies = [ + "kqueue", + "libc", + "log", +- "mio 1.1.0", ++ "mio 1.1.1", + "notify-types", + "walkdir", + "windows-sys 0.60.2", +@@ -6956,29 +6567,32 @@ dependencies = [ [[package]] - name = "num_enum" --version = "0.7.3" -+version = "0.7.4" + name = "notify-rust" +-version = "4.11.7" ++version = "4.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" -+checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" +-checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400" ++checksum = "21af20a1b50be5ac5861f74af1a863da53a11c38684d9818d82f1c42f7fdc6c2" dependencies = [ - "num_enum_derive", -+ "rustversion", + "futures-lite", + "log", + "mac-notification-sys", + "serde", + "tauri-winrt-notification", +- "zbus 5.12.0", ++ "zbus 5.13.2", ] [[package]] - name = "num_enum_derive" --version = "0.7.3" -+version = "0.7.4" + name = "notify-types" +-version = "2.0.0" ++version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" -+checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" +-checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d" ++checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a" ++dependencies = [ ++ "bitflags 2.10.0", ++] + + [[package]] + name = "ntapi" +-version = "0.4.1" ++version = "0.4.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" ++checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" dependencies = [ - "proc-macro-crate 3.3.0", + "winapi", + ] +@@ -7027,9 +6641,9 @@ dependencies = [ + + [[package]] + name = "num-conv" +-version = "0.1.0" ++version = "0.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" ++checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" + + [[package]] + name = "num-integer" +@@ -7090,7 +6704,7 @@ dependencies = [ + "proc-macro-crate 3.4.0", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -6724,22 +6690,6 @@ dependencies = [ - "objc2-exception-helper", +@@ -7111,22 +6725,6 @@ dependencies = [ + "malloc_buf", ] -[[package]] --name = "objc2-app-kit" +-name = "objc-sys" +-version = "0.3.5" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" +- +-[[package]] +-name = "objc2" +-version = "0.5.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" +-dependencies = [ +- "objc-sys", +- "objc2-encode", +-] +- + [[package]] + name = "objc2" + version = "0.6.3" +@@ -7144,9 +6742,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" + dependencies = [ + "bitflags 2.10.0", +- "block2 0.6.2", ++ "block2", + "libc", +- "objc2 0.6.3", ++ "objc2", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-foundation", +@@ -7154,8 +6752,8 @@ dependencies = [ + "objc2-core-image", + "objc2-core-text", + "objc2-core-video", +- "objc2-foundation 0.3.2", +- "objc2-quartz-core 0.3.2", ++ "objc2-foundation", ++ "objc2-quartz-core", + ] + + [[package]] +@@ -7165,8 +6763,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + ] + + [[package]] +@@ -7176,8 +6774,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + ] + + [[package]] +@@ -7188,7 +6786,7 @@ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" + dependencies = [ + "bitflags 2.10.0", + "dispatch2", +- "objc2 0.6.3", ++ "objc2", + ] + + [[package]] +@@ -7199,7 +6797,7 @@ checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" + dependencies = [ + "bitflags 2.10.0", + "dispatch2", +- "objc2 0.6.3", ++ "objc2", + "objc2-core-foundation", + "objc2-io-surface", + ] +@@ -7210,8 +6808,8 @@ version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" + dependencies = [ +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + ] + + [[package]] +@@ -7220,8 +6818,8 @@ version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009" + dependencies = [ +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + ] + + [[package]] +@@ -7231,7 +6829,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", ++ "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + ] +@@ -7243,7 +6841,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", ++ "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-io-surface", +@@ -7264,18 +6862,6 @@ dependencies = [ + "cc", + ] + +-[[package]] +-name = "objc2-foundation" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" +-checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" -dependencies = [ -- "bitflags 2.9.1", +- "bitflags 2.10.0", - "block2 0.5.1", - "libc", - "objc2 0.5.2", -- "objc2-core-data 0.2.2", -- "objc2-core-image 0.2.2", -- "objc2-foundation 0.2.2", -- "objc2-quartz-core 0.2.2", -] - [[package]] - name = "objc2-app-kit" - version = "0.3.1" -@@ -6751,10 +6701,10 @@ dependencies = [ + name = "objc2-foundation" + version = "0.3.2" +@@ -7283,9 +6869,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" + dependencies = [ + "bitflags 2.10.0", +- "block2 0.6.2", ++ "block2", "libc", - "objc2 0.6.1", - "objc2-cloud-kit", -- "objc2-core-data 0.3.1", -+ "objc2-core-data", +- "objc2 0.6.3", ++ "objc2", "objc2-core-foundation", - "objc2-core-graphics", -- "objc2-core-image 0.3.1", -+ "objc2-core-image", - "objc2-foundation 0.3.1", - "objc2-quartz-core 0.3.1", ] -@@ -6770,18 +6720,6 @@ dependencies = [ - "objc2-foundation 0.3.1", + +@@ -7306,7 +6892,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", ++ "objc2", + "objc2-core-foundation", + ] + +@@ -7316,22 +6902,10 @@ version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586" + dependencies = [ +- "objc2 0.6.3", ++ "objc2", + "objc2-core-foundation", ] -[[package]] --name = "objc2-core-data" +-name = "objc2-metal" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" +-checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" -dependencies = [ -- "bitflags 2.9.1", +- "bitflags 2.10.0", - "block2 0.5.1", - "objc2 0.5.2", - "objc2-foundation 0.2.2", -] - [[package]] - name = "objc2-core-data" - version = "0.3.1" -@@ -6817,18 +6755,6 @@ dependencies = [ - "objc2-io-surface", - ] - + name = "objc2-osa-kit" + version = "0.3.2" +@@ -7339,22 +6913,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", +- "objc2-foundation 0.3.2", +-] +- -[[package]] --name = "objc2-core-image" +-name = "objc2-quartz-core" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" +-checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" -dependencies = [ +- "bitflags 2.10.0", - "block2 0.5.1", - "objc2 0.5.2", - "objc2-foundation 0.2.2", - "objc2-metal", --] -- - [[package]] - name = "objc2-core-image" - version = "0.3.1" -@@ -6862,7 +6788,6 @@ checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" - dependencies = [ - "bitflags 2.9.1", - "block2 0.5.1", -- "dispatch", - "libc", - "objc2 0.5.2", - ] -@@ -6921,7 +6846,7 @@ checksum = "26bb88504b5a050dbba515d2414607bf5e57dd56b107bc5f0351197a3e7bdc5d" - dependencies = [ - "bitflags 2.9.1", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", - "objc2-foundation 0.3.1", ++ "objc2-foundation", ] -@@ -6970,7 +6895,7 @@ dependencies = [ - "bitflags 2.9.1", - "block2 0.6.1", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", + [[package]] +@@ -7364,9 +6925,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" + dependencies = [ + "bitflags 2.10.0", +- "objc2 0.6.3", ++ "objc2", "objc2-core-foundation", - "objc2-foundation 0.3.1", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", ] -@@ -6990,6 +6915,12 @@ version = "1.21.3" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - -+[[package]] -+name = "once_cell_polyfill" -+version = "1.70.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" -+ - [[package]] - name = "open" - version = "5.3.2" -@@ -7004,9 +6935,9 @@ dependencies = [ [[package]] - name = "openssl" --version = "0.10.72" -+version = "0.10.73" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da" -+checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" +@@ -7376,7 +6937,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" dependencies = [ - "bitflags 2.9.1", - "cfg-if", -@@ -7025,7 +6956,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" + "bitflags 2.10.0", +- "objc2 0.6.3", ++ "objc2", + "objc2-core-foundation", + ] + +@@ -7387,8 +6948,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" + dependencies = [ + "bitflags 2.10.0", +- "block2 0.6.2", +- "objc2 0.6.3", ++ "block2", ++ "objc2", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-foundation", +@@ -7396,8 +6957,8 @@ dependencies = [ + "objc2-core-image", + "objc2-core-location", + "objc2-core-text", +- "objc2-foundation 0.3.2", +- "objc2-quartz-core 0.3.2", ++ "objc2-foundation", ++ "objc2-quartz-core", + "objc2-user-notifications", + ] + +@@ -7407,8 +6968,8 @@ version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e" + dependencies = [ +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + ] + + [[package]] +@@ -7418,11 +6979,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" + dependencies = [ + "bitflags 2.10.0", +- "block2 0.6.2", +- "objc2 0.6.3", ++ "block2", ++ "objc2", + "objc2-app-kit", + "objc2-core-foundation", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", + "objc2-javascript-core", + "objc2-security", + ] +@@ -7445,11 +7006,11 @@ dependencies = [ + "async-stream", + "log", + "reqwest 0.12.28", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde", + "serde_json", + "static_assertions", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "url", + ] + +@@ -7482,15 +7043,15 @@ dependencies = [ + + [[package]] + name = "opener" +-version = "0.8.3" ++version = "0.8.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cb9024962ab91e00c89d2a14352a8d0fc1a64346bf96f1839b45c09149564e47" ++checksum = "a2fa337e0cf13357c13ef1dc108df1333eb192f75fc170bea03fcf1fd404c2ee" + dependencies = [ + "bstr", + "normpath", + "url", +- "windows-sys 0.60.2", +- "zbus 5.12.0", ++ "windows-sys 0.61.2", ++ "zbus 5.13.2", + ] + + [[package]] +@@ -7516,7 +7077,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -7036,18 +6967,18 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" +@@ -7525,11 +7086,17 @@ version = "0.1.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" ++[[package]] ++name = "openssl-probe" ++version = "0.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" ++ [[package]] name = "openssl-src" --version = "300.5.0+3.5.0" -+version = "300.5.1+3.5.1" +-version = "300.5.4+3.5.4" ++version = "300.5.5+3.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e8ce546f549326b0e6052b649198487d91320875da901e7bd11a06d1ee3f9c2f" -+checksum = "735230c832b28c000e3bc117119e6466a663ec73506bc0a9907ea4187508e42a" +-checksum = "a507b3792995dae9b0df8a1c1e3771e8418b7c2d9f0baeba32e6fe8b06c7cb72" ++checksum = "3f1787d533e03597a7934fd0a765f0d28e94ecc5fb7789f8053b1e699a56f709" dependencies = [ "cc", ] - - [[package]] - name = "openssl-sys" --version = "0.9.108" -+version = "0.9.109" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e145e1651e858e820e4860f7b9c5e169bc1d8ce1c86043be79fa7b7634821847" -+checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" - dependencies = [ - "cc", - "libc", -@@ -7074,20 +7005,21 @@ dependencies = [ +@@ -7575,15 +7142,15 @@ dependencies = [ [[package]] name = "os_info" --version = "3.11.0" -+version = "3.12.0" +-version = "3.13.0" ++version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "41fc863e2ca13dc2d5c34fb22ea4a588248ac14db929616ba65c45f21744b1e9" -+checksum = "d0e1ac5fde8d43c34139135df8ea9ee9465394b2d8d20f032d38998f64afffc3" +-checksum = "7c39b5918402d564846d5aba164c09a66cc88d232179dfd3e3c619a25a268392" ++checksum = "e4022a17595a00d6a369236fdae483f0de7f0a339960a53118b818238e132224" dependencies = [ + "android_system_properties", "log", -+ "plist", + "nix 0.30.1", +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + "objc2-ui-kit", "serde", - "windows-sys 0.52.0", - ] - - [[package]] - name = "os_pipe" --version = "1.2.1" -+version = "1.2.2" + "windows-sys 0.61.2", +@@ -7605,12 +7172,12 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982" -+checksum = "db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224" + checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b" dependencies = [ - "libc", - "windows-sys 0.59.0", -@@ -7202,7 +7134,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" - dependencies = [ - "fixedbitset 0.4.2", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + "objc2-osa-kit", + "serde", + "serde_json", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", ] [[package]] -@@ -7213,7 +7145,7 @@ checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca" +@@ -7672,7 +7239,7 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ - "fixedbitset 0.5.7", - "hashbrown 0.15.4", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", + "cfg-if", + "libc", +- "redox_syscall", ++ "redox_syscall 0.5.18", + "smallvec", + "windows-link 0.2.1", + ] +@@ -7703,7 +7270,7 @@ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" + dependencies = [ + "fixedbitset", + "hashbrown 0.15.5", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", "serde", ] -@@ -7321,7 +7253,7 @@ dependencies = [ +@@ -7811,7 +7378,7 @@ dependencies = [ "phf_shared 0.11.3", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -7368,7 +7300,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +@@ -7838,7 +7405,7 @@ version = "0.11.3" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" + dependencies = [ +- "siphasher 1.0.1", ++ "siphasher 1.0.2", + ] + + [[package]] +@@ -7858,7 +7425,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -7402,13 +7334,13 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" - - [[package]] - name = "plist" --version = "1.7.1" -+version = "1.7.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d" -+checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1" +@@ -7897,7 +7464,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" dependencies = [ "base64 0.22.1", -- "indexmap 2.9.0", -- "quick-xml 0.32.0", -+ "indexmap 2.10.0", -+ "quick-xml 0.38.1", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "quick-xml 0.38.4", "serde", "time", - ] -@@ -7428,24 +7360,23 @@ dependencies = [ - - [[package]] - name = "polling" --version = "3.7.4" -+version = "3.10.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" -+checksum = "b5bd19146350fe804f7cb2669c851c03d69da628803dab0d98018142aaa5d829" - dependencies = [ - "cfg-if", +@@ -7939,21 +7506,21 @@ dependencies = [ "concurrent-queue", "hermit-abi", "pin-project-lite", -- "rustix 0.38.44", -- "tracing", -- "windows-sys 0.59.0", -+ "rustix 1.0.8", -+ "windows-sys 0.60.2", +- "rustix 1.1.3", ++ "rustix", + "windows-sys 0.61.2", ] [[package]] name = "portable-atomic" --version = "1.11.0" -+version = "1.11.1" +-version = "1.11.1" ++version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" -+checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +-checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" ++checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" [[package]] name = "portable-atomic-util" -@@ -7563,7 +7494,7 @@ version = "3.3.0" +-version = "0.2.4" ++version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" +-checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" ++checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" dependencies = [ -- "toml_edit 0.22.26", -+ "toml_edit 0.22.27", + "portable-atomic", + ] +@@ -8039,7 +7606,7 @@ version = "3.4.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" + dependencies = [ +- "toml_edit 0.23.7", ++ "toml_edit 0.23.10+spec-1.0.0", ] [[package]] -@@ -7644,7 +7575,7 @@ dependencies = [ +@@ -8085,7 +7652,7 @@ dependencies = [ + "proc-macro-error-attr2", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -8096,9 +7663,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + + [[package]] + name = "proc-macro2" +-version = "1.0.103" ++version = "1.0.106" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" ++checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" + dependencies = [ + "unicode-ident", + ] +@@ -8114,9 +7681,9 @@ dependencies = [ + + [[package]] + name = "prost" +-version = "0.14.1" ++version = "0.14.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d" ++checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" + dependencies = [ + "bytes", + "prost-derive", +@@ -8124,22 +7691,22 @@ dependencies = [ + + [[package]] + name = "prost-derive" +-version = "0.14.1" ++version = "0.14.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425" ++checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" + dependencies = [ + "anyhow", "itertools", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -7694,18 +7625,18 @@ dependencies = [ - - [[package]] - name = "quick-xml" --version = "0.32.0" -+version = "0.37.5" + name = "prost-types" +-version = "0.14.1" ++version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" -+checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" +-checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72" ++checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" dependencies = [ - "memchr", + "prost", ] +@@ -8193,9 +7760,9 @@ dependencies = [ [[package]] - name = "quick-xml" --version = "0.37.5" -+version = "0.38.1" + name = "pxfm" +-version = "0.1.26" ++version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" -+checksum = "9845d9dccf565065824e69f9f235fafba1587031eda353c1f1561cd6a6be78f4" +-checksum = "b3502d6155304a4173a5f2c34b52b7ed0dd085890326cb50fd625fdf39e86b3b" ++checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8" dependencies = [ - "memchr", + "num-traits", ] -@@ -7722,8 +7653,8 @@ dependencies = [ +@@ -8236,9 +7803,9 @@ dependencies = [ "quinn-proto", "quinn-udp", "rustc-hash", -- "rustls 0.23.27", -- "socket2 0.5.9", -+ "rustls 0.23.31", -+ "socket2 0.5.10", - "thiserror 2.0.12", +- "rustls 0.23.35", +- "socket2 0.6.1", +- "thiserror 2.0.17", ++ "rustls 0.23.36", ++ "socket2 0.6.2", ++ "thiserror 2.0.18", "tokio", "tracing", -@@ -7742,7 +7673,7 @@ dependencies = [ + "web-time", +@@ -8257,10 +7824,10 @@ dependencies = [ "rand 0.9.2", "ring", "rustc-hash", -- "rustls 0.23.27", -+ "rustls 0.23.31", +- "rustls 0.23.35", ++ "rustls 0.23.36", "rustls-pki-types", "slab", - "thiserror 2.0.12", -@@ -7753,14 +7684,14 @@ dependencies = [ - - [[package]] - name = "quinn-udp" --version = "0.5.12" -+version = "0.5.13" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842" -+checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970" - dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tinyvec", + "tracing", + "web-time", +@@ -8275,16 +7842,16 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", -- "socket2 0.5.9", -+ "socket2 0.5.10", +- "socket2 0.6.1", ++ "socket2 0.6.2", "tracing", - "windows-sys 0.59.0", + "windows-sys 0.60.2", ] -@@ -7776,9 +7707,9 @@ dependencies = [ [[package]] - name = "r-efi" --version = "5.2.0" -+version = "5.3.0" + name = "quote" +-version = "1.0.42" ++version = "1.0.44" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" -+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" - - [[package]] - name = "radium" -@@ -7904,9 +7835,9 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" - - [[package]] - name = "redox_syscall" --version = "0.5.12" -+version = "0.5.17" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af" -+checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" +-checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" ++checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" dependencies = [ - "bitflags 2.9.1", + "proc-macro2", + ] +@@ -8333,7 +7900,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" + dependencies = [ + "rand_chacha 0.9.0", +- "rand_core 0.9.3", ++ "rand_core 0.9.5", ] -@@ -7924,9 +7855,9 @@ dependencies = [ [[package]] +@@ -8363,7 +7930,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" + dependencies = [ + "ppv-lite86", +- "rand_core 0.9.3", ++ "rand_core 0.9.5", + ] + + [[package]] +@@ -8381,14 +7948,14 @@ version = "0.6.4" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" + dependencies = [ +- "getrandom 0.2.16", ++ "getrandom 0.2.17", + ] + + [[package]] + name = "rand_core" +-version = "0.9.3" ++version = "0.9.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" ++checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" + dependencies = [ + "getrandom 0.3.4", + ] +@@ -8426,13 +7993,22 @@ dependencies = [ + "bitflags 2.10.0", + ] + ++[[package]] ++name = "redox_syscall" ++version = "0.7.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" ++dependencies = [ ++ "bitflags 2.10.0", ++] ++ + [[package]] name = "redox_users" --version = "0.5.0" -+version = "0.5.2" + version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" -+checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" + checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom 0.2.16", +- "getrandom 0.2.16", ++ "getrandom 0.2.17", "libredox", -@@ -7950,7 +7881,7 @@ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" + "thiserror 1.0.69", + ] +@@ -8443,9 +8019,9 @@ version = "0.5.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" + dependencies = [ +- "getrandom 0.2.16", ++ "getrandom 0.2.17", + "libredox", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -8465,14 +8041,14 @@ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -8023,7 +7954,7 @@ dependencies = [ - "encoding_rs", + name = "regex" +-version = "1.12.2" ++version = "1.12.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" ++checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" + dependencies = [ + "aho-corasick", + "memchr", +@@ -8482,9 +8058,9 @@ dependencies = [ + + [[package]] + name = "regex-automata" +-version = "0.4.13" ++version = "0.4.14" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" ++checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" + dependencies = [ + "aho-corasick", + "memchr", +@@ -8493,9 +8069,9 @@ dependencies = [ + + [[package]] + name = "regex-syntax" +-version = "0.8.8" ++version = "0.8.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" ++checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c" + + [[package]] + name = "relative-path" +@@ -8541,7 +8117,7 @@ dependencies = [ + "serde_json", + "serde_urlencoded", + "sync_wrapper 0.1.2", +- "system-configuration", ++ "system-configuration 0.5.1", + "tokio", + "tokio-rustls 0.24.1", + "tower-service", +@@ -8567,7 +8143,7 @@ dependencies = [ + "futures-channel", "futures-core", "futures-util", -- "h2 0.3.26", -+ "h2 0.3.27", - "http 0.2.12", - "http-body 0.4.6", - "hyper 0.14.32", -@@ -8066,12 +7997,12 @@ dependencies = [ - "encoding_rs", - "futures-core", - "futures-util", -- "h2 0.4.10", -+ "h2 0.4.12", - "http 1.3.1", +- "h2 0.4.12", ++ "h2 0.4.13", + "http 1.4.0", "http-body 1.0.1", "http-body-util", - "hyper 1.6.0", -- "hyper-rustls 0.27.5", -+ "hyper-rustls 0.27.7", - "hyper-tls", - "hyper-util", - "js-sys", -@@ -8082,7 +8013,7 @@ dependencies = [ +@@ -8583,7 +8159,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", -- "rustls 0.23.27", -+ "rustls 0.23.31", +- "rustls 0.23.35", ++ "rustls 0.23.36", "rustls-native-certs", "rustls-pki-types", "serde", -@@ -8101,7 +8032,7 @@ dependencies = [ +@@ -8602,7 +8178,7 @@ dependencies = [ "wasm-bindgen-futures", "wasm-streams", "web-sys", -- "webpki-roots 1.0.0", -+ "webpki-roots 1.0.2", +- "webpki-roots 1.0.4", ++ "webpki-roots 1.0.5", ] [[package]] -@@ -8131,25 +8062,27 @@ dependencies = [ +@@ -8617,7 +8193,7 @@ dependencies = [ + "futures-channel", + "futures-core", + "futures-util", +- "h2 0.4.12", ++ "h2 0.4.13", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", +@@ -8630,18 +8206,22 @@ dependencies = [ + "percent-encoding", + "pin-project-lite", + "quinn", +- "rustls 0.23.35", ++ "rustls 0.23.36", + "rustls-pki-types", + "rustls-platform-verifier", ++ "serde", ++ "serde_json", + "sync_wrapper 1.0.2", + "tokio", + "tokio-rustls 0.26.4", ++ "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", ++ "wasm-streams", + "web-sys", + ] + +@@ -8672,27 +8252,26 @@ dependencies = [ [[package]] name = "rfd" --version = "0.15.0" -+version = "0.15.4" +-version = "0.15.4" ++version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8af382a047821a08aa6bfc09ab0d80ff48d45d8726f7cd8e44891f7cb4a4278e" -+checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed" +-checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed" ++checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672" dependencies = [ - "ashpd", -- "block2 0.5.1", -+ "block2 0.6.1", -+ "dispatch2", +- "ashpd", +- "block2 0.6.2", ++ "block2", + "dispatch2", "glib-sys", "gobject-sys", "gtk-sys", "js-sys", "log", -- "objc2 0.5.2", -- "objc2-app-kit 0.2.2", -- "objc2-foundation 0.2.2", -+ "objc2 0.6.1", -+ "objc2-app-kit", -+ "objc2-core-foundation", -+ "objc2-foundation 0.3.1", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", + "objc2-core-foundation", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "raw-window-handle", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", -- "windows-sys 0.48.0", -+ "windows-sys 0.59.0", - ] - - [[package]] -@@ -8224,7 +8157,7 @@ checksum = "a6e2b2fd7497540489fa2db285edd43b7ed14c49157157438664278da6e42a7a" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8253,15 +8186,15 @@ dependencies = [ - "regex", - "relative-path", - "rustc_version", -- "syn 2.0.101", -+ "syn 2.0.104", - "unicode-ident", - ] - - [[package]] - name = "rust_decimal" --version = "1.37.1" -+version = "1.37.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "faa7de2ba56ac291bd90c6b9bece784a52ae1411f9506544b3eae36dd2356d50" -+checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d" - dependencies = [ - "arrayvec", - "borsh", -@@ -8275,9 +8208,9 @@ dependencies = [ - - [[package]] - name = "rustc-demangle" --version = "0.1.24" -+version = "0.1.26" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" -+checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" - - [[package]] - name = "rustc-hash" -@@ -8334,14 +8267,14 @@ dependencies = [ - - [[package]] - name = "rustls" --version = "0.23.27" -+version = "0.23.31" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321" -+checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" - dependencies = [ - "once_cell", - "ring", - "rustls-pki-types", -- "rustls-webpki 0.103.3", -+ "rustls-webpki 0.103.4", - "subtle", - "zeroize", - ] -@@ -8355,7 +8288,7 @@ dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", -- "security-framework 3.2.0", -+ "security-framework 3.3.0", - ] - - [[package]] -@@ -8389,9 +8322,9 @@ dependencies = [ - - [[package]] - name = "rustls-webpki" --version = "0.103.3" -+version = "0.103.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" -+checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" - dependencies = [ - "ring", - "rustls-pki-types", -@@ -8400,9 +8333,9 @@ dependencies = [ - - [[package]] - name = "rustversion" --version = "1.0.20" -+version = "1.0.21" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" -+checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" - - [[package]] - name = "ryu" -@@ -8465,6 +8398,18 @@ dependencies = [ - "serde_json", - ] - -+[[package]] -+name = "schemars" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" -+dependencies = [ -+ "dyn-clone", -+ "ref-cast", -+ "serde", -+ "serde_json", -+] -+ - [[package]] - name = "schemars_derive" - version = "0.8.22" -@@ -8474,7 +8419,7 @@ dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8486,7 +8431,7 @@ dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8513,9 +8458,9 @@ dependencies = [ - - [[package]] - name = "sdd" --version = "3.0.8" -+version = "3.0.10" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21" -+checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca" - - [[package]] - name = "seahash" -@@ -8567,12 +8512,12 @@ dependencies = [ - - [[package]] - name = "security-framework" --version = "3.2.0" -+version = "3.3.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" -+checksum = "80fb1d92c5028aa318b4b8bd7302a5bfcf48be96a37fc6fc790f806b0004ee0c" - dependencies = [ - "bitflags 2.9.1", -- "core-foundation 0.10.0", -+ "core-foundation 0.10.1", - "core-foundation-sys", - "libc", - "security-framework-sys", -@@ -8652,7 +8597,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8663,7 +8608,7 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8718,14 +8663,23 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", -+] -+ -+[[package]] -+name = "serde_spanned" -+version = "0.6.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" -+dependencies = [ -+ "serde", - ] - - [[package]] - name = "serde_spanned" --version = "0.6.8" -+version = "1.0.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" -+checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" - dependencies = [ - "serde", - ] -@@ -8744,15 +8698,17 @@ dependencies = [ - - [[package]] - name = "serde_with" --version = "3.12.0" -+version = "3.14.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa" -+checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" - dependencies = [ - "base64 0.22.1", - "chrono", - "hex", - "indexmap 1.9.3", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", -+ "schemars 0.9.0", -+ "schemars 1.0.4", - "serde", - "serde_derive", - "serde_json", -@@ -8762,14 +8718,14 @@ dependencies = [ - - [[package]] - name = "serde_with_macros" --version = "3.12.0" -+version = "3.14.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e" -+checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" - dependencies = [ - "darling", - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8794,7 +8750,7 @@ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] -@@ -8872,12 +8828,13 @@ dependencies = [ - - [[package]] - name = "shared_child" --version = "1.0.2" -+version = "1.1.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "7e297bd52991bbe0686c086957bee142f13df85d1e79b0b21630a99d374ae9dc" -+checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7" - dependencies = [ - "libc", - "windows-sys 0.59.0", -+ "sigchld", + "windows-sys 0.60.2", ] [[package]] -@@ -8901,6 +8858,17 @@ version = "1.3.0" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +@@ -8703,7 +8282,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" + dependencies = [ + "cc", + "cfg-if", +- "getrandom 0.2.16", ++ "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +@@ -8711,9 +8290,9 @@ dependencies = [ -+[[package]] -+name = "sigchld" -+version = "0.2.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1" -+dependencies = [ -+ "libc", -+ "os_pipe", -+ "signal-hook", + [[package]] + name = "rkyv" +-version = "0.7.45" ++version = "0.7.46" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" ++checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" + dependencies = [ + "bitvec", + "bytecheck", +@@ -8729,9 +8308,9 @@ dependencies = [ + + [[package]] + name = "rkyv_derive" +-version = "0.7.45" ++version = "0.7.46" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" ++checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" + dependencies = [ + "proc-macro2", + "quote", +@@ -8751,10 +8330,10 @@ dependencies = [ + "paste", + "pin-project-lite", + "rmcp-macros", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde", + "serde_json", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + "tokio-util", + "tracing", +@@ -8770,7 +8349,17 @@ dependencies = [ + "proc-macro2", + "quote", + "serde_json", +- "syn 2.0.112", ++ "syn 2.0.114", +] + - [[package]] - name = "signal-hook" - version = "0.3.18" -@@ -8913,9 +8881,9 @@ dependencies = [ ++[[package]] ++name = "rsqlite-vfs" ++version = "0.1.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d" ++dependencies = [ ++ "hashbrown 0.16.1", ++ "thiserror 2.0.18", + ] [[package]] - name = "signal-hook-registry" --version = "1.4.5" -+version = "1.4.6" +@@ -8798,7 +8387,7 @@ dependencies = [ + "regex", + "relative-path", + "rustc_version", +- "syn 2.0.112", ++ "syn 2.0.114", + "unicode-ident", + ] + +@@ -8830,9 +8419,9 @@ dependencies = [ + + [[package]] + name = "rust_decimal" +-version = "1.39.0" ++version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" -+checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" +-checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282" ++checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" + dependencies = [ + "arrayvec", + "borsh", +@@ -8846,9 +8435,9 @@ dependencies = [ + + [[package]] + name = "rustc-demangle" +-version = "0.1.26" ++version = "0.1.27" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" ++checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" + + [[package]] + name = "rustc-hash" +@@ -8865,19 +8454,6 @@ dependencies = [ + "semver", + ] + +-[[package]] +-name = "rustix" +-version = "0.38.44" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" +-dependencies = [ +- "bitflags 2.10.0", +- "errno", +- "libc", +- "linux-raw-sys 0.4.15", +- "windows-sys 0.59.0", +-] +- + [[package]] + name = "rustix" + version = "1.1.3" +@@ -8887,7 +8463,7 @@ dependencies = [ + "bitflags 2.10.0", + "errno", + "libc", +- "linux-raw-sys 0.11.0", ++ "linux-raw-sys", + "windows-sys 0.61.2", + ] + +@@ -8905,26 +8481,26 @@ dependencies = [ + + [[package]] + name = "rustls" +-version = "0.23.35" ++version = "0.23.36" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" ++checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" + dependencies = [ + "aws-lc-rs", + "once_cell", + "ring", + "rustls-pki-types", +- "rustls-webpki 0.103.8", ++ "rustls-webpki 0.103.9", + "subtle", + "zeroize", + ] + + [[package]] + name = "rustls-native-certs" +-version = "0.8.2" ++version = "0.8.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923" ++checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" + dependencies = [ +- "openssl-probe", ++ "openssl-probe 0.2.1", + "rustls-pki-types", + "schannel", + "security-framework 3.5.1", +@@ -8941,9 +8517,9 @@ dependencies = [ + + [[package]] + name = "rustls-pki-types" +-version = "1.13.1" ++version = "1.14.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c" ++checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" + dependencies = [ + "web-time", + "zeroize", +@@ -8960,10 +8536,10 @@ dependencies = [ + "jni", + "log", + "once_cell", +- "rustls 0.23.35", ++ "rustls 0.23.36", + "rustls-native-certs", + "rustls-platform-verifier-android", +- "rustls-webpki 0.103.8", ++ "rustls-webpki 0.103.9", + "security-framework 3.5.1", + "security-framework-sys", + "webpki-root-certs", +@@ -8988,9 +8564,9 @@ dependencies = [ + + [[package]] + name = "rustls-webpki" +-version = "0.103.8" ++version = "0.103.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" ++checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" + dependencies = [ + "aws-lc-rs", + "ring", +@@ -9006,9 +8582,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + + [[package]] + name = "ryu" +-version = "1.0.20" ++version = "1.0.22" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" ++checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" + + [[package]] + name = "same-file" +@@ -9066,14 +8642,14 @@ dependencies = [ + + [[package]] + name = "schemars" +-version = "1.2.0" ++version = "1.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" ++checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" + dependencies = [ + "chrono", + "dyn-clone", + "ref-cast", +- "schemars_derive 1.2.0", ++ "schemars_derive 1.2.1", + "serde", + "serde_json", + ] +@@ -9087,27 +8663,21 @@ dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] + name = "schemars_derive" +-version = "1.2.0" ++version = "1.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4908ad288c5035a8eb12cfdf0d49270def0a268ee162b75eeee0f85d155a7c45" ++checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f" + dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + +-[[package]] +-name = "scoped-tls" +-version = "1.0.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" +- + [[package]] + name = "scopeguard" + version = "1.2.0" +@@ -9283,7 +8853,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -9294,16 +8864,16 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] + name = "serde_json" +-version = "1.0.148" ++version = "1.0.149" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da" ++checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" + dependencies = [ +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "itoa", + "memchr", + "serde", +@@ -9352,7 +8922,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -9395,9 +8965,9 @@ dependencies = [ + "chrono", + "hex", + "indexmap 1.9.3", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "schemars 0.9.0", +- "schemars 1.2.0", ++ "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", +@@ -9413,16 +8983,17 @@ dependencies = [ + "darling 0.21.3", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] + name = "serial_test" +-version = "3.2.0" ++version = "3.3.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9" ++checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555" + dependencies = [ +- "futures", ++ "futures-executor", ++ "futures-util", + "log", + "once_cell", + "parking_lot", +@@ -9432,13 +9003,13 @@ dependencies = [ + + [[package]] + name = "serial_test_derive" +-version = "3.2.0" ++version = "3.3.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef" ++checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -9460,7 +9031,7 @@ checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -9569,9 +9140,9 @@ dependencies = [ + + [[package]] + name = "signal-hook" +-version = "0.4.1" ++version = "0.4.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2a37d01603c37b5466f808de79f845c7116049b0579adb70a6b7d47c1fa3a952" ++checksum = "3b57709da74f9ff9f4a27dce9526eec25ca8407c45a7887243b031a58935fb8e" dependencies = [ "libc", - ] -@@ -8952,12 +8920,9 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + "signal-hook-registry", +@@ -9600,9 +9171,9 @@ dependencies = [ + + [[package]] + name = "simd-adler32" +-version = "0.3.7" ++version = "0.3.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" ++checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" + + [[package]] + name = "simdutf8" +@@ -9624,15 +9195,15 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + + [[package]] + name = "siphasher" +-version = "1.0.1" ++version = "1.0.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" ++checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" [[package]] name = "slab" --version = "0.4.9" -+version = "0.4.10" +-version = "0.4.11" ++version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" --dependencies = [ -- "autocfg", --] -+checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" +-checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" ++checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "smallvec" -@@ -8970,9 +8935,9 @@ dependencies = [ +@@ -9645,9 +9216,9 @@ dependencies = [ + + [[package]] + name = "snapbox" +-version = "0.6.23" ++version = "0.6.24" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "96fa1ce81be900d083b30ec2d481e6658c2acfaa2cfc7be45ccc2cc1b820edb3" ++checksum = "6c1abc378119f77310836665f8523018532cf7e3faeb3b10b01da5a7321bf8e1" + dependencies = [ + "anstream", + "anstyle", +@@ -9680,9 +9251,9 @@ dependencies = [ [[package]] name = "socket2" --version = "0.5.9" -+version = "0.5.10" +-version = "0.6.1" ++version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" -+checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +-checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" ++checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" dependencies = [ "libc", - "windows-sys 0.52.0", -@@ -9099,15 +9064,14 @@ dependencies = [ + "windows-sys 0.60.2", +@@ -9690,24 +9261,24 @@ dependencies = [ [[package]] - name = "strum_macros" --version = "0.27.1" -+version = "0.27.2" + name = "softbuffer" +-version = "0.4.6" ++version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8" -+checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +-checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" ++checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", -- "rustversion", -- "syn 2.0.101", -+ "syn 2.0.104", + "bytemuck", +- "cfg_aliases", +- "core-graphics", +- "foreign-types 0.5.0", + "js-sys", +- "log", +- "objc2 0.5.2", +- "objc2-foundation 0.2.2", +- "objc2-quartz-core 0.2.2", ++ "ndk", ++ "objc2", ++ "objc2-core-foundation", ++ "objc2-core-graphics", ++ "objc2-foundation", ++ "objc2-quartz-core", + "raw-window-handle", +- "redox_syscall", ++ "redox_syscall 0.5.18", ++ "tracing", + "wasm-bindgen", + "web-sys", +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", ] [[package]] -@@ -9140,9 +9104,9 @@ dependencies = [ +@@ -9747,14 +9318,13 @@ dependencies = [ + + [[package]] + name = "sqlite-wasm-rs" +-version = "0.5.1" ++version = "0.5.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "05e98301bf8b0540c7de45ecd760539b9c62f5772aed172f08efba597c11cd5d" ++checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b" + dependencies = [ + "cc", +- "hashbrown 0.16.1", + "js-sys", +- "thiserror 2.0.17", ++ "rsqlite-vfs", + "wasm-bindgen", + ] + +@@ -9819,7 +9389,7 @@ dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -9871,9 +9441,9 @@ dependencies = [ [[package]] name = "syn" --version = "2.0.101" -+version = "2.0.104" +-version = "2.0.112" ++version = "2.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" -+checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" +-checksum = "21f182278bf2d2bcb3c88b1b08a37df029d71ce3d3ae26168e3c653b213b99d4" ++checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" dependencies = [ "proc-macro2", "quote", -@@ -9172,7 +9136,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +@@ -9903,7 +9473,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -9186,9 +9150,9 @@ dependencies = [ +@@ -9937,7 +9507,18 @@ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" + dependencies = [ + "bitflags 1.3.2", + "core-foundation 0.9.4", +- "system-configuration-sys", ++ "system-configuration-sys 0.5.0", ++] ++ ++[[package]] ++name = "system-configuration" ++version = "0.7.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" ++dependencies = [ ++ "bitflags 2.10.0", ++ "core-foundation 0.9.4", ++ "system-configuration-sys 0.6.0", + ] [[package]] - name = "sysinfo" --version = "0.36.0" -+version = "0.36.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "aab138f5c1bb35231de19049060a87977ad23e04f2303e953bc5c2947ac7dec4" -+checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d" - dependencies = [ +@@ -9950,6 +9531,16 @@ dependencies = [ "libc", - "memchr", -@@ -9249,7 +9213,7 @@ dependencies = [ - "cfg-expr", - "heck 0.5.0", - "pkg-config", -- "toml", -+ "toml 0.8.23", - "version-compare", ] -@@ -9260,7 +9224,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a" ++[[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 = "system-deps" + version = "6.2.2" +@@ -9970,7 +9561,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7" dependencies = [ - "bitflags 2.9.1", -- "core-foundation 0.10.0", -+ "core-foundation 0.10.1", + "bitflags 2.10.0", +- "block2 0.6.2", ++ "block2", + "core-foundation 0.10.1", "core-graphics", "crossbeam-channel", - "dispatch", -@@ -9277,7 +9241,7 @@ dependencies = [ +@@ -9987,9 +9578,9 @@ dependencies = [ + "ndk", "ndk-context", "ndk-sys", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", - "objc2-foundation 0.3.1", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "once_cell", "parking_lot", -@@ -9300,7 +9264,7 @@ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" + "raw-window-handle", +@@ -10011,7 +9602,7 @@ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -9348,7 +9312,7 @@ dependencies = [ +@@ -10039,9 +9630,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + + [[package]] + name = "tauri" +-version = "2.9.5" ++version = "2.10.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8a3868da5508446a7cd08956d523ac3edf0a8bc20bf7e4038f9a95c2800d2033" ++checksum = "1025aa560c1eaa14ef96de5540cbe13ed6be1933ebe4398338c96bc370b807c6" + dependencies = [ + "anyhow", + "bytes", +@@ -10059,15 +9650,15 @@ dependencies = [ + "log", "mime", "muda", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", - "objc2-foundation 0.3.1", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "objc2-ui-kit", + "objc2-web-kit", "percent-encoding", -@@ -9394,7 +9358,7 @@ dependencies = [ + "plist", + "raw-window-handle", +- "reqwest 0.12.28", ++ "reqwest 0.13.1", + "serde", + "serde_json", + "serde_repr", +@@ -10078,7 +9669,7 @@ dependencies = [ + "tauri-runtime", + "tauri-runtime-wry", + "tauri-utils", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + "tray-icon", + "url", +@@ -10090,9 +9681,9 @@ dependencies = [ + + [[package]] + name = "tauri-build" +-version = "2.5.3" ++version = "2.5.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "17fcb8819fd16463512a12f531d44826ce566f486d7ccd211c9c8cebdaec4e08" ++checksum = "76809f63061c8b25537b87f46b8733b31397cf419706dc874e1602be6479ba90" + dependencies = [ + "anyhow", + "cargo_toml", +@@ -10106,15 +9697,15 @@ dependencies = [ "serde_json", "tauri-utils", "tauri-winres", -- "toml", -+ "toml 0.8.23", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", "walkdir", ] -@@ -9416,7 +9380,7 @@ dependencies = [ + [[package]] + name = "tauri-codegen" +-version = "2.5.2" ++version = "2.5.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9fa9844cefcf99554a16e0a278156ae73b0d8680bbc0e2ad1e4287aadd8489cf" ++checksum = "8b2ebe49d690ccaea93aa81fff99277d4f445968f085ba13be67859151e9e4b8" + dependencies = [ + "base64 0.22.1", + "brotli", +@@ -10128,9 +9719,9 @@ dependencies = [ "serde", "serde_json", "sha2", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", "tauri-utils", - "thiserror 2.0.12", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", "time", -@@ -9434,16 +9398,16 @@ dependencies = [ + "url", + "uuid", +@@ -10139,23 +9730,23 @@ dependencies = [ + + [[package]] + name = "tauri-macros" +-version = "2.5.2" ++version = "2.5.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3764a12f886d8245e66b7ee9b43ccc47883399be2019a61d80cf0f4117446fde" ++checksum = "1119f651b0187c686c0fc72c66bba311e560e1b5f61869086ce788d43be6cf41" + dependencies = [ "heck 0.5.0", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", "tauri-codegen", "tauri-utils", ] [[package]] name = "tauri-plugin" --version = "2.3.0" -+version = "2.3.1" +-version = "2.5.2" ++version = "2.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1d9a0bd00bf1930ad1a604d08b0eb6b2a9c1822686d65d7f4731a7723b8901d3" -+checksum = "5bd5c1e56990c70a906ef67a9851bbdba9136d26075ee9a2b19c8b46986b3e02" +-checksum = "0e1d0a4860b7ff570c891e1d2a586bf1ede205ff858fbc305e0b5ae5d14c1377" ++checksum = "692a77abd8b8773e107a42ec0e05b767b8d2b7ece76ab36c6c3947e34df9f53f" dependencies = [ "anyhow", "glob", -@@ -9452,7 +9416,7 @@ dependencies = [ +@@ -10164,7 +9755,7 @@ dependencies = [ "serde", "serde_json", "tauri-utils", -- "toml", -+ "toml 0.8.23", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", "walkdir", ] -@@ -9473,9 +9437,9 @@ dependencies = [ +@@ -10180,14 +9771,14 @@ dependencies = [ + "serde_json", + "tauri", + "tauri-plugin", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] + name = "tauri-plugin-deep-link" +-version = "2.4.5" ++version = "2.4.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6e82759f7c7d51de3cbde51c04b3f2332de52436ed84541182cd8944b04e9e73" ++checksum = "444b091f24f2f6bdb4a305b54d3961f629c11861c685aceeea9a1972f89e43d5" + dependencies = [ + "dunce", + "plist", +@@ -10197,7 +9788,7 @@ dependencies = [ + "tauri", + "tauri-plugin", + "tauri-utils", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tracing", + "url", + "windows-registry 0.5.3", +@@ -10206,9 +9797,9 @@ dependencies = [ [[package]] name = "tauri-plugin-dialog" --version = "2.3.0" -+version = "2.3.2" +-version = "2.4.2" ++version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1aefb14219b492afb30b12647b5b1247cadd2c0603467310c36e0f7ae1698c28" -+checksum = "37e5858cc7b455a73ab4ea2ebc08b5be33682c00ff1bf4cad5537d4fb62499d9" +-checksum = "313f8138692ddc4a2127c4c9607d616a46f5c042e77b3722450866da0aad2f19" ++checksum = "9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b" dependencies = [ "log", "raw-window-handle", -@@ -9507,7 +9471,7 @@ dependencies = [ +@@ -10218,15 +9809,15 @@ dependencies = [ + "tauri", "tauri-plugin", - "tauri-utils", - "thiserror 2.0.12", -- "toml", -+ "toml 0.8.23", + "tauri-plugin-fs", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", "url", ] -@@ -9677,7 +9641,7 @@ dependencies = [ - "tokio", - "url", - "windows-sys 0.60.2", -- "zip 4.2.0", -+ "zip 4.3.0", - ] - [[package]] -@@ -9728,7 +9692,7 @@ dependencies = [ + name = "tauri-plugin-fs" +-version = "2.4.4" ++version = "2.4.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "47df422695255ecbe7bac7012440eddaeefd026656171eac9559f5243d3230d9" ++checksum = "ed390cc669f937afeb8b28032ce837bac8ea023d975a2e207375ec05afaf1804" + dependencies = [ + "anyhow", + "dunce", +@@ -10239,16 +9830,16 @@ dependencies = [ + "tauri", + "tauri-plugin", + "tauri-utils", +- "thiserror 2.0.17", +- "toml 0.9.10+spec-1.1.0", ++ "thiserror 2.0.18", ++ "toml 0.9.11+spec-1.1.0", + "url", + ] + + [[package]] + name = "tauri-plugin-http" +-version = "2.5.4" ++version = "2.5.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c00685aceab12643cf024f712ab0448ba8fcadf86f2391d49d2e5aa732aacc70" ++checksum = "d8f069451c4e87e7e2636b7f065a4c52866c4ce5e60e2d53fa1038edb6d184dc" + dependencies = [ + "bytes", + "cookie_store 0.21.1", +@@ -10262,7 +9853,7 @@ dependencies = [ + "tauri", + "tauri-plugin", + "tauri-plugin-fs", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + "url", + "urlpattern", +@@ -10270,23 +9861,23 @@ dependencies = [ + + [[package]] + name = "tauri-plugin-log" +-version = "2.7.1" ++version = "2.8.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d5709c792b8630290b5d9811a1f8fe983dd925fc87c7fc7f4923616458cd00b6" ++checksum = "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93" + dependencies = [ + "android_logger", + "byte-unit", + "fern", + "log", +- "objc2 0.6.3", +- "objc2-foundation 0.3.2", ++ "objc2", ++ "objc2-foundation", + "serde", + "serde_json", + "serde_repr", + "swift-rs", + "tauri", + "tauri-plugin", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "time", + ] + +@@ -10305,7 +9896,7 @@ dependencies = [ + "sys-locale", + "tauri", + "tauri-plugin", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] +@@ -10320,9 +9911,9 @@ dependencies = [ + + [[package]] + name = "tauri-plugin-shell" +-version = "2.3.3" ++version = "2.3.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c374b6db45f2a8a304f0273a15080d98c70cde86178855fc24653ba657a1144c" ++checksum = "8457dbf9e2bab1edd8df22bb2c20857a59a9868e79cb3eac5ed639eec4d0c73b" + dependencies = [ + "encoding_rs", + "log", +@@ -10335,38 +9926,38 @@ dependencies = [ + "shared_child", + "tauri", + "tauri-plugin", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + ] + + [[package]] + name = "tauri-plugin-single-instance" +-version = "2.3.6" ++version = "2.3.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dd707f8c86b4e3004e2c141fa24351f1909ba40ce1b8437e30d5ed5277dd3710" ++checksum = "acba6b5ca527a96cdfcc96ae09b09ccb91ddff5e33978ca6873b96ea16bb404c" + dependencies = [ + "serde", + "serde_json", + "tauri", + "tauri-plugin-deep-link", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tracing", + "windows-sys 0.60.2", +- "zbus 5.12.0", ++ "zbus 5.13.2", + ] + + [[package]] + name = "tauri-plugin-store" +-version = "2.4.1" ++version = "2.4.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "59a77036340a97eb5bbe1b3209c31e5f27f75e6f92a52fd9dd4b211ef08bf310" ++checksum = "5ca1a8ff83c269b115e98726ffc13f9e548a10161544a92ad121d6d0a96e16ea" + dependencies = [ + "dunce", + "serde", + "serde_json", + "tauri", + "tauri-plugin", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tokio", + "tracing", + ] +@@ -10384,9 +9975,9 @@ dependencies = [ + + [[package]] + name = "tauri-plugin-updater" +-version = "2.9.0" ++version = "2.10.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "27cbc31740f4d507712550694749572ec0e43bdd66992db7599b89fbfd6b167b" ++checksum = "3fe8e9bebd88fc222938ffdfbdcfa0307081423bd01e3252fc337d8bde81fc61" + dependencies = [ + "base64 0.22.1", + "dirs 6.0.0", +@@ -10398,7 +9989,8 @@ dependencies = [ + "minisign-verify", + "osakit", + "percent-encoding", +- "reqwest 0.12.28", ++ "reqwest 0.13.1", ++ "rustls 0.23.36", + "semver", + "serde", + "serde_json", +@@ -10406,7 +9998,7 @@ dependencies = [ + "tauri", + "tauri-plugin", + "tempfile", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "time", + "tokio", + "url", +@@ -10426,28 +10018,28 @@ dependencies = [ + "serde_json", + "tauri", + "tauri-plugin", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + ] + + [[package]] + name = "tauri-runtime" +-version = "2.9.2" ++version = "2.10.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "87f766fe9f3d1efc4b59b17e7a891ad5ed195fa8d23582abb02e6c9a01137892" ++checksum = "b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651" + dependencies = [ + "cookie", + "dpi", + "gtk", + "http 1.4.0", + "jni", +- "objc2 0.6.3", ++ "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "url", + "webkit2gtk", + "webview2-com", +@@ -10456,17 +10048,17 @@ dependencies = [ + + [[package]] + name = "tauri-runtime-wry" +-version = "2.9.3" ++version = "2.10.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "187a3f26f681bdf028f796ccf57cf478c1ee422c50128e5a0a6ebeb3f5910065" ++checksum = "5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314" + dependencies = [ + "gtk", + "http 1.4.0", "jni", "log", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", - "objc2-foundation 0.3.1", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "once_cell", "percent-encoding", -@@ -9775,7 +9739,7 @@ dependencies = [ + "raw-window-handle", +@@ -10483,9 +10075,9 @@ dependencies = [ + + [[package]] + name = "tauri-utils" +-version = "2.8.1" ++version = "2.8.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "76a423c51176eb3616ee9b516a9fa67fed5f0e78baaba680e44eb5dd2cc37490" ++checksum = "fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e" + dependencies = [ + "anyhow", + "brotli", +@@ -10511,8 +10103,8 @@ dependencies = [ + "serde_json", "serde_with", "swift-rs", - "thiserror 2.0.12", -- "toml", -+ "toml 0.8.23", +- "thiserror 2.0.17", +- "toml 0.9.10+spec-1.1.0", ++ "thiserror 2.0.18", ++ "toml 0.9.11+spec-1.1.0", "url", "urlpattern", "uuid", -@@ -9784,13 +9748,13 @@ dependencies = [ - - [[package]] - name = "tauri-winres" --version = "0.3.1" -+version = "0.3.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4" -+checksum = "7c6d9028d41d4de835e3c482c677a8cb88137ac435d6ff9a71f392d4421576c9" +@@ -10527,7 +10119,7 @@ checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" dependencies = [ + "dunce", "embed-resource", -- "indexmap 2.9.0", -- "toml", -+ "indexmap 2.10.0", -+ "toml 0.9.5", +- "toml 0.9.10+spec-1.1.0", ++ "toml 0.9.11+spec-1.1.0", ] [[package]] -@@ -9849,7 +9813,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +@@ -10537,7 +10129,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", + "quick-xml 0.37.5", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "windows 0.61.3", + "windows-version", + ] +@@ -10551,7 +10143,7 @@ dependencies = [ + "fastrand", + "getrandom 0.3.4", + "once_cell", +- "rustix 1.1.3", ++ "rustix", + "windows-sys 0.61.2", ] - [[package]] -@@ -9860,17 +9824,16 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - ] - - [[package]] - name = "thread_local" --version = "1.1.8" -+version = "1.1.9" +@@ -10581,7 +10173,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" -+checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" + checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "cfg-if", -- "once_cell", +- "rustix 1.1.3", ++ "rustix", + "windows-sys 0.60.2", + ] + +@@ -10611,11 +10203,11 @@ dependencies = [ + + [[package]] + name = "thiserror" +-version = "2.0.17" ++version = "2.0.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" ++checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" + dependencies = [ +- "thiserror-impl 2.0.17", ++ "thiserror-impl 2.0.18", ] [[package]] -@@ -9971,7 +9934,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +@@ -10626,18 +10218,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -10000,7 +9963,7 @@ version = "0.26.2" + name = "thiserror-impl" +-version = "2.0.17" ++version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" +-checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" ++checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ -- "rustls 0.23.27", -+ "rustls 0.23.31", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -10665,9 +10257,9 @@ dependencies = [ + + [[package]] + name = "time" +-version = "0.3.44" ++version = "0.3.46" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" ++checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5" + dependencies = [ + "deranged", + "itoa", +@@ -10675,22 +10267,22 @@ dependencies = [ + "num-conv", + "num_threads", + "powerfmt", +- "serde", ++ "serde_core", + "time-core", + "time-macros", + ] + + [[package]] + name = "time-core" +-version = "0.1.6" ++version = "0.1.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" ++checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + + [[package]] + name = "time-macros" +-version = "0.2.24" ++version = "0.2.26" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" ++checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4" + dependencies = [ + "num-conv", + "time-core", +@@ -10738,11 +10330,11 @@ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" + dependencies = [ + "bytes", + "libc", +- "mio 1.1.0", ++ "mio 1.1.1", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", +- "socket2 0.6.1", ++ "socket2 0.6.2", + "tokio-macros", + "tracing", + "windows-sys 0.61.2", +@@ -10756,7 +10348,7 @@ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] +@@ -10785,15 +10377,15 @@ version = "0.26.4" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" + dependencies = [ +- "rustls 0.23.35", ++ "rustls 0.23.36", "tokio", ] -@@ -10042,21 +10005,45 @@ dependencies = [ + [[package]] + name = "tokio-stream" +-version = "0.1.17" ++version = "0.1.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" ++checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" + dependencies = [ + "futures-core", + "pin-project-lite", +@@ -10814,9 +10406,9 @@ dependencies = [ + + [[package]] + name = "tokio-util" +-version = "0.7.17" ++version = "0.7.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" ++checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" + dependencies = [ + "bytes", + "futures-core", +@@ -10839,11 +10431,11 @@ dependencies = [ [[package]] name = "toml" --version = "0.8.22" -+version = "0.8.23" +-version = "0.9.10+spec-1.1.0" ++version = "0.9.11+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae" -+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" +-checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48" ++checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46" dependencies = [ - "serde", -- "serde_spanned", -- "toml_datetime", -- "toml_edit 0.22.26", -+ "serde_spanned 0.6.9", -+ "toml_datetime 0.6.11", -+ "toml_edit 0.22.27", -+] -+ -+[[package]] -+name = "toml" -+version = "0.9.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8" -+dependencies = [ -+ "indexmap 2.10.0", -+ "serde", -+ "serde_spanned 1.0.0", -+ "toml_datetime 0.7.0", -+ "toml_parser", -+ "toml_writer", -+ "winnow 0.7.12", - ] - - [[package]] - name = "toml_datetime" --version = "0.6.9" -+version = "0.6.11" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" -+dependencies = [ -+ "serde", -+] -+ -+[[package]] -+name = "toml_datetime" -+version = "0.7.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3" -+checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" - dependencies = [ - "serde", - ] -@@ -10067,8 +10054,8 @@ version = "0.19.15" +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 0.7.5+spec-1.1.0", +@@ -10876,7 +10468,7 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ -- "indexmap 2.9.0", -- "toml_datetime", -+ "indexmap 2.10.0", -+ "toml_datetime 0.6.11", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "toml_datetime 0.6.3", "winnow 0.5.40", ] - -@@ -10078,30 +10065,45 @@ version = "0.20.7" +@@ -10887,7 +10479,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" + checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" dependencies = [ -- "indexmap 2.9.0", -- "toml_datetime", -+ "indexmap 2.10.0", -+ "toml_datetime 0.6.11", - "winnow 0.5.40", - ] +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", +@@ -10896,11 +10488,11 @@ dependencies = [ [[package]] name = "toml_edit" --version = "0.22.26" -+version = "0.22.27" +-version = "0.23.7" ++version = "0.23.10+spec-1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e" -+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +-checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" ++checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ -- "indexmap 2.9.0", -+ "indexmap 2.10.0", - "serde", -- "serde_spanned", -- "toml_datetime", -+ "serde_spanned 0.6.9", -+ "toml_datetime 0.6.11", - "toml_write", - "winnow 0.7.12", - ] - -+[[package]] -+name = "toml_parser" -+version = "1.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10" -+dependencies = [ -+ "winnow 0.7.12", -+] -+ - [[package]] - name = "toml_write" --version = "0.1.1" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" -+ -+[[package]] -+name = "toml_writer" -+version = "1.0.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076" -+checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "winnow 0.7.14", +@@ -10923,15 +10515,15 @@ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" [[package]] name = "tonic" -@@ -10114,7 +10116,7 @@ dependencies = [ - "axum 0.7.9", +-version = "0.14.2" ++version = "0.14.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" ++checksum = "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a" + dependencies = [ + "async-trait", + "axum", "base64 0.22.1", "bytes", -- "h2 0.4.10", -+ "h2 0.4.12", - "http 1.3.1", +- "h2 0.4.12", ++ "h2 0.4.13", + "http 1.4.0", "http-body 1.0.1", "http-body-util", -@@ -10124,7 +10126,7 @@ dependencies = [ +@@ -10940,7 +10532,7 @@ dependencies = [ + "hyper-util", "percent-encoding", "pin-project", - "prost", -- "socket2 0.5.9", -+ "socket2 0.5.10", +- "socket2 0.6.1", ++ "socket2 0.6.2", + "sync_wrapper 1.0.2", "tokio", "tokio-stream", - "tower 0.4.13", -@@ -10225,13 +10227,13 @@ dependencies = [ +@@ -10952,9 +10544,9 @@ dependencies = [ [[package]] - name = "tracing-attributes" --version = "0.1.28" -+version = "0.1.30" + name = "tonic-prost" +-version = "0.14.2" ++version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" -+checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +-checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" ++checksum = "d6c55a2d6a14174563de34409c9f92ff981d006f56da9c6ecd40d9d4a31500b0" + dependencies = [ + "bytes", + "prost", +@@ -10963,13 +10555,13 @@ dependencies = [ + + [[package]] + name = "tower" +-version = "0.5.2" ++version = "0.5.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" ++checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" + dependencies = [ + "futures-core", + "futures-util", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", + "pin-project-lite", + "slab", + "sync_wrapper 1.0.2", +@@ -11029,7 +10621,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" + dependencies = [ + "crossbeam-channel", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "time", + "tracing-subscriber", + ] +@@ -11042,7 +10634,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -10287,16 +10289,16 @@ dependencies = [ +@@ -11057,12 +10649,12 @@ dependencies = [ + + [[package]] + name = "tracing-forest" +-version = "0.3.0" ++version = "0.3.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "92bdb3c949c9e81b71f78ba782f956b896019d82cc2f31025d21e04adab4d695" ++checksum = "f09cb459317a3811f76644334473239d696cd8efc606963ae7d1c308cead3b74" + dependencies = [ + "smallvec", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "tracing", + "tracing-subscriber", + ] +@@ -11098,23 +10690,23 @@ dependencies = [ [[package]] name = "tray-icon" --version = "0.21.0" -+version = "0.21.1" +-version = "0.21.2" ++version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a" -+checksum = "a0d92153331e7d02ec09137538996a7786fe679c629c279e82a6be762b7e6fe2" +-checksum = "e3d5572781bee8e3f994d7467084e1b1fd7a93ce66bd480f8156ba89dee55a2b" ++checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c" dependencies = [ "crossbeam-channel", "dirs 6.0.0", "libappindicator", "muda", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", "objc2-core-foundation", "objc2-core-graphics", - "objc2-foundation 0.3.1", -@@ -10602,9 +10604,9 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" - - [[package]] - name = "wasi" --version = "0.11.0+wasi-snapshot-preview1" -+version = "0.11.1+wasi-snapshot-preview1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" -+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" - - [[package]] - name = "wasi" -@@ -10637,7 +10639,7 @@ dependencies = [ - "log", - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - "wasm-bindgen-shared", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", + "once_cell", + "png 0.17.16", + "serde", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "windows-sys 0.60.2", ] -@@ -10672,7 +10674,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" +@@ -11141,7 +10733,7 @@ version = "11.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "4994acea2522cd2b3b85c1d9529a55991e3ad5e25cdcd3de9d505972c4379424" + dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "ts-rs-macros", + ] + +@@ -11153,7 +10745,7 @@ checksum = "ee6ff59666c9cbaec3533964505d39154dc4e0a56151fdea30a09ed0301f62e2" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - "wasm-bindgen-backend", +- "syn 2.0.112", ++ "syn 2.0.114", + "termcolor", + ] + +@@ -11170,7 +10762,7 @@ dependencies = [ + "log", + "rand 0.9.2", + "sha1", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "utf-8", + ] + +@@ -11249,9 +10841,9 @@ dependencies = [ + + [[package]] + name = "unicase" +-version = "2.8.1" ++version = "2.9.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" ++checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" + + [[package]] + name = "unicode-bom" +@@ -11294,14 +10886,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + + [[package]] + name = "url" +-version = "2.5.7" ++version = "2.5.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" ++checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" + dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", ++ "serde_derive", + ] + + [[package]] +@@ -11342,9 +10935,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + + [[package]] + name = "uuid" +-version = "1.19.0" ++version = "1.20.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" ++checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f" + dependencies = [ + "getrandom 0.3.4", + "js-sys", +@@ -11435,18 +11028,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + + [[package]] + name = "wasip2" +-version = "1.0.1+wasi-0.2.4" ++version = "1.0.2+wasi-0.2.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" ++checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" + dependencies = [ + "wit-bindgen", + ] + + [[package]] + name = "wasm-bindgen" +-version = "0.2.105" ++version = "0.2.108" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" ++checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566" + dependencies = [ + "cfg-if", + "once_cell", +@@ -11457,11 +11050,12 @@ dependencies = [ + + [[package]] + name = "wasm-bindgen-futures" +-version = "0.4.55" ++version = "0.4.58" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" ++checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f" + dependencies = [ + "cfg-if", ++ "futures-util", + "js-sys", + "once_cell", + "wasm-bindgen", +@@ -11470,9 +11064,9 @@ dependencies = [ + + [[package]] + name = "wasm-bindgen-macro" +-version = "0.2.105" ++version = "0.2.108" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" ++checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608" + dependencies = [ + "quote", + "wasm-bindgen-macro-support", +@@ -11480,22 +11074,22 @@ dependencies = [ + + [[package]] + name = "wasm-bindgen-macro-support" +-version = "0.2.105" ++version = "0.2.108" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" ++checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55" + dependencies = [ + "bumpalo", + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", "wasm-bindgen-shared", ] -@@ -10701,13 +10703,13 @@ dependencies = [ + + [[package]] + name = "wasm-bindgen-shared" +-version = "0.2.105" ++version = "0.2.108" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" ++checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12" + dependencies = [ + "unicode-ident", + ] +@@ -11515,35 +11109,34 @@ dependencies = [ [[package]] name = "wayland-backend" --version = "0.3.10" -+version = "0.3.11" +-version = "0.3.11" ++version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fe770181423e5fc79d3e2a7f4410b7799d5aab1de4372853de3c6aa13ca24121" -+checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35" +-checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35" ++checksum = "fee64194ccd96bf648f42a65a7e589547096dfa702f7cadef84347b66ad164f9" dependencies = [ "cc", "downcast-rs", -- "rustix 0.38.44", -+ "rustix 1.0.8", - "scoped-tls", +- "rustix 1.1.3", +- "scoped-tls", ++ "rustix", "smallvec", "wayland-sys", -@@ -10715,21 +10717,21 @@ dependencies = [ + ] [[package]] name = "wayland-client" --version = "0.31.10" -+version = "0.31.11" +-version = "0.31.11" ++version = "0.31.12" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "978fa7c67b0847dbd6a9f350ca2569174974cd4082737054dbb7fbb79d7d9a61" -+checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d" +-checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d" ++checksum = "b8e6faa537fbb6c186cb9f1d41f2f811a4120d1b57ec61f50da451a0c5122bec" dependencies = [ - "bitflags 2.9.1", -- "rustix 0.38.44", -+ "rustix 1.0.8", + "bitflags 2.10.0", +- "rustix 1.1.3", ++ "rustix", "wayland-backend", "wayland-scanner", ] [[package]] name = "wayland-protocols" --version = "0.32.8" -+version = "0.32.9" +-version = "0.32.9" ++version = "0.32.10" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "779075454e1e9a521794fed15886323ea0feda3f8b0fc1390f5398141310422a" -+checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901" +-checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901" ++checksum = "baeda9ffbcfc8cd6ddaade385eaf2393bd2115a69523c735f12242353c3df4f3" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.10.0", "wayland-backend", -@@ -10739,9 +10741,9 @@ dependencies = [ +@@ -11553,9 +11146,9 @@ dependencies = [ [[package]] name = "wayland-protocols-wlr" --version = "0.3.8" -+version = "0.3.9" +-version = "0.3.9" ++version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1cb6cdc73399c0e06504c437fe3cf886f25568dd5454473d565085b36d6a8bbf" -+checksum = "efd94963ed43cf9938a090ca4f7da58eb55325ec8200c3848963e98dc25b78ec" +-checksum = "efd94963ed43cf9938a090ca4f7da58eb55325ec8200c3848963e98dc25b78ec" ++checksum = "e9597cdf02cf0c34cd5823786dce6b5ae8598f05c2daf5621b6e178d4f7345f3" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.10.0", "wayland-backend", -@@ -10752,9 +10754,9 @@ dependencies = [ +@@ -11566,31 +11159,29 @@ dependencies = [ [[package]] name = "wayland-scanner" --version = "0.31.6" -+version = "0.31.7" +-version = "0.31.7" ++version = "0.31.8" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "896fdafd5d28145fce7958917d69f2fd44469b1d4e861cb5961bcbeebc6d1484" -+checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3" +-checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3" ++checksum = "5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3" dependencies = [ "proc-macro2", - "quick-xml 0.37.5", -@@ -10763,9 +10765,9 @@ dependencies = [ +- "quick-xml 0.37.5", ++ "quick-xml 0.38.4", + "quote", + ] [[package]] name = "wayland-sys" --version = "0.31.6" -+version = "0.31.7" +-version = "0.31.7" ++version = "0.31.8" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "dbcebb399c77d5aa9fa5db874806ee7b4eba4e73650948e8f93963f128896615" -+checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142" +-checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142" ++checksum = "1e6dbfc3ac5ef974c92a2235805cc0114033018ae1290a72e474aa8b28cbbdfd" dependencies = [ - "dlib", - "log", -@@ -10844,18 +10846,9 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" +- "dlib", +- "log", + "pkg-config", + ] + + [[package]] + name = "web-sys" +-version = "0.3.82" ++version = "0.3.85" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" ++checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598" + dependencies = [ + "js-sys", + "wasm-bindgen", +@@ -11608,9 +11199,9 @@ dependencies = [ + + [[package]] + name = "webkit2gtk" +-version = "2.0.1" ++version = "2.0.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" ++checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793" + dependencies = [ + "bitflags 1.3.2", + "cairo-rs", +@@ -11632,9 +11223,9 @@ dependencies = [ + + [[package]] + name = "webkit2gtk-sys" +-version = "2.0.1" ++version = "2.0.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" ++checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5" + dependencies = [ + "bitflags 1.3.2", + "cairo-sys-rs", +@@ -11667,18 +11258,18 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" --version = "0.26.11" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" --dependencies = [ -- "webpki-roots 1.0.0", --] -- --[[package]] --name = "webpki-roots" --version = "1.0.0" -+version = "1.0.2" +-version = "1.0.4" ++version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb" -+checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" +-checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" ++checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" dependencies = [ "rustls-pki-types", ] -@@ -10882,7 +10875,7 @@ checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" + + [[package]] + name = "webview2-com" +-version = "0.38.0" ++version = "0.38.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4" ++checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a" + dependencies = [ + "webview2-com-macros", + "webview2-com-sys", +@@ -11690,22 +11281,22 @@ dependencies = [ + + [[package]] + name = "webview2-com-macros" +-version = "0.8.0" ++version = "0.8.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" ++checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -10898,9 +10891,9 @@ dependencies = [ - - [[package]] - name = "weezl" --version = "0.1.8" -+version = "0.1.10" + name = "webview2-com-sys" +-version = "0.38.0" ++version = "0.38.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" ++checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" + dependencies = [ +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "windows 0.61.3", + "windows-core 0.61.2", + ] +@@ -11753,10 +11344,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" -+checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3" - - [[package]] - name = "winapi" -@@ -10940,7 +10933,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" dependencies = [ - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", "objc2-core-foundation", - "objc2-foundation 0.3.1", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "raw-window-handle", -@@ -10980,7 +10973,7 @@ dependencies = [ - "windows-interface", - "windows-link", - "windows-result", -- "windows-strings 0.4.2", -+ "windows-strings", - ] - - [[package]] -@@ -11002,7 +10995,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" + "windows-sys 0.59.0", + "windows-version", +@@ -11861,7 +11452,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -11013,7 +11006,7 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" +@@ -11872,7 +11463,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -11034,13 +11027,13 @@ dependencies = [ +@@ -12329,22 +11920,21 @@ dependencies = [ [[package]] - name = "windows-registry" --version = "0.4.0" -+version = "0.5.3" + name = "wit-bindgen" +-version = "0.46.0" ++version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" -+checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" - dependencies = [ -+ "windows-link", - "windows-result", -- "windows-strings 0.3.1", -- "windows-targets 0.53.2", -+ "windows-strings", - ] +-checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" ++checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" [[package]] -@@ -11052,15 +11045,6 @@ dependencies = [ - "windows-link", - ] - --[[package]] --name = "windows-strings" --version = "0.3.1" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" --dependencies = [ -- "windows-link", --] -- - [[package]] - name = "windows-strings" - version = "0.4.2" -@@ -11112,7 +11096,7 @@ version = "0.60.2" + name = "wl-clipboard-rs" +-version = "0.9.2" ++version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +-checksum = "8e5ff8d0e60065f549fafd9d6cb626203ea64a798186c80d8e7df4f8af56baeb" ++checksum = "e9651471a32e87d96ef3a127715382b2d11cc7c8bb9822ded8a7cc94072eb0a3" dependencies = [ -- "windows-targets 0.53.2", -+ "windows-targets 0.53.3", - ] + "libc", + "log", + "os_pipe", +- "rustix 0.38.44", +- "tempfile", +- "thiserror 2.0.17", ++ "rustix", ++ "thiserror 2.0.18", + "tree_magic_mini", + "wayland-backend", + "wayland-client", +@@ -12360,12 +11950,12 @@ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" [[package]] -@@ -11163,10 +11147,11 @@ dependencies = [ - - [[package]] - name = "windows-targets" --version = "0.53.2" -+version = "0.53.3" + name = "wry" +-version = "0.53.5" ++version = "0.54.1" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" -+checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" +-checksum = "728b7d4c8ec8d81cab295e0b5b8a4c263c0d41a785fb8f8c4df284e5411140a2" ++checksum = "5ed1a195b0375491dd15a7066a10251be217ce743cf4bbbbdcf5391d6473bee0" dependencies = [ -+ "windows-link", - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", -@@ -11405,12 +11390,12 @@ dependencies = [ - - [[package]] - name = "winreg" --version = "0.52.0" -+version = "0.55.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -+checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" - dependencies = [ - "cfg-if", -- "windows-sys 0.48.0", -+ "windows-sys 0.59.0", - ] - - [[package]] -@@ -11469,7 +11454,7 @@ dependencies = [ + "base64 0.22.1", +- "block2 0.6.2", ++ "block2", + "cookie", + "crossbeam-channel", + "dirs 6.0.0", +@@ -12380,10 +11970,10 @@ dependencies = [ + "kuchikiki", "libc", "ndk", - "objc2 0.6.1", -- "objc2-app-kit 0.3.1", -+ "objc2-app-kit", +- "objc2 0.6.3", ++ "objc2", + "objc2-app-kit", "objc2-core-foundation", - "objc2-foundation 0.3.1", +- "objc2-foundation 0.3.2", ++ "objc2-foundation", "objc2-ui-kit", -@@ -11540,9 +11525,9 @@ checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" + "objc2-web-kit", + "once_cell", +@@ -12392,7 +11982,7 @@ dependencies = [ + "sha2", + "soup3", + "tao-macros", +- "thiserror 2.0.17", ++ "thiserror 2.0.18", + "url", + "webkit2gtk", + "webkit2gtk-sys", +@@ -12440,7 +12030,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414" + dependencies = [ + "gethostname", +- "rustix 1.1.3", ++ "rustix", + "x11rb-protocol", + ] - [[package]] - name = "xattr" --version = "1.5.0" -+version = "1.5.1" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e" -+checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909" +@@ -12457,7 +12047,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ "libc", - "rustix 1.0.8", -@@ -11593,7 +11578,7 @@ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" +- "rustix 1.1.3", ++ "rustix", + ] + + [[package]] +@@ -12495,7 +12085,7 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", "synstructure", ] -@@ -11620,7 +11605,6 @@ dependencies = [ +@@ -12533,9 +12123,9 @@ dependencies = [ + + [[package]] + name = "zbus" +-version = "5.12.0" ++version = "5.13.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91" ++checksum = "1bfeff997a0aaa3eb20c4652baf788d2dfa6d2839a0ead0b3ff69ce2f9c4bdd1" + dependencies = [ + "async-broadcast", + "async-executor", +@@ -12551,19 +12141,19 @@ dependencies = [ + "futures-core", + "futures-lite", + "hex", +- "nix 0.30.1", ++ "libc", + "ordered-stream", ++ "rustix", + "serde", "serde_repr", - "sha1", - "static_assertions", - "tokio", "tracing", "uds_windows", - "windows-sys 0.52.0", -@@ -11654,13 +11638,14 @@ dependencies = [ - "ordered-stream", - "serde", - "serde_repr", -+ "tokio", - "tracing", - "uds_windows", - "windows-sys 0.59.0", - "winnow 0.7.12", - "zbus_macros 5.9.0", - "zbus_names 4.2.0", -- "zvariant 5.5.3", -+ "zvariant 5.6.0", + "uuid", + "windows-sys 0.61.2", + "winnow 0.7.14", +- "zbus_macros 5.12.0", +- "zbus_names 4.2.0", +- "zvariant 5.8.0", ++ "zbus_macros 5.13.2", ++ "zbus_names 4.3.1", ++ "zvariant 5.9.2", ] [[package]] -@@ -11672,7 +11657,7 @@ dependencies = [ - "proc-macro-crate 3.3.0", +@@ -12575,23 +12165,23 @@ dependencies = [ + "proc-macro-crate 3.4.0", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", "zvariant_utils 2.1.0", ] -@@ -11685,9 +11670,9 @@ dependencies = [ - "proc-macro-crate 3.3.0", + [[package]] + name = "zbus_macros" +-version = "5.12.0" ++version = "5.13.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314" ++checksum = "0bbd5a90dbe8feee5b13def448427ae314ccd26a49cac47905cafefb9ff846f1" + dependencies = [ + "proc-macro-crate 3.4.0", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - "zbus_names 4.2.0", -- "zvariant 5.5.3", -+ "zvariant 5.6.0", - "zvariant_utils 3.2.0", +- "syn 2.0.112", +- "zbus_names 4.2.0", +- "zvariant 5.8.0", +- "zvariant_utils 3.2.1", ++ "syn 2.0.114", ++ "zbus_names 4.3.1", ++ "zvariant 5.9.2", ++ "zvariant_utils 3.3.0", ] -@@ -11711,27 +11696,27 @@ dependencies = [ + [[package]] +@@ -12607,34 +12197,33 @@ dependencies = [ + + [[package]] + name = "zbus_names" +-version = "4.2.0" ++version = "4.3.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" ++checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f" + dependencies = [ "serde", - "static_assertions", - "winnow 0.7.12", -- "zvariant 5.5.3", -+ "zvariant 5.6.0", +- "static_assertions", + "winnow 0.7.14", +- "zvariant 5.8.0", ++ "zvariant 5.9.2", ] [[package]] name = "zerocopy" --version = "0.8.25" -+version = "0.8.26" +-version = "0.8.31" ++version = "0.8.37" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" -+checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" +-checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" ++checksum = "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" --version = "0.8.25" -+version = "0.8.26" +-version = "0.8.31" ++version = "0.8.37" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" -+checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" +-checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" ++checksum = "1328722bbf2115db7e19d69ebcc15e795719e2d66b60827c6a69a117365e37a0" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -11751,7 +11736,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +@@ -12654,7 +12243,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", "synstructure", ] -@@ -11772,7 +11757,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +@@ -12669,13 +12258,13 @@ dependencies = [ + + [[package]] + name = "zeroize_derive" +-version = "1.4.2" ++version = "1.4.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" ++checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -11788,9 +11773,9 @@ dependencies = [ - - [[package]] - name = "zerovec" --version = "0.11.2" -+version = "0.11.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" -+checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" - dependencies = [ - "yoke", - "zerofrom", -@@ -11805,7 +11790,7 @@ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" +@@ -12708,7 +12297,7 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", ] [[package]] -@@ -11825,7 +11810,7 @@ dependencies = [ - "flate2", - "getrandom 0.3.3", - "hmac", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", - "lzma-rs", - "memchr", - "pbkdf2", -@@ -11840,21 +11825,21 @@ dependencies = [ - - [[package]] - name = "zip" --version = "4.2.0" -+version = "4.3.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "95ab361742de920c5535880f89bbd611ee62002bf11341d16a5f057bb8ba6899" -+checksum = "9aed4ac33e8eb078c89e6cbb1d5c4c7703ec6d299fc3e7c3695af8f8b423468b" - dependencies = [ +@@ -12720,21 +12309,21 @@ dependencies = [ "arbitrary", + "bzip2", "crc32fast", -- "indexmap 2.9.0", -+ "indexmap 2.10.0", +- "indexmap 2.12.1", ++ "indexmap 2.13.0", "memchr", ] [[package]] name = "zlib-rs" --version = "0.5.0" -+version = "0.5.1" +-version = "0.6.0" ++version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8" -+checksum = "626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a" +-checksum = "a7948af682ccbc3342b6e9420e8c51c1fe5d7bf7756002b4a3c6cabfe96a7e3c" ++checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3" [[package]] - name = "zopfli" -@@ -11906,21 +11891,21 @@ dependencies = [ - "enumflags2", - "serde", - "static_assertions", -- "url", - "zvariant_derive 4.2.0", - ] + name = "zmij" +-version = "1.0.6" ++version = "1.0.19" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "aac060176f7020d62c3bcc1cdbcec619d54f48b07ad1963a3f80ce7a0c17755f" ++checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445" + + [[package]] + name = "zune-core" +@@ -12766,17 +12355,17 @@ dependencies = [ [[package]] name = "zvariant" --version = "5.5.3" -+version = "5.6.0" +-version = "5.8.0" ++version = "5.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "9d30786f75e393ee63a21de4f9074d4c038d52c5b1bb4471f955db249f9dffb1" -+checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f" +-checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c" ++checksum = "68b64ef4f40c7951337ddc7023dd03528a57a3ce3408ee9da5e948bd29b232c4" dependencies = [ "endi", "enumflags2", "serde", -+ "url", - "winnow 0.7.12", -- "zvariant_derive 5.5.3", -+ "zvariant_derive 5.6.0", - "zvariant_utils 3.2.0", + "url", + "winnow 0.7.14", +- "zvariant_derive 5.8.0", +- "zvariant_utils 3.2.1", ++ "zvariant_derive 5.9.2", ++ "zvariant_utils 3.3.0", ] -@@ -11933,20 +11918,20 @@ dependencies = [ - "proc-macro-crate 3.3.0", + [[package]] +@@ -12788,21 +12377,21 @@ dependencies = [ + "proc-macro-crate 3.4.0", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", ++ "syn 2.0.114", "zvariant_utils 2.1.0", ] [[package]] name = "zvariant_derive" --version = "5.5.3" -+version = "5.6.0" +-version = "5.8.0" ++version = "5.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "75fda702cd42d735ccd48117b1630432219c0e9616bf6cb0f8350844ee4d9580" -+checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208" +-checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006" ++checksum = "484d5d975eb7afb52cc6b929c13d3719a20ad650fea4120e6310de3fc55e415c" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", -- "syn 2.0.101", -+ "syn 2.0.104", - "zvariant_utils 3.2.0", - ] - -@@ -11958,7 +11943,7 @@ checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" - dependencies = [ - "proc-macro2", - "quote", -- "syn 2.0.101", -+ "syn 2.0.104", +- "syn 2.0.112", +- "zvariant_utils 3.2.1", ++ "syn 2.0.114", ++ "zvariant_utils 3.3.0", ] [[package]] -@@ -11971,6 +11956,6 @@ dependencies = [ +@@ -12813,18 +12402,18 @@ checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.112", ++ "syn 2.0.114", + ] + + [[package]] + name = "zvariant_utils" +-version = "3.2.1" ++version = "3.3.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599" ++checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9" + dependencies = [ + "proc-macro2", "quote", "serde", - "static_assertions", -- "syn 2.0.101", -+ "syn 2.0.104", - "winnow 0.7.12", +- "syn 2.0.112", ++ "syn 2.0.114", + "winnow 0.7.14", ] diff --git a/Cargo.toml b/Cargo.toml -index c560a9b64..718574be8 100644 +index 66d3fa1b0..c2eef79a2 100644 --- a/Cargo.toml +++ b/Cargo.toml -@@ -5,7 +5,7 @@ resolver = "2" - [workspace.dependencies] - bstr = "1.11.1" +@@ -191,7 +191,7 @@ rusqlite = { version = "0.38.0", features = ["bundled"] } + backoff = "0.4.0" + bstr = "1.12.1" # Add the `tracing` or `tracing-detail` features to see more of gitoxide in the logs. Useful to see which programs it invokes. --gix = { version = "0.73.0", git = "https://github.com/GitoxideLabs/gitoxide", branch = "main", default-features = false, features = [ -+gix = { version = "0.73.0", default-features = false, features = [ +-gix = { version = "0.78.0", git = "https://github.com/GitoxideLabs/gitoxide", branch = "main", default-features = false, features = [ ++gix = { version = "0.78.0", default-features = false, features = [ ] } - gix-testtools = "0.16.1" - insta = "1.43.1" + ts-rs = { version = "11.1.0", features = ["serde-compat", "no-serde-warnings"] } + gix-testtools = "0.18.0" +diff --git a/crates/gitbutler-git/Cargo.toml b/crates/gitbutler-git/Cargo.toml +index ab08487cf..91b2734a6 100644 +--- a/crates/gitbutler-git/Cargo.toml ++++ b/crates/gitbutler-git/Cargo.toml +@@ -59,7 +59,7 @@ windows = { version = "0.62.0", features = [ + ] } + tokio = { workspace = true, optional = true, features = ["sync", "rt"] } + # TODO: use released version once published. +-file-id = { git = "https://github.com/notify-rs/notify", rev = "978fe719b066a8ce76b9a9d346546b1569eecfb6", version = "0.2.3" } ++file-id = { version = "0.2.3" } + + [dev-dependencies] + snapbox.workspace = true diff --git a/pkgs/by-name/gi/gitbutler/package.nix b/pkgs/by-name/gi/gitbutler/package.nix index b6d57500c051..5f093ec3b44b 100644 --- a/pkgs/by-name/gi/gitbutler/package.nix +++ b/pkgs/by-name/gi/gitbutler/package.nix @@ -25,51 +25,46 @@ turbo, webkitgtk_4_1, wrapGAppsHook4, - yq, + dart-sass, }: -let - excludeSpec = spec: [ - "--exclude" - spec - ]; -in - rustPlatform.buildRustPackage (finalAttrs: { pname = "gitbutler"; - version = "0.15.10"; + version = "0.18.8"; src = fetchFromGitHub { owner = "gitbutlerapp"; repo = "gitbutler"; tag = "release/${finalAttrs.version}"; - hash = "sha256-6sRSH7OSprOsRMoORjy9HI8SoOAXqPak2kqtgRx2bWI="; + hash = "sha256-OSM2yjiz3I5+SVpcJSWCDyS4y4w9JJ/8CAP2BK0sL7o="; }; # Workaround for https://github.com/NixOS/nixpkgs/issues/359340 - cargoPatches = [ ./gix-from-crates-io.patch ]; + cargoPatches = [ + ./gix-from-crates-io.patch + ]; - # Let Tauri know what version we're building - # - # Remove references to non-existent workspaces in `gix` crates - # - # Deactivate the built-in updater + # Let Tauri know what version we're building and deactivate the built-in updater + # Note: .bundle.externalBin doesn't include `"but"` at the moment + # as that'd require more build adjustments postPatch = '' tauriConfRelease="crates/gitbutler-tauri/tauri.conf.release.json" - jq '.version = "${finalAttrs.version}" | .bundle.createUpdaterArtifacts = false' "$tauriConfRelease" | sponge "$tauriConfRelease" - - tomlq -ti 'del(.lints) | del(.workspace.lints)' "$cargoDepsCopy"/gix*/Cargo.toml + jq '. + | (.version = "${finalAttrs.version}") + | (.bundle.createUpdaterArtifacts = false) + | (.bundle.externalBin = ["gitbutler-git-setsid", "gitbutler-git-askpass"]) + ' "$tauriConfRelease" | sponge "$tauriConfRelease" substituteInPlace apps/desktop/src/lib/backend/tauri.ts \ - --replace-fail 'checkUpdate = check;' 'checkUpdate = () => null;' + --replace-fail 'checkUpdate = tauriCheck;' 'checkUpdate = () => null;' ''; - cargoHash = "sha256-H8YR+euwMGiGckURAWJIE9fOcu/ddJ6ENcnA1gHD9B8="; + cargoHash = "sha256-L53iIVxv3KtmXiqITad1enIMX3Iu/mWSJJPZk7KAWuM="; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; fetcherVersion = 2; - hash = "sha256-I55RNWP6csT08SBIFEyUp9JTC5EzQXjKIPPSxkSpg7Y="; + hash = "sha256-IAsEzM9kmZWnh390CV7mOyOshVlESsyoNT0ZvdY03KY="; }; nativeBuildInputs = [ @@ -85,7 +80,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pnpm turbo wrapGAppsHook4 - yq # For `tomlq` + dart-sass ] ++ lib.optional stdenv.hostPlatform.isDarwin makeBinaryWrapper; @@ -106,24 +101,47 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeCheckInputs = [ git ]; - # `gitbutler-git`'s checks do not support release mode - checkType = "debug"; cargoTestFlags = [ "--workspace" ] - ++ lib.concatMap excludeSpec [ + # Exclude these workspace crates from testing + ++ lib.concatMap (crate: [ "--exclude=${crate}" ]) [ # Requires Git directories "but-core" "but-rebase" "but-workspace" # Fails due to the issues above and below "but-hunk-dependency" - # Errors with "Lazy instance has previously been poisoned" - "gitbutler-branch-actions" - "gitbutler-stack" # `Expecting driver to be located at "../../target/debug/gitbutler-cli" - we also assume a certain crate location` # We're not (usually) building in debug mode and always have a different target directory, so... + "gitbutler-branch-actions" + "gitbutler-stack" "gitbutler-edit-mode" + "but-cherry-apply" + "but-worktrees" + ] + ++ [ + "--" + ] + # Skip these specific tests + ++ lib.concatMap (test: [ "--skip=${test}" ]) [ + # These tests try connecting to a local address (192.0.2.1) and expect the + # connection to fail in a certain way. When run on macOS with a network + # sandbox (?) these tests fail while preparing the socket. + # https://github.com/NixOS/nixpkgs/pull/473706#issuecomment-3734337124 + "test_is_network_error" + # assertion `left == right` failed: GIT_EDITOR should take precedence if git is executed correctly + # left: "vi" + # right: "from-GIT_EDITOR" + "git_editor_takes_precedence" + # FLAKY (try again): child exited unsuccessfully: ExitStatus(unix_wait_status(10752)) + "migrations_in_parallel_with_processes" + # Archive at 'tests/fixtures/generated-archives/[...].tar' not found [..] Error: No such file or directory (os error 2) + "merge_first_branch_into_gb_local_and_verify_rebase" + "json_output_with_dangling_commits" + "two_dangling_commits_different_branches" + # darwin: Error: timeout waiting for matching event + "track_directory_changes_after_rename" ]; env = { @@ -135,19 +153,21 @@ rustPlatform.buildRustPackage (finalAttrs: { # `fetchPnpmDeps` and `pnpmConfigHook` use a specific version of pnpm, not upstream's COREPACK_ENABLE_STRICT = 0; - # We depend on nightly features - RUSTC_BOOTSTRAP = 1; - - # We also need to have `tracing` support in `tokio` for `console-subscriber` + # task tracing requires Tokio to be built with RUSTFLAGS="--cfg tokio_unstable" RUSTFLAGS = "--cfg tokio_unstable"; TUBRO_BINARY_PATH = lib.getExe turbo; + TURBO_TELEMETRY_DISABLED = 1; OPENSSL_NO_VENDOR = true; LIBGIT2_NO_VENDOR = 1; }; preBuild = '' + # force the sass npm dependency to use our own sass binary instead of the bundled one + substituteInPlace node_modules/.pnpm/sass-embedded@*/node_modules/sass-embedded/dist/lib/src/compiler-path.js \ + --replace-fail 'compilerCommand = (() => {' 'compilerCommand = (() => { return ["${lib.getExe dart-sass}"];' + turbo run --filter @gitbutler/svelte-comment-injector build pnpm build:desktop -- --mode production ''; diff --git a/pkgs/by-name/gi/gitflow/package.nix b/pkgs/by-name/gi/gitflow/package.nix index e534d74980b3..b2ebf7e011af 100644 --- a/pkgs/by-name/gi/gitflow/package.nix +++ b/pkgs/by-name/gi/gitflow/package.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.bsd2; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/gi/gittyup/0001-Fix-incorrect-order-of-argument-to-calloc-345.patch b/pkgs/by-name/gi/gittyup/0001-Fix-incorrect-order-of-argument-to-calloc-345.patch deleted file mode 100644 index 58431871e7e4..000000000000 --- a/pkgs/by-name/gi/gittyup/0001-Fix-incorrect-order-of-argument-to-calloc-345.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 687b5424128fd637555be4a0d18c72c4e870bd6f Mon Sep 17 00:00:00 2001 -From: Alfie <30699769+AHSauge@users.noreply.github.com> -Date: Sat, 11 May 2024 13:11:08 +0200 -Subject: [PATCH] Fix incorrect order of argument to calloc (#345) - ---- - src/zip.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/zip.c b/src/zip.c -index b14f9e3..a7e5ef8 100644 ---- a/test/dep/zip/src/zip.c -+++ b/test/dep/zip/src/zip.c -@@ -1874,7 +1874,7 @@ ssize_t zip_stream_copy(struct zip_t *zip, void **buf, size_t *bufsize) { - *bufsize = n; - } - -- *buf = calloc(sizeof(unsigned char), n); -+ *buf = calloc(n, sizeof(unsigned char)); - memcpy(*buf, zip->archive.m_pState->m_pMem, n); - - return (ssize_t)n; --- -2.47.0 - diff --git a/pkgs/by-name/gi/gittyup/package.nix b/pkgs/by-name/gi/gittyup/package.nix index c9eb5640288e..92e92539c16c 100644 --- a/pkgs/by-name/gi/gittyup/package.nix +++ b/pkgs/by-name/gi/gittyup/package.nix @@ -11,27 +11,21 @@ ninja, openssl, pkg-config, - libsForQt5, + qt6, }: stdenv.mkDerivation (finalAttrs: { pname = "gittyup"; - version = "1.4.0"; + version = "2.0.0"; src = fetchFromGitHub { owner = "Murmele"; repo = "Gittyup"; rev = "gittyup_v${finalAttrs.version}"; - hash = "sha256-anyjHSF0ZCBJTuqNdH49iwngt3zeJZat5XGDsKbiwPE="; + hash = "sha256-A4+t0glZC8vi+E3+WcTMZ0cdUhHaZZrcP2MGPk45X0g="; fetchSubmodules = true; }; - patches = [ - # Fix GCC 14 build error (remove for next update) - # https://github.com/Murmele/Gittyup/pull/759 - ./0001-Fix-incorrect-order-of-argument-to-calloc-345.patch - ]; - cmakeFlags = let inherit (lib) cmakeBool; @@ -54,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { cmark ninja pkg-config - libsForQt5.wrapQtAppsHook + qt6.wrapQtAppsHook ]; buildInputs = [ @@ -64,8 +58,8 @@ stdenv.mkDerivation (finalAttrs: { libssh2 lua5_4 openssl - libsForQt5.qtbase - libsForQt5.qttools + qt6.qtbase + qt6.qttools ]; postInstall = '' diff --git a/pkgs/by-name/go/go-md2man/package.nix b/pkgs/by-name/go/go-md2man/package.nix index ff070f7b950f..9ec627f7cf10 100644 --- a/pkgs/by-name/go/go-md2man/package.nix +++ b/pkgs/by-name/go/go-md2man/package.nix @@ -22,6 +22,6 @@ buildGoModule (finalAttrs: { mainProgram = "go-md2man"; license = lib.licenses.mit; homepage = "https://github.com/cpuguy83/go-md2man"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/go/go-migrate/package.nix b/pkgs/by-name/go/go-migrate/package.nix index 3cdd915b9775..8ca5bde0e065 100644 --- a/pkgs/by-name/go/go-migrate/package.nix +++ b/pkgs/by-name/go/go-migrate/package.nix @@ -49,7 +49,7 @@ buildGoModule (finalAttrs: { meta = { homepage = "https://github.com/golang-migrate/migrate"; description = "Database migrations. CLI and Golang library"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; license = lib.licenses.mit; mainProgram = "migrate"; }; diff --git a/pkgs/by-name/go/gocryptfs/package.nix b/pkgs/by-name/go/gocryptfs/package.nix index f903e11cd906..bb1d70ff710f 100644 --- a/pkgs/by-name/go/gocryptfs/package.nix +++ b/pkgs/by-name/go/gocryptfs/package.nix @@ -69,7 +69,6 @@ buildGoModule (finalAttrs: { homepage = "https://nuetzlich.net/gocryptfs/"; maintainers = with lib.maintainers; [ flokli - offline prusnak ]; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/go/golangci-lint/package.nix b/pkgs/by-name/go/golangci-lint/package.nix index 637ac955e0f6..05eca0f72a34 100644 --- a/pkgs/by-name/go/golangci-lint/package.nix +++ b/pkgs/by-name/go/golangci-lint/package.nix @@ -4,7 +4,7 @@ # rather than buildGoLatestModule. # This can be bumped when the release notes of golangci-lint detail support for # new version of go. - buildGo125Module, + buildGo126Module, buildPackages, fetchFromGitHub, installShellFiles, @@ -12,18 +12,18 @@ stdenv, }: -buildGo125Module (finalAttrs: { +buildGo126Module (finalAttrs: { pname = "golangci-lint"; - version = "2.8.0"; + version = "2.9.0"; src = fetchFromGitHub { owner = "golangci"; repo = "golangci-lint"; tag = "v${finalAttrs.version}"; - hash = "sha256-w6MAOirj8rPHYbKrW4gJeemXCS64fNtteV6IioqIQTQ="; + hash = "sha256-8LEtm1v0slKwdLBtS41OilKJLXytSxcI9fUlZbj5Gfw="; }; - vendorHash = "sha256-/Vqo/yrmGh6XipELQ9NDtlMEO2a654XykmvnMs0BdrI="; + vendorHash = "sha256-w8JfF6n1ylrU652HEv/cYdsOdDZz9J2uRQDqxObyhkY="; subPackages = [ "cmd/golangci-lint" ]; diff --git a/pkgs/by-name/go/google-chrome/package.nix b/pkgs/by-name/go/google-chrome/package.nix index 9ec67da5b56d..544ebac7b1e0 100644 --- a/pkgs/by-name/go/google-chrome/package.nix +++ b/pkgs/by-name/go/google-chrome/package.nix @@ -179,11 +179,11 @@ let linux = stdenvNoCC.mkDerivation (finalAttrs: { inherit pname meta passthru; - version = "144.0.7559.132"; + version = "145.0.7632.45"; src = fetchurl { url = "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${finalAttrs.version}-1_amd64.deb"; - hash = "sha256-5VuJaixlw9o+oD1bp6S3o2kR8KcolomSFyWpMZQydwM="; + hash = "sha256-au1T/nd8qaWKaAuEioACIwBWb7kCQkKR4FSYSnhMc6I="; }; # With strictDeps on, some shebangs were not being patched correctly diff --git a/pkgs/by-name/go/gore/package.nix b/pkgs/by-name/go/gore/package.nix index a617d67ebe80..a15a0c10bfa6 100644 --- a/pkgs/by-name/go/gore/package.nix +++ b/pkgs/by-name/go/gore/package.nix @@ -24,6 +24,6 @@ buildGoModule (finalAttrs: { mainProgram = "gore"; homepage = "https://github.com/motemen/gore"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/gt/gtk-vnc/package.nix b/pkgs/by-name/gt/gtk-vnc/package.nix index aa18f6f35bad..0a034375c1f8 100644 --- a/pkgs/by-name/gt/gtk-vnc/package.nix +++ b/pkgs/by-name/gt/gtk-vnc/package.nix @@ -89,7 +89,6 @@ stdenv.mkDerivation (finalAttrs: { license = lib.licenses.lgpl2Plus; maintainers = with lib.maintainers; [ raskin - offline ]; platforms = lib.platforms.unix; mainProgram = "gvnccapture"; diff --git a/pkgs/by-name/ha/harbor-cli/package.nix b/pkgs/by-name/ha/harbor-cli/package.nix index fbfa8928552d..cc0a90e5e8e2 100644 --- a/pkgs/by-name/ha/harbor-cli/package.nix +++ b/pkgs/by-name/ha/harbor-cli/package.nix @@ -9,16 +9,16 @@ buildGoModule (finalAttrs: { pname = "harbor-cli"; - version = "0.0.16"; + version = "0.0.17"; src = fetchFromGitHub { owner = "goharbor"; repo = "harbor-cli"; tag = "v${finalAttrs.version}"; - hash = "sha256-bU42N2+zyOqdiJFbgaqcxsApdslQFOleythDE6hs8sY="; + hash = "sha256-uTXTRfxuEl1A9F9TrEWYvV4tVGPRoH01QRVsO8fBKg0="; }; - vendorHash = "sha256-qTaXIkZ1g7jsPV4IkduIS6REIhs9JJcS2mOg3V77DTg="; + vendorHash = "sha256-lGxv7BK4JZX9fyQEUooflBvcbul8LXkRvpySz4l5zAI="; excludedPackages = [ "dagger" diff --git a/pkgs/by-name/hi/hifile/package.nix b/pkgs/by-name/hi/hifile/package.nix index 5636faa723d9..15a279492fd2 100644 --- a/pkgs/by-name/hi/hifile/package.nix +++ b/pkgs/by-name/hi/hifile/package.nix @@ -2,8 +2,8 @@ lib, appimageTools, fetchurl, - version ? "0.9.15.3", - hash ? "sha256-tLEfdIQ29DrG0aqUkfh/FBUqveXjNWAYzuqN3a6Qyz0=", + version ? "0.9.15.4", + hash ? "sha256-2dUh7aAnpbi9tTWL23ZVNdyLfORkZGAjUlz8B/ETo/Q=", }: let diff --git a/pkgs/by-name/hi/hivex/package.nix b/pkgs/by-name/hi/hivex/package.nix index 17e4d9cf9198..9fde1623738c 100644 --- a/pkgs/by-name/hi/hivex/package.nix +++ b/pkgs/by-name/hi/hivex/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { description = "Windows registry hive extraction library"; license = lib.licenses.lgpl2Only; homepage = "https://github.com/libguestfs/hivex"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ho/homepage-dashboard/package.nix b/pkgs/by-name/ho/homepage-dashboard/package.nix index 98ed6979e6da..80bae721b94b 100644 --- a/pkgs/by-name/ho/homepage-dashboard/package.nix +++ b/pkgs/by-name/ho/homepage-dashboard/package.nix @@ -31,13 +31,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "homepage-dashboard"; - version = "1.9.0"; + version = "1.10.1"; src = fetchFromGitHub { owner = "gethomepage"; repo = "homepage"; tag = "v${finalAttrs.version}"; - hash = "sha256-DFr223jUP/KAZDBVJxqFDmLgQGJyPMi/4A160e8nAYk="; + hash = "sha256-hJbF6VZRgC2oROdEonlWS6Oj229sKemnpQX+pf8+6rc="; }; pnpmDeps = fetchPnpmDeps { @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { ; pnpm = pnpm_10; fetcherVersion = 3; - hash = "sha256-iWKGDgZIdQzKSJx5MpqO83nvpawBhCKllWf3x6aCAtQ="; + hash = "sha256-YM1v2hkVsxS3AiQbLIHQ5yOkgqQoa+X9rR2yEJYRO/g="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ht/htmlunit-driver/package.nix b/pkgs/by-name/ht/htmlunit-driver/package.nix index 6ad9d9b3ef3b..97e3e98a23da 100644 --- a/pkgs/by-name/ht/htmlunit-driver/package.nix +++ b/pkgs/by-name/ht/htmlunit-driver/package.nix @@ -22,7 +22,6 @@ stdenv.mkDerivation rec { description = "WebDriver server for running Selenium tests on the HtmlUnit headless browser"; maintainers = with lib.maintainers; [ coconnor - offline ]; platforms = lib.platforms.all; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; diff --git a/pkgs/by-name/ig/ignition/fix-gjs.patch b/pkgs/by-name/ig/ignition/fix-gjs.patch index 312042bb5b1c..f8dfae3ef9f6 100644 --- a/pkgs/by-name/ig/ignition/fix-gjs.patch +++ b/pkgs/by-name/ig/ignition/fix-gjs.patch @@ -1,22 +1,24 @@ diff --git a/src/io.github.flattool.Ignition.in b/src/io.github.flattool.Ignition.in -index 5c71c3c..0b2ec00 100644 +index 40b474b..e8e5cd7 100755 --- a/src/io.github.flattool.Ignition.in +++ b/src/io.github.flattool.Ignition.in -@@ -1,7 +1,8 @@ +@@ -1,9 +1,10 @@ -#!@GJS@ -m +#!/usr/bin/env gjs -m - import { exit, programArgs, programInvocationName } from "system"; + import Gio from "gi://Gio?version=2.0" + + import { exit, programArgs, programInvocationName } from "system" +imports.package._findEffectiveEntryPointName = () => 'io.github.flattool.Ignition'; imports.package.init({ - name: "@PACKAGE_NAME@", - version: "@PACKAGE_VERSION@", + name: "@PACKAGE_NAME@", + version: "@VERSION@", diff --git a/src/meson.build b/src/meson.build -index 488fa06..751f8ed 100644 +index dc242fb..7334af7 100644 --- a/src/meson.build +++ b/src/meson.build -@@ -23,7 +23,6 @@ data_res = gnome.compile_resources('io.github.flattool.Ignition.data', +@@ -37,7 +37,6 @@ install_subdir( ) bin_conf = configuration_data() @@ -24,3 +26,4 @@ index 488fa06..751f8ed 100644 bin_conf.set('PACKAGE_VERSION', meson.project_version()) bin_conf.set('PACKAGE_NAME', meson.project_name()) bin_conf.set('prefix', get_option('prefix')) + diff --git a/pkgs/by-name/ig/ignition/package.nix b/pkgs/by-name/ig/ignition/package.nix index 539d463b7fae..edabfe8ebe4e 100644 --- a/pkgs/by-name/ig/ignition/package.nix +++ b/pkgs/by-name/ig/ignition/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "ignition"; - version = "2.2.0"; + version = "2.3.1"; src = fetchFromGitHub { owner = "flattool"; repo = "ignition"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-GDoF6NcFzMGzvYYoHwSctLlXCqsbfnUFdT9AIGcUkIQ="; + hash = "sha256-bkH8nxvqzxzYse7HNRWi79FfuMmLxd/CppKJQk2rTbo="; }; patches = [ @@ -58,6 +58,9 @@ stdenv.mkDerivation (finalAttrs: { libadwaita ]; + # Needed since Jasmine is not in nixpkgs + mesonFlags = [ "-Dtests=false" ]; + meta = { description = "Manage startup apps and scripts"; homepage = "https://github.com/flattool/ignition"; diff --git a/pkgs/by-name/in/intune-portal/package.nix b/pkgs/by-name/in/intune-portal/package.nix index 436d8648805b..e5de6fd62eea 100644 --- a/pkgs/by-name/in/intune-portal/package.nix +++ b/pkgs/by-name/in/intune-portal/package.nix @@ -17,7 +17,6 @@ sqlite, zlib, systemd, - msalsdk-dbusclient, pam, p11-kit, dbus, @@ -30,11 +29,11 @@ let in stdenv.mkDerivation rec { pname = "intune-portal"; - version = "1.2508.17-noble"; + version = "1.2511.7-noble"; src = fetchurl { url = "https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/i/intune-portal/intune-portal_${version}_amd64.deb"; - hash = "sha256-UTP+Z6xsjr48deizuwVDb8GrpeeAf5RZwloXsZ7Um3E="; + hash = "sha256-MHvAmkemx28ZNcVloFNxJ03YbxrgVPvB7OOMYR6Oyo8="; }; nativeBuildInputs = [ dpkg ]; @@ -59,7 +58,6 @@ stdenv.mkDerivation rec { sqlite zlib systemd - msalsdk-dbusclient dbus ]; pam = lib.makeLibraryPath [ pam ]; diff --git a/pkgs/by-name/jo/john/package.nix b/pkgs/by-name/jo/john/package.nix index e1cbaef70ce0..3e6702862af4 100644 --- a/pkgs/by-name/jo/john/package.nix +++ b/pkgs/by-name/jo/john/package.nix @@ -141,7 +141,6 @@ stdenv.mkDerivation { ++ lib.optionals enableUnfree [ lib.licenses.unfreeRedistributable ]; homepage = "https://github.com/openwall/john/"; maintainers = with lib.maintainers; [ - offline cherrykitten ]; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/js/jsvc/package.nix b/pkgs/by-name/js/jsvc/package.nix index 93676c52c643..197a3baf2e41 100644 --- a/pkgs/by-name/js/jsvc/package.nix +++ b/pkgs/by-name/js/jsvc/package.nix @@ -2,7 +2,7 @@ lib, stdenv, fetchurl, - commonsDaemon, + commons-daemon, jdk, makeWrapper, jre, @@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-SPnE5jrw1zAy7vIzGrjp0+B4SwCLoufLef3XUcUgK6Y="; }; - buildInputs = [ commonsDaemon ]; + buildInputs = [ commons-daemon ]; nativeBuildInputs = [ jdk makeWrapper diff --git a/pkgs/by-name/k6/k6/package.nix b/pkgs/by-name/k6/k6/package.nix index 3d00b82ed088..ae9d0c12eace 100644 --- a/pkgs/by-name/k6/k6/package.nix +++ b/pkgs/by-name/k6/k6/package.nix @@ -42,7 +42,6 @@ buildGoModule (finalAttrs: { changelog = "https://github.com/grafana/k6/releases/tag/v${finalAttrs.version}"; license = lib.licenses.agpl3Plus; maintainers = with lib.maintainers; [ - offline kashw2 ]; }; diff --git a/pkgs/by-name/ka/kail/package.nix b/pkgs/by-name/ka/kail/package.nix index e1a92394798f..57aabf030fe2 100644 --- a/pkgs/by-name/ka/kail/package.nix +++ b/pkgs/by-name/ka/kail/package.nix @@ -28,7 +28,6 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/boz/kail"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ - offline vdemeester ]; mainProgram = "kail"; diff --git a/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix b/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix index e6cd6737597d..7af8ae4e9ec4 100644 --- a/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix +++ b/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "kak-tree-sitter-unwrapped"; - version = "3.0.0"; + version = "3.1.3"; src = fetchFromSourcehut { owner = "~hadronized"; repo = "kak-tree-sitter"; rev = "kak-tree-sitter-v${finalAttrs.version}"; - hash = "sha256-9QeTHmDTw1Qxnl+AnqCZgxlCCycq5qYF0aM/6fu8qwM="; + hash = "sha256-PGQlL7HuZRE2WGGAQr7VBfKt5NvuaIUiYNX9qhpJWK4="; }; - cargoHash = "sha256-lZNM5HqICP6JfaMiBjACcUNRTTTIRhq2ou8cOLU0yOU="; + cargoHash = "sha256-ink1qZD/ujLi/PlJRej5rByBka5a6pPVMP+Y1YlTE1c="; passthru = { updateScript = nix-update-script { }; diff --git a/pkgs/by-name/ka/kapacitor/package.nix b/pkgs/by-name/ka/kapacitor/package.nix index 55bba282a623..0a0530dbd4df 100644 --- a/pkgs/by-name/ka/kapacitor/package.nix +++ b/pkgs/by-name/ka/kapacitor/package.nix @@ -121,7 +121,6 @@ buildGoModule rec { license = lib.licenses.mit; changelog = "https://github.com/influxdata/kapacitor/blob/master/CHANGELOG.md"; maintainers = with lib.maintainers; [ - offline totoroot ]; }; diff --git a/pkgs/by-name/kb/kbst/package.nix b/pkgs/by-name/kb/kbst/package.nix index ed481112b284..fc3fef84d1cf 100644 --- a/pkgs/by-name/kb/kbst/package.nix +++ b/pkgs/by-name/kb/kbst/package.nix @@ -11,7 +11,7 @@ buildGoModule (finalAttrs: { src = fetchFromGitHub { owner = "kbst"; repo = "kbst"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-tbSYNJp/gzEz+wEAe3bvIiZL5axZvW+bxqTOBkYSpMY="; }; @@ -33,11 +33,6 @@ buildGoModule (finalAttrs: { doCheck = false; - doPostInstallCheck = true; - PostInstallCheckPhase = '' - $out/bin/kbst help | grep v${finalAttrs.version} > /dev/null - ''; - meta = { description = "Kubestack framework CLI"; mainProgram = "kbst"; diff --git a/pkgs/by-name/ki/kind/package.nix b/pkgs/by-name/ki/kind/package.nix index 375d78d65976..5a5d0303a46e 100644 --- a/pkgs/by-name/ki/kind/package.nix +++ b/pkgs/by-name/ki/kind/package.nix @@ -56,7 +56,6 @@ buildGoModule (finalAttrs: { description = "Kubernetes IN Docker - local clusters for testing Kubernetes"; homepage = "https://github.com/kubernetes-sigs/kind"; maintainers = with lib.maintainers; [ - offline rawkode ]; license = lib.licenses.asl20; diff --git a/pkgs/by-name/li/libguestfs/package.nix b/pkgs/by-name/li/libguestfs/package.nix index de1c64979b86..3639c982d35f 100644 --- a/pkgs/by-name/li/libguestfs/package.nix +++ b/pkgs/by-name/li/libguestfs/package.nix @@ -190,7 +190,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://libguestfs.org/"; changelog = "https://libguestfs.org/guestfs-release-notes-${lib.versions.majorMinor finalAttrs.version}.1.html"; maintainers = with lib.maintainers; [ - offline lukts30 ]; platforms = lib.platforms.linux; diff --git a/pkgs/by-name/li/libnfc/package.nix b/pkgs/by-name/li/libnfc/package.nix index 087bb6ed31d3..34b897f332c6 100644 --- a/pkgs/by-name/li/libnfc/package.nix +++ b/pkgs/by-name/li/libnfc/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Library for Near Field Communication (NFC)"; homepage = "https://github.com/nfc-tools/libnfc"; license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libsass/package.nix b/pkgs/by-name/li/libsass/package.nix index fab490c41d26..440c7d00463f 100644 --- a/pkgs/by-name/li/libsass/package.nix +++ b/pkgs/by-name/li/libsass/package.nix @@ -46,7 +46,6 @@ stdenv.mkDerivation (finalAttrs: { license = lib.licenses.mit; maintainers = with lib.maintainers; [ codyopel - offline ]; pkgConfigModules = [ "libsass" ]; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/li/limesurvey/package.nix b/pkgs/by-name/li/limesurvey/package.nix index 238e78b67dc3..2949020b38e0 100644 --- a/pkgs/by-name/li/limesurvey/package.nix +++ b/pkgs/by-name/li/limesurvey/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { description = "Open source survey application"; license = lib.licenses.gpl2Plus; homepage = "https://www.limesurvey.org"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/lo/logkeys/package.nix b/pkgs/by-name/lo/logkeys/package.nix index b332c646d320..857cc37a33ef 100644 --- a/pkgs/by-name/lo/logkeys/package.nix +++ b/pkgs/by-name/lo/logkeys/package.nix @@ -47,7 +47,6 @@ stdenv.mkDerivation { homepage = "https://github.com/kernc/logkeys"; maintainers = with lib.maintainers; [ mikoim - offline ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/mf/mfcuk/package.nix b/pkgs/by-name/mf/mfcuk/package.nix index 676d32e7bcb7..5dd73324610e 100644 --- a/pkgs/by-name/mf/mfcuk/package.nix +++ b/pkgs/by-name/mf/mfcuk/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { mainProgram = "mfcuk"; license = lib.licenses.gpl2Plus; homepage = "https://github.com/nfc-tools/mfcuk"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mf/mfoc/package.nix b/pkgs/by-name/mf/mfoc/package.nix index 02e286a95a81..2b6a4a61bd6d 100644 --- a/pkgs/by-name/mf/mfoc/package.nix +++ b/pkgs/by-name/mf/mfoc/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "mfoc"; license = lib.licenses.gpl2Plus; homepage = "https://github.com/nfc-tools/mfoc"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mi/microsoft-identity-broker/package.nix b/pkgs/by-name/mi/microsoft-identity-broker/package.nix index 55e854c1cb75..8d18feca9dac 100644 --- a/pkgs/by-name/mi/microsoft-identity-broker/package.nix +++ b/pkgs/by-name/mi/microsoft-identity-broker/package.nix @@ -3,95 +3,81 @@ lib, fetchurl, dpkg, - openjdk11, - jnr-posix, - makeWrapper, - zip, + autoPatchelfHook, nixosTests, - bash, + dbus, + util-linux, + curl, + openssl, + libx11, + webkitgtk_4_1, + gtk3, + zlib, + pango, + harfbuzz, + atk, + cairo, + gdk-pixbuf, + libsoup_3, glib, - libxtst, - alsa-lib, + libsecret, + p11-kit, }: stdenv.mkDerivation rec { pname = "microsoft-identity-broker"; - version = "2.0.1"; + version = "2.5.0"; src = fetchurl { - url = "https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/m/microsoft-identity-broker/microsoft-identity-broker_${version}_amd64.deb"; - hash = "sha256-JheJnsu1ZxJbcpt0367FqfHVdwWWvPem2fm0i8s7MGE="; + url = "https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/m/microsoft-identity-broker/microsoft-identity-broker_${version}-noble_amd64.deb"; + hash = "sha256-zid9kjjz3mBfJFfiYUoqlIyQSsR041JN3Ib+JFSSEbE="; }; nativeBuildInputs = [ dpkg - makeWrapper - openjdk11 - zip + autoPatchelfHook ]; buildInputs = [ + dbus + util-linux + curl + openssl + libx11 + webkitgtk_4_1 + gtk3 + zlib + pango + harfbuzz + atk + cairo + gdk-pixbuf + libsoup_3 glib - libxtst - alsa-lib + libsecret + p11-kit + stdenv.cc.cc.lib ]; - buildPhase = '' - runHook preBuild - rm opt/microsoft/identity-broker/lib/jnr-posix-3.1.4.jar - runHook postBuild - ''; - installPhase = '' runHook preInstall - mkdir -p $out/lib/microsoft-identity-broker - cp -a opt/microsoft/identity-broker/lib/* $out/lib/microsoft-identity-broker - cp -a usr/* $out - for jar in $out/lib/microsoft-identity-broker/*.jar; do - classpath="$classpath:$jar" - done - classpath="$classpath:${jnr-posix}/share/java/jnr-posix-${jnr-posix.version}.jar" mkdir -p $out/bin - makeWrapper ${openjdk11}/bin/java $out/bin/microsoft-identity-broker \ - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \ - --add-flags "-classpath $classpath" \ - --add-flags "-Xmx256m -Xss256k -XX:+UseParallelGC -XX:ParallelGCThreads=1" \ - --add-flags "-verbose" \ - --add-flags "-Djava.net.useSystemProxies=true" \ - --add-flags "com.microsoft.identity.broker.service.IdentityBrokerService" - - makeWrapper ${openjdk11}/bin/java $out/bin/microsoft-identity-device-broker \ - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \ - --add-flags "-classpath $classpath" \ - --add-flags "-Xmx256m -Xss256k -XX:+UseParallelGC -XX:ParallelGCThreads=1" \ - --add-flags "-verbose" \ - --add-flags "-Djava.net.useSystemProxies=true" \ - --add-flags "com.microsoft.identity.broker.service.DeviceBrokerService" + cp -a opt/microsoft/identity-broker/bin/* $out/bin/ + cp -a usr/* $out/ runHook postInstall ''; postInstall = '' - substituteInPlace \ - $out/lib/systemd/user/microsoft-identity-broker.service \ - $out/lib/systemd/system/microsoft-identity-device-broker.service \ - $out/share/dbus-1/system-services/com.microsoft.identity.devicebroker1.service \ - $out/share/dbus-1/services/com.microsoft.identity.broker1.service \ - --replace \ - ExecStartPre=sh \ - ExecStartPre=${bash}/bin/sh \ - --replace \ - ExecStartPre=!sh \ - ExecStartPre=!${bash}/bin/sh \ - --replace \ - /opt/microsoft/identity-broker/bin/microsoft-identity-broker \ - $out/bin/microsoft-identity-broker \ - --replace \ + substituteInPlace $out/lib/systemd/system/microsoft-identity-device-broker.service \ + --replace-fail \ /opt/microsoft/identity-broker/bin/microsoft-identity-device-broker \ - $out/bin/microsoft-identity-device-broker \ - --replace \ - /usr/lib/jvm/java-11-openjdk-amd64 \ - ${openjdk11} + $out/bin/microsoft-identity-device-broker + + substituteInPlace $out/share/dbus-1/services/com.microsoft.identity.broker1.service \ + --replace-fail \ + /opt/microsoft/identity-broker/bin/microsoft-identity-broker \ + $out/bin/microsoft-identity-broker ''; passthru = { diff --git a/pkgs/by-name/mi/microsoft-identity-broker/update.sh b/pkgs/by-name/mi/microsoft-identity-broker/update.sh index ecd363cfc409..56685910aa71 100755 --- a/pkgs/by-name/mi/microsoft-identity-broker/update.sh +++ b/pkgs/by-name/mi/microsoft-identity-broker/update.sh @@ -1,30 +1,21 @@ #! /usr/bin/env nix-shell -#! nix-shell -i bash -p curl gzip dpkg common-updater-scripts +#! nix-shell -i bash -p curl common-updater-scripts -index_file=$(curl -sL https://packages.microsoft.com/ubuntu/22.04/prod/dists/jammy/main/binary-amd64/Packages.gz | gzip -dc) +set -euo pipefail -latest_version="0" +# Scrape the pool directory since Microsoft doesn't keep Packages.gz up to date +pool_url="https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/m/microsoft-identity-broker/" +pool_listing=$(curl -sL "$pool_url") -echo "$index_file" | while read -r line; do - if [[ "$line" =~ ^Package:[[:space:]]*(.*) ]]; then - Package="${BASH_REMATCH[1]}" - fi - if [[ "$line" =~ ^Version:[[:space:]]*(.*) ]]; then - Version="${BASH_REMATCH[1]}" - fi - if [[ "$line" =~ ^SHA256:[[:space:]]*(.*) ]]; then - SHA256="${BASH_REMATCH[1]}" - fi +# Extract version from filenames like: microsoft-identity-broker_2.5.0-noble_amd64.deb +latest_version=$(echo "$pool_listing" \ + | grep -oP 'microsoft-identity-broker_\K[0-9]+\.[0-9]+\.[0-9]+' \ + | sort -V \ + | tail -n1) - if ! [[ "$line" ]] && [[ "${Package}" == "microsoft-identity-broker" ]]; then - if ( dpkg --compare-versions ${Version} gt ${latest_version} ); then - latest_version="${Version}" - sri_hash=$(nix-hash --to-sri --type sha256 "$SHA256") +if [[ -z "$latest_version" ]]; then + echo "Failed to find any versions" >&2 + exit 1 +fi - echo $latest_version $sri_hash - fi - - Package="" - Version="" - fi -done | tail -n 1 | (read version hash; update-source-version microsoft-identity-broker $version $hash) +update-source-version microsoft-identity-broker "$latest_version" --file="$(dirname "$0")/package.nix" diff --git a/pkgs/by-name/mi/minipro/package.nix b/pkgs/by-name/mi/minipro/package.nix index 9f37f027622d..d112817247b6 100644 --- a/pkgs/by-name/mi/minipro/package.nix +++ b/pkgs/by-name/mi/minipro/package.nix @@ -4,21 +4,29 @@ fetchFromGitLab, pkg-config, libusb1, + util-linux, + zlib, }: stdenv.mkDerivation (finalAttrs: { pname = "minipro"; - version = "0.7.2"; + version = "0.7.4"; src = fetchFromGitLab { owner = "DavidGriffith"; repo = "minipro"; rev = finalAttrs.version; - hash = "sha256-NIaBN+T/EzYBhBtBEIvIAmqmksYDDiMJsWm9zCzZOxE="; + hash = "sha256-2Vi4NAKh+6N/at09egjS04ankEXnSHzsAIFSIau7jNc="; }; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ libusb1 ]; + nativeBuildInputs = [ + pkg-config + util-linux + ]; + buildInputs = [ + libusb1 + zlib + ]; makeFlags = [ "VERSION=${finalAttrs.version}" "PREFIX=$(out)" diff --git a/pkgs/by-name/mo/modsecurity_standalone/package.nix b/pkgs/by-name/mo/modsecurity_standalone/package.nix index 58f6d6bbe899..f880488b6268 100644 --- a/pkgs/by-name/mo/modsecurity_standalone/package.nix +++ b/pkgs/by-name/mo/modsecurity_standalone/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Open source, cross-platform web application firewall (WAF)"; license = lib.licenses.asl20; homepage = "https://github.com/owasp-modsecurity/ModSecurity"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/mo/mongodb-tools/package.nix b/pkgs/by-name/mo/mongodb-tools/package.nix index def5a73edcf3..5cfc8988eea5 100644 --- a/pkgs/by-name/mo/mongodb-tools/package.nix +++ b/pkgs/by-name/mo/mongodb-tools/package.nix @@ -6,6 +6,7 @@ pkg-config, libpcap, nix-update-script, + krb5, }: buildGoModule (finalAttrs: { @@ -25,6 +26,7 @@ buildGoModule (finalAttrs: { buildInputs = [ openssl libpcap + krb5 ]; # Mongodb incorrectly names all of their binaries main @@ -47,7 +49,7 @@ buildGoModule (finalAttrs: { runHook preBuild ${lib.concatMapStrings (t: '' - go build -o "$out/bin/${t}" -tags ssl -ldflags "-s -w" ./${t}/main + go build -o "$out/bin/${t}" -tags "gssapi ssl" -ldflags "-s -w" ./${t}/main '') tools} runHook postBuild diff --git a/pkgs/by-name/my/mycelium/package.nix b/pkgs/by-name/my/mycelium/package.nix index e9aac64f3c67..6bc51e7dd609 100644 --- a/pkgs/by-name/my/mycelium/package.nix +++ b/pkgs/by-name/my/mycelium/package.nix @@ -10,7 +10,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "mycelium"; - version = "0.7.1"; + version = "0.7.3"; sourceRoot = "${finalAttrs.src.name}/myceliumd"; @@ -18,10 +18,10 @@ rustPlatform.buildRustPackage (finalAttrs: { owner = "threefoldtech"; repo = "mycelium"; rev = "v${finalAttrs.version}"; - hash = "sha256-9/9vPUGIEGzbD8uMu3J8uQvNItc7UB4+X21riYjtDD8="; + hash = "sha256-WB08dcQiz9byHNKu3ObyiQ99h18osOMeKe5hdvVaeqw="; }; - cargoHash = "sha256-F8zHaFDOfgTolW1tO4T8QpGaPoN3kehhqKgwv2KouRM="; + cargoHash = "sha256-Wo+J0aVGiS4d1oipvrvV0abdWtHQj8iJozFM7Fj/jNs="; nativeBuildInputs = [ versionCheckHook ]; diff --git a/pkgs/by-name/ne/neo4j/package.nix b/pkgs/by-name/ne/neo4j/package.nix index 0c48d301834a..40d095018850 100644 --- a/pkgs/by-name/ne/neo4j/package.nix +++ b/pkgs/by-name/ne/neo4j/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Highly scalable, robust (fully ACID) native graph database"; homepage = "https://neo4j.com/"; license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/no/noctalia-shell/package.nix b/pkgs/by-name/no/noctalia-shell/package.nix index a4e2a474ca73..2475dc3d3c74 100644 --- a/pkgs/by-name/no/noctalia-shell/package.nix +++ b/pkgs/by-name/no/noctalia-shell/package.nix @@ -19,6 +19,7 @@ wget, gpu-screen-recorder, python3, + wayland-scanner, # calendar support evolution-data-server, @@ -64,13 +65,13 @@ let in stdenvNoCC.mkDerivation (finalAttrs: { pname = "noctalia-shell"; - version = "4.3.0"; + version = "4.4.1"; src = fetchFromGitHub { owner = "noctalia-dev"; repo = "noctalia-shell"; tag = "v${finalAttrs.version}"; - hash = "sha256-u+M2dCw9PznZTgn51DwHpX4VcU9ZC9Acub7qKhCpr3c="; + hash = "sha256-ozr4zO+T7o7FkPRTLpAymnb3K9+hc9OIN1lq0i5oWbs="; }; nativeBuildInputs = [ @@ -100,6 +101,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { preFixup = '' qtWrapperArgs+=( --prefix PATH : ${lib.makeBinPath runtimeDeps} + --prefix XDG_DATA_DIRS : ${wayland-scanner}/share --add-flags "-p $out/share/noctalia-shell" ${lib.optionalString calendarSupport "--prefix GI_TYPELIB_PATH : ${giTypelibPath}"} ) @@ -108,6 +110,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; meta = { + changelog = "https://github.com/noctalia-dev/noctalia-shell/releases/tag/v${finalAttrs.version}"; description = "Sleek and minimal desktop shell thoughtfully crafted for Wayland, built with Quickshell"; homepage = "https://github.com/noctalia-dev/noctalia-shell"; license = lib.licenses.mit; diff --git a/pkgs/by-name/nu/numix-cursor-theme/package.nix b/pkgs/by-name/nu/numix-cursor-theme/package.nix index e9a3bf1a11dd..9da7482f0845 100644 --- a/pkgs/by-name/nu/numix-cursor-theme/package.nix +++ b/pkgs/by-name/nu/numix-cursor-theme/package.nix @@ -37,6 +37,6 @@ stdenvNoCC.mkDerivation rec { homepage = "https://numixproject.github.io"; license = lib.licenses.gpl3; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix b/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix index 5caded156795..a079493a602f 100644 --- a/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix +++ b/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix @@ -58,6 +58,6 @@ stdenv.mkDerivation (finalAttrs: { downloadPage = "https://github.com/Ferdi265/numix-solarized-gtk-theme/releases"; license = lib.licenses.gpl3Only; platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.offline ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ny/nyx/package.nix b/pkgs/by-name/ny/nyx/package.nix index f64f4f173cf7..5620551e560b 100644 --- a/pkgs/by-name/ny/nyx/package.nix +++ b/pkgs/by-name/ny/nyx/package.nix @@ -28,6 +28,6 @@ python3Packages.buildPythonApplication (finalAttrs: { mainProgram = "nyx"; homepage = "https://nyx.torproject.org/"; license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/oc/octorus/package.nix b/pkgs/by-name/oc/octorus/package.nix index d4b221ecabae..f468ceeed8af 100644 --- a/pkgs/by-name/oc/octorus/package.nix +++ b/pkgs/by-name/oc/octorus/package.nix @@ -12,7 +12,7 @@ rustPlatform.buildRustPackage (finalAttrs: { src = fetchFromGitHub { owner = "ushironoko"; repo = "octorus"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-20HVES8XgZEgKIijTzo9rV5IRfhyZlY1noX6yHSUf8g="; }; @@ -23,6 +23,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { description = "TUI PR review tool for GitHub"; homepage = "https://github.com/ushironoko/octorus"; + changelog = "https://github.com/ushironoko/octorus/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ matthiasbeyer diff --git a/pkgs/by-name/od/odiff/package.nix b/pkgs/by-name/od/odiff/package.nix index 4aca5a474e5f..ddb2ca5aac25 100644 --- a/pkgs/by-name/od/odiff/package.nix +++ b/pkgs/by-name/od/odiff/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/dmtrKovalenko/odiff/releases"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ ddogfoodd ]; - platforms = lib.platforms.linux; + platforms = (lib.platforms.linux ++ lib.platforms.darwin); mainProgram = "odiff"; }; }) diff --git a/pkgs/by-name/on/oniux/package.nix b/pkgs/by-name/on/oniux/package.nix index 30ceeb04a62c..b58531ed80c4 100644 --- a/pkgs/by-name/on/oniux/package.nix +++ b/pkgs/by-name/on/oniux/package.nix @@ -7,17 +7,17 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "oniux"; - version = "0.7.0"; + version = "0.8.1"; src = fetchFromGitLab { domain = "gitlab.torproject.org"; owner = "tpo/core"; repo = "oniux"; tag = "v${finalAttrs.version}"; - hash = "sha256-MUSLyNKJTLwFxDLglNN9YoX58yBDrtW2Atds/zvnmFY="; + hash = "sha256-Z+uryz2Zc6VbnwAG7FRm/ghS8rZO6n75c4/4IGWaMKI="; }; - cargoHash = "sha256-MoAjUn6rBiIK3sZDEcJjRZdfFOTSUT4/eeC3ymsQs14="; + cargoHash = "sha256-3ihfoxKS1QJONbCXivbLSAPkbSdsNqaOZEQXL5GHPiM="; nativeBuildInputs = [ perl diff --git a/pkgs/by-name/op/openrct2/package.nix b/pkgs/by-name/op/openrct2/package.nix index f23dcfd47d29..2617d10b9b95 100644 --- a/pkgs/by-name/op/openrct2/package.nix +++ b/pkgs/by-name/op/openrct2/package.nix @@ -34,18 +34,18 @@ }: let - openrct2-version = "0.4.30"; + openrct2-version = "0.4.31"; # Those versions MUST match the pinned versions within the CMakeLists.txt # file. The REPLAYS repository from the CMakeLists.txt is not necessary. - objects-version = "1.7.5"; + objects-version = "1.7.6"; openmsx-version = "1.6.1"; opensfx-version = "1.0.6"; title-sequences-version = "0.4.26"; objects = fetchurl { url = "https://github.com/OpenRCT2/objects/releases/download/v${objects-version}/objects.zip"; - hash = "sha256-yLnTA5qSD2fK8VsJ6DEsxPgNWe1/4CiGJbnM7e9gZ5c="; + hash = "sha256-asoutEH76MAi/4TVn7Ue1+pXd1ZkCXDcmJ6raF/0VpY="; }; openmsx = fetchurl { url = "https://github.com/OpenRCT2/OpenMusic/releases/download/v${openmsx-version}/openmusic.zip"; @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "OpenRCT2"; repo = "OpenRCT2"; tag = "v${openrct2-version}"; - hash = "sha256-dlSfH1E8tFaKNaIACiiWineV6CW2Rrv7qtEHGP4cfkM="; + hash = "sha256-jXcB2lwf/2O+TMSakp32it6T8Fg0e5QFcbMU89WoMjU="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/op/openshift/package.nix b/pkgs/by-name/op/openshift/package.nix index ff4a9677fd3f..ec71cef12a5e 100644 --- a/pkgs/by-name/op/openshift/package.nix +++ b/pkgs/by-name/op/openshift/package.nix @@ -66,7 +66,6 @@ buildGoModule (finalAttrs: { homepage = "http://www.openshift.org"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline moretea stehessel ]; diff --git a/pkgs/by-name/ov/overskride/package.nix b/pkgs/by-name/ov/overskride/package.nix index 47b0741e7cc5..8dc3d1c67e52 100644 --- a/pkgs/by-name/ov/overskride/package.nix +++ b/pkgs/by-name/ov/overskride/package.nix @@ -19,13 +19,13 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "overskride"; - version = "0.6.5"; + version = "0.6.6"; src = fetchFromGitHub { owner = "kaii-lb"; repo = "overskride"; tag = "v${finalAttrs.version}"; - hash = "sha256-q37nKP18E8aDlTlh2REgeg40KH6orD6QY+ZlDKHHC20="; + hash = "sha256-JKYf0172sK/+IqtQqmeHOwC/P563ww+stEc3gxNwe/I="; }; cargoHash = "sha256-q1g+6JFW+euYCq2uMYQn4R0AP4yt5/cJoP88AXg9NLw="; @@ -72,7 +72,10 @@ rustPlatform.buildRustPackage (finalAttrs: { changelog = "https://github.com/kaii-lb/overskride/blob/v${finalAttrs.version}/CHANGELOG.md"; license = lib.licenses.gpl3Only; mainProgram = "overskride"; - maintainers = with lib.maintainers; [ mrcjkb ]; + maintainers = with lib.maintainers; [ + mrcjkb + ilkecan + ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pa/pachyderm/package.nix b/pkgs/by-name/pa/pachyderm/package.nix index c79d0ca00b8d..fe7b49b712b8 100644 --- a/pkgs/by-name/pa/pachyderm/package.nix +++ b/pkgs/by-name/pa/pachyderm/package.nix @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { description = "Containerized Data Analytics"; homepage = "https://www.pachyderm.com/"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; mainProgram = "pachctl"; }; }) diff --git a/pkgs/by-name/pa/paisa/package.nix b/pkgs/by-name/pa/paisa/package.nix index 20a06bdae864..5accc9c82040 100644 --- a/pkgs/by-name/pa/paisa/package.nix +++ b/pkgs/by-name/pa/paisa/package.nix @@ -26,23 +26,23 @@ let in buildGoModule (finalAttrs: { pname = "paisa"; - version = "0.7.3"; + version = "0.7.4"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "paisa"; tag = "v${finalAttrs.version}"; - hash = "sha256-nJpyqEOlXNvnMvheWtfUMARBgQRk8TpXHyVsXDxJ3oo="; + hash = "sha256-GuD0X1Im8pc8arVX/c2KMBZwp/yXyaqPnRObvPe4G5c="; }; subPackages = [ "." ]; - vendorHash = "sha256-KnHJ6+aMahTeNdbRcRAgBERGVYen/tM/tDcFI/NyLdE="; + vendorHash = "sha256-5jrxI+zSKbopGs5GmGVyqQcMHNZJbCsiFEH/LPXWxpk="; frontend = buildNpmPackage' { pname = "paisa-frontend"; inherit (finalAttrs) version src; - npmDepsHash = "sha256-8LPW9pcipVMWuZ4wOlpAOaRdT5o1gom39gqcfmhY1eE="; + npmDepsHash = "sha256-86LvGTSs2PaxrYMGaU7yOUGiAMZY1MfFIexpYVNwvZ8="; buildInputs = [ # needed for building node-canvas from source which is a dependency of diff --git a/pkgs/by-name/pd/pdfding/package.nix b/pkgs/by-name/pd/pdfding/package.nix index 30099f6978b0..d8ab658b72ee 100644 --- a/pkgs/by-name/pd/pdfding/package.nix +++ b/pkgs/by-name/pd/pdfding/package.nix @@ -26,8 +26,8 @@ python.pkgs.buildPythonPackage (finalAttrs: { # fixes two tests, remove patch in the next version # https://github.com/mrmn2/PdfDing/pull/248 (fetchpatch2 { - url = "https://github.com/mrmn2/PdfDing/pull/248/commits/8f6900dddd1dbbe1a1024a484f63b792dd022f99.patch?full_index=1"; - hash = "sha256-5oUC2TKL4X5IFy/41qViaafyUr4+bLBIovk9AWQmxZc="; + url = "https://github.com/mrmn2/PdfDing/commit/24df5a82ffb1d60162978791b716f67d20128a22.patch?full_index=1"; + hash = "sha256-N3FtPQGSOFeUbVcinXK9kJM6hZOn4YdJJVWe4VXb8pE="; }) ]; diff --git a/pkgs/by-name/ph/phpstan/package.nix b/pkgs/by-name/ph/phpstan/package.nix index ca6abe46ec3e..37cc00d8d722 100644 --- a/pkgs/by-name/ph/phpstan/package.nix +++ b/pkgs/by-name/ph/phpstan/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "phpstan"; - version = "2.1.38"; + version = "2.1.39"; src = fetchFromGitHub { owner = "phpstan"; repo = "phpstan"; tag = finalAttrs.version; - hash = "sha256-yN/pnY0kVTHSb7Pi8LQGsLWvc/f3gfVgIwf7n1ty/UI="; + hash = "sha256-aOAD4ZDjsm47tn44qgHnQEx9D04qAI5ErRG/oP/h1Nk="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ph/phpunit/package.nix b/pkgs/by-name/ph/phpunit/package.nix index 885ea20c2294..bab902f14162 100644 --- a/pkgs/by-name/ph/phpunit/package.nix +++ b/pkgs/by-name/ph/phpunit/package.nix @@ -8,16 +8,16 @@ php.buildComposerProject2 (finalAttrs: { pname = "phpunit"; - version = "12.5.8"; + version = "13.0.2"; src = fetchFromGitHub { owner = "sebastianbergmann"; repo = "phpunit"; tag = finalAttrs.version; - hash = "sha256-93y2V+QgsjQb1is91kTbxcu1dY8MyM474qIpGRa0pp0="; + hash = "sha256-xNSw4gG0KrnyCplDvZNJeHyg6CTWli7rEA4JzZCcvFo="; }; - vendorHash = "sha256-q5qTQRxxsiE+B22LU+npM4ada0ddAt2f7KNz+cb6yYY="; + vendorHash = "sha256-McdSiXpJHOURYvaiJXOcW03h/7SeBwDVx0EPbLAInvk="; passthru = { updateScript = nix-update-script { }; diff --git a/pkgs/by-name/pi/pineapple-pictures/package.nix b/pkgs/by-name/pi/pineapple-pictures/package.nix index 0b8e543982aa..6ff8994dd0b1 100644 --- a/pkgs/by-name/pi/pineapple-pictures/package.nix +++ b/pkgs/by-name/pi/pineapple-pictures/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "pineapple-pictures"; - version = "1.3.0"; + version = "1.4.0"; src = fetchFromGitHub { owner = "BLumia"; repo = "pineapple-pictures"; rev = finalAttrs.version; - hash = "sha256-Ek+/ZV0bagh+V7+3z1cZIqGRWsgY2oZSzqvvfuKpggU="; + hash = "sha256-Eiljopa2DF8KIzekGlwMF+MzJboo7E/BjJ0/KFEyOYc="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/pr/prometheus-solaredge-exporter/package.nix b/pkgs/by-name/pr/prometheus-solaredge-exporter/package.nix index bfee635449bb..2fd933f2dcb4 100644 --- a/pkgs/by-name/pr/prometheus-solaredge-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-solaredge-exporter/package.nix @@ -7,13 +7,13 @@ }: buildGoModule (finalAttrs: { pname = "prometheus-solaredge-exporter"; - version = "0.1.7"; + version = "0.1.8"; src = fetchFromGitHub { owner = "paepckehh"; repo = "solaredge_exporter"; tag = "v${finalAttrs.version}"; - hash = "sha256-nWx+8meEzdMuOMEYiV+/VxDosFA/LM8qwWz4VbRzZds="; + hash = "sha256-feaEnZuELOj8zIXm+Q/7CKbb5aOjixKG6bHAeNGy5cI="; }; ldflags = [ @@ -26,7 +26,7 @@ buildGoModule (finalAttrs: { "-X github.com/prometheus/common/version.Version=${finalAttrs.version}" ]; - vendorHash = "sha256-8dAC/NydnpusEN4mTRewSvLjaF3pMlrVd+wo/A/S0fM="; + vendorHash = "sha256-G8IipSGlui0pDMrPBlixxIC2osGVmKOGu+8WDYpK8Ak="; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/ra/rainfrog/package.nix b/pkgs/by-name/ra/rainfrog/package.nix index 66ae2c5acc74..5b67d06b8697 100644 --- a/pkgs/by-name/ra/rainfrog/package.nix +++ b/pkgs/by-name/ra/rainfrog/package.nix @@ -7,7 +7,7 @@ rainfrog, }: let - version = "0.3.14"; + version = "0.3.15"; in rustPlatform.buildRustPackage { inherit version; @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage { owner = "achristmascarl"; repo = "rainfrog"; tag = "v${version}"; - hash = "sha256-DeLcn+0L3e1SXG5oIwUzbsNHtQeyF8o+OMbGcFJX2KY="; + hash = "sha256-XW2jMiQif0Q9IV8rDw44n/7OTfPkO+XpAb0AVobddDM="; }; - cargoHash = "sha256-0IV3OyREYPFsgGuG+RIr5dPPhha2RktjiUHSFpRofx8="; + cargoHash = "sha256-+B5hPtgXoe3mNiOsarivk8sZ6RS6re3Cw/LO4fzuX9o="; passthru = { tests.version = testers.testVersion { diff --git a/pkgs/by-name/re/redis-dump/package.nix b/pkgs/by-name/re/redis-dump/package.nix index 269813ff0541..42334fc89b0e 100644 --- a/pkgs/by-name/re/redis-dump/package.nix +++ b/pkgs/by-name/re/redis-dump/package.nix @@ -19,7 +19,6 @@ bundlerApp { homepage = "https://delanotes.com/redis-dump/"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ - offline nicknovitski ]; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/re/release-plz/package.nix b/pkgs/by-name/re/release-plz/package.nix index 7d4798a8e026..8cb13b2b97c6 100644 --- a/pkgs/by-name/re/release-plz/package.nix +++ b/pkgs/by-name/re/release-plz/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "release-plz"; - version = "0.3.154"; + version = "0.3.155"; src = fetchFromGitHub { owner = "MarcoIeni"; repo = "release-plz"; rev = "release-plz-v${finalAttrs.version}"; - hash = "sha256-sg5i7JwDkhvEBYZtm6USCDDWWnI97IIKeXHhpDP3V/o="; + hash = "sha256-rgi/qh9tZlJFIHc01RRvUFD4sRWOTX1ScD2FwjAhL14="; }; - cargoHash = "sha256-O+JdsbpxDsdEAFdkvxXCNkjIAPaJvVKkbP8FXK542yo="; + cargoHash = "sha256-VkQeNIvc6Ms1qBuqMfTQSr9p6yl3rYtWJbw4b9WaVEg="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/ro/rootlesskit/package.nix b/pkgs/by-name/ro/rootlesskit/package.nix index 30372f44bbcf..c252c68c6bf8 100644 --- a/pkgs/by-name/ro/rootlesskit/package.nix +++ b/pkgs/by-name/ro/rootlesskit/package.nix @@ -28,7 +28,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/rootless-containers/rootlesskit"; description = ''Kind of Linux-native "fake root" utility, made for mainly running Docker and Kubernetes as an unprivileged user''; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ru/runc/package.nix b/pkgs/by-name/ru/runc/package.nix index e9398f5a93e0..32eaee8bbfc7 100644 --- a/pkgs/by-name/ru/runc/package.nix +++ b/pkgs/by-name/ru/runc/package.nix @@ -72,7 +72,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/opencontainers/runc"; description = "CLI tool for spawning and running containers according to the OCI specification"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; teams = [ lib.teams.podman ]; platforms = lib.platforms.linux; mainProgram = "runc"; diff --git a/pkgs/by-name/sa/sauce-connect/package.nix b/pkgs/by-name/sa/sauce-connect/package.nix index 27f558f8f3ae..d2b6114a21f3 100644 --- a/pkgs/by-name/sa/sauce-connect/package.nix +++ b/pkgs/by-name/sa/sauce-connect/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; homepage = "https://docs.saucelabs.com/reference/sauce-connect/"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = builtins.attrNames passthru.sources; }; } diff --git a/pkgs/by-name/se/selendroid/package.nix b/pkgs/by-name/se/selendroid/package.nix index 254c7c610f65..656297f77272 100644 --- a/pkgs/by-name/se/selendroid/package.nix +++ b/pkgs/by-name/se/selendroid/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation { meta = { homepage = "https://selendroid.io/"; description = "Test automation for native or hybrid Android apps and the mobile web"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.all; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.asl20; diff --git a/pkgs/by-name/se/selenium-server-standalone/package.nix b/pkgs/by-name/se/selenium-server-standalone/package.nix index 121bcac0d112..5bed04bafcbd 100644 --- a/pkgs/by-name/se/selenium-server-standalone/package.nix +++ b/pkgs/by-name/se/selenium-server-standalone/package.nix @@ -44,7 +44,6 @@ stdenv.mkDerivation rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ coconnor - offline ]; mainProgram = "selenium-server"; platforms = lib.platforms.all; diff --git a/pkgs/by-name/se/seyren/package.nix b/pkgs/by-name/se/seyren/package.nix index d36bf1469e4a..dbdbad552932 100644 --- a/pkgs/by-name/se/seyren/package.nix +++ b/pkgs/by-name/se/seyren/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/scobal/seyren"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.asl20; - maintainers = [ lib.maintainers.offline ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/su/super-productivity/package.nix b/pkgs/by-name/su/super-productivity/package.nix index e419031456b5..7c36dc1a8a02 100644 --- a/pkgs/by-name/su/super-productivity/package.nix +++ b/pkgs/by-name/su/super-productivity/package.nix @@ -172,7 +172,6 @@ buildNpmPackage rec { license = lib.licenses.mit; platforms = lib.platforms.all; maintainers = with lib.maintainers; [ - offline pineapplehunter tebriel ]; diff --git a/pkgs/by-name/t/t/package.nix b/pkgs/by-name/t/t/package.nix index f642ff0f2317..fd30f6059c74 100644 --- a/pkgs/by-name/t/t/package.nix +++ b/pkgs/by-name/t/t/package.nix @@ -16,7 +16,6 @@ bundlerApp { homepage = "http://sferik.github.io/t/"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline nicknovitski ]; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/te/terraria-server/package.nix b/pkgs/by-name/te/terraria-server/package.nix index f87fa2089ddc..5b8a92c0acec 100644 --- a/pkgs/by-name/te/terraria-server/package.nix +++ b/pkgs/by-name/te/terraria-server/package.nix @@ -10,12 +10,12 @@ stdenv.mkDerivation (finalAttrs: { pname = "terraria-server"; - version = "1.4.5.4"; + version = "1.4.5.5"; urlVersion = lib.replaceStrings [ "." ] [ "" ] finalAttrs.version; src = fetchurl { url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${finalAttrs.urlVersion}.zip"; - hash = "sha256-VLBjt8t3Z/aVZJs9gfiQLEHVx0/CsgNiaO5nBrKysHI="; + hash = "sha256-BmLT5ATBviSfYuc3Cx/aMHUNTBs6S56GHJF8YIJXhtU="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/te/texturepacker/package.nix b/pkgs/by-name/te/texturepacker/package.nix index c139d7f19a7c..da2d661bdc4d 100644 --- a/pkgs/by-name/te/texturepacker/package.nix +++ b/pkgs/by-name/te/texturepacker/package.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "texturepacker"; - version = "7.11.0"; + version = "7.12.0"; src = fetchurl { url = "https://www.codeandweb.com/download/texturepacker/${finalAttrs.version}/TexturePacker-${finalAttrs.version}.deb"; - hash = "sha256-s0d9kcsvW3r6kkz5qIxYDtIMD2Kzqz/tCSWvwxeJFnE="; + hash = "sha256-KevG6mr6WGu9rKRjsPtDweJeN2KMrOhisxxb+vqNawI="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/th/thc-hydra/package.nix b/pkgs/by-name/th/thc-hydra/package.nix index 01fb4d2b1595..b27d967fabb5 100644 --- a/pkgs/by-name/th/thc-hydra/package.nix +++ b/pkgs/by-name/th/thc-hydra/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/vanhauser-thc/thc-hydra"; # https://www.thc.org/ changelog = "https://github.com/vanhauser-thc/thc-hydra/raw/v${version}/CHANGES"; license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tr/tree/package.nix b/pkgs/by-name/tr/tree/package.nix index cd2aae2b06a8..da67f9a37411 100644 --- a/pkgs/by-name/tr/tree/package.nix +++ b/pkgs/by-name/tr/tree/package.nix @@ -25,13 +25,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "tree"; - version = "2.2.1"; + version = "2.3.1"; src = fetchFromGitLab { owner = "OldManProgrammer"; repo = "unix-tree"; rev = finalAttrs.version; - hash = "sha256-sC3XdZWJSXyCIYr/Y41ogz5bNBTfwKjOFtYwhayXPhY="; + hash = "sha256-ks3bj916tDdizywQnZKNSAfA2AzWh3np2F6QN5eOzIc="; }; preConfigure = '' @@ -43,6 +43,11 @@ stdenv.mkDerivation (finalAttrs: { "PREFIX=${placeholder "out"}" ]; + outputs = [ + "out" + "man" + ]; + meta = { homepage = "https://oldmanprogrammer.net/source.php?dir=projects/tree"; description = "Command to produce a depth indented directory listing"; diff --git a/pkgs/by-name/tr/trufflehog/package.nix b/pkgs/by-name/tr/trufflehog/package.nix index f2f7381b680a..0de0ee3f0c7e 100644 --- a/pkgs/by-name/tr/trufflehog/package.nix +++ b/pkgs/by-name/tr/trufflehog/package.nix @@ -8,13 +8,13 @@ buildGoModule (finalAttrs: { pname = "trufflehog"; - version = "3.93.1"; + version = "3.93.2"; src = fetchFromGitHub { owner = "trufflesecurity"; repo = "trufflehog"; tag = "v${finalAttrs.version}"; - hash = "sha256-XGTPtvWpa9u7T/KtFwk/hE9x62j8J3dE34nRm4kF6HQ="; + hash = "sha256-1tgbkpxvE7XuQMH9+1vP4cWKnJ+7i90GB+6u9hfi018="; }; vendorHash = "sha256-U3pznVPh/nQ4YZ5y94VF+UeISXDaWJ/gTNrY8wqq2gQ="; diff --git a/pkgs/by-name/ty/typescript-go/package.nix b/pkgs/by-name/ty/typescript-go/package.nix index 7e93dad27791..69fff12763fa 100644 --- a/pkgs/by-name/ty/typescript-go/package.nix +++ b/pkgs/by-name/ty/typescript-go/package.nix @@ -10,17 +10,17 @@ let in buildGoModule { pname = "typescript-go"; - version = "0-unstable-2026-02-04"; + version = "0-unstable-2026-02-11"; src = fetchFromGitHub { owner = "microsoft"; repo = "typescript-go"; - rev = "e82299401a34fb312e225cb8fba4a97bec1a5f00"; - hash = "sha256-D/O2g40SgwA7zX5gxmrR4BlSOcKKd7hQ0AXJE+m/eWI="; + rev = "08cb84c68ae83b9def5e0132e05362e5061342ab"; + hash = "sha256-IvR7zHSl7kUmamQkGGrzdKJrdypnQe2a0X1YUyRYYTU="; fetchSubmodules = false; }; - vendorHash = "sha256-0IrEB52rj01HKreqbI/gMVeEHk5dxsNIrhm0Ze+aR44="; + vendorHash = "sha256-QNKXJ9HA8WlLlTxflLt0a/Y2Lt8NG1AnNmBOESYFyRI="; ldflags = [ "-s" diff --git a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml index 579635e87f8f..25f357341f16 100644 --- a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml +++ b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml @@ -960,6 +960,15 @@ license = [ ] homepage = "https://github.com/RodAlc24/typst-alterlang" +[ambivalent-amcis."0.1.0"] +url = "https://packages.typst.org/preview/ambivalent-amcis-0.1.0.tar.gz" +hash = "sha256-jVxi7UlJLY87Pj/5z9Pj27zNytIsK3Jo84Svukky3j8=" +typstDeps = [] +description = "A template for the 2026 Americas Conference for Information Systems (AMCIS 2026" +license = [ + "MIT", +] + [amlos."0.2.1"] url = "https://packages.typst.org/preview/amlos-0.2.1.tar.gz" hash = "sha256-dKIik7BOkCBjAphoTnO+cz/+HBLaaLu8mPrs/41AoS0=" @@ -1957,6 +1966,18 @@ license = [ ] homepage = "https://github.com/avonmoll/bamdone-rebuttal" +[bananote."0.1.2"] +url = "https://packages.typst.org/preview/bananote-0.1.2.tar.gz" +hash = "sha256-YKVBs9m2GCEFaVg2wRCauspIlDQjf4h9ieptAS8BKCU=" +typstDeps = [ + "pergamon_0_7_1", +] +description = "Nice template for research notes with splashes of yellow" +license = [ + "MIT", +] +homepage = "https://github.com/coli-saar/bananote" + [bananote."0.1.1"] url = "https://packages.typst.org/preview/bananote-0.1.1.tar.gz" hash = "sha256-CPSpHjKFiZQ2COV/AVrwpuFU7ZXGemgHDwYdX3ZI1PU=" @@ -2410,6 +2431,18 @@ license = [ ] homepage = "https://github.com/stuxf/basic-typst-resume-template" +[beam."0.1.1"] +url = "https://packages.typst.org/preview/beam-0.1.1.tar.gz" +hash = "sha256-JV6g1d684oTewhc0UfbQxHZvvPxUNLkBm0tB7PapoPM=" +typstDeps = [ + "cetz_0_4_2", +] +description = "A package to draw optical experiment setups with CeTZ" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bendix4620/beam" + [beam."0.1.0"] url = "https://packages.typst.org/preview/beam-0.1.0.tar.gz" hash = "sha256-ny6DDQNq444lIxhiU2J0G2oC7aZ3BC18wUgRXSpjxo8=" @@ -2432,6 +2465,16 @@ license = [ ] homepage = "https://github.com/Tikitikitikidesuka/typst-upm-report" +[beautiframe."0.1.0"] +url = "https://packages.typst.org/preview/beautiframe-0.1.0.tar.gz" +hash = "sha256-iPDcvqgkb8SyAUjGqbgAzNVeT/WIVH2poMH2JbZhXMY=" +typstDeps = [] +description = "Beautiful theorem-like environments for Typst with 7 distinctive styles" +license = [ + "MIT", +] +homepage = "https://github.com/nathan-ed/typst-package-beautiframe" + [beautiful-abs."0.1.0"] url = "https://packages.typst.org/preview/beautiful-abs-0.1.0.tar.gz" hash = "sha256-UEOg8aoRaKZRIJxU+UO8dwnDJQ0jR9rmUwNB9M8t8ak=" @@ -2442,6 +2485,16 @@ license = [ ] homepage = "https://github.com/judgeNotFound/beautiful-abs" +[beautitled."0.1.0"] +url = "https://packages.typst.org/preview/beautitled-0.1.0.tar.gz" +hash = "sha256-IeCkQhS6t+9cu3gaUpuJaWnG1PjPp0vq/zvAt3qe+uA=" +typstDeps = [] +description = "Beautiful title styling for Typst documents with 19 distinctive print-friendly themes for chapters, sections, and table of contents" +license = [ + "MIT", +] +homepage = "https://github.com/nathan-ed/typst-package-beautitled" + [bei-report."0.1.2"] url = "https://packages.typst.org/preview/bei-report-0.1.2.tar.gz" hash = "sha256-RSiylTKCCUKpDOlZu5qGuyO2ChADopYXNn7dU8FY1o8=" @@ -2580,6 +2633,16 @@ license = [ ] homepage = "https://github.com/garethwebber/business-report" +[blind-cvpr."0.7.0"] +url = "https://packages.typst.org/preview/blind-cvpr-0.7.0.tar.gz" +hash = "sha256-yfKFWeV6ptz2c8S9KxpfS9GRPwvxoYUfq6kORUDx3KE=" +typstDeps = [] +description = "CVPR-style paper template to publish at the Computer Vision and Pattern\nRecognition (CVPR) conferences" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + [blind-cvpr."0.5.0"] url = "https://packages.typst.org/preview/blind-cvpr-0.5.0.tar.gz" hash = "sha256-TQT7Zj0n7OJVfI9btjb/IRzS/1kXzETm6QGM0B5ldwI=" @@ -2992,6 +3055,16 @@ license = [ ] homepage = "https://github.com/bzindovic/typst-packages" +[booticons."0.0.1"] +url = "https://packages.typst.org/preview/booticons-0.0.1.tar.gz" +hash = "sha256-xOEHk6dxVzFtTT+72LPfofYv/NhT+XSLvJscrvQuoLM=" +typstDeps = [] +description = "A Typst library for Bootstrap icons" +license = [ + "MIT", +] +homepage = "https://github.com/DavZim/booticons" + [boxed-sheet."0.1.2"] url = "https://packages.typst.org/preview/boxed-sheet-0.1.2.tar.gz" hash = "sha256-xeb2CQ+zupfQ/rKYwjDuyczBucBibGaoo6dypoRI7ek=" @@ -3072,6 +3145,18 @@ license = [ ] homepage = "https://github.com/tndrle/briefs" +[brilliant-cv."3.1.2"] +url = "https://packages.typst.org/preview/brilliant-cv-3.1.2.tar.gz" +hash = "sha256-/EHDJJv0VnBISKE5WGklGh/UbpN4aodDVT6zG7pT6ec=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/yunanwg/brilliant-CV" + [brilliant-cv."3.1.1"] url = "https://packages.typst.org/preview/brilliant-cv-3.1.1.tar.gz" hash = "sha256-g+TrJAUxdMV6zola36MNWBweZRqzPlvc+BlwZ8bsEmg=" @@ -3200,6 +3285,19 @@ license = [ ] homepage = "https://github.com/mintyfrankie/brilliant-CV" +[buaa-unofficial-gradient."0.1.0"] +url = "https://packages.typst.org/preview/buaa-unofficial-gradient-0.1.0.tar.gz" +hash = "sha256-r1vqEn0wIA42BH6/BZ2Yc5YajTb8UjxHel3lChWBW8A=" +typstDeps = [ + "numbly_0_1_0", + "touying_0_6_1", +] +description = "A Typst template for BUAA slides based on Touying" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/Lyrics2196/BUAA-Slide" + [bubble."0.2.2"] url = "https://packages.typst.org/preview/bubble-0.2.2.tar.gz" hash = "sha256-XbhNC2LTKnWwtV4wvlAMcVlqcnnwDWxTawI1Wr9vsTQ=" @@ -4203,6 +4301,16 @@ license = [ ] homepage = "https://github.com/JamesxX/typst-chem-par" +[chemformula."0.1.2"] +url = "https://packages.typst.org/preview/chemformula-0.1.2.tar.gz" +hash = "sha256-ThOic6g0s6qEf0VGIvF6cG+9iMVTyMBFlKkq0qdZvCY=" +typstDeps = [] +description = "Extensible chemical formula formatter" +license = [ + "MIT", +] +homepage = "https://github.com/pacaunt/chemformula" + [chemformula."0.1.1"] url = "https://packages.typst.org/preview/chemformula-0.1.1.tar.gz" hash = "sha256-ARcBJtZEkawmU0DsIN/qjmZXYkH3C6N9NvUKTkExTo4=" @@ -4695,6 +4803,16 @@ license = [ ] homepage = "https://github.com/alexanderkoller/typst-citegeist" +[citrus."0.1.0"] +url = "https://packages.typst.org/preview/citrus-0.1.0.tar.gz" +hash = "sha256-WiLc7QsfM+Y+aU6L1OZtZpyiB6wSgoAMhCETxr1Lu14=" +typstDeps = [] +description = "Fresh citations for Typst — format bibliographies with standard CSL styles, plus CSL-M support" +license = [ + "MIT", +] +homepage = "https://github.com/pku-typst/citeproc-typst" + [cjk-spacer."0.2.0"] url = "https://packages.typst.org/preview/cjk-spacer-0.2.0.tar.gz" hash = "sha256-6vZi4AOIBDBg/MtB4zlD8RtqMLR4HjEk4iicXPRhFtU=" @@ -4870,6 +4988,16 @@ license = [ ] homepage = "https://github.com/Tinggaard/classic-aau-report" +[classic-jmlr."0.7.0"] +url = "https://packages.typst.org/preview/classic-jmlr-0.7.0.tar.gz" +hash = "sha256-V1LLHYWOcQ7yRuAmxeIGWoBJObJLAwk4qmUKRfStYj0=" +typstDeps = [] +description = "Paper template for submission to Journal of Machine Learning Research (JMLR" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + [classic-jmlr."0.4.0"] url = "https://packages.typst.org/preview/classic-jmlr-0.4.0.tar.gz" hash = "sha256-ataZOhYJA0GGAzZkY4jtLt0y0X5LoziBLPMLz9UodMM=" @@ -5004,6 +5132,16 @@ license = [ ] homepage = "https://github.com/matisiekpl/agh-typst" +[clean-ats-cv."0.1.0"] +url = "https://packages.typst.org/preview/clean-ats-cv-0.1.0.tar.gz" +hash = "sha256-jVcH0Qr1sPNGzhmbnkfbmBzHXGQ9XTrshoyAGtalx6Q=" +typstDeps = [] +description = "Clean, ATS-friendly CV layout with customizable colors and social icons" +license = [ + "MIT", +] +homepage = "https://github.com/NicolaiSchmid/clean-ats-cv" + [clean-cnam-template."1.5.0"] url = "https://packages.typst.org/preview/clean-cnam-template-1.5.0.tar.gz" hash = "sha256-fpReR0Q6bgtLtbGec8Tq6YNeoJH83kkS49BLT6oKV2U=" @@ -5487,6 +5625,20 @@ license = [ ] homepage = "https://github.com/sebaseb98/clean-math-thesis" +[clean-othaw."0.3.4"] +url = "https://packages.typst.org/preview/clean-othaw-0.3.4.tar.gz" +hash = "sha256-NJU8fIQovZDPNajUPygO5WDA35/jD0xQs+QuIVQhX14=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "A typst template for OTH Amberg-Weiden" +license = [ + "MIT", +] +homepage = "https://codeberg.org/ruebe5w/clean-othaw" + [clean-othaw."0.3.3"] url = "https://packages.typst.org/preview/clean-othaw-0.3.3.tar.gz" hash = "sha256-jMXlZ+EAURo5bKFzxQMRRjoNoWSpH6dTxZLaOKhj9jQ=" @@ -6359,6 +6511,15 @@ license = [ ] homepage = "https://github.com/sitandr/conchord" +[conforming-uio-master."0.1.0"] +url = "https://packages.typst.org/preview/conforming-uio-master-0.1.0.tar.gz" +hash = "sha256-7cE3JxQYCxEo30Z1XUzoTNTGhaIP+HP4jzfVhwsiphU=" +typstDeps = [] +description = "Unofficcial Master's thesis at the University of Oslo" +license = [ + "MIT-0", +] + [confy."0.1.0"] url = "https://packages.typst.org/preview/confy-0.1.0.tar.gz" hash = "sha256-YXaqkbSERTy8MXGWNSMFHloL5k1zdgz+5Kuss3vmJNY=" @@ -6675,6 +6836,30 @@ license = [ ] homepage = "https://github.com/hpdell/ctyp" +[ctz-euclide."0.1.5"] +url = "https://packages.typst.org/preview/ctz-euclide-0.1.5.tar.gz" +hash = "sha256-6u7S0x0Y+EU/1lrj5m0YyFb8VkaxEUw6Lp3jutpZBSc=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Euclidean geometry for Typst - A port of the LaTeX tkz-euclide package" +license = [ + "MIT", +] +homepage = "https://github.com/nathan-ed/typst-package-ctz-euclide" + +[ctz-euclide."0.1.0"] +url = "https://packages.typst.org/preview/ctz-euclide-0.1.0.tar.gz" +hash = "sha256-BvLslkzHYUwawLWOWhrwnc01A2+LFztzxiv3vjHqVus=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Euclidean geometry for Typst - A port of the LaTeX tkz-euclide package" +license = [ + "MIT", +] +homepage = "https://github.com/nathan-ed/typst-package-ctz-euclide" + [cumcm-muban."0.4.0"] url = "https://packages.typst.org/preview/cumcm-muban-0.4.0.tar.gz" hash = "sha256-+fYW/GtAfmYMg7cO9I7qrTEVqWcOu+EFl5I4w2IOvSI=" @@ -8396,6 +8581,18 @@ license = [ "MIT", ] +[eggs."0.4.1"] +url = "https://packages.typst.org/preview/eggs-0.4.1.tar.gz" +hash = "sha256-Q1SJ6d3rotXkPSYeR2IIncY/xHDssxTlIU6Tw6S3GUc=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Linguistic examples with minimalist syntax" +license = [ + "MIT", +] +homepage = "https://github.com/retroflexivity/typst-eggs" + [eggs."0.4.0"] url = "https://packages.typst.org/preview/eggs-0.4.0.tar.gz" hash = "sha256-10xJndDSuGguXs45dvb4oqXBYwGi2E5ZKRnQZI7MDLA=" @@ -8466,6 +8663,21 @@ license = [ ] homepage = "https://github.com/G0STG0D/typst-packages" +[elegant-culsc-record."0.11.0"] +url = "https://packages.typst.org/preview/elegant-culsc-record-0.11.0.tar.gz" +hash = "sha256-UVpD5wIMeVLkHIOWLgVAiFSQ86en+Zd69UGmEcOz3XM=" +typstDeps = [ + "cjk-spacer_0_2_0", + "cuti_0_4_0", + "pointless-size_0_1_2", + "tablem_0_3_0", +] +description = "全国大学生生命科学竞赛(科学探究类)实验记录 Typst 模板--A Template for Experiment Records of the China Undergraduate Life Sciences Contest (Scientific Exploration" +license = [ + "MIT", +] +homepage = "https://github.com/SchrodingerBlume/typst-culsc-record" + [elegant-paper."0.1.0"] url = "https://packages.typst.org/preview/elegant-paper-0.1.0.tar.gz" hash = "sha256-wZrzTcTsXAB4imihHMcViaUUT6KGa8PBJAe00Hg28l8=" @@ -9092,6 +9304,18 @@ license = [ "Unlicense", ] +[exercise-bank."0.3.0"] +url = "https://packages.typst.org/preview/exercise-bank-0.3.0.tar.gz" +hash = "sha256-OGVqtfbGPHHU/mmQV7Wd/3P8Ox5enOgpXfoy6Xj/k90=" +typstDeps = [ + "g-exam_0_4_4", +] +description = "Exercise management with solutions, metadata, filtering, and exercise banks for educational documents" +license = [ + "MIT", +] +homepage = "https://gitlab.com/nathan-ed/typst-package-exercise-bank" + [exercise-bank."0.2.0"] url = "https://packages.typst.org/preview/exercise-bank-0.2.0.tar.gz" hash = "sha256-zqy1AeIVMZAKjT8m858MRk+V4+63zE8ypMmbBeHsjxM=" @@ -9682,6 +9906,18 @@ license = [ ] homepage = "https://github.com/itpyi/typst-plot" +[fine-lncs."0.4.0"] +url = "https://packages.typst.org/preview/fine-lncs-0.4.0.tar.gz" +hash = "sha256-5MLCrwPQTIbHrqXURRf8VZyenO9kJIYvtjAvMmw7AHc=" +typstDeps = [ + "lemmify_0_1_8", +] +description = "An Springer's Lecture Notes in Computer Science (LNCS) styled template" +license = [ + "MIT", +] +homepage = "https://github.com/Jozott00/typst-fine-lncs" + [fine-lncs."0.3.0"] url = "https://packages.typst.org/preview/fine-lncs-0.3.0.tar.gz" hash = "sha256-NCbv7zaGp/2ECEG41d9x1WbyGTplRSX4OttVtpEksx8=" @@ -9835,6 +10071,19 @@ license = [ "MIT", ] +[fitchcraft."1.0.0"] +url = "https://packages.typst.org/preview/fitchcraft-1.0.0.tar.gz" +hash = "sha256-ZzMLGrRj4FVc6J7Vl/OXutFghurj73IwxoNBMAjpmzg=" +typstDeps = [ + "fitch_1_0_0", + "swank-tex_0_1_0", +] +description = "Fitch-style proof diagrams" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/ykrem/fitch" + [flagada."1.0.1"] url = "https://packages.typst.org/preview/flagada-1.0.1.tar.gz" hash = "sha256-B9yP1QmuOLMYa8KM3bzNya4evE3XN7xIlWAJqUazyh4=" @@ -10730,6 +10979,16 @@ license = [ ] homepage = "https://codeberg.org/T0mstone/typst-fruitify" +[fsb-thesis-unofficial."0.1.0"] +url = "https://packages.typst.org/preview/fsb-thesis-unofficial-0.1.0.tar.gz" +hash = "sha256-+0CueONkYg9g8sdK50JympjX7B23NpgUDu4/KBlpPfg=" +typstDeps = [] +description = "An Unofficial thesis template for FSB (FPT School of Business and Technology) students" +license = [ + "MIT", +] +homepage = "https://github.com/HSGamer/fsb-thesis-template" + [funarray."0.4.0"] url = "https://packages.typst.org/preview/funarray-0.4.0.tar.gz" hash = "sha256-PSl/2p8rEH7KxYuzs/gnUcUfWTQUHj9wODNwv8xmwlk=" @@ -10976,6 +11235,16 @@ license = [ ] homepage = "https://github.com/gakusyun/gakusyun-doc" +[gallus-hsg."1.0.1"] +url = "https://packages.typst.org/preview/gallus-hsg-1.0.1.tar.gz" +hash = "sha256-9BtFdepNeJ8mQJSgKhb+vH5IK8Lde8LyHDUCR0uQR+U=" +typstDeps = [] +description = "Thesis at the University of St. Gallen (HSG" +license = [ + "MIT", +] +homepage = "https://github.com/joshuabeny1999/unisg-thesis-template-typst" + [gallus-hsg."1.0.0"] url = "https://packages.typst.org/preview/gallus-hsg-1.0.0.tar.gz" hash = "sha256-A747wV1XUbuIclmAC39vvZ2pBXlVR2R7evhuajKNV4I=" @@ -11070,6 +11339,18 @@ license = [ ] homepage = "https://gitlab.com/john_t/typst-gantty" +[gb7714-bilingual."0.2.1"] +url = "https://packages.typst.org/preview/gb7714-bilingual-0.2.1.tar.gz" +hash = "sha256-D8MThGeRid4KaFnoQgNarGMeZYhDLKi/U2i+p32k8LE=" +typstDeps = [ + "citegeist_0_2_1", +] +description = "GB/T 7714-2015/2025 bilingual bibliography for Typst with automatic Chinese/English term switching" +license = [ + "MIT", +] +homepage = "https://github.com/pku-typst/gb7714-bilingual" + [gb7714-bilingual."0.2.0"] url = "https://packages.typst.org/preview/gb7714-bilingual-0.2.0.tar.gz" hash = "sha256-J/DvQzbIWSgw/6om0n3/VS1qGreGRynFUfCMDj5mOfA=" @@ -11135,6 +11416,16 @@ license = [ ] homepage = "https://codeberg.org/drloiseau/genealogy" +[genotypst."0.2.0"] +url = "https://packages.typst.org/preview/genotypst-0.2.0.tar.gz" +hash = "sha256-zUjV+blvFr/ve0LRQy2ANFGaHkwSHwh2sbk+vkJD16c=" +typstDeps = [] +description = "genotypst: A package for bioinformatics data analysis and visualization" +license = [ + "MIT", +] +homepage = "https://github.com/apcamargo/genotypst" + [genotypst."0.1.0"] url = "https://packages.typst.org/preview/genotypst-0.1.0.tar.gz" hash = "sha256-O5f4jepkN7aPRjAxjC//EEbnQ+354iwzw79L9OC8mgk=" @@ -11145,6 +11436,18 @@ license = [ ] homepage = "https://github.com/apcamargo/genotypst" +[gentle-clues."1.3.0"] +url = "https://packages.typst.org/preview/gentle-clues-1.3.0.tar.gz" +hash = "sha256-h4eD9d/DSPWeOa1z8tPY3jSma9x9crVtjBGhfZ36N/E=" +typstDeps = [ + "linguify_0_5_0", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + [gentle-clues."1.2.0"] url = "https://packages.typst.org/preview/gentle-clues-1.2.0.tar.gz" hash = "sha256-oQ/HcKJRijQPM450fNF7vF5WAQCu3bWLmy6bkmrnHfg=" @@ -13452,6 +13755,19 @@ license = [ ] homepage = "https://github.com/pklaschka/typst-hidden-bib" +[hitec."0.1.0"] +url = "https://packages.typst.org/preview/hitec-0.1.0.tar.gz" +hash = "sha256-xWOBAJcM7x7L0EqzErF/kY0Z59qPPrqe9aHx4mFFNEw=" +typstDeps = [ + "itemize_0_2_0", + "marginalia_0_3_1", +] +description = "A template designed for documentation in high-technology companies. Also a Typst adaptation of the LaTeX `hitec` package" +license = [ + "MIT", +] +homepage = "https://github.com/ShabbyGayBar/hitec" + [htl3r-da."2.0.0"] url = "https://packages.typst.org/preview/htl3r-da-2.0.0.tar.gz" hash = "sha256-QyKMVig4bHpd7zwFvofOKZWutQcuO4dKuKxcBcVLdBc=" @@ -14040,6 +14356,16 @@ license = [ ] homepage = "https://github.com/Fricsion/typst-template_ieee-style-single-column" +[ieee-vgtc."0.0.2"] +url = "https://packages.typst.org/preview/ieee-vgtc-0.0.2.tar.gz" +hash = "sha256-WkRs/RIF+sRuSQ5ou1UL4b6Fm4hqHtXeKmvVAHaObPQ=" +typstDeps = [] +description = "Templates for IEEE VGTC conferences and TVCG journal papers" +license = [ + "MIT-0", +] +homepage = "https://github.com/ieeevgtc/ieee-vgtc-typst" + [ieee-vgtc."0.0.1"] url = "https://packages.typst.org/preview/ieee-vgtc-0.0.1.tar.gz" hash = "sha256-6zu1LwN+O2c9RUaE6Dj/PRWonq0t5BNiOML8IsqiXc0=" @@ -15829,6 +16155,22 @@ license = [ ] homepage = "https://github.com/Harry-Chen/kouhu" +[kthesis."0.1.4"] +url = "https://packages.typst.org/preview/kthesis-0.1.4.tar.gz" +hash = "sha256-js7de2C4ulQBIM+1mmodDlkdRSsiTMwmGR7Q0YOyhL8=" +typstDeps = [ + "glossarium_0_5_8", + "headcount_0_1_0", + "hydra_0_6_1", + "linguify_0_4_2", +] +description = "Unofficial thesis template for KTH Royal Institute of Technology" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/RafDevX/kthesis-typst" + [kthesis."0.1.3"] url = "https://packages.typst.org/preview/kthesis-0.1.3.tar.gz" hash = "sha256-ypLafTRIDV54rjrK2JxKLD7TgZpXryfsNQv38FP33lI=" @@ -17042,6 +17384,16 @@ license = [ ] homepage = "https://github.com/NanamiNakano/typst-mahou-cv" +[mandolin."1.0.0"] +url = "https://packages.typst.org/preview/mandolin-1.0.0.tar.gz" +hash = "sha256-75GzcH9q9X4HhYuyZPheaFVEPhHMgKKVU3kHkCLT5v4=" +typstDeps = [] +description = "Render manpages to PDF using mandoc" +license = [ + "ISC", +] +homepage = "https://github.com/lluchs/mandolin" + [mannot."0.3.1"] url = "https://packages.typst.org/preview/mannot-0.3.1.tar.gz" hash = "sha256-s1lGFHMpauJBO9OsHTHg5XtFqLZLTZOJjs6X6ANN/Nw=" @@ -17458,6 +17810,18 @@ license = [ ] homepage = "https://github.com/AcqRel/matador" +[materialize."0.1.0"] +url = "https://packages.typst.org/preview/materialize-0.1.0.tar.gz" +hash = "sha256-ClLTXUw8tuMwagbd61cYTFq5qdVJLGdW91cHsxgReC4=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "Generate Matter setup codes for smart home devices with ease" +license = [ + "MIT", +] +homepage = "https://github.com/rojul/typst-materialize" + [matofletcher."0.1.1"] url = "https://packages.typst.org/preview/matofletcher-0.1.1.tar.gz" hash = "sha256-UUeM/e0eqinqVUiE5zgq+8RdzJSFW++POAAiun6yIXE=" @@ -19420,6 +19784,34 @@ license = [ ] homepage = "https://github.com/sh3b0/innopolis-thesis" +[modern-ipsy-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-ipsy-thesis-0.1.1.tar.gz" +hash = "sha256-sZUSyq/bYfgJ5bs1vIrxjpmypnSLXEqVYSYRbvY6n4I=" +typstDeps = [ + "hydra_0_6_2", + "linguify_0_5_0", + "tidy_0_4_3", +] +description = "A modern and unofficial thesis template based on the IPSY institute at OvGU Magdeburg" +license = [ + "0BSD", +] +homepage = "https://github.com/xkevio/ipsy-thesis/" + +[modern-ipsy-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-ipsy-thesis-0.1.0.tar.gz" +hash = "sha256-EvCFTGfXDY3yfQ0mKE93sX/IzyvgC1Idvg4LVpGFQuU=" +typstDeps = [ + "hydra_0_6_2", + "linguify_0_5_0", + "tidy_0_4_3", +] +description = "A modern and unofficial thesis template based on the IPSY institute at OvGU Magdeburg" +license = [ + "0BSD", +] +homepage = "https://github.com/xkevio/ipsy-thesis/" + [modern-iu-thesis."0.1.4"] url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.4.tar.gz" hash = "sha256-/zONmk7558Gi4HzZAtVlQ0fzWVe5sDEqnHwq1TEnOgE=" @@ -19680,6 +20072,22 @@ license = [ "MIT", ] +[modern-pku-thesis."0.2.1"] +url = "https://packages.typst.org/preview/modern-pku-thesis-0.2.1.tar.gz" +hash = "sha256-5l1rxIjDO7rE/zoRkUVgAKJONKeFqTITSjPmBxTP0Rg=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "cuti_0_4_0", + "gb7714-bilingual_0_2_1", + "itemize_0_2_0", +] +description = "Dissertation template for Peking University (PKU" +license = [ + "MIT", +] +homepage = "https://github.com/pku-typst/pkuthss-typst" + [modern-pku-thesis."0.2.0"] url = "https://packages.typst.org/preview/modern-pku-thesis-0.2.0.tar.gz" hash = "sha256-HKGYjBsZqHxFqXLYLmglj0tuAgkNLd2Ngzembx4A/50=" @@ -19944,6 +20352,31 @@ license = [ ] homepage = "https://github.com/StellarLane/modern-sjtu-report" +[modern-sjtu-thesis."0.5.2"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.5.2.tar.gz" +hash = "sha256-dBu3xnmXTwq30/VhdSIeMpfsskRv8aSSrbcGIbfsZnE=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "cuti_0_4_0", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "itemize_0_2_0", + "lilaq_0_5_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_5_1", + "theorion_0_4_1", + "unify_0_7_1", + "wordometer_0_1_5", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/sjtug/modern-sjtu-thesis" + [modern-sjtu-thesis."0.5.1"] url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.5.1.tar.gz" hash = "sha256-smLLOXtmnMx8eiG/6dv/eoPF4KLK1vYv4DgFJYquXaQ=" @@ -20359,6 +20792,29 @@ license = [ "MIT", ] +[modern-tust-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-tust-thesis-0.1.0.tar.gz" +hash = "sha256-KatLOewjQMGOgyEhXWi7KkJBFHk6vXA+YcnXxBc6fvY=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "lilaq_0_5_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_5_1", + "theorion_0_4_1", + "unify_0_7_1", + "wordometer_0_1_5", +] +description = "天津科技大学本科毕业设计(论文)Typst 模板。Tianjin University of Science and Technology Undergraduate Design (Thesis) Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/martin-cao/modern-tust-thesis" + [modern-ucas-thesis."0.1.0"] url = "https://packages.typst.org/preview/modern-ucas-thesis-0.1.0.tar.gz" hash = "sha256-poI/Jg1TBlmKqGxGeXYqF63OjOuMsZxmh6cVkw6kQSc=" @@ -20593,6 +21049,20 @@ license = [ ] homepage = "https://github.com/ustctug/modern-ustc-proposal" +[modern-whs-assignment."0.4.0"] +url = "https://packages.typst.org/preview/modern-whs-assignment-0.4.0.tar.gz" +hash = "sha256-MOQNjrl9Fo3vU2szWT5TfniKciDqBiQXh3S8fsrGY90=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "glossarium_0_5_10", +] +description = "Assignment template for Westfälische Hochschule" +license = [ + "MIT", +] +homepage = "https://github.com/alex289/whs-typst-templates" + [modern-whs-assignment."0.3.0"] url = "https://packages.typst.org/preview/modern-whs-assignment-0.3.0.tar.gz" hash = "sha256-pZu9LgD4xJuuQ6aDa1ssI8rMp56Sz4qEXa4IBNFj58Y=" @@ -20816,6 +21286,42 @@ license = [ ] homepage = "https://github.com/Woodman3/modern-ysu-thesis" +[modern-zhaw-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-zhaw-thesis-0.1.1.tar.gz" +hash = "sha256-daXByrs0DUSRmJNjtmyNUqeZZ7qJguoU9zeOSYA4g8Y=" +typstDeps = [ + "biceps_0_0_1", + "codly_1_3_0", + "codly-languages_0_1_10", + "colorful-boxes_1_4_3", + "datify_1_0_0", + "tieflang_0_1_0", + "valkyrie_0_2_2", +] +description = "An unofficial template for ZHAW academic works, adapted from the official branding and guidelines" +license = [ + "MIT-0", +] +homepage = "https://github.com/stanlrt/typst-zhaw-thesis" + +[modern-zhaw-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-zhaw-thesis-0.1.0.tar.gz" +hash = "sha256-qJMujvpAsnhKOLSekdesIK/sbiQXgJddnIfrCDC9vVM=" +typstDeps = [ + "biceps_0_0_1", + "codly_1_3_0", + "codly-languages_0_1_10", + "colorful-boxes_1_4_3", + "datify_1_0_0", + "tieflang_0_1_0", + "valkyrie_0_2_2", +] +description = "An unofficial template for ZHAW academic works, adaped from the official branding" +license = [ + "MIT-0", +] +homepage = "https://github.com/stanlrt/typst-zhaw-thesis" + [moderner-cv."0.2.1"] url = "https://packages.typst.org/preview/moderner-cv-0.2.1.tar.gz" hash = "sha256-znF0GdFXh7MjSW0VQHhl7+rduQHTigKEAkdRe2NV/80=" @@ -21070,6 +21576,19 @@ license = [ ] homepage = "https://github.com/dogeystamp/mousse-notes" +[mrbogo-cv."1.0.5"] +url = "https://packages.typst.org/preview/mrbogo-cv-1.0.5.tar.gz" +hash = "sha256-i0D7aXG5KaoQYoPHFcCtN/au7P+Z7OqtdRgYE7FXoFg=" +typstDeps = [ + "datify_1_0_0", + "fontawesome_0_6_0", +] +description = "Create modern CVs with content-template separation and multi-language support" +license = [ + "MIT", +] +homepage = "https://github.com/MrBogomips/mrbogo-cv" + [mtret."0.1.0"] url = "https://packages.typst.org/preview/mtret-0.1.0.tar.gz" hash = "sha256-ENlVrYOxeSGOwSLAyOxuafbkX4X5mxOh88ZNM74pJgs=" @@ -21163,6 +21682,19 @@ license = [ ] homepage = "https://github.com/Emberwhirl/muw-touying-community" +[mythographer-5e."0.0.1"] +url = "https://packages.typst.org/preview/mythographer-5e-0.0.1.tar.gz" +hash = "sha256-LjjQyKVgtiF+Uwd6SAvLSona8uV0jfmVKeWX0EadQGU=" +typstDeps = [ + "droplet_0_3_1", + "transl_0_1_1", +] +description = "Unofficial template for typsetting documents in the style of the fifth edition of Dungeon&Dragons" +license = [ + "MIT", +] +homepage = "https://github.com/sa1g/dnd-typst-template" + [naifs-islamic-research-toolkit."0.1.0"] url = "https://packages.typst.org/preview/naifs-islamic-research-toolkit-0.1.0.tar.gz" hash = "sha256-QfcmGnCsVUSZjDOhm8LbHuxtbLI5IaLB9Uf7ee9AHwk=" @@ -21261,6 +21793,20 @@ license = [ ] homepage = "https://github.com/Enter-tainer/natrix" +[navigator."0.1.0"] +url = "https://packages.typst.org/preview/navigator-0.1.0.tar.gz" +hash = "sha256-m2dggi1y9vPVbdcvJENZAJ2Xy01ScwpjYmwBzHTjnvk=" +typstDeps = [ + "polylux_0_4_0", + "presentate_0_2_3", + "typslides_1_3_2", +] +description = "Navigation tools for Typst presentations" +license = [ + "MIT", +] +homepage = "https://github.com/eusebe/typst-navigator" + [ncku-later."0.1.0"] url = "https://packages.typst.org/preview/ncku-later-0.1.0.tar.gz" hash = "sha256-/YMnKpZsVNcuKgtxzKhbU4rtCiahuOBwBpK0CDYzmHQ=" @@ -21764,6 +22310,32 @@ license = [ ] homepage = "https://github.com/FlandiaYingman/note-me" +[noteworthy."0.3.0"] +url = "https://packages.typst.org/preview/noteworthy-0.3.0.tar.gz" +hash = "sha256-RneYtyLo7AiVYK33PswlnqwJCIe87Y6uCb1G42dD0fM=" +typstDeps = [ + "showybox_2_0_4", + "theoretic_0_3_0", +] +description = "A Typst template for creating class notes especially for Mathematics" +license = [ + "MIT", +] +homepage = "https://github.com/tarunjana/noteworthy" + +[noteworthy."0.2.1"] +url = "https://packages.typst.org/preview/noteworthy-0.2.1.tar.gz" +hash = "sha256-4Hrj+jKOIHqQEor/lHqlIitPQbJFz7VcSvzvJHsM0zw=" +typstDeps = [ + "showybox_2_0_4", + "theoretic_0_1_1", +] +description = "A Typst template for creating class notes especially for Mathematics" +license = [ + "MIT", +] +homepage = "https://github.com/tarunjana/noteworthy" + [noteworthy."0.2.0"] url = "https://packages.typst.org/preview/noteworthy-0.2.0.tar.gz" hash = "sha256-PLIiXffG9EZ6fgP6HyUQv+wqNNZ0y6+TrKkjmT8zjzg=" @@ -21839,6 +22411,15 @@ license = [ "MIT-0", ] +[ntnu-physics-report-replica."0.1.0"] +url = "https://packages.typst.org/preview/ntnu-physics-report-replica-0.1.0.tar.gz" +hash = "sha256-9j+4+yALyY71noAai4gvNwA4CmShVtYNSfMEXkGUCo4=" +typstDeps = [] +description = "Physics lab report for NTNU based on the elsarticle LaTeX style" +license = [ + "MIT", +] + [nulite."0.1.0"] url = "https://packages.typst.org/preview/nulite-0.1.0.tar.gz" hash = "sha256-K67G/vo5Fbm43MDi0TxNIhhktSTzjayEeyrbcejND84=" @@ -22285,6 +22866,16 @@ license = [ ] homepage = "https://github.com/v411e/optimal-ovgu-thesis" +[orange-book."0.7.1"] +url = "https://packages.typst.org/preview/orange-book-0.7.1.tar.gz" +hash = "sha256-RFBmdebx0jgjRaKfRv5nH221YN7Xs46RE2yfoQ3ThKw=" +typstDeps = [] +description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-orange-template" + [orange-book."0.6.2"] url = "https://packages.typst.org/preview/orange-book-0.6.2.tar.gz" hash = "sha256-IXvHETU/bDZWu4SC63gFs0Fy3R5nyAWVLiSEJY6zytk=" @@ -22465,6 +23056,16 @@ license = [ ] homepage = "https://github.com/andrea-orione/orionotes" +[ose-pic."0.1.2"] +url = "https://packages.typst.org/preview/ose-pic-0.1.2.tar.gz" +hash = "sha256-fSpESjkmHggbvMRPF5h/Pe4+HpqXcZMDsEquD/2Hjfg=" +typstDeps = [] +description = "Per-page backgrounds and foregrounds" +license = [ + "MIT", +] +homepage = "https://github.com/neruthes/ose-pic-typst" + [ose-pic."0.1.1"] url = "https://packages.typst.org/preview/ose-pic-0.1.1.tar.gz" hash = "sha256-xzWShabPbmt/i5jrF2x1dxa4NlfO2Riv8vgXV/LWhC4=" @@ -23049,6 +23650,16 @@ license = [ ] homepage = "https://github.com/philippdrebes/typst-payqr-swiss" +[pc-letter."0.4.0"] +url = "https://packages.typst.org/preview/pc-letter-0.4.0.tar.gz" +hash = "sha256-Mywjm+YaiF9zEPvVn9jsXatuDG1FvdyNkma/JCGGmH0=" +typstDeps = [] +description = "A simple letter template for personal correspondence" +license = [ + "MIT", +] +homepage = "https://github.com/thatfloflo/typst-pc-letter" + [pc-letter."0.3.1"] url = "https://packages.typst.org/preview/pc-letter-0.3.1.tar.gz" hash = "sha256-brIgFySVGWIn0v20GR/ljw1J5BQGhfTddKtjSYlMd7E=" @@ -23277,6 +23888,21 @@ license = [ ] homepage = "https://github.com/Servostar/typst-percencode" +[pergamon."0.7.2"] +url = "https://packages.typst.org/preview/pergamon-0.7.2.tar.gz" +hash = "sha256-UwBF2uL6+9GOk2icAlDU7Brvz7hEqpWnCauFImJTTN4=" +typstDeps = [ + "bullseye_0_1_0", + "citegeist_0_2_1", + "nth_1_0_1", + "oxifmt_1_0_0", +] +description = "Biblatex-style reference management for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/pergamon" + [pergamon."0.7.1"] url = "https://packages.typst.org/preview/pergamon-0.7.1.tar.gz" hash = "sha256-S4jQOyDhU7W8fVWg3Z5TQZ2Ka+zgBS+6xbQOjYaUsyA=" @@ -23468,6 +24094,16 @@ license = [ ] homepage = "https://github.com/talal/pesha" +[pf2e-style."0.2.0"] +url = "https://packages.typst.org/preview/pf2e-style-0.2.0.tar.gz" +hash = "sha256-N/KFEKTDh0LzQ3qU3/K3GF7OazQhVDVoWlDt2j/CbUk=" +typstDeps = [] +description = "Pathfinder 2.1 Edition Toolkit" +license = [ + "MIT-0", +] +homepage = "https://gitlab.com/Jed_Hed/pf2e-typst" + [pf2e-style."0.1.0"] url = "https://packages.typst.org/preview/pf2e-style-0.1.0.tar.gz" hash = "sha256-G7KDVIOGCpAq/of8NF1oVKXLluvKLg6knTLjatamaEE=" @@ -23478,6 +24114,42 @@ license = [ ] homepage = "https://gitlab.com/Jed_Hed/pf2e-typst" +[phonokit."0.3.7"] +url = "https://packages.typst.org/preview/phonokit-0.3.7.tar.gz" +hash = "sha256-W3rDoGV8OiXy4z79f7SCpucG3eVCZ2MOrgni5EbPfEk=" +typstDeps = [ + "cetz_0_4_2", +] +description = "A toolkit to create phonological representations" +license = [ + "MIT", +] +homepage = "https://github.com/guilhermegarcia/phonokit" + +[phonokit."0.3.6"] +url = "https://packages.typst.org/preview/phonokit-0.3.6.tar.gz" +hash = "sha256-Scu7QTDFip10i46vtA9GGHr420fCWaQ8vb+J3ZywS1o=" +typstDeps = [ + "cetz_0_4_2", +] +description = "A toolkit to create phonological representations" +license = [ + "MIT", +] +homepage = "https://github.com/guilhermegarcia/phonokit" + +[phonokit."0.3.5"] +url = "https://packages.typst.org/preview/phonokit-0.3.5.tar.gz" +hash = "sha256-Reu7GfEKFF9/E82ObyNZjCs648MbeRavD2FE4D3ZV5w=" +typstDeps = [ + "cetz_0_4_2", +] +description = "A toolkit to create phonological representations" +license = [ + "MIT", +] +homepage = "https://github.com/guilhermegarcia/phonokit" + [phonokit."0.3.0"] url = "https://packages.typst.org/preview/phonokit-0.3.0.tar.gz" hash = "sha256-oi9yB7MHOP4pk3oiDxyHQvnRzK8m2VmuixtezH/nJ1c=" @@ -23911,6 +24583,16 @@ license = [ ] homepage = "https://github.com/taylorh140/typst-pintora" +[pioneering-rlj."0.7.0"] +url = "https://packages.typst.org/preview/pioneering-rlj-0.7.0.tar.gz" +hash = "sha256-KsjCjnLLtDXWDUHqLF06cunbXkw4ULgTQzrXi5bY2qo=" +typstDeps = [] +description = "Template for submission to Reinforcement Learning Conference/Journal\n(RLC/RLJ" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + [pioneering-rlj."0.6.0"] url = "https://packages.typst.org/preview/pioneering-rlj-0.6.0.tar.gz" hash = "sha256-ip2sj+GGv6NKIEQ64ZIOEdY0v7TJWkDUbNwJVuFUjec=" @@ -23921,6 +24603,16 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[placard."0.1.0"] +url = "https://packages.typst.org/preview/placard-0.1.0.tar.gz" +hash = "sha256-AtQqZg/abpIZeA67OigVL3vXkoUr4eRbmS7udVJHryY=" +typstDeps = [] +description = "A versatile scientific poster package with modular grid layouts" +license = [ + "MIT", +] +homepage = "https://github.com/ant1isbusy/typst-placard" + [playwright."0.1.0"] url = "https://packages.typst.org/preview/playwright-0.1.0.tar.gz" hash = "sha256-mr5VZawbEz6L8TZK+pKCS+p15eg1AT+yT/7oDFUIWSo=" @@ -24011,6 +24703,16 @@ license = [ ] homepage = "https://github.com/misskacie/plotsy-3d" +[pmetrika."0.1.0"] +url = "https://packages.typst.org/preview/pmetrika-0.1.0.tar.gz" +hash = "sha256-Z1T/C0/EKvFiugJiNyQE5dUsYu8svAYIpYoxBTR1+No=" +typstDeps = [] +description = "A template for the Psychometrika journal" +license = [ + "MIT", +] +homepage = "https://github.com/sghng/pmetrika" + [pointless-size."0.1.2"] url = "https://packages.typst.org/preview/pointless-size-0.1.2.tar.gz" hash = "sha256-4ONS8ENcA0agL+32H+SlKOHdpXpbmy25TdugHaVNGCU=" @@ -24498,6 +25200,18 @@ license = [ ] homepage = "https://github.com/sdiebolt/psl-thesis" +[ptable-amat."0.1.0"] +url = "https://packages.typst.org/preview/ptable-amat-0.1.0.tar.gz" +hash = "sha256-FpLgWnktrxXoKGMmVFxkBdjU2OxGwGr+XSQpwQYxAN4=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Periodic table of elements with compact and detailed versions" +license = [ + "MIT", +] +homepage = "https://github.com/GiggleLiu/ptable-amat" + [pubmatter."0.2.2"] url = "https://packages.typst.org/preview/pubmatter-0.2.2.tar.gz" hash = "sha256-E3nkHXbtVmZE7dYl+NjhoJoDzXMGyQ36l2hMqDTupNQ=" @@ -25256,6 +25970,18 @@ license = [ "MIT", ] +[rectangles-polylux."0.1.0"] +url = "https://packages.typst.org/preview/rectangles-polylux-0.1.0.tar.gz" +hash = "sha256-fduG0KoaLPIK9HpNbKodYG845WoFU5so6mQd9k2NwtU=" +typstDeps = [ + "polylux_0_4_0", +] +description = "LaTeX Beamer-inspired template for Polylux" +license = [ + "MIT", +] +homepage = "https://github.com/felsenhower/rectangles-polylux.git" + [red-agora."0.2.0"] url = "https://packages.typst.org/preview/red-agora-0.2.0.tar.gz" hash = "sha256-E5ugFwPQc8fvggezau06K7heIAgvlxmuN+qKe9t4krI=" @@ -26135,6 +26861,16 @@ license = [ ] homepage = "https://github.com/augustebaum/epfl-thesis-typst" +[scholarly-tauthesis."0.17.6"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.17.6.tar.gz" +hash = "sha256-KlXJfJbLSUk1XkauHCf/vZ4tjM3lvKcY7oTVFf8DB3s=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + [scholarly-tauthesis."0.17.4"] url = "https://packages.typst.org/preview/scholarly-tauthesis-0.17.4.tar.gz" hash = "sha256-ct9QTNU7lbbRZVsyL9C0NrE7JfbtW02l3vc8oL6fMOk=" @@ -26562,6 +27298,26 @@ license = [ ] homepage = "https://github.com/Dregen-Yor/sdu-exp-report" +[sdu-touying-simpl."1.0.1"] +url = "https://packages.typst.org/preview/sdu-touying-simpl-1.0.1.tar.gz" +hash = "sha256-9x0nPQibh58f3bys128w0GC0U2zVrpPI7bzsAfNE/IM=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "ctheorems_1_1_3", + "fletcher_0_5_8", + "gentle-clues_1_2_0", + "mitex_0_2_2", + "showybox_2_0_4", + "timeliney_0_4_0", + "touying_0_6_1", +] +description = "A Touying-based Typst presentation template designed for Shandong University (SDU" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl" + [sdu-touying-simpl."1.0.0"] url = "https://packages.typst.org/preview/sdu-touying-simpl-1.0.0.tar.gz" hash = "sha256-ZM2jkUisW5nCk2PTSX+eukmSOxnJg0h9e4VjxMb3PIA=" @@ -26855,6 +27611,16 @@ license = [ ] homepage = "https://github.com/shaneworld/HHU-Thesis-Template" +[sheetstorm."0.5.0"] +url = "https://packages.typst.org/preview/sheetstorm-0.5.0.tar.gz" +hash = "sha256-EyZ/QsoLeie4iMe9ADajr7CdiZjWtgMODPUq3N6EmuM=" +typstDeps = [] +description = "A template for assignment sheets" +license = [ + "MIT", +] +homepage = "https://github.com/rabuu/sheetstorm" + [sheetstorm."0.4.0"] url = "https://packages.typst.org/preview/sheetstorm-0.4.0.tar.gz" hash = "sha256-sWbpNlwTtWRL4bO8FBCMmfFcEMDZjEd3aKlxcOxyDFQ=" @@ -27972,6 +28738,16 @@ license = [ ] homepage = "https://github.com/UtkarshVerma/sleek-university-assignment" +[slipst."0.2.0"] +url = "https://packages.typst.org/preview/slipst-0.2.0.tar.gz" +hash = "sha256-FfcO9QPW9/rU+lCjHhX0BTApbRGWDCtX6/PSpfYyj3c=" +typstDeps = [] +description = "A new paradigm for presentations, inspired by slipshow" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/Wybxc/slipst" + [slipst."0.1.0"] url = "https://packages.typst.org/preview/slipst-0.1.0.tar.gz" hash = "sha256-VP0qelJQk7mQ38Y2ioLkJBxvolX2Q+onKn2tZdOTJus=" @@ -28056,6 +28832,16 @@ license = [ ] homepage = "https://github.com/mewmew/smartaref-typ" +[smooth-tmlr."0.7.0"] +url = "https://packages.typst.org/preview/smooth-tmlr-0.7.0.tar.gz" +hash = "sha256-HFHyOH4mOe/nSV4AAI5BROcs1f0EWsGOWlVckgGlSXU=" +typstDeps = [] +description = "Paper template for submission to Transaction on Machine Learning Research (TMLR" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + [smooth-tmlr."0.4.0"] url = "https://packages.typst.org/preview/smooth-tmlr-0.4.0.tar.gz" hash = "sha256-qJ/+wPqqN/ZYYkTil4YIs8hUc+SustHn0ERBT7QX0sE=" @@ -28717,6 +29503,66 @@ license = [ ] homepage = "https://github.com/mdavis-xyz/staves-typst" +[std-sjtu-bachelor-thesis-midterm."0.1.0"] +url = "https://packages.typst.org/preview/std-sjtu-bachelor-thesis-midterm-0.1.0.tar.gz" +hash = "sha256-tIbjNi5VLosvkGnO46eneb3W1iMMqhd2r4sQzsqAqls=" +typstDeps = [ + "cuti_0_2_1", +] +description = "上海交通大学本科生毕业设计(论文)中期检查报告模板 SJTU Bachelor Midterm Examination Report Template" +license = [ + "MIT", +] +homepage = "https://github.com/zh1-z/SJTU-Bachelor-Thesis-Midterm-Typst-Template" + +[std-sjtu-bachelor-thesis-proposal."0.1.0"] +url = "https://packages.typst.org/preview/std-sjtu-bachelor-thesis-proposal-0.1.0.tar.gz" +hash = "sha256-CXfwB8Ve0SVgSvw2yAmVfncqnrLKQNVp9qZm9inGx8c=" +typstDeps = [ + "cuti_0_2_1", +] +description = "上海交通大学本科生毕业设计(论文)开题报告模板 SJTU Bachelor Thesis Proposal Template" +license = [ + "MIT", +] +homepage = "https://github.com/zh1-z/SJTU-Bachelor-Thesis-Proposal-Typst-Template" + +[std-sjtu-doctoral-annual-progress."0.1.0"] +url = "https://packages.typst.org/preview/std-sjtu-doctoral-annual-progress-0.1.0.tar.gz" +hash = "sha256-//jKdN39jozJByuXiSyjPkZVv2h5ugEbzko3vxDBXpg=" +typstDeps = [ + "cuti_0_2_1", +] +description = "上海交通大学博士研究生学位论文年度进展报告模板 SJTU Doctoral Annual Progress Report template" +license = [ + "MIT", +] +homepage = "https://github.com/zh1-z/SJTU-Doctoral-Annual-Progress-Typst-Template" + +[std-sjtu-graduate-thesis-proposal."0.1.0"] +url = "https://packages.typst.org/preview/std-sjtu-graduate-thesis-proposal-0.1.0.tar.gz" +hash = "sha256-EZMnQ82xMcEcnPSM1t2ffNEoPwvKj5D/vyfT9V74G8M=" +typstDeps = [ + "cuti_0_2_1", +] +description = "上海交通大学研究生学位论文开题报告模板 SJTU Graduate Thesis Proposal template" +license = [ + "MIT", +] +homepage = "https://github.com/zh1-z/SJTU-Graduate-Thesis-Proposal" + +[std-sjtu-master-midterm-report."0.1.0"] +url = "https://packages.typst.org/preview/std-sjtu-master-midterm-report-0.1.0.tar.gz" +hash = "sha256-T2kEs+6I55kM4L3oueccL+V3rquvb8lQ6ffw0RcX+o8=" +typstDeps = [ + "cuti_0_2_1", +] +description = "上海交通大学硕士研究生学位论文中期检查报告模板 SJTU Master Midterm Examination Report template" +license = [ + "MIT", +] +homepage = "https://github.com/zh1-z/SJTU-Master-Midterm-Typst-Template" + [stellar-iac."0.5.0"] url = "https://packages.typst.org/preview/stellar-iac-0.5.0.tar.gz" hash = "sha256-lZqPmrK+Mdip7bI8h5UwgoMjC91AEWkuhAKKcHjU/Cg=" @@ -29447,6 +30293,15 @@ license = [ ] homepage = "https://github.com/swaits/typst-collection" +[swaralipi."0.1.0"] +url = "https://packages.typst.org/preview/swaralipi-0.1.0.tar.gz" +hash = "sha256-fv3U6hpkMRMx6ChStT4yt9ni/6xsqZRGDJ50HxXLtg0=" +typstDeps = [] +description = "Notation for Indian Classical Music" +license = [ + "MIT", +] + [swe-cv."1.0.0"] url = "https://packages.typst.org/preview/swe-cv-1.0.0.tar.gz" hash = "sha256-X//SJ3InPLqrXXSquT7YcLRa9vyyQj423sw3/zVpvT8=" @@ -29619,6 +30474,19 @@ license = [ ] homepage = "https://github.com/typst-community/tabbyterms" +[tableau-icons."0.336.0"] +url = "https://packages.typst.org/preview/tableau-icons-0.336.0.tar.gz" +hash = "sha256-SDOrMCUKqN400lgK3ufziwBqa5ri1jGUuZSeekVjSlI=" +typstDeps = [ + "shadowed_0_2_0", + "tidy_0_4_3", +] +description = "Tabler.io Icons v3.36.1 for Typst" +license = [ + "MIT", +] +homepage = "https://codeberg.org/joelvonrotz/tableau-icons" + [tableau-icons."0.334.1"] url = "https://packages.typst.org/preview/tableau-icons-0.334.1.tar.gz" hash = "sha256-lnJo0dJflKQJO1YFmJKwlUX7mhHXmUXBlPkm5KZLM3Y=" @@ -29912,6 +30780,16 @@ license = [ "MIT-0", ] +[taskize."0.2.5"] +url = "https://packages.typst.org/preview/taskize-0.2.5.tar.gz" +hash = "sha256-H+xE0HTlOgOt9+93e4ClQmAMxK2QhHv+MSbfWACqwMI=" +typstDeps = [] +description = "Horizontal and vertical columned lists for exercises and tasks, similar to LaTeX's tasks package" +license = [ + "MIT", +] +homepage = "https://github.com/nathan-ed/typst-package-taskize" + [taskize."0.2.0"] url = "https://packages.typst.org/preview/taskize-0.2.0.tar.gz" hash = "sha256-JJd8OtbN7bqXifOrKw3XeuIgpBSc156eXvtqU/baA7U=" @@ -29986,6 +30864,19 @@ license = [ ] homepage = "https://github.com/maxcrees/tbl.typ" +[tblr."0.4.4"] +url = "https://packages.typst.org/preview/tblr-0.4.4.tar.gz" +hash = "sha256-Q8PFFnvFY64FWwZC+oIwfZ7XlJ2UfN1FD1WdjZ49Uls=" +typstDeps = [ + "rowmantic_0_4_0", + "zero_0_3_0", +] +description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package" +license = [ + "MIT", +] +homepage = "https://github.com/tshort/tblr" + [tblr."0.4.3"] url = "https://packages.typst.org/preview/tblr-0.4.3.tar.gz" hash = "sha256-2UMyCmWYoKSSwoa3wqZqs7tpFE3/of7VR78MZ6gI1Vs=" @@ -30806,6 +31697,15 @@ license = [ ] homepage = "https://github.com/Enter-tainer/zint-wasi" +[tidbit-uoc."0.1.1"] +url = "https://packages.typst.org/preview/tidbit-uoc-0.1.1.tar.gz" +hash = "sha256-wOLb+engeErOR7jQXYw/jJtRs6uUxFfdJoLsPMs9bXQ=" +typstDeps = [] +description = "Academic reports at the UOC with APA styling" +license = [ + "MIT", +] + [tidbit-uoc."0.1.0"] url = "https://packages.typst.org/preview/tidbit-uoc-0.1.0.tar.gz" hash = "sha256-ak5zPsWhBxQFo+MluIzcem72GvuW6FqS/byVAPpg+tw=" @@ -32037,6 +32937,21 @@ license = [ ] homepage = "https://github.com/btmxh/touying-ppt-hustvn" +[touying-pres-uge."0.1.0"] +url = "https://packages.typst.org/preview/touying-pres-uge-0.1.0.tar.gz" +hash = "sha256-UU/5l6TMIC3J5/NtAkQ209POOhA8t3fwJD1JnK6gSC0=" +typstDeps = [ + "codly_1_3_0", + "numbly_0_1_0", + "pinit_0_2_2", + "touying_0_6_1", +] +description = "Université Gustave Eiffel style slides for touying" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://gitlab.inria.fr/ttoullie/touying-pres-uge" + [touying-pres-ustc."0.2.0"] url = "https://packages.typst.org/preview/touying-pres-ustc-0.2.0.tar.gz" hash = "sha256-rvyRqZqi5P4LLhgtsUKsh71oXpMx8hmLoNbnJrKseUE=" @@ -32343,6 +33258,18 @@ license = [ ] homepage = "https://github.com/SchrodingerBlume/touying-simpl-neu" +[touying-simpl-nudt."0.1.0"] +url = "https://packages.typst.org/preview/touying-simpl-nudt-0.1.0.tar.gz" +hash = "sha256-M++DEWZRKLDmIFTNwhW+yS7LkMkXTnIiug7BlUSReQ4=" +typstDeps = [ + "touying_0_6_1", +] +description = "国防科技大学 Touying 幻灯片主题 (Touying Slide Theme for NUDT" +license = [ + "MIT", +] +homepage = "https://github.com/yelpevade/touying-nudt" + [touying-simpl-sjtu."0.1.0"] url = "https://packages.typst.org/preview/touying-simpl-sjtu-0.1.0.tar.gz" hash = "sha256-cMHpV1gcDaxYeNXuvNmuMSCDKTbNMwPNPCdNxAsLC9A=" @@ -32525,6 +33452,20 @@ license = [ ] homepage = "https://github.com/ToyHugs/toy-cv" +[tracl."0.8.1"] +url = "https://packages.typst.org/preview/tracl-0.8.1.tar.gz" +hash = "sha256-ZX4Xiz8x7V0OjH5Npcm7QFsDGg1270q1r0AkfnpQnsc=" +typstDeps = [ + "bullseye_0_1_0", + "oxifmt_1_0_0", + "pergamon_0_7_1", +] +description = "Template for papers at *ACL conferences" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/coli-saar/tracl" + [tracl."0.8.0"] url = "https://packages.typst.org/preview/tracl-0.8.0.tar.gz" hash = "sha256-SnuYI2fci9zmMtbk4wp48011HITmF6oy3S0bBBj2bLw=" @@ -33284,6 +34225,16 @@ license = [ ] homepage = "https://github.com/ivaquero/typhorm.git" +[typixel."0.1.0"] +url = "https://packages.typst.org/preview/typixel-0.1.0.tar.gz" +hash = "sha256-Jk1PaQJAjhOjcuamHozf8Cl66nFVl/mLgpHs4gDkUpA=" +typstDeps = [] +description = "Render pixel art from images or text grids with custom shapes" +license = [ + "MIT", +] +homepage = "https://github.com/rice8y/typixel" + [typographic-resume."0.1.0"] url = "https://packages.typst.org/preview/typographic-resume-0.1.0.tar.gz" hash = "sha256-0E3XQBFLGniJMBpbyLUReNhYh99CpCd7VkiX0GAEZVQ=" @@ -33669,6 +34620,24 @@ license = [ ] homepage = "https://github.com/T1mVo/typwire" +[typxidian."1.1.0"] +url = "https://packages.typst.org/preview/typxidian-1.1.0.tar.gz" +hash = "sha256-6fjib/dLCeMwEJ2wFzYpE9Pm5iPeJVBoouWF8Ii+85s=" +typstDeps = [ + "booktabs_0_0_4", + "cetz_0_4_2", + "cetz-plot_0_1_3", + "decasify_0_11_2", + "fontawesome_0_6_0", + "subpar_0_2_2", + "wrap-it_0_1_1", +] +description = "Modern note-taking, thesis and academic reports inspried by Obsidian and 'Alice in a Differentiable Wonderland" +license = [ + "MIT", +] +homepage = "https://github.com/angelonazzaro/typxidian" + [typxidian."1.0.0"] url = "https://packages.typst.org/preview/typxidian-1.0.0.tar.gz" hash = "sha256-dU1XaQOq37Dz6fXVBMUvgt/IsaUhu7+yPHjKD5aE4zM=" @@ -34413,6 +35382,16 @@ license = [ ] homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis" +[unofficial-kth-thesis-proposal."0.2.0"] +url = "https://packages.typst.org/preview/unofficial-kth-thesis-proposal-0.2.0.tar.gz" +hash = "sha256-vLgD9GuMEqlbXicFiXnognYOwEkOGq/iNJb+P35gSTk=" +typstDeps = [] +description = "Simple unofficial KTH degree project proposal template" +license = [ + "MIT", +] +homepage = "https://github.com/cseas002/kth-thesis-proposal" + [unofficial-kth-thesis-proposal."0.1.0"] url = "https://packages.typst.org/preview/unofficial-kth-thesis-proposal-0.1.0.tar.gz" hash = "sha256-NbLE/4DeP+0tSq/FIMYnxlKF0MbG8CFTG0aSjZb5VR8=" @@ -35055,6 +36034,16 @@ license = [ ] homepage = "https://github.com/JamesxX/valkyrie" +[vanilla."0.2.0"] +url = "https://packages.typst.org/preview/vanilla-0.2.0.tar.gz" +hash = "sha256-e7js3wcWx5LQJ7hZJIdCunJdPke2/H3q9zrDGyznZAI=" +typstDeps = [] +description = "A vanilla Typst package. Aims for minimilist styling fimilar to classic MS Word defaults" +license = [ + "MIT", +] +homepage = "https://github.com/juristack/typst-vanilla" + [vanilla."0.1.1"] url = "https://packages.typst.org/preview/vanilla-0.1.1.tar.gz" hash = "sha256-r2bgKkQCmqSc1PbieLR+nHDo341dtm/vzfWu3l4ahQY=" diff --git a/pkgs/by-name/us/usbredir/package.nix b/pkgs/by-name/us/usbredir/package.nix index 3ac5a524c3b5..7f5287369a23 100644 --- a/pkgs/by-name/us/usbredir/package.nix +++ b/pkgs/by-name/us/usbredir/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { mainProgram = "usbredirect"; homepage = "https://www.spice-space.org/usbredir.html"; license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ut/utfcpp/package.nix b/pkgs/by-name/ut/utfcpp/package.nix new file mode 100644 index 000000000000..311eef582cbb --- /dev/null +++ b/pkgs/by-name/ut/utfcpp/package.nix @@ -0,0 +1,36 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "utfcpp"; + version = "4.0.9"; + + src = fetchFromGitHub { + owner = "nemtrif"; + repo = "utfcpp"; + tag = "v${finalAttrs.version}"; + hash = "sha256-0FgMKHymFOA3BM7VS8US2is8TmQlL/wWj4nSRihqcDo="; + }; + + nativeBuildInputs = [ + cmake + ]; + + cmakeFlags = [ + (lib.cmakeBool "UTF8CPP_ENABLE_TESTS" true) + ]; + doCheck = true; + + meta = { + description = "UTF-8 with C++ in a Portable Way"; + homepage = "https://github.com/nemtrif/utfcpp"; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ doronbehar ]; + mainProgram = "utfcpp"; + platforms = lib.platforms.all; + }; +}) diff --git a/pkgs/by-name/va/vault-bin/package.nix b/pkgs/by-name/va/vault-bin/package.nix index 93394a29f04a..4b7af87f6f6d 100644 --- a/pkgs/by-name/va/vault-bin/package.nix +++ b/pkgs/by-name/va/vault-bin/package.nix @@ -62,7 +62,6 @@ stdenv.mkDerivation rec { sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.bsl11; maintainers = with lib.maintainers; [ - offline psyanticy Chili-Man techknowlogick diff --git a/pkgs/by-name/va/vault/package.nix b/pkgs/by-name/va/vault/package.nix index 08b63e1a92b4..e3022c6b3013 100644 --- a/pkgs/by-name/va/vault/package.nix +++ b/pkgs/by-name/va/vault/package.nix @@ -80,7 +80,6 @@ buildGoModule rec { maintainers = with lib.maintainers; [ rushmorem lnl7 - offline Chili-Man techknowlogick ]; diff --git a/pkgs/by-name/vi/vinegar/package.nix b/pkgs/by-name/vi/vinegar/package.nix index fd811f550877..c136b810324e 100644 --- a/pkgs/by-name/vi/vinegar/package.nix +++ b/pkgs/by-name/vi/vinegar/package.nix @@ -25,18 +25,18 @@ nix-update-script, }: let - # Based on wine 10.20 + # Based on wine 11.0 kombuchaPatches = fetchFromGitHub { name = "kombucha"; owner = "vinegarhq"; repo = "kombucha"; - rev = "80f87fdbaae2a42bd66e41319054798fdf30fbe6"; - hash = "sha256-ePBJj1YyHVdlDzyE6dLVl6FMImw3SJFw04vP2o1Tk6M="; - meta.license = lib.licenses.unfree; # No license + rev = "05927db95b427cc5e57856087325806cb20a0124"; + hash = "sha256-gyyf/TVKrc6/cGP9fNKr5+qMo7ucg8l/VIklhVP8kLg="; + meta.license = lib.licenses.lgpl21Only; }; wine = - (wine64Packages.unstable.override { + (wine64Packages.stable.override { dbusSupport = true; embedInstallers = true; pulseaudioSupport = true; @@ -92,37 +92,13 @@ let "0017-winex11-Use-scancode-high-bit-to-set-KEYEVENTF_EXTEN.patch" "0018-winex11-Support-fixed-X11-keycode-to-scancode-conver.patch" "0019-winex11-Disable-keyboard-scancode-auto-detection-by-.patch" - "0020-win32u-Update-the-window-client-surface-even-with-no.patch" - "0021-wined3d-Create-release-the-window-DCs-with-the-swapc.patch" - "0022-win32u-Avoid-a-crash-when-drawable-fails-to-be-creat.patch" - "0023-win32u-Check-internal-drawables-before-trying-to-cre.patch" - "0024-win32u-Update-window-state-after-setting-internal-pi.patch" - "0025-win32u-Fix-clipping-out-of-vulkan-and-other-process-.patch" - "0026-win32u-Don-t-set-window-pixel-format-if-drawable-cre.patch" - "0027-win32u-Iterate-the-client-surfaces-rather-than-the-t.patch" - "0028-wined3d-Remove-now-unnecessary-pixel-format-restorat.patch" - "0029-wined3d-Do-not-set-context_gl-needs_set-in-wined3d_c.patch" - "0030-wined3d-Get-rid-of-the-restore_pf-field-from-struct-.patch" - "0031-win32u-Remove-unnecessary-drawable-flush-in-context_.patch" - "0032-win32u-Don-t-load-bitmap-only-TTF-fonts-without-bitm.patch" - "0033-winex11-Move-Xfixes-extension-query-to-process_attac.patch" - "0034-winex11-Add-Xwayland-check.patch" - "0035-winex11-Use-XFixes-to-hide-cursor-before-warping-it.patch" - "0036-winex11-Always-ignore-MotionNotify-event-after-SetCu.patch" - "0037-Revert-winecfg-Allow-configuring-default-MIDI-device.patch" - "0038-wined3d-Update-the-context-DC-from-its-swapchain-if-.patch" - "0039-wined3d-Only-invalidate-enabled-clip-planes.patch" - "0040-wined3d-gl-Only-check-GL-context-when-accessing-onsc.patch" - "0041-winex11-Request-drawable-presentation-explicitly-on-.patch" - "0042-wined3d-Add-some-missing-states-to-wined3d_statebloc.patch" - "0043-wined3d-Avoid-some-invalidation-when-the-vertex-decl.patch" - "0044-wined3d-Avoid-some-invalidation-when-the-viewport-is.patch" - "0045-wined3d-Avoid-some-invalidation-when-texture-states-.patch" - "0046-wined3d-Invalidate-fog-constants-only-when-the-VS-is.patch" - "0047-wined3d-Avoid-some-invalidation-when-render-states-a.patch" - "0048-wined3d-gl-Split-UBOs-to-separate-chunks.patch" - "0049-winedbg-Disable.patch" - "0050-wine.inf-Disable-unused-services.patch" + "0020-win32u-Don-t-load-bitmap-only-TTF-fonts-without-bitm.patch" + "0021-winex11-Move-Xfixes-extension-query-to-process_attac.patch" + "0022-winex11-Add-Xwayland-check.patch" + "0023-winex11-Use-XFixes-to-hide-cursor-before-warping-it.patch" + "0024-winex11-Always-ignore-MotionNotify-event-after-SetCu.patch" + "0025-winedbg-Disable.patch" + "0026-wine.inf-Disable-unused-services.patch" ]; }); in diff --git a/pkgs/by-name/wa/wagyu/package.nix b/pkgs/by-name/wa/wagyu/package.nix index ca9066168651..f0798b440f29 100644 --- a/pkgs/by-name/wa/wagyu/package.nix +++ b/pkgs/by-name/wa/wagyu/package.nix @@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: { mit asl20 ]; - maintainers = [ lib.maintainers.offline ]; + maintainers = [ ]; mainProgram = "wagyu"; }; }) diff --git a/pkgs/by-name/wa/wasm-tools/package.nix b/pkgs/by-name/wa/wasm-tools/package.nix index 632d2edb240c..37ed34f5bf70 100644 --- a/pkgs/by-name/wa/wasm-tools/package.nix +++ b/pkgs/by-name/wa/wasm-tools/package.nix @@ -6,20 +6,20 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "wasm-tools"; - version = "1.244.0"; + version = "1.245.0"; src = fetchFromGitHub { owner = "bytecodealliance"; repo = "wasm-tools"; tag = "v${finalAttrs.version}"; - hash = "sha256-XZ3X+KTfiYdUP4jMlkjDpapTOGBucgTmmQoOzizPG+s="; + hash = "sha256-hGWKDy84Ok7uwzuMA2lg+Osd9JomMUXqInVSl4j+C94="; fetchSubmodules = true; }; # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved. auditable = false; - cargoHash = "sha256-D/oz2Ow+MehQKdiP1/2Vb7BBDt1hib6tgoL1ulWWGHU="; + cargoHash = "sha256-K7b6Ine3/reAjQc6WwWXWHK2gR74u8MaY4rE0jDjFVs="; cargoBuildFlags = [ "--package" "wasm-tools" diff --git a/pkgs/by-name/wi/wivrn/package.nix b/pkgs/by-name/wi/wivrn/package.nix index 8a0dac1d20f3..e35da5dc6ce1 100644 --- a/pkgs/by-name/wi/wivrn/package.nix +++ b/pkgs/by-name/wi/wivrn/package.nix @@ -4,7 +4,6 @@ stdenv, fetchFromGitHub, fetchFromGitLab, - fetchpatch, applyPatches, autoAddDriverRunpath, avahi, @@ -34,7 +33,6 @@ makeDesktopItem, nix-update-script, nlohmann_json, - onnxruntime, opencomposite, openxr-loader, ovrCompatSearchPaths ? "${xrizer}/lib/xrizer:${opencomposite}/lib/opencomposite", @@ -43,7 +41,6 @@ python3, qt6, shaderc, - spdlog, systemd, udev, vulkan-headers, @@ -56,13 +53,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "wivrn"; - version = "25.12"; + version = "26.2"; src = fetchFromGitHub { owner = "wivrn"; repo = "wivrn"; rev = "v${finalAttrs.version}"; - hash = "sha256-gadfW3/PXi9SEztaHbi4U29Vj7ik/ia8BVDTy8P5aJE="; + hash = "sha256-wVFC8VDtALHI6e0655Ytc4gNOPnJP65XWNzlhzH2eoc="; }; monado = applyPatches { @@ -70,8 +67,8 @@ stdenv.mkDerivation (finalAttrs: { domain = "gitlab.freedesktop.org"; owner = "monado"; repo = "monado"; - rev = "20e0dacbdd2de863923790326beec76e848b056a"; - hash = "sha256-wiXdMgp3bKW17KqLnSn6HHhz7xbQtjp4c3aU7qp+2BE="; + rev = "9dcc3e1de2f7449d9757f5db332c867b4d794fb3"; + hash = "sha256-ueg/GDnKP4nRVepdNE3sgK8sYckZc0aaC0CQc3tuxik="; }; postPatch = '' diff --git a/pkgs/by-name/xc/xca/package.nix b/pkgs/by-name/xc/xca/package.nix index 1a80b02a34fd..a3afe887aa6b 100644 --- a/pkgs/by-name/xc/xca/package.nix +++ b/pkgs/by-name/xc/xca/package.nix @@ -51,7 +51,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://hohnstaedt.de/xca/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ - offline peterhoeg ]; inherit (qt6.qtbase.meta) platforms; diff --git a/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix b/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix deleted file mode 100644 index 6bd533a8a6f6..000000000000 --- a/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromCodeberg, -}: -rustPlatform.buildRustPackage (finalAttrs: { - pname = "xdg-terminal-exec-mkhl"; - version = "0.2.0"; - - src = fetchFromCodeberg { - owner = "mkhl"; - repo = "xdg-terminal-exec"; - rev = "v${finalAttrs.version}"; - hash = "sha256-iVp+tg+OujMMddKsQ/T9wyqh/Jk/j/jQgsl23uQA/iM="; - }; - - cargoHash = "sha256-4GNdH+cfr3hhbK3BQXHntPr0sTSl6SS56wkdTWbv8/k="; - - meta = { - description = "Alternative rust-based implementation of the proposed XDG Default Terminal Execution Specification"; - license = lib.licenses.gpl3Plus; - mainProgram = "xdg-terminal-exec"; - maintainers = with lib.maintainers; [ quantenzitrone ]; - platforms = lib.platforms.unix; - }; -}) diff --git a/pkgs/by-name/xp/xpra/package.nix b/pkgs/by-name/xp/xpra/package.nix index 0554609b4a47..ce558c18f38f 100644 --- a/pkgs/by-name/xp/xpra/package.nix +++ b/pkgs/by-name/xp/xpra/package.nix @@ -300,7 +300,6 @@ effectiveBuildPythonApplication rec { platforms = lib.platforms.linux; license = lib.licenses.gpl2Only; maintainers = with lib.maintainers; [ - offline numinit mvnetbiz lucasew diff --git a/pkgs/by-name/xs/xss-lock/package.nix b/pkgs/by-name/xs/xss-lock/package.nix index d7bc6bb63951..86a7cfeaa8ce 100644 --- a/pkgs/by-name/xs/xss-lock/package.nix +++ b/pkgs/by-name/xs/xss-lock/package.nix @@ -51,7 +51,6 @@ stdenv.mkDerivation { mainProgram = "xss-lock"; maintainers = with lib.maintainers; [ malyn - offline ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/xs/xsuspender/package.nix b/pkgs/by-name/xs/xsuspender/package.nix index 95db286b02fb..634996ca7afa 100644 --- a/pkgs/by-name/xs/xsuspender/package.nix +++ b/pkgs/by-name/xs/xsuspender/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "xsuspender"; homepage = "https://kernc.github.io/xsuspender/"; license = lib.licenses.wtfpl; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ya/yarn/package.nix b/pkgs/by-name/ya/yarn/package.nix index 7cc9fce699dc..8886be217cab 100644 --- a/pkgs/by-name/ya/yarn/package.nix +++ b/pkgs/by-name/ya/yarn/package.nix @@ -55,7 +55,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { changelog = "https://github.com/yarnpkg/yarn/blob/v${finalAttrs.version}/CHANGELOG.md"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ - offline screendriver ]; platforms = lib.platforms.all; diff --git a/pkgs/data/fonts/open-relay/default.nix b/pkgs/data/fonts/open-relay/default.nix index a339f05e5796..b8dc21f6c84c 100644 --- a/pkgs/data/fonts/open-relay/default.nix +++ b/pkgs/data/fonts/open-relay/default.nix @@ -10,13 +10,13 @@ let { directory, meta }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "open-relay-${name}"; - version = "2025-09-01"; + version = "2026-02-08"; src = fetchFromGitHub { owner = "kreativekorp"; repo = "open-relay"; tag = finalAttrs.version; - hash = "sha256-+vG9gzbb3x7Fh3xIpUJZRpclz1qT+gyTSqmOtKJXZtw="; + hash = "sha256-2vgpzbiNuGd8p8fnvt8OTY28bVnoKtFj0TXjaOBFids="; }; installPhase = '' diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix index 27587ee2caf5..de47b29b1760 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-wacom"; - version = "8.0.1"; + version = "8.0.2"; src = fetchFromGitHub { owner = "elementary"; - repo = "switchboard-plug-wacom"; - rev = version; - sha256 = "sha256-xTv3QPlLPJQ6C5t4Udy1H9IrLQGuik8prvGlpfFm1DQ="; + repo = "settings-wacom"; + tag = version; + hash = "sha256-LA3sOY5ENaSO99AMLAqPryEfyPsKwcatzZoGOhbvCJY="; }; nativeBuildInputs = [ @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { meta = { description = "Switchboard Wacom Plug"; - homepage = "https://github.com/elementary/switchboard-plug-wacom"; + homepage = "https://github.com/elementary/settings-wacom"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; teams = [ lib.teams.pantheon ]; diff --git a/pkgs/desktops/pantheon/libraries/granite/7/default.nix b/pkgs/desktops/pantheon/libraries/granite/7/default.nix index 21aea0b9606d..1b108ee631c4 100644 --- a/pkgs/desktops/pantheon/libraries/granite/7/default.nix +++ b/pkgs/desktops/pantheon/libraries/granite/7/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { pname = "granite"; - version = "7.7.0"; + version = "7.8.0"; outputs = [ "out" @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "elementary"; repo = "granite"; - rev = version; - sha256 = "sha256-ypSkzz9BaVweR1C0OkkfwDl8tehMK1S5iExL14LuKmI="; + tag = version; + hash = "sha256-UEbe/vAXbd1W7EA1s5qvn8dM9/3CTIyLGMPXzEFu7qM="; }; nativeBuildInputs = [ diff --git a/pkgs/development/compilers/chicken/4/egg2nix.nix b/pkgs/development/compilers/chicken/4/egg2nix.nix index 2adb096e2099..1acbb5c068fe 100644 --- a/pkgs/development/compilers/chicken/4/egg2nix.nix +++ b/pkgs/development/compilers/chicken/4/egg2nix.nix @@ -3,13 +3,14 @@ eggDerivation, fetchFromGitHub, chickenEggs, + fetchpatch, }: # Note: This mostly reimplements the default.nix already contained in # the tarball. Is there a nicer way than duplicating code? eggDerivation rec { - name = "egg2nix-${version}"; + pname = "egg2nix"; version = "0.5"; src = fetchFromGitHub { @@ -19,6 +20,13 @@ eggDerivation rec { sha256 = "sha256-5ov2SWVyTUQ6NHnZNPRywd9e7oIxHlVWv4uWbsNaj/s="; }; + patches = [ + (fetchpatch { + url = "https://github.com/the-kenny/egg2nix/commit/7d20ed520b8fe4debeefc78271c8c836015f95dc.patch"; + hash = "sha256-emMnxu6HnpcDWcO7rAe0VOy2ZPfPhqj5bQv9foOkjY0="; + }) + ]; + buildInputs = with chickenEggs; [ matchable http-client diff --git a/pkgs/development/compilers/chicken/4/eggDerivation.nix b/pkgs/development/compilers/chicken/4/eggDerivation.nix index dc3c3bb07dd1..7e334782fe78 100644 --- a/pkgs/development/compilers/chicken/4/eggDerivation.nix +++ b/pkgs/development/compilers/chicken/4/eggDerivation.nix @@ -5,7 +5,7 @@ makeWrapper, }: { - name, + name ? "${args.pname}-${args.version}", src, buildInputs ? [ ], chickenInstallFlags ? [ ], diff --git a/pkgs/development/compilers/chicken/4/eggs.nix b/pkgs/development/compilers/chicken/4/eggs.nix index ea952b844d8b..fce2b6e0a9ad 100644 --- a/pkgs/development/compilers/chicken/4/eggs.nix +++ b/pkgs/development/compilers/chicken/4/eggs.nix @@ -1,9 +1,10 @@ -{ pkgs }: +{ pkgs, stdenv }: rec { inherit (pkgs) eggDerivation fetchegg; base64 = eggDerivation { - name = "base64-3.3.1"; + pname = "base64"; + version = "3.3.1"; src = fetchegg { name = "base64"; @@ -17,12 +18,13 @@ rec { }; defstruct = eggDerivation { - name = "defstruct-1.6"; + pname = "defstruct"; + version = "1.7"; src = fetchegg { name = "defstruct"; - version = "1.6"; - sha256 = "0lsgl32nmb5hxqiii4r3292cx5vqh50kp6v062nfiyid9lhrj0li"; + version = "1.7"; + sha256 = "1rkqk9jxd6vnlvkwzqg8mc7bsw050fgmxfj84y66lf0a14n5r5dg"; }; buildInputs = [ @@ -31,7 +33,8 @@ rec { }; http-client = eggDerivation { - name = "http-client-0.18"; + pname = "http-client"; + version = "0.18"; src = fetchegg { name = "http-client"; @@ -48,12 +51,13 @@ rec { }; intarweb = eggDerivation { - name = "intarweb-1.7"; + pname = "intarweb"; + version = "1.7.1"; src = fetchegg { name = "intarweb"; - version = "1.7"; - sha256 = "1arjgn5g4jfdzj3nlrhxk235qwf6k6jxr14yhnncnfbgdb820xp8"; + version = "1.7.1"; + sha256 = "0pqgwgy4jynlsr3l52qsiwm75qgs7n86kwssaawzp9y34y80awpg"; }; buildInputs = [ @@ -64,7 +68,8 @@ rec { }; matchable = eggDerivation { - name = "matchable-3.7"; + pname = "matchable"; + version = "3.7"; src = fetchegg { name = "matchable"; @@ -78,12 +83,13 @@ rec { }; sendfile = eggDerivation { - name = "sendfile-1.8.3"; + pname = "sendfile"; + version = "1.11"; src = fetchegg { name = "sendfile"; - version = "1.8.3"; - sha256 = "036x4xdndx7qly94afnag5b9idd1yymdm8d832w2cy054y7lxqsi"; + version = "1.11"; + sha256 = "15gm380asvj87f3bqb7rz4mz6znnk6r00rdy3njx9ay0qkxi3q9y"; }; buildInputs = [ @@ -92,7 +98,8 @@ rec { }; simple-md5 = eggDerivation { - name = "simple-md5-0.0.1"; + pname = "simple-md5"; + version = "0.0.1"; src = fetchegg { name = "simple-md5"; @@ -106,7 +113,8 @@ rec { }; uri-common = eggDerivation { - name = "uri-common-1.4"; + pname = "uri-common"; + version = "1.4"; src = fetchegg { name = "uri-common"; @@ -122,7 +130,8 @@ rec { }; uri-generic = eggDerivation { - name = "uri-generic-2.46"; + pname = "uri-generic"; + version = "2.46"; src = fetchegg { name = "uri-generic"; diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 0a7a500dd244..2e3bc851f5ad 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -104,9 +104,9 @@ major = "3"; minor = "15"; patch = "0"; - suffix = "a5"; + suffix = "a6"; }; - hash = "sha256-/uQNpkULZ1R8B53LKFLooD221X4GQVRmstMpREnbIu8="; + hash = "sha256-jipOGyr7k6hNZZ1DGx84RUSz2gCkuP9b81gPB61P+Yk="; inherit passthruFun; }; diff --git a/pkgs/development/php-packages/phing/default.nix b/pkgs/development/php-packages/phing/default.nix index f35900674f5f..670d56c9756c 100644 --- a/pkgs/development/php-packages/phing/default.nix +++ b/pkgs/development/php-packages/phing/default.nix @@ -8,16 +8,16 @@ (php.withExtensions ({ enabled, all }: enabled ++ (with all; [ xsl ]))).buildComposerProject2 (finalAttrs: { pname = "phing"; - version = "3.1.1"; + version = "3.1.2"; # Upstream no longer provides the composer.lock in their release artifact src = fetchgit { url = "https://github.com/phingofficial/phing"; tag = finalAttrs.version; - hash = "sha256-2v16ojUDIECLfwWy8/Rbp1A6LlAXnjr4/dJLh6oog8w="; + hash = "sha256-cMKHJT0Ylo+8QXBVCcoj1ImSAOOMkV/KqgomXA7vHK0="; }; - vendorHash = "sha256-dBk4/Mz2jh7Bq9VfdfvnWqSufbeAeVdC85zAnXVFQNA="; + vendorHash = "sha256-TTnltmE48yAXxWR9+aaa4tmv87shwBEkHlUoyCF2ZnI="; nativeInstallCheckInputs = [ versionCheckHook diff --git a/pkgs/development/python-modules/anthropic/default.nix b/pkgs/development/python-modules/anthropic/default.nix index 9ac181872887..9fd45085942c 100644 --- a/pkgs/development/python-modules/anthropic/default.nix +++ b/pkgs/development/python-modules/anthropic/default.nix @@ -21,6 +21,10 @@ # optional dependencies google-auth, + boto3, + botocore, + aiohttp, + httpx-aiohttp, # test dirty-equals, @@ -32,16 +36,16 @@ respx, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "anthropic"; - version = "0.76.0"; + version = "0.78.0"; pyproject = true; src = fetchFromGitHub { owner = "anthropics"; repo = "anthropic-sdk-python"; - tag = "v${version}"; - hash = "sha256-QEwUOPL/9ROV/UgD6KF2ePzjXDKHYrYrFvbJpVV8MO0="; + tag = "v${finalAttrs.version}"; + hash = "sha256-IN+vlP10KxkuzTgGRKr2k7hBnGTGFWdsW9ams6W+7Ak="; }; postPatch = '' @@ -67,7 +71,15 @@ buildPythonPackage rec { ]; optional-dependencies = { - vertex = [ google-auth ]; + aiohttp = [ + aiohttp + httpx-aiohttp + ]; + bedrock = [ + boto3 + botocore + ]; + vertex = [ google-auth ] ++ google-auth.optional-dependencies.requests; }; nativeCheckInputs = [ @@ -105,11 +117,11 @@ buildPythonPackage rec { meta = { description = "Anthropic's safety-first language model APIs"; homepage = "https://github.com/anthropics/anthropic-sdk-python"; - changelog = "https://github.com/anthropics/anthropic-sdk-python/releases/tag/${src.tag}"; + changelog = "https://github.com/anthropics/anthropic-sdk-python/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = [ lib.maintainers.natsukium lib.maintainers.sarahec ]; }; -} +}) diff --git a/pkgs/development/python-modules/carbon/default.nix b/pkgs/development/python-modules/carbon/default.nix index 76ff891182ec..7ea88b54262f 100644 --- a/pkgs/development/python-modules/carbon/default.nix +++ b/pkgs/development/python-modules/carbon/default.nix @@ -64,7 +64,6 @@ buildPythonPackage rec { changelog = "https://github.com/graphite-project/carbon/releases/tag/${version}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline basvandijk ]; }; diff --git a/pkgs/development/python-modules/cpe-search/default.nix b/pkgs/development/python-modules/cpe-search/default.nix index 803042148c44..b9596d75d524 100644 --- a/pkgs/development/python-modules/cpe-search/default.nix +++ b/pkgs/development/python-modules/cpe-search/default.nix @@ -13,14 +13,14 @@ buildPythonPackage (finalAttrs: { pname = "cpe-search"; - version = "0.2.5"; + version = "0.2.6"; pyproject = true; src = fetchFromGitHub { owner = "ra1nb0rn"; repo = "cpe_search"; tag = "v${finalAttrs.version}"; - hash = "sha256-GZzMS1zmI7w8L2qVa57KtY3sb/quULyXrPQYTcPFxTI="; + hash = "sha256-S6VmFy5JSp/yjTjz6VibGGf+49rfhKv9kXM6LPUTnT4="; }; build-system = [ hatchling ]; diff --git a/pkgs/development/python-modules/graphite-web/default.nix b/pkgs/development/python-modules/graphite-web/default.nix index 19bf7f0fb368..05c0c0d745e8 100644 --- a/pkgs/development/python-modules/graphite-web/default.nix +++ b/pkgs/development/python-modules/graphite-web/default.nix @@ -125,7 +125,6 @@ buildPythonPackage { homepage = "http://graphiteapp.org/"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline basvandijk ]; }; diff --git a/pkgs/development/python-modules/iamdata/default.nix b/pkgs/development/python-modules/iamdata/default.nix index 8d4b53158983..7f2740622a3c 100644 --- a/pkgs/development/python-modules/iamdata/default.nix +++ b/pkgs/development/python-modules/iamdata/default.nix @@ -8,14 +8,14 @@ buildPythonPackage (finalAttrs: { pname = "iamdata"; - version = "0.1.202602081"; + version = "0.1.202602111"; pyproject = true; src = fetchFromGitHub { owner = "cloud-copilot"; repo = "iam-data-python"; tag = "v${finalAttrs.version}"; - hash = "sha256-qv5TRKaveJJR4pjSWeEifCJn/nP5PTk+K5YhQPJNihw="; + hash = "sha256-gkPU9P3xgQ2jGrxi/Dl+wtbpJjZDGfYLiLZnKXEE3y8="; }; __darwinAllowLocalNetworking = true; diff --git a/pkgs/development/python-modules/mkdocstrings/default.nix b/pkgs/development/python-modules/mkdocstrings/default.nix index 04cf5cc0f818..a8b7585c2778 100644 --- a/pkgs/development/python-modules/mkdocstrings/default.nix +++ b/pkgs/development/python-modules/mkdocstrings/default.nix @@ -15,14 +15,14 @@ buildPythonPackage (finalAttrs: { pname = "mkdocstrings"; - version = "1.0.2"; + version = "1.0.3"; pyproject = true; src = fetchFromGitHub { owner = "mkdocstrings"; repo = "mkdocstrings"; tag = finalAttrs.version; - hash = "sha256-fdWHcg6WijOXsE6+03iPRineUHtMDU/Yfra3S9lkMWs="; + hash = "sha256-uiw2jNdzmq0kM6GxAzJs8TMTBjuk25kvuIMXxIa28VQ="; }; postPatch = '' diff --git a/pkgs/development/python-modules/nicegui/default.nix b/pkgs/development/python-modules/nicegui/default.nix index 287d71e36deb..4db5c9ee06aa 100644 --- a/pkgs/development/python-modules/nicegui/default.nix +++ b/pkgs/development/python-modules/nicegui/default.nix @@ -43,17 +43,20 @@ buildPythonPackage (finalAttrs: { pname = "nicegui"; - version = "3.6.1"; + version = "3.7.1"; pyproject = true; src = fetchFromGitHub { owner = "zauberzeug"; repo = "nicegui"; tag = "v${finalAttrs.version}"; - hash = "sha256-umM2ffkiXWJVU2i17fbtnd+ghEt0uVzop9fNhaRTCWM="; + hash = "sha256-+hZUGRHK51x4nlcbOOGbW15U6YZgKsxuzZPBad9mjXA="; }; - pythonRelaxDeps = [ "requests" ]; + pythonRelaxDeps = [ + "orjson" + "requests" + ]; build-system = [ poetry-core diff --git a/pkgs/development/python-modules/pelican/default.nix b/pkgs/development/python-modules/pelican/default.nix index aff3ee770632..4876ceca3051 100644 --- a/pkgs/development/python-modules/pelican/default.nix +++ b/pkgs/development/python-modules/pelican/default.nix @@ -131,7 +131,6 @@ buildPythonPackage rec { changelog = "https://github.com/getpelican/pelican/blob/${src.tag}/docs/changelog.rst"; license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ - offline prikhi ]; }; diff --git a/pkgs/development/python-modules/pyghmi/default.nix b/pkgs/development/python-modules/pyghmi/default.nix index 393251c32335..84a53a427ab3 100644 --- a/pkgs/development/python-modules/pyghmi/default.nix +++ b/pkgs/development/python-modules/pyghmi/default.nix @@ -14,12 +14,12 @@ buildPythonPackage rec { pname = "pyghmi"; - version = "1.6.11"; + version = "1.6.12"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-yFSpeGcrgO0kwrmbdQ4KPhlqWze2h1g7YdDFNNpoL34="; + hash = "sha256-BVEs/hkWrJKLL2s70CMQ1ZjleEPqZsIw6kObkqiJ2Mk="; }; build-system = [ diff --git a/pkgs/development/python-modules/pyqt/6.x.nix b/pkgs/development/python-modules/pyqt/6.x.nix index b6168ae165d5..5d6bd6d8337e 100644 --- a/pkgs/development/python-modules/pyqt/6.x.nix +++ b/pkgs/development/python-modules/pyqt/6.x.nix @@ -21,6 +21,7 @@ withSerialPort ? false, cups, withSpeech ? true, + withPdf ? true, }: buildPythonPackage rec { @@ -104,7 +105,8 @@ buildPythonPackage rec { ++ lib.optional withWebSockets qtwebsockets ++ lib.optional withLocation qtlocation ++ lib.optional withSerialPort qtserialport - ++ lib.optional withSpeech qtspeech; + ++ lib.optional withSpeech qtspeech + ++ lib.optional withPdf qtwebengine; buildInputs = with qt6Packages; @@ -121,7 +123,8 @@ buildPythonPackage rec { ++ lib.optional withWebSockets qtwebsockets ++ lib.optional withLocation qtlocation ++ lib.optional withSerialPort qtserialport - ++ lib.optional withSpeech qtspeech; + ++ lib.optional withSpeech qtspeech + ++ lib.optional withPdf qtwebengine; propagatedBuildInputs = # ld: library not found for -lcups @@ -151,7 +154,8 @@ buildPythonPackage rec { # ++ lib.optional withConnectivity "PyQt6.QtConnectivity" ++ lib.optional withLocation "PyQt6.QtPositioning" ++ lib.optional withSerialPort "PyQt6.QtSerialPort" - ++ lib.optional withSpeech "PyQt6.QtTextToSpeech"; + ++ lib.optional withSpeech "PyQt6.QtTextToSpeech" + ++ lib.optional withPdf "PyQt6.QtPdf"; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-address-of-temporary"; diff --git a/pkgs/development/python-modules/qpageview/default.nix b/pkgs/development/python-modules/qpageview/default.nix index a62b0bedbd0b..238c489ca28d 100644 --- a/pkgs/development/python-modules/qpageview/default.nix +++ b/pkgs/development/python-modules/qpageview/default.nix @@ -4,7 +4,6 @@ buildPythonPackage, hatchling, pyqt6, - poppler-qt5, pycups, }: @@ -24,7 +23,6 @@ buildPythonPackage rec { dependencies = [ pyqt6 - poppler-qt5 pycups ]; @@ -33,7 +31,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "qpageview" ]; meta = { - description = "Page-based viewer widget for Qt5/PyQt5"; + description = "Page-based viewer widget for Qt6/PyQt6"; homepage = "https://github.com/frescobaldi/qpageview"; changelog = "https://github.com/frescobaldi/qpageview/blob/${src.tag}/ChangeLog"; license = lib.licenses.gpl3Only; diff --git a/pkgs/development/python-modules/rdbtools/default.nix b/pkgs/development/python-modules/rdbtools/default.nix index 1dccccdc6aac..c1a4b6b8907a 100644 --- a/pkgs/development/python-modules/rdbtools/default.nix +++ b/pkgs/development/python-modules/rdbtools/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { homepage = "https://github.com/sripathikrishnan/redis-rdb-tools"; changelog = "https://github.com/sripathikrishnan/redis-rdb-tools/blob/rdbtools-${version}/CHANGES"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/remarshal/default.nix b/pkgs/development/python-modules/remarshal/default.nix index bdfb0e4ddfeb..561923f7ea5e 100644 --- a/pkgs/development/python-modules/remarshal/default.nix +++ b/pkgs/development/python-modules/remarshal/default.nix @@ -54,7 +54,7 @@ buildPythonPackage rec { description = "Convert between TOML, YAML and JSON"; license = lib.licenses.mit; homepage = "https://github.com/dbohdan/remarshal"; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; mainProgram = "remarshal"; }; } diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix index daaf959139f8..6b124472de72 100644 --- a/pkgs/development/python-modules/trezor/default.nix +++ b/pkgs/development/python-modules/trezor/default.nix @@ -3,53 +3,73 @@ lib, buildPythonPackage, fetchPypi, + hatchling, + pytestCheckHook, + pytest-random-order, + # dependencies click, construct, construct-classes, cryptography, - ecdsa, + keyring, libusb1, mnemonic, + noiseprotocol, + platformdirs, requests, - setuptools, shamir-mnemonic, slip10, typing-extensions, - trezor-udev-rules, - pytestCheckHook, + # optional-dependencies + bleak, + pillow, + hidapi, + web3, + pyqt5, }: buildPythonPackage rec { pname = "trezor"; - version = "0.13.10"; + version = "0.20.0"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-egtq5GKN0MMaXOtRJYkY2bvdOthROIg3IlgmsijuUE8="; + hash = "sha256-TAmOIDFbJxZnOr3vQCgi5xiRAVmMfAPyN0ndIBDuJQQ="; }; - build-system = [ setuptools ]; + build-system = [ hatchling ]; dependencies = [ click construct construct-classes cryptography - ecdsa + keyring libusb1 mnemonic + noiseprotocol + platformdirs requests shamir-mnemonic slip10 typing-extensions - ] - ++ lib.optionals stdenv.hostPlatform.isLinux [ trezor-udev-rules ]; + ]; - # fix "click<8.2,>=7 not satisfied by version 8.3.1" - pythonRelaxDeps = [ "click" ]; + optional-dependencies = { + ble = [ bleak ]; + extra = [ pillow ]; + hidapi = [ hidapi ]; + ethereum = [ web3 ]; + qt-widgets = [ pyqt5 ]; + # stellar = [ stellar-sdk ]; # missing in nixpkgs + full = lib.flatten (lib.attrValues (lib.removeAttrs optional-dependencies [ "full" ])); + }; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + pytest-random-order + ]; disabledTestPaths = [ "tests/test_stellar.py" # requires stellar-sdk diff --git a/pkgs/development/python-modules/vbuild/default.nix b/pkgs/development/python-modules/vbuild/default.nix index 980f0ac52d57..44159eac510b 100644 --- a/pkgs/development/python-modules/vbuild/default.nix +++ b/pkgs/development/python-modules/vbuild/default.nix @@ -8,7 +8,7 @@ pythonAtLeast, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "vbuild"; version = "0.8.2"; pyproject = true; @@ -16,16 +16,20 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "manatlan"; repo = "vbuild"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-p9v1FiYn0cI+f/25hvjwm7eb1GqxXvNnmXBGwZe9fk0="; }; postPatch = '' # Switch to poetry-core, patch can't be applied, https://github.com/manatlan/vbuild/pull/12 substituteInPlace pyproject.toml \ - --replace-fail 'version = "0.0.0"' 'version = "${version}"' \ + --replace-fail 'version = "0.0.0"' 'version = "${finalAttrs.version}"' \ --replace-fail 'requires = ["poetry>=0.12"]' 'requires = ["poetry-core>=1.0.0"]' \ --replace-fail 'build-backend = "poetry.masonry.api"' 'build-backend = "poetry.core.masonry.api"' + # https://github.com/manatlan/vbuild/commit/b9861bffd5d15491d5b5a4cb2a96bb71ceff0c35 is incomplete + substituteInPlace vbuild/__init__.py \ + --replace-fail ", pkgutil" ", importlib.util" \ + --replace-fail "pkgutil.find_loader" "importlib.util.find_spec" ''; pythonRelaxDeps = [ "pscript" ]; @@ -57,8 +61,8 @@ buildPythonPackage rec { meta = { description = "Module to compile your VueJS components to standalone HTML/JS/CSS"; homepage = "https://github.com/manatlan/vbuild"; - changelog = "https://github.com/manatlan/vbuild/blob/${src.rev}/changelog.md"; + changelog = "https://github.com/manatlan/vbuild/blob/${finalAttrs.src.rev}/changelog.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/development/python-modules/whisper/default.nix b/pkgs/development/python-modules/whisper/default.nix index b42a8ccb8055..3b872dbe99cd 100644 --- a/pkgs/development/python-modules/whisper/default.nix +++ b/pkgs/development/python-modules/whisper/default.nix @@ -43,7 +43,6 @@ buildPythonPackage rec { builtins.replaceStrings [ "." ] [ "_" ] version }.html"; maintainers = with lib.maintainers; [ - offline basvandijk ]; license = lib.licenses.asl20; diff --git a/pkgs/development/r-modules/cran-packages.json b/pkgs/development/r-modules/cran-packages.json index efdaccadfd5a..25abb9d1d6fe 100644 --- a/pkgs/development/r-modules/cran-packages.json +++ b/pkgs/development/r-modules/cran-packages.json @@ -5969,7 +5969,7 @@ "name": "ChoR", "version": "0.0-4", "sha256": "08mildsx542zfm0kcdakcv7c71hb4jgbcq1lhidf0fz76zj1pzk1", - "depends": ["commonsMath", "rJava"] + "depends": ["commons-math", "rJava"] }, "ChoiceModelR": { "name": "ChoiceModelR", @@ -54295,8 +54295,8 @@ "sha256": "0139jfaal03099kdykcljypaznrd7linx7x6fcm1wpgzykwxfivz", "depends": [] }, - "commonsMath": { - "name": "commonsMath", + "commons-math": { + "name": "commons-math", "version": "1.2.8", "sha256": "0qbb7c5xqffq17i636qf9ppanxlmph9wym9bz6n4dhscfniw14q8", "depends": [] @@ -147970,7 +147970,7 @@ "name": "aibd", "version": "0.1.9", "sha256": "1ispw8y0k665fdpw1c0swmhzl596jr89lnwyq741ak6ic92s3pzz", - "depends": ["commonsMath", "rscala"], + "depends": ["commons-math", "rscala"], "broken": true }, "aidar": { @@ -152380,7 +152380,7 @@ "name": "expands", "version": "2.1.3", "sha256": "00zb57gmpj86c7rvpqywpn4c5wl51immps935n3hd2fyk73vqljh", - "depends": ["ape", "commonsMath", "flexclust", "flexmix", "gplots", "matlab", "moments", "NbClust", "plyr", "RColorBrewer", "rJava"], + "depends": ["ape", "commons-math", "flexclust", "flexmix", "gplots", "matlab", "moments", "NbClust", "plyr", "RColorBrewer", "rJava"], "broken": true }, "expectreg": { @@ -162523,7 +162523,7 @@ "name": "shallot", "version": "0.4.10", "sha256": "05ciafpahcrsh9kwg1yqwbmanvkbv1i1cjjpvq3w4cdqkhn4fam7", - "depends": ["commonsMath", "rscala"], + "depends": ["commons-math", "rscala"], "broken": true }, "shiny_info": { diff --git a/pkgs/development/tools/compass/default.nix b/pkgs/development/tools/compass/default.nix index 696547325b94..cbf28b43f425 100644 --- a/pkgs/development/tools/compass/default.nix +++ b/pkgs/development/tools/compass/default.nix @@ -19,7 +19,6 @@ bundlerEnv { homepage = "https://github.com/Compass/compass"; license = with lib.licenses; mit; maintainers = with lib.maintainers; [ - offline nicknovitski ]; mainProgram = "compass"; diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index fa6d9bde9a48..121b8e175905 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -5,33 +5,33 @@ "lts": false }, "6.1": { - "version": "6.1.162", - "hash": "sha256:12fhqsz61g64wdx3hx637fx4zn7ks7kv9h7b26llx8mr94m44rlp", + "version": "6.1.163", + "hash": "sha256:1siq1jacl4xrlqn536h5rg73rygk8dp8n839asny05dx44rh6bgx", "lts": true }, "5.15": { - "version": "5.15.199", - "hash": "sha256:0bmx5y10mbn05qv0cvh7w6zhgzar88vj2kdm3j4m32hk9jpd7h01", + "version": "5.15.200", + "hash": "sha256:16193h91mc51p68gsjs6afaai47krf05hxcgp8r0k248cv4b3r7w", "lts": true }, "5.10": { - "version": "5.10.249", - "hash": "sha256:0ihh9pjnaz3lq9my6yhlikacadc5lldsypifjcpm8j8i4qsfv45r", + "version": "5.10.250", + "hash": "sha256:0afmjzlkx5ry8w01p7mafy3zq0xf9md5fpdy2ywn9wm94fi4sxa7", "lts": true }, "6.6": { - "version": "6.6.123", - "hash": "sha256:1ca5x6ri5i8xcm4dc5hv6b0xyv9npb9dy0wfvzi9g44al6sx85m6", + "version": "6.6.124", + "hash": "sha256:0kkri7y9g5c7hylwsdc2wq2drhniay171nnccr533qlvisgzpbm7", "lts": true }, "6.12": { - "version": "6.12.69", - "hash": "sha256:0rbnbynhm7w4ig8snq97px4ljr5k4zq1a97jqhwk4w0qy9bkcjab", + "version": "6.12.70", + "hash": "sha256:1w1flq4phr3i51c85bz8d9a8cg780vn7dr29y4j4izyfv33wwk4v", "lts": true }, "6.18": { - "version": "6.18.9", - "hash": "sha256:0y05jg6126h946pac5mkl5myh573qgml1p29hinm7jxlizzia083", + "version": "6.18.10", + "hash": "sha256:1plfwknqh5831kjq6f2yxcm4lqvp68a6kvcfnbxa5ba12wb7glyn", "lts": false }, "6.19": { diff --git a/pkgs/servers/home-assistant/custom-components/dwd/package.nix b/pkgs/servers/home-assistant/custom-components/dwd/package.nix index 91d05c751c7b..18e213de1f2a 100644 --- a/pkgs/servers/home-assistant/custom-components/dwd/package.nix +++ b/pkgs/servers/home-assistant/custom-components/dwd/package.nix @@ -8,13 +8,13 @@ buildHomeAssistantComponent rec { owner = "hg1337"; domain = "dwd"; - version = "2025.12.1"; + version = "2026.2.0"; src = fetchFromGitHub { owner = "hg1337"; repo = "homeassistant-dwd"; rev = version; - hash = "sha256-hhuSVHa0HgIPGXH9LJg5r0OTRrlY5fX1Ec+C8ZeNiPM="; + hash = "sha256-dH2TRNInfbZWS0IlNtAsL4Cxg2fCtopgFILUCyNz4NE="; }; dependencies = [ defusedxml ]; diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix index 43a0cc71034a..0a9f1bac15b1 100644 --- a/pkgs/servers/monitoring/grafana/default.nix +++ b/pkgs/servers/monitoring/grafana/default.nix @@ -159,7 +159,6 @@ buildGoModule (finalAttrs: { license = lib.licenses.agpl3Only; homepage = "https://grafana.com"; maintainers = with lib.maintainers; [ - offline fpletz globin ma27 diff --git a/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix b/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix index c23a9d65482f..e8430aef3339 100644 --- a/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix +++ b/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { mainProgram = "jmx_prometheus_httpserver"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.asl20; - maintainers = [ lib.maintainers.offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix index 3e6d72253e61..1af4c27fe2b5 100644 --- a/pkgs/servers/nosql/influxdb/default.nix +++ b/pkgs/servers/nosql/influxdb/default.nix @@ -101,7 +101,6 @@ buildGoModule rec { license = lib.licenses.mit; homepage = "https://influxdata.com/"; maintainers = with lib.maintainers; [ - offline zimbatm ]; }; diff --git a/pkgs/servers/nosql/mongodb/mongodb.nix b/pkgs/servers/nosql/mongodb/mongodb.nix index 84a4a0f5e7bb..91cd9715b6fe 100644 --- a/pkgs/servers/nosql/mongodb/mongodb.nix +++ b/pkgs/servers/nosql/mongodb/mongodb.nix @@ -173,9 +173,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "http://www.mongodb.org"; inherit license; - maintainers = with lib.maintainers; [ - offline - ]; + maintainers = [ ]; platforms = subtractLists systems.doubles.i686 systems.doubles.unix; }; }) diff --git a/pkgs/servers/search/elasticsearch/plugins.nix b/pkgs/servers/search/elasticsearch/plugins.nix index a20a52a01e65..e432fc366296 100644 --- a/pkgs/servers/search/elasticsearch/plugins.nix +++ b/pkgs/servers/search/elasticsearch/plugins.nix @@ -34,7 +34,7 @@ let nativeBuildInputs = [ unzip ]; meta = a.meta // { platforms = elasticsearch.meta.platforms; - maintainers = (a.meta.maintainers or [ ]) ++ (with lib.maintainers; [ offline ]); + maintainers = a.meta.maintainers or [ ]; }; } ); diff --git a/pkgs/tools/misc/fluentd/default.nix b/pkgs/tools/misc/fluentd/default.nix index d7140f31c836..302fdb25135c 100644 --- a/pkgs/tools/misc/fluentd/default.nix +++ b/pkgs/tools/misc/fluentd/default.nix @@ -20,7 +20,6 @@ bundlerEnv { homepage = "https://www.fluentd.org/"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ - offline nicknovitski ]; platforms = lib.platforms.unix; diff --git a/pkgs/tools/misc/logstash/7.x.nix b/pkgs/tools/misc/logstash/7.x.nix index 7d09cd140ff6..c61f8d86ac5a 100644 --- a/pkgs/tools/misc/logstash/7.x.nix +++ b/pkgs/tools/misc/logstash/7.x.nix @@ -76,7 +76,6 @@ let license = if enableUnfree then lib.licenses.elastic20 else lib.licenses.asl20; platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ - offline basvandijk ]; }; diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix index 241cd98f93a8..ef1b9bf7c2f0 100644 --- a/pkgs/tools/networking/flannel/default.nix +++ b/pkgs/tools/networking/flannel/default.nix @@ -32,7 +32,6 @@ buildGoModule rec { homepage = "https://github.com/flannel-io/flannel"; maintainers = with lib.maintainers; [ johanot - offline ]; platforms = with lib.platforms; linux; mainProgram = "flannel"; diff --git a/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix b/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix index 4bfce881ca0f..d09309bbadcb 100644 --- a/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix +++ b/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { meta = { description = "Openvpn learn-address script to manage a hosts-like file"; homepage = "https://gist.github.com/offlinehacker/4058733/"; - maintainers = [ lib.maintainers.offline ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/telepresence/default.nix b/pkgs/tools/networking/telepresence/default.nix index 8ceb33ad19ea..88fda3568660 100644 --- a/pkgs/tools/networking/telepresence/default.nix +++ b/pkgs/tools/networking/telepresence/default.nix @@ -59,6 +59,6 @@ pythonPackages.buildPythonPackage rec { description = "Local development against a remote Kubernetes or OpenShift cluster"; mainProgram = "telepresence"; license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ offline ]; + maintainers = [ ]; }; } diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index ea4e6eaf8b66..d7eaedfc3543 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -505,6 +505,15 @@ mapAliases { collada2gltf = throw "collada2gltf has been removed from Nixpkgs, as it has been unmaintained upstream for 5 years and does not build with supported GCC versions"; # Addd 2025-08-08 colloid-kde = throw "'colloid-kde' has been removed, as it is only compatible with Plasma 5, which is EOL"; # Added 2025-08-20 colorstorm = throw "'colorstorm' has been removed because it was unmaintained in nixpkgs and upstream was rewritten."; # Added 2025-06-15 + commonsBcel = warnAlias "'commonsBcel' has been renamed to 'commons-bcel'" commons-bcel; # Added 2026-02-08 + commonsBsf = warnAlias "'commonsBsf' has been renamed to 'commons-bsf'" commons-bsf; # Added 2026-02-08 + commonsCompress = warnAlias "'commonsCompress' has been renamed to 'commons-compress'" commons-compress; # Added 2026-02-08 + commonsDaemon = warnAlias "'commonsDaemon' has been renamed to 'commons-daemon'" commons-daemon; # Added 2026-02-08 + commonsFileUpload = warnAlias "'commonsFileUpload' has been renamed to 'commons-fileupload'" commons-fileupload; # Added 2026-02-08 + commonsIo = warnAlias "'commonsIo' has been renamed to 'commons-io'" commons-io; # Added 2026-02-08 + commonsLang = warnAlias "'commonsLang' has been renamed to 'commons-lang'" commons-lang; # Added 2026-02-08 + commonsLogging = warnAlias "'commonsLogging' has been renamed to 'commons-logging'" commons-logging; # Added 2026-02-08 + commonsMath = warnAlias "'commonsMath' has been renamed to 'commons-math'" commons-math; # Added 2026-02-08 computecpp = throw "'computecpp' has been removed because its source has been pulled"; # Added 2025-12-20 computecpp-unwrapped = throw "'computecpp-unwrapped' has been removed because its source has been pulled"; # Added 2025-12-20 conduwuit = throw "'conduwuit' has been removed as the upstream repository has been deleted. Consider migrating to 'matrix-conduit', 'matrix-continuwuity' or 'matrix-tuwunel' instead."; # Added 2025-08-08 @@ -644,6 +653,7 @@ mapAliases { fabs = throw "'fabs' has been removed due to being broken for more than a year; see RFC 180"; # Added 2026-02-05 fast-cli = throw "'fast-cli' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17 fastnlo_toolkit = throw "'fastnlo_toolkit' has been renamed to/replaced by 'fastnlo-toolkit'"; # Converted to throw 2025-10-27 + faustPhysicalModeling = warnAlias "'faustPhysicalModeling' has been renamed to 'faust-physicalmodeling'" faust-physicalmodeling; # Added 2026-02-08 faustStk = throw "'faustStk' has been renamed to/replaced by 'faustPhysicalModeling'"; # Converted to throw 2025-10-27 fbjni = throw "fbjni has been removed, as it was broken"; # Added 2025-08-25 fcitx5-catppuccin = throw "'fcitx5-catppuccin' has been renamed to/replaced by 'catppuccin-fcitx5'"; # Converted to throw 2025-10-27 @@ -2000,6 +2010,10 @@ mapAliases { xcbutilrenderutil = libxcb-render-util; # Added 2026-02-04 xcbutilwm = libxcb-wm; # Added 2026-02-04 xcursorthemes = xcursor-themes; # Added 2026-01-19 + xdg-terminal-exec-mkhl = warnAlias " + 'xdg-terminal-exec-mkhl' has been removed due to being behind the xdg-terminal-exec spec for too long, + use the reference implementation 'xdg-terminal-exec' instead. + " xdg-terminal-exec; # Added 2026-01-14 xdragon = throw "'xdragon' has been renamed to/replaced by 'dragon-drop'"; # Converted to throw 2025-10-27 xf86_input_cmt = xf86-input-cmt; # Added 2025-12-12 xf86_input_wacom = xf86-input-wacom; # Added 2025-12-12 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index df7aec8dbd1c..23c7530b5754 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3574,7 +3574,13 @@ with pkgs; trackma-qt = trackma.override { withQT = true; }; - trezorctl = with python3Packages; toPythonApplication trezor; + trezorctl = + with python3Packages; + toPythonApplication ( + trezor.overridePythonAttrs (oldAttrs: { + dependencies = oldAttrs.dependencies ++ oldAttrs.optional-dependencies.full; + }) + ); trezor-agent = with python3Packages; toPythonApplication trezor-agent;