diff options
Diffstat (limited to 'devel')
246 files changed, 2491 insertions, 1566 deletions
diff --git a/devel/Makefile b/devel/Makefile index c165c9779084..f32153b3d24b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1070,6 +1070,7 @@ SUBDIR += ittapi SUBDIR += ivykis SUBDIR += jam + SUBDIR += janet-lsp SUBDIR += jansson SUBDIR += java-findbugs SUBDIR += jclassinfo diff --git a/devel/R-cran-BH/Makefile b/devel/R-cran-BH/Makefile index 296ce363486f..433448fad87d 100644 --- a/devel/R-cran-BH/Makefile +++ b/devel/R-cran-BH/Makefile @@ -1,11 +1,11 @@ PORTNAME= BH -DISTVERSION= 1.87.0-1 +DISTVERSION= 1.90.0-1 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= eduardo@FreeBSD.org COMMENT= Boost C++ Header Files -WWW= https://cran.r-project.org/web/packages/BH/ +WWW= https://cran.r-project.org/package=BH LICENSE= BSL diff --git a/devel/R-cran-BH/distinfo b/devel/R-cran-BH/distinfo index e611b0bbd8cc..cd5a6f40a4bc 100644 --- a/devel/R-cran-BH/distinfo +++ b/devel/R-cran-BH/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734596499 -SHA256 (BH_1.87.0-1.tar.gz) = 59829ae635f42a23289a1c51617f5f972704e1b243b604dad20ef5a812e60393 -SIZE (BH_1.87.0-1.tar.gz) = 14335542 +TIMESTAMP = 1765833570 +SHA256 (BH_1.90.0-1.tar.gz) = 2e1fafb05938e81073561ae4892dc543ef15807e375e0ea8fa75e3ab79f0281b +SIZE (BH_1.90.0-1.tar.gz) = 14307014 diff --git a/devel/amber/Makefile b/devel/amber/Makefile index 3f4c0d8aa7af..1b771e136620 100644 --- a/devel/amber/Makefile +++ b/devel/amber/Makefile @@ -1,7 +1,7 @@ PORTNAME= amber DISTVERSIONPREFIX= v DISTVERSION= 0.6.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= devel PKGNAMESUFFIX= -code-search-replace-tool diff --git a/devel/argc/Makefile b/devel/argc/Makefile index 7857cad248fc..beff9f9e2219 100644 --- a/devel/argc/Makefile +++ b/devel/argc/Makefile @@ -1,7 +1,7 @@ PORTNAME= argc DISTVERSIONPREFIX= v DISTVERSION= 1.23.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/atlantis/Makefile b/devel/atlantis/Makefile index 2f7568305d61..3caa3d97749f 100644 --- a/devel/atlantis/Makefile +++ b/devel/atlantis/Makefile @@ -13,10 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= terraform:sysutils/terraform -USES= go:1.23,modules - -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 +USES= go:modules GO_MODULE= github.com/runatlantis/atlantis CGO_ENABLED= 0 diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile index 6ccff1dac878..a19565396ebe 100644 --- a/devel/autoconf/Makefile +++ b/devel/autoconf/Makefile @@ -1,5 +1,6 @@ PORTNAME= autoconf DISTVERSION= 2.72 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNU @@ -25,7 +26,6 @@ USES= perl5 tar:xz VERSION= ${DISTVERSION} GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --program-suffix=${VERSION} \ --without-lispdir CONFIGURE_ENV= AWK=${AWK} \ diff --git a/devel/autoconf/files/patch-01-bin_autoreconf.in b/devel/autoconf/files/patch-01-bin_autoreconf.in new file mode 100644 index 000000000000..db203ab42277 --- /dev/null +++ b/devel/autoconf/files/patch-01-bin_autoreconf.in @@ -0,0 +1,159 @@ +From e2a4935b45f273410e975ecf56ab26ad72855df0 Mon Sep 17 00:00:00 2001 +From: Bruno Haible <bruno@clisp.org> +Date: Wed, 2 Jul 2025 02:43:41 +0200 +Subject: [PATCH 1/2] autoreconf: Invoke autopoint in more situations. + +Reported in <https://savannah.gnu.org/support/?111272>. + +* bin/autoreconf.in (autoreconf_current_directory): Invoke autopoint also when +the package uses AM_GNU_GETTEXT (without AM_GNU_GETTEXT_VERSION), AM_PO_SUBDIRS, +AM_ICONV, AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS, AC_LIB_LINKFLAGS_FROM_LIBS, +or GUILE_FLAGS. +--- + bin/autoreconf.in | 80 ++++++++++++++++++++++++++++++++++++++++++++--- + 1 file changed, 76 insertions(+), 4 deletions(-) + +diff --git a/bin/autoreconf.in b/bin/autoreconf.in +index a5ffc6fa..207900df 100644 +--- bin/autoreconf.in ++++ bin/autoreconf.in +@@ -440,6 +440,8 @@ sub autoreconf_current_directory ($) + # ---------------------- # + + my $uses_autoconf; ++ my $uses_liblink; ++ my $uses_iconv; + my $uses_gettext; + if (-f $configure_ac) + { +@@ -449,8 +451,13 @@ sub autoreconf_current_directory ($) + s/#.*//; + s/dnl.*//; + $uses_autoconf = 1 if /AC_INIT/; ++ $uses_liblink = 1 if /AC_LIB_HAVE_LINKFLAGS/; ++ $uses_liblink = 1 if /AC_LIB_LINKFLAGS/; ++ $uses_liblink = 1 if /AC_LIB_LINKFLAGS_FROM_LIBS/; ++ $uses_iconv = 1 if /AM_ICONV/; + # See below for why we look for gettext here. +- $uses_gettext = 1 if /^AM_GNU_GETTEXT_(?:REQUIRE_)?VERSION/; ++ $uses_gettext = 1 if /AM_GNU_GETTEXT/; ++ $uses_gettext = 1 if /AM_PO_SUBDIRS/; + } + if (!$uses_autoconf) + { +@@ -485,7 +492,7 @@ sub autoreconf_current_directory ($) + # Actually, it is even more restrictive, as it greps for + # '^AM_GNU_GETTEXT_(REQUIRE_)?VERSION('. We did this above, while + # scanning configure.ac. +- if (!$uses_gettext) ++ if (!$uses_liblink && !$uses_iconv && !$uses_gettext) + { + verb "$configure_ac: not using Gettext"; + } +@@ -495,8 +502,21 @@ sub autoreconf_current_directory ($) + } + else + { +- xsystem_hint ("autopoint is needed because this package uses Gettext", +- $autopoint); ++ if ($uses_gettext) ++ { ++ xsystem_hint ("autopoint is needed because this package uses Gettext", ++ $autopoint); ++ } ++ elsif ($uses_iconv) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AM_ICONV", ++ $autopoint); ++ } ++ elsif ($uses_liblink) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", ++ $autopoint); ++ } + } + + +@@ -576,6 +596,8 @@ sub autoreconf_current_directory ($) + # from the final autoconf invocation. + my $aux_dir; + my @aux_files; ++ my $uses_liblink_via_traces; ++ my $uses_iconv_via_traces; + my $uses_gettext_via_traces; + my $uses_libtool; + my $uses_intltool; +@@ -603,6 +625,11 @@ sub autoreconf_current_directory ($) + 'AM_PROG_LIBTOOL', + 'LT_INIT', + 'LT_CONFIG_LTDL_DIR', ++ 'AC_LIB_LINKFLAGS', ++ 'AC_LIB_HAVE_LINKFLAGS', ++ 'AC_LIB_LINKFLAGS_FROM_LIBS', ++ 'GUILE_FLAGS', ++ 'AM_ICONV', + 'AM_GNU_GETTEXT', + 'AM_INIT_AUTOMAKE', + 'GTK_DOC_CHECK', +@@ -617,6 +644,15 @@ sub autoreconf_current_directory ($) + $aux_dir = $args[0] if $macro eq "AC_CONFIG_AUX_DIR"; + push @aux_files, $args[0] if $macro eq "AC_REQUIRE_AUX_FILE"; + $uses_autoconf = 1 if $macro eq "AC_INIT"; ++ # Here we need to explicitly test for GUILE_FLAGS, because in the ++ # typical situation where configure.ac invokes GUILE_FLAGS, ++ # guile.m4 defines GUILE_FLAGS and uses AC_LIB_LINKFLAGS_FROM_LIBS, ++ # the traces still for AC_LIB_LINKFLAGS_FROM_LIBS are empty. ++ $uses_liblink_via_traces = 1 if $macro eq "AC_LIB_LINKFLAGS" ++ || $macro eq "AC_LIB_HAVE_LINKFLAGS" ++ || $macro eq "AC_LIB_LINKFLAGS_FROM_LIBS" ++ || $macro eq "GUILE_FLAGS"; ++ $uses_iconv_via_traces = 1 if $macro eq "AM_ICONV"; + $uses_gettext_via_traces = 1 if $macro eq "AM_GNU_GETTEXT"; + $uses_libtool = 1 if $macro eq "AC_PROG_LIBTOOL" + || $macro eq "AM_PROG_LIBTOOL" +@@ -741,6 +777,42 @@ sub autoreconf_current_directory ($) + } + + ++ # --------------------------------------------- # ++ # Running autopoint, if not already run above. # ++ # --------------------------------------------- # ++ ++ if (!$uses_liblink_via_traces && !$uses_iconv_via_traces && !$uses_gettext_via_traces) ++ { ++ verb "$configure_ac: not needing autopoint"; ++ } ++ elsif (!$install) ++ { ++ verb "$configure_ac: not running autopoint: --install not given"; ++ } ++ elsif ($uses_liblink || $uses_iconv || $uses_gettext) ++ { ++ verb "$configure_ac: not running autopoint a second time"; ++ } ++ else ++ { ++ if ($uses_gettext_via_traces) ++ { ++ xsystem_hint ("autopoint is needed because this package uses Gettext", ++ $autopoint); ++ } ++ elsif ($uses_iconv_via_traces) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AM_ICONV", ++ $autopoint); ++ } ++ elsif ($uses_liblink_via_traces) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", ++ $autopoint); ++ } ++ } ++ ++ + # ------------------- # + # Rerunning aclocal. # + # ------------------- # +-- +2.43.0 + diff --git a/devel/autoconf/files/patch-02-bin_autoreconf.in b/devel/autoconf/files/patch-02-bin_autoreconf.in new file mode 100644 index 000000000000..e5da001e84d6 --- /dev/null +++ b/devel/autoconf/files/patch-02-bin_autoreconf.in @@ -0,0 +1,102 @@ +From d75171fdf8d03d2e070fcc3dbb5afb942dbd7828 Mon Sep 17 00:00:00 2001 +From: Bruno Haible <bruno@clisp.org> +Date: Sat, 5 Jul 2025 17:20:11 +0200 +Subject: [PATCH] autoreconf: Adapt to the on-disk situation after autopoint + has run. + +Reported in <https://savannah.gnu.org/support/?111273>. + +* bin/autoreconf.in (autoreconf_current_directory): After invoking autopoint, +rerun aclocal. When doing so, pass extra options "-I m4" if the configure.ac +does not specify a macro dir. +--- + bin/autoreconf.in | 24 ++++++++++++++++++++++++ + 1 file changed, 24 insertions(+) + +diff --git a/bin/autoreconf.in b/bin/autoreconf.in +index 3f6a74fe..eb0d96a9 100644 +--- bin/autoreconf.in ++++ bin/autoreconf.in +@@ -489,6 +489,7 @@ sub autoreconf_current_directory ($) + # Actually, it is even more restrictive, as it greps for + # '^AM_GNU_GETTEXT_(REQUIRE_)?VERSION('. We did this above, while + # scanning configure.ac. ++ my $invoked_autopoint; + if (!$uses_liblink && !$uses_iconv && !$uses_gettext) + { + verb "$configure_ac: not using Gettext"; +@@ -514,6 +515,7 @@ sub autoreconf_current_directory ($) + xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", + $autopoint); + } ++ $invoked_autopoint = 1; + } + + +@@ -593,6 +595,7 @@ sub autoreconf_current_directory ($) + # from the final autoconf invocation. + my $aux_dir; + my @aux_files; ++ my @macro_dirs; + my $uses_liblink_via_traces; + my $uses_iconv_via_traces; + my $uses_gettext_via_traces; +@@ -616,6 +619,8 @@ sub autoreconf_current_directory ($) + 'AC_CONFIG_AUX_DIR', + 'AC_CONFIG_HEADERS', + 'AC_CONFIG_SUBDIRS', ++ 'AC_CONFIG_MACRO_DIR_TRACE', ++ 'AC_CONFIG_MACRO_DIR', + 'AC_INIT', + 'AC_REQUIRE_AUX_FILE', + 'AC_PROG_LIBTOOL', +@@ -640,6 +645,8 @@ sub autoreconf_current_directory ($) + my ($macro, @args) = split (/::/); + $aux_dir = $args[0] if $macro eq "AC_CONFIG_AUX_DIR"; + push @aux_files, $args[0] if $macro eq "AC_REQUIRE_AUX_FILE"; ++ push @macro_dirs, $args[0] if $macro eq "AC_CONFIG_MACRO_DIR_TRACE" ++ || $macro eq "AC_CONFIG_MACRO_DIR"; + $uses_autoconf = 1 if $macro eq "AC_INIT"; + # Here we need to explicitly test for GUILE_FLAGS, because in the + # typical situation where configure.ac invokes GUILE_FLAGS, +@@ -679,6 +686,15 @@ sub autoreconf_current_directory ($) + } + } + ++ # When configure.ac does not specify a macro dir, autopoint has ++ # created a directory named 'm4' and copied its *.m4 files into it. ++ # In this case, we need to rerun 'aclocal', in order to pass it the ++ # options "-I m4" this time. ++ if ($invoked_autopoint && !@macro_dirs) ++ { ++ $rerun_aclocal = 1; ++ } ++ + # Gettext consistency checks. + # Some projects intentionally don't call AM_GNU_GETTEXT_(REQUIRE_)VERSION + # because they have all of the gettext infrastructure checked into version +@@ -807,6 +823,8 @@ sub autoreconf_current_directory ($) + xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", + $autopoint); + } ++ $invoked_autopoint = 1; ++ $rerun_aclocal = 1; + } + + +@@ -824,6 +842,12 @@ sub autoreconf_current_directory ($) + } + else + { ++ # When configure.ac does not specify a macro dir, autopoint has ++ # created a directory named 'm4' and copied its *.m4 files into it. ++ if ($invoked_autopoint && !@macro_dirs) ++ { ++ $aclocal_flags .= " -I m4"; ++ } + xsystem ("$aclocal $aclocal_flags"); + } + } +-- +2.43.0 + diff --git a/devel/autogen/Makefile b/devel/autogen/Makefile index de22eb06d6b0..397c529a91d4 100644 --- a/devel/autogen/Makefile +++ b/devel/autogen/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= ${RUN_DEPENDS} \ gmktemp:sysutils/coreutils RUN_DEPENDS= bash:shells/bash -USES= gmake gnome guile:2.2 libtool pathfix perl5 pkgconfig shebangfix tar:xz +USES= gmake gnome guile:2.2 libtool perl5 pkgconfig shebangfix tar:xz USE_GNOME= libxml2 USE_PERL5= build diff --git a/devel/automake/Makefile b/devel/automake/Makefile index bb352b768396..7d93546924e4 100644 --- a/devel/automake/Makefile +++ b/devel/automake/Makefile @@ -1,5 +1,5 @@ PORTNAME= automake -DISTVERSION= 1.17 +DISTVERSION= 1.18.1 CATEGORIES= devel MASTER_SITES= GNU diff --git a/devel/automake/distinfo b/devel/automake/distinfo index a3844d9801b2..37243399ae7f 100644 --- a/devel/automake/distinfo +++ b/devel/automake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1720960384 -SHA256 (automake-1.17.tar.xz) = 8920c1fc411e13b90bf704ef9db6f29d540e76d232cb3b2c9f4dc4cc599bd990 -SIZE (automake-1.17.tar.xz) = 1652632 +TIMESTAMP = 1764352805 +SHA256 (automake-1.18.1.tar.xz) = 168aa363278351b89af56684448f525a5bce5079d0b6842bd910fdd3f1646887 +SIZE (automake-1.18.1.tar.xz) = 1652392 diff --git a/devel/bacon/Makefile b/devel/bacon/Makefile index 67d256b0323e..2625384b8aed 100644 --- a/devel/bacon/Makefile +++ b/devel/bacon/Makefile @@ -1,6 +1,7 @@ PORTNAME= bacon DISTVERSIONPREFIX= v DISTVERSION= 3.20.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/bear/Makefile b/devel/bear/Makefile index 8f5fbe095eac..ce3d376e7dbe 100644 --- a/devel/bear/Makefile +++ b/devel/bear/Makefile @@ -1,9 +1,9 @@ PORTNAME= bear DISTVERSION= 3.1.5 -PORTREVISION= 17 +PORTREVISION= 19 CATEGORIES= devel -MAINTAINER= jrm@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Tool that generates a compilation database for clang tooling WWW= https://github.com/rizsotto/Bear @@ -29,7 +29,7 @@ CMAKE_ARGS= -DCMAKE_INSTALL_DOCDIR=${DOCSDIR} \ OPTIONS_DEFINE= DOCS CLANG_COMPILERS= 33 34 35 36 37 38 39 40 50 60 70 80 90 10 11 12 13 14 \ - 15 16 17 18 19 20 + 15 16 17 18 19 20 21 GNU_COMPILERS= 34 42 43 44 45 46 47 48 49 5 6 7 8 9 10 11 12 13 14 15 COMPILERS= cc c++ CC clang clang++ ${CLANG_COMPILERS:S|^|clang|} \ ${CLANG_COMPILERS:S|^|clang++|} \ diff --git a/devel/bear/pkg-plist b/devel/bear/pkg-plist index 3950fee42d87..20c4d252e776 100644 --- a/devel/bear/pkg-plist +++ b/devel/bear/pkg-plist @@ -21,6 +21,7 @@ lib/bear/wrapper.d/clang++17 lib/bear/wrapper.d/clang++18 lib/bear/wrapper.d/clang++19 lib/bear/wrapper.d/clang++20 +lib/bear/wrapper.d/clang++21 lib/bear/wrapper.d/clang++33 lib/bear/wrapper.d/clang++34 lib/bear/wrapper.d/clang++35 @@ -45,6 +46,7 @@ lib/bear/wrapper.d/clang17 lib/bear/wrapper.d/clang18 lib/bear/wrapper.d/clang19 lib/bear/wrapper.d/clang20 +lib/bear/wrapper.d/clang21 lib/bear/wrapper.d/clang33 lib/bear/wrapper.d/clang34 lib/bear/wrapper.d/clang35 @@ -69,6 +71,7 @@ lib/bear/wrapper.d/cpp17 lib/bear/wrapper.d/cpp18 lib/bear/wrapper.d/cpp19 lib/bear/wrapper.d/cpp20 +lib/bear/wrapper.d/cpp21 lib/bear/wrapper.d/cpp33 lib/bear/wrapper.d/cpp34 lib/bear/wrapper.d/cpp35 diff --git a/devel/bingrep/Makefile b/devel/bingrep/Makefile index b3833c8e6069..91b0b54e2539 100644 --- a/devel/bingrep/Makefile +++ b/devel/bingrep/Makefile @@ -1,7 +1,7 @@ PORTNAME= bingrep DISTVERSIONPREFIX= v DISTVERSION= 0.11.0 -PORTREVISION= 25 +PORTREVISION= 26 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org diff --git a/devel/buildkite-cli/Makefile b/devel/buildkite-cli/Makefile index 2f629b08f8e6..e5b87889460b 100644 --- a/devel/buildkite-cli/Makefile +++ b/devel/buildkite-cli/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/buildkite/cli LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md -USES= go:1.24,modules +USES= go:1.24+,modules USE_GITHUB= yes GH_ACCOUNT= buildkite GH_PROJECT= cli diff --git a/devel/bunyan/Makefile b/devel/bunyan/Makefile index 3d9a8ff48c0c..41909e5f30e5 100644 --- a/devel/bunyan/Makefile +++ b/devel/bunyan/Makefile @@ -1,7 +1,7 @@ PORTNAME= bunyan DISTVERSIONPREFIX= v DISTVERSION= 0.1.9 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/busd/Makefile b/devel/busd/Makefile index a146a8546f4b..5ce6951b4fbc 100644 --- a/devel/busd/Makefile +++ b/devel/busd/Makefile @@ -1,6 +1,6 @@ PORTNAME= busd DISTVERSION= 0.4.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org diff --git a/devel/bustle/Makefile b/devel/bustle/Makefile index 14293e6f199d..a452ecf202ff 100644 --- a/devel/bustle/Makefile +++ b/devel/bustle/Makefile @@ -1,6 +1,6 @@ PORTNAME= bustle DISTVERSION= 0.12.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel gnome MAINTAINER= tagattie@FreeBSD.org diff --git a/devel/capslock/Makefile b/devel/capslock/Makefile index 680f088550a9..bef73560c403 100644 --- a/devel/capslock/Makefile +++ b/devel/capslock/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/google/capslock LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.24,modules +USES= go:1.24+,modules GO_MODULE= github.com/google/capslock GO_TARGET= ./cmd/capslock diff --git a/devel/cargo-bloat/Makefile b/devel/cargo-bloat/Makefile index 77368218ec61..d7a03bf14842 100644 --- a/devel/cargo-bloat/Makefile +++ b/devel/cargo-bloat/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-bloat DISTVERSIONPREFIX= v DISTVERSION= 0.12.1 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-c/Makefile b/devel/cargo-c/Makefile index 4523eebbabf0..811bf3f91920 100644 --- a/devel/cargo-c/Makefile +++ b/devel/cargo-c/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-c DISTVERSION= 0.10.16 DISTVERSIONSUFFIX= +cargo-0.91.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CRATESIO # XXX Teach USES=cargo to have proper default diff --git a/devel/cargo-cache/Makefile b/devel/cargo-cache/Makefile index 2d5a1955daeb..c0eb054171a6 100644 --- a/devel/cargo-cache/Makefile +++ b/devel/cargo-cache/Makefile @@ -1,6 +1,6 @@ PORTNAME= cargo-cache DISTVERSION= 0.8.3 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-deny/Makefile b/devel/cargo-deny/Makefile index 7b36d1207e31..fedde3af5ef0 100644 --- a/devel/cargo-deny/Makefile +++ b/devel/cargo-deny/Makefile @@ -1,5 +1,6 @@ PORTNAME= cargo-deny DISTVERSION= 0.18.7 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-depgraph/Makefile b/devel/cargo-depgraph/Makefile index 73651f2ea383..69c98ecc75e8 100644 --- a/devel/cargo-depgraph/Makefile +++ b/devel/cargo-depgraph/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-depgraph DISTVERSIONPREFIX= v DISTVERSION= 1.6.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-dist/Makefile b/devel/cargo-dist/Makefile index ea9c310b5870..a07d229e1267 100644 --- a/devel/cargo-dist/Makefile +++ b/devel/cargo-dist/Makefile @@ -1,6 +1,7 @@ PORTNAME= cargo-dist DISTVERSIONPREFIX= v -DISTVERSION= 0.30.2 +DISTVERSION= 0.30.3 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org @@ -24,12 +25,12 @@ GH_ACCOUNT= axodotdev CARGO_CRATES= addr2line-0.25.1 \ adler2-2.0.0 \ aes-0.8.4 \ - ahash-0.8.11 \ + ahash-0.8.12 \ aho-corasick-1.1.3 \ android-tzdata-0.1.1 \ android_system_properties-0.1.5 \ anstream-0.6.14 \ - anstyle-1.0.8 \ + anstyle-1.0.13 \ anstyle-parse-0.2.4 \ anstyle-query-1.0.3 \ anstyle-wincon-3.0.3 \ @@ -56,21 +57,22 @@ CARGO_CRATES= addr2line-0.25.1 \ bzip2-0.6.0 \ camino-1.2.1 \ cargo-platform-0.1.8 \ + cargo-platform-0.3.1 \ cargo-wix-0.3.9 \ cargo_metadata-0.18.1 \ - cargo_metadata-0.19.2 \ - cc-1.0.98 \ - cfg-expr-0.18.0 \ - cfg-if-1.0.0 \ + cargo_metadata-0.23.1 \ + cc-1.2.44 \ + cfg-expr-0.20.3 \ + cfg-if-1.0.4 \ cfg_aliases-0.2.1 \ chrono-0.4.38 \ cipher-0.4.4 \ - clap-4.5.50 \ - clap-cargo-0.17.1 \ - clap_builder-4.5.50 \ + clap-4.5.53 \ + clap-cargo-0.18.3 \ + clap_builder-4.5.53 \ clap_derive-4.5.49 \ clap_lex-0.7.4 \ - color-backtrace-0.7.1 \ + color-backtrace-0.7.2 \ colorchoice-1.0.1 \ comfy-table-7.2.1 \ console-0.15.10 \ @@ -107,9 +109,11 @@ CARGO_CRATES= addr2line-0.25.1 \ errno-0.3.13 \ fastrand-2.1.0 \ filetime-0.2.23 \ + find-msvc-tools-0.1.4 \ fixedbitset-0.5.7 \ - flate2-1.1.5 \ + flate2-1.1.7 \ fnv-1.0.7 \ + foldhash-0.1.5 \ form_urlencoded-1.2.2 \ futures-channel-0.3.30 \ futures-core-0.3.30 \ @@ -119,8 +123,8 @@ CARGO_CRATES= addr2line-0.25.1 \ getrandom-0.2.15 \ getrandom-0.3.3 \ gimli-0.32.3 \ - goblin-0.8.2 \ - guppy-0.17.13 \ + goblin-0.10.4 \ + guppy-0.17.23 \ guppy-workspace-hack-0.1.0 \ hashbrown-0.12.3 \ hashbrown-0.15.2 \ @@ -157,7 +161,7 @@ CARGO_CRATES= addr2line-0.25.1 \ indexmap-1.9.3 \ indexmap-2.11.4 \ inout-0.1.3 \ - insta-1.43.2 \ + insta-1.44.3 \ ipnet-2.9.0 \ is-terminal-0.4.12 \ is_ci-1.2.0 \ @@ -173,7 +177,6 @@ CARGO_CRATES= addr2line-0.25.1 \ libbz2-rs-sys-0.2.2 \ libc-0.2.174 \ libyml-0.0.4 \ - libz-rs-sys-0.5.1 \ linux-raw-sys-0.4.14 \ linux-raw-sys-0.9.4 \ litemap-0.7.3 \ @@ -190,7 +193,7 @@ CARGO_CRATES= addr2line-0.25.1 \ miette-derive-5.10.0 \ miette-derive-7.6.0 \ mime-0.3.17 \ - minijinja-2.12.0 \ + minijinja-2.14.0 \ minimal-lexical-0.2.1 \ miniz_oxide-0.8.9 \ mio-1.0.1 \ @@ -204,7 +207,7 @@ CARGO_CRATES= addr2line-0.25.1 \ num-conv-0.1.0 \ num-traits-0.2.19 \ object-0.37.3 \ - once_cell-1.20.2 \ + once_cell-1.21.3 \ openssl-probe-0.1.5 \ oro-common-0.3.34 \ oro-package-spec-0.3.34 \ @@ -216,7 +219,7 @@ CARGO_CRATES= addr2line-0.25.1 \ pbkdf2-0.12.2 \ percent-encoding-2.3.2 \ peresil-0.3.0 \ - petgraph-0.7.1 \ + petgraph-0.8.3 \ pin-project-1.1.5 \ pin-project-internal-1.1.5 \ pin-project-lite-0.2.14 \ @@ -237,11 +240,13 @@ CARGO_CRATES= addr2line-0.25.1 \ rand_core-0.6.4 \ redox_syscall-0.4.1 \ redox_syscall-0.5.1 \ + ref-cast-1.0.25 \ + ref-cast-impl-1.0.25 \ regex-1.10.4 \ regex-automata-0.4.6 \ regex-syntax-0.8.3 \ reqwest-0.12.5 \ - ring-0.17.8 \ + ring-0.17.14 \ rustc-cfg-0.5.0 \ rustc-demangle-0.1.24 \ rustc-hash-1.1.0 \ @@ -256,11 +261,11 @@ CARGO_CRATES= addr2line-0.25.1 \ ryu-1.0.18 \ same-file-1.0.6 \ schannel-0.1.23 \ - schemars-0.8.22 \ - schemars_derive-0.8.22 \ + schemars-1.1.0 \ + schemars_derive-1.1.0 \ scopeguard-1.2.0 \ - scroll-0.12.0 \ - scroll_derive-0.12.0 \ + scroll-0.13.0 \ + scroll_derive-0.13.1 \ security-framework-2.11.0 \ security-framework-sys-2.11.0 \ self-replace-1.5.0 \ @@ -279,6 +284,7 @@ CARGO_CRATES= addr2line-0.25.1 \ sha3-0.10.8 \ sharded-slab-0.1.7 \ shell-words-1.1.0 \ + shlex-1.3.0 \ signal-hook-registry-1.4.2 \ simd-adler32-0.3.7 \ similar-2.7.0 \ @@ -286,8 +292,7 @@ CARGO_CRATES= addr2line-0.25.1 \ smallvec-1.15.1 \ socket2-0.5.7 \ socket2-0.6.0 \ - spdx-0.12.0 \ - spin-0.9.8 \ + spdx-0.13.2 \ stable_deref_trait-1.2.0 \ static_assertions-1.1.0 \ strsim-0.10.0 \ @@ -304,7 +309,7 @@ CARGO_CRATES= addr2line-0.25.1 \ synstructure-0.13.1 \ tar-0.4.44 \ target-lexicon-0.13.2 \ - target-spec-3.4.2 \ + target-spec-3.5.4 \ temp-dir-0.1.16 \ tempfile-3.10.1 \ termcolor-1.4.1 \ @@ -332,9 +337,9 @@ CARGO_CRATES= addr2line-0.25.1 \ tower-0.4.13 \ tower-layer-0.3.2 \ tower-service-0.3.2 \ - tracing-0.1.41 \ - tracing-attributes-0.1.28 \ - tracing-core-0.1.33 \ + tracing-0.1.43 \ + tracing-attributes-0.1.31 \ + tracing-core-0.1.35 \ tracing-log-0.2.0 \ tracing-subscriber-0.3.20 \ try-lock-0.2.5 \ @@ -417,8 +422,8 @@ CARGO_CRATES= addr2line-0.25.1 \ xz2-0.1.7 \ yoke-0.7.4 \ yoke-derive-0.7.4 \ - zerocopy-0.7.34 \ - zerocopy-derive-0.7.34 \ + zerocopy-0.8.27 \ + zerocopy-derive-0.8.27 \ zerofrom-0.1.4 \ zerofrom-derive-0.1.4 \ zeroize-1.8.1 \ @@ -426,7 +431,7 @@ CARGO_CRATES= addr2line-0.25.1 \ zerovec-0.10.4 \ zerovec-derive-0.10.3 \ zip-4.5.0 \ - zlib-rs-0.5.1 \ + zlib-rs-0.5.3 \ zopfli-0.8.2 \ zstd-0.13.1 \ zstd-safe-7.1.0 \ diff --git a/devel/cargo-dist/distinfo b/devel/cargo-dist/distinfo index f18009c04f0b..58445a7df576 100644 --- a/devel/cargo-dist/distinfo +++ b/devel/cargo-dist/distinfo @@ -1,12 +1,12 @@ -TIMESTAMP = 1763956198 +TIMESTAMP = 1765873601 SHA256 (rust/crates/addr2line-0.25.1.crate) = 1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b SIZE (rust/crates/addr2line-0.25.1.crate) = 43134 SHA256 (rust/crates/adler2-2.0.0.crate) = 512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627 SIZE (rust/crates/adler2-2.0.0.crate) = 13529 SHA256 (rust/crates/aes-0.8.4.crate) = b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0 SIZE (rust/crates/aes-0.8.4.crate) = 124812 -SHA256 (rust/crates/ahash-0.8.11.crate) = e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011 -SIZE (rust/crates/ahash-0.8.11.crate) = 43607 +SHA256 (rust/crates/ahash-0.8.12.crate) = 5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75 +SIZE (rust/crates/ahash-0.8.12.crate) = 43413 SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 SHA256 (rust/crates/android-tzdata-0.1.1.crate) = e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0 @@ -15,8 +15,8 @@ SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac2 SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 SHA256 (rust/crates/anstream-0.6.14.crate) = 418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b SIZE (rust/crates/anstream-0.6.14.crate) = 29160 -SHA256 (rust/crates/anstyle-1.0.8.crate) = 1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1 -SIZE (rust/crates/anstyle-1.0.8.crate) = 15771 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 SHA256 (rust/crates/anstyle-parse-0.2.4.crate) = c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4 SIZE (rust/crates/anstyle-parse-0.2.4.crate) = 23069 SHA256 (rust/crates/anstyle-query-1.0.3.crate) = a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5 @@ -69,36 +69,38 @@ SHA256 (rust/crates/camino-1.2.1.crate) = 276a59bf2b2c967788139340c9f0c5b12d7fd6 SIZE (rust/crates/camino-1.2.1.crate) = 41364 SHA256 (rust/crates/cargo-platform-0.1.8.crate) = 24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc SIZE (rust/crates/cargo-platform-0.1.8.crate) = 11813 +SHA256 (rust/crates/cargo-platform-0.3.1.crate) = 122ec45a44b270afd1402f351b782c676b173e3c3fb28d86ff7ebfb4d86a4ee4 +SIZE (rust/crates/cargo-platform-0.3.1.crate) = 13321 SHA256 (rust/crates/cargo-wix-0.3.9.crate) = 7023fb5f51309588c35ef9323b58a805e6a9bad4be4d4e3054264fea9a1cdbad SIZE (rust/crates/cargo-wix-0.3.9.crate) = 125412 SHA256 (rust/crates/cargo_metadata-0.18.1.crate) = 2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037 SIZE (rust/crates/cargo_metadata-0.18.1.crate) = 24535 -SHA256 (rust/crates/cargo_metadata-0.19.2.crate) = dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba -SIZE (rust/crates/cargo_metadata-0.19.2.crate) = 28370 -SHA256 (rust/crates/cc-1.0.98.crate) = 41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f -SIZE (rust/crates/cc-1.0.98.crate) = 76780 -SHA256 (rust/crates/cfg-expr-0.18.0.crate) = 1a2b34126159980f92da2a08bdec0694fd80fb5eb9e48aff25d20a0d8dfa710d -SIZE (rust/crates/cfg-expr-0.18.0.crate) = 44133 -SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd -SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 +SHA256 (rust/crates/cargo_metadata-0.23.1.crate) = ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9 +SIZE (rust/crates/cargo_metadata-0.23.1.crate) = 30497 +SHA256 (rust/crates/cc-1.2.44.crate) = 37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3 +SIZE (rust/crates/cc-1.2.44.crate) = 92035 +SHA256 (rust/crates/cfg-expr-0.20.3.crate) = 1a2c5f3bf25ec225351aa1c8e230d04d880d3bd89dea133537dafad4ae291e5c +SIZE (rust/crates/cfg-expr-0.20.3.crate) = 44845 +SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 +SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 SHA256 (rust/crates/cfg_aliases-0.2.1.crate) = 613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724 SIZE (rust/crates/cfg_aliases-0.2.1.crate) = 6355 SHA256 (rust/crates/chrono-0.4.38.crate) = a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401 SIZE (rust/crates/chrono-0.4.38.crate) = 220559 SHA256 (rust/crates/cipher-0.4.4.crate) = 773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad SIZE (rust/crates/cipher-0.4.4.crate) = 19073 -SHA256 (rust/crates/clap-4.5.50.crate) = 0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623 -SIZE (rust/crates/clap-4.5.50.crate) = 62030 -SHA256 (rust/crates/clap-cargo-0.17.1.crate) = ce5010f1505303ab5e680a48db64856a03161d8781e9eb1a6e553dc78f7e6b38 -SIZE (rust/crates/clap-cargo-0.17.1.crate) = 16771 -SHA256 (rust/crates/clap_builder-4.5.50.crate) = 0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0 -SIZE (rust/crates/clap_builder-4.5.50.crate) = 171137 +SHA256 (rust/crates/clap-4.5.53.crate) = c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8 +SIZE (rust/crates/clap-4.5.53.crate) = 62036 +SHA256 (rust/crates/clap-cargo-0.18.3.crate) = 936551935c8258754bb8216aec040957d261f977303754b9bf1a213518388006 +SIZE (rust/crates/clap-cargo-0.18.3.crate) = 14597 +SHA256 (rust/crates/clap_builder-4.5.53.crate) = d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00 +SIZE (rust/crates/clap_builder-4.5.53.crate) = 170811 SHA256 (rust/crates/clap_derive-4.5.49.crate) = 2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671 SIZE (rust/crates/clap_derive-4.5.49.crate) = 33559 SHA256 (rust/crates/clap_lex-0.7.4.crate) = f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6 SIZE (rust/crates/clap_lex-0.7.4.crate) = 12858 -SHA256 (rust/crates/color-backtrace-0.7.1.crate) = e49b1973af2a47b5b44f7dd0a344598da95c872e1556b045607888784e973b91 -SIZE (rust/crates/color-backtrace-0.7.1.crate) = 21275 +SHA256 (rust/crates/color-backtrace-0.7.2.crate) = 308329d5d62e877ba02943db3a8e8c052de9fde7ab48283395ba0e6494efbabd +SIZE (rust/crates/color-backtrace-0.7.2.crate) = 20250 SHA256 (rust/crates/colorchoice-1.0.1.crate) = 0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422 SIZE (rust/crates/colorchoice-1.0.1.crate) = 7895 SHA256 (rust/crates/comfy-table-7.2.1.crate) = b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b @@ -171,12 +173,16 @@ SHA256 (rust/crates/fastrand-2.1.0.crate) = 9fc0510504f03c51ada170672ac806f1f105 SIZE (rust/crates/fastrand-2.1.0.crate) = 14907 SHA256 (rust/crates/filetime-0.2.23.crate) = 1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd SIZE (rust/crates/filetime-0.2.23.crate) = 14942 +SHA256 (rust/crates/find-msvc-tools-0.1.4.crate) = 52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127 +SIZE (rust/crates/find-msvc-tools-0.1.4.crate) = 30817 SHA256 (rust/crates/fixedbitset-0.5.7.crate) = 1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99 SIZE (rust/crates/fixedbitset-0.5.7.crate) = 26537 -SHA256 (rust/crates/flate2-1.1.5.crate) = bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb -SIZE (rust/crates/flate2-1.1.5.crate) = 77015 +SHA256 (rust/crates/flate2-1.1.7.crate) = a2152dbcb980c05735e2a651d96011320a949eb31a0c8b38b72645ce97dec676 +SIZE (rust/crates/flate2-1.1.7.crate) = 78575 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 +SHA256 (rust/crates/foldhash-0.1.5.crate) = d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2 +SIZE (rust/crates/foldhash-0.1.5.crate) = 21901 SHA256 (rust/crates/form_urlencoded-1.2.2.crate) = cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf SIZE (rust/crates/form_urlencoded-1.2.2.crate) = 9347 SHA256 (rust/crates/futures-channel-0.3.30.crate) = eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78 @@ -195,10 +201,10 @@ SHA256 (rust/crates/getrandom-0.3.3.crate) = 26145e563e54f2cadc477553f1ec5ee650b SIZE (rust/crates/getrandom-0.3.3.crate) = 49493 SHA256 (rust/crates/gimli-0.32.3.crate) = e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7 SIZE (rust/crates/gimli-0.32.3.crate) = 289789 -SHA256 (rust/crates/goblin-0.8.2.crate) = 1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47 -SIZE (rust/crates/goblin-0.8.2.crate) = 187412 -SHA256 (rust/crates/guppy-0.17.13.crate) = 54c43505e290c5dc9ca6fc7117927ae46685ae6ea23f988996d622a6394ca99b -SIZE (rust/crates/guppy-0.17.13.crate) = 134795 +SHA256 (rust/crates/goblin-0.10.4.crate) = 4db6758c546e6f81f265638c980e5e84dfbda80cfd8e89e02f83454c8e8124bd +SIZE (rust/crates/goblin-0.10.4.crate) = 255957 +SHA256 (rust/crates/guppy-0.17.23.crate) = 93383817a8d78167955d55ea78081f940df5469a02cf40eb4e26e56194fe11cb +SIZE (rust/crates/guppy-0.17.23.crate) = 141505 SHA256 (rust/crates/guppy-workspace-hack-0.1.0.crate) = 92620684d99f750bae383ecb3be3748142d6095760afd5cbcf2261e9a279d780 SIZE (rust/crates/guppy-workspace-hack-0.1.0.crate) = 1031 SHA256 (rust/crates/hashbrown-0.12.3.crate) = 8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888 @@ -271,8 +277,8 @@ SHA256 (rust/crates/indexmap-2.11.4.crate) = 4b0f83760fb341a774ed326568e19f5a863 SIZE (rust/crates/indexmap-2.11.4.crate) = 100302 SHA256 (rust/crates/inout-0.1.3.crate) = a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5 SIZE (rust/crates/inout-0.1.3.crate) = 10743 -SHA256 (rust/crates/insta-1.43.2.crate) = 46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0 -SIZE (rust/crates/insta-1.43.2.crate) = 102183 +SHA256 (rust/crates/insta-1.44.3.crate) = b5c943d4415edd8153251b6f197de5eb1640e56d84e8d9159bea190421c73698 +SIZE (rust/crates/insta-1.44.3.crate) = 104449 SHA256 (rust/crates/ipnet-2.9.0.crate) = 8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3 SIZE (rust/crates/ipnet-2.9.0.crate) = 27627 SHA256 (rust/crates/is-terminal-0.4.12.crate) = f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b @@ -303,8 +309,6 @@ SHA256 (rust/crates/libc-0.2.174.crate) = 1171693293099992e19cddea4e8b849964e984 SIZE (rust/crates/libc-0.2.174.crate) = 779933 SHA256 (rust/crates/libyml-0.0.4.crate) = 64804cc6a5042d4f05379909ba25b503ec04e2c082151d62122d5dcaa274b961 SIZE (rust/crates/libyml-0.0.4.crate) = 86171 -SHA256 (rust/crates/libz-rs-sys-0.5.1.crate) = 172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221 -SIZE (rust/crates/libz-rs-sys-0.5.1.crate) = 17623 SHA256 (rust/crates/linux-raw-sys-0.4.14.crate) = 78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89 SIZE (rust/crates/linux-raw-sys-0.4.14.crate) = 1826665 SHA256 (rust/crates/linux-raw-sys-0.9.4.crate) = cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12 @@ -337,8 +341,8 @@ SHA256 (rust/crates/miette-derive-7.6.0.crate) = db5b29714e950dbb20d5e6f74f9dcec SIZE (rust/crates/miette-derive-7.6.0.crate) = 17249 SHA256 (rust/crates/mime-0.3.17.crate) = 6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a SIZE (rust/crates/mime-0.3.17.crate) = 15712 -SHA256 (rust/crates/minijinja-2.12.0.crate) = a9f264d75233323f4b7d2f03aefe8a990690cdebfbfe26ea86bcbaec5e9ac990 -SIZE (rust/crates/minijinja-2.12.0.crate) = 171024 +SHA256 (rust/crates/minijinja-2.14.0.crate) = 12ea9ac0a51fb5112607099560fdf0f90366ab088a2a9e6e8ae176794e9806aa +SIZE (rust/crates/minijinja-2.14.0.crate) = 182272 SHA256 (rust/crates/minimal-lexical-0.2.1.crate) = 68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a SIZE (rust/crates/minimal-lexical-0.2.1.crate) = 94841 SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 @@ -365,8 +369,8 @@ SHA256 (rust/crates/num-traits-0.2.19.crate) = 071dfc062690e90b734c0b2273ce72ad0 SIZE (rust/crates/num-traits-0.2.19.crate) = 51631 SHA256 (rust/crates/object-0.37.3.crate) = ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe SIZE (rust/crates/object-0.37.3.crate) = 344032 -SHA256 (rust/crates/once_cell-1.20.2.crate) = 1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775 -SIZE (rust/crates/once_cell-1.20.2.crate) = 33394 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 SHA256 (rust/crates/openssl-probe-0.1.5.crate) = ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf SIZE (rust/crates/openssl-probe-0.1.5.crate) = 7227 SHA256 (rust/crates/oro-common-0.3.34.crate) = e22ccd785b4fa10721d57d7e3575cd059ee4ca852ae93a799810c7fc342c3692 @@ -389,8 +393,8 @@ SHA256 (rust/crates/percent-encoding-2.3.2.crate) = 9b4f627cb1b25917193a259e49bd SIZE (rust/crates/percent-encoding-2.3.2.crate) = 11583 SHA256 (rust/crates/peresil-0.3.0.crate) = f658886ed52e196e850cfbbfddab9eaa7f6d90dd0929e264c31e5cec07e09e57 SIZE (rust/crates/peresil-0.3.0.crate) = 13573 -SHA256 (rust/crates/petgraph-0.7.1.crate) = 3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772 -SIZE (rust/crates/petgraph-0.7.1.crate) = 736025 +SHA256 (rust/crates/petgraph-0.8.3.crate) = 8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455 +SIZE (rust/crates/petgraph-0.8.3.crate) = 807555 SHA256 (rust/crates/pin-project-1.1.5.crate) = b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3 SIZE (rust/crates/pin-project-1.1.5.crate) = 54214 SHA256 (rust/crates/pin-project-internal-1.1.5.crate) = 2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965 @@ -431,6 +435,10 @@ SHA256 (rust/crates/redox_syscall-0.4.1.crate) = 4722d768eff46b75989dd134e5c353f SIZE (rust/crates/redox_syscall-0.4.1.crate) = 24858 SHA256 (rust/crates/redox_syscall-0.5.1.crate) = 469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e SIZE (rust/crates/redox_syscall-0.5.1.crate) = 22536 +SHA256 (rust/crates/ref-cast-1.0.25.crate) = f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d +SIZE (rust/crates/ref-cast-1.0.25.crate) = 15192 +SHA256 (rust/crates/ref-cast-impl-1.0.25.crate) = b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da +SIZE (rust/crates/ref-cast-impl-1.0.25.crate) = 10167 SHA256 (rust/crates/regex-1.10.4.crate) = c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c SIZE (rust/crates/regex-1.10.4.crate) = 253191 SHA256 (rust/crates/regex-automata-0.4.6.crate) = 86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea @@ -439,8 +447,8 @@ SHA256 (rust/crates/regex-syntax-0.8.3.crate) = adad44e29e4c806119491a7f06f03de4 SIZE (rust/crates/regex-syntax-0.8.3.crate) = 347497 SHA256 (rust/crates/reqwest-0.12.5.crate) = c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37 SIZE (rust/crates/reqwest-0.12.5.crate) = 177108 -SHA256 (rust/crates/ring-0.17.8.crate) = c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d -SIZE (rust/crates/ring-0.17.8.crate) = 4188554 +SHA256 (rust/crates/ring-0.17.14.crate) = a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7 +SIZE (rust/crates/ring-0.17.14.crate) = 1502610 SHA256 (rust/crates/rustc-cfg-0.5.0.crate) = 9ddf7a5e441e8003a5a88aab97f1c6113043ddde252d789ef9dea3871b78633a SIZE (rust/crates/rustc-cfg-0.5.0.crate) = 8444 SHA256 (rust/crates/rustc-demangle-0.1.24.crate) = 719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f @@ -469,16 +477,16 @@ SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e SIZE (rust/crates/same-file-1.0.6.crate) = 10183 SHA256 (rust/crates/schannel-0.1.23.crate) = fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534 SIZE (rust/crates/schannel-0.1.23.crate) = 41667 -SHA256 (rust/crates/schemars-0.8.22.crate) = 3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615 -SIZE (rust/crates/schemars-0.8.22.crate) = 59214 -SHA256 (rust/crates/schemars_derive-0.8.22.crate) = 32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d -SIZE (rust/crates/schemars_derive-0.8.22.crate) = 19542 +SHA256 (rust/crates/schemars-1.1.0.crate) = 9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289 +SIZE (rust/crates/schemars-1.1.0.crate) = 92664 +SHA256 (rust/crates/schemars_derive-1.1.0.crate) = 301858a4023d78debd2353c7426dc486001bddc91ae31a76fb1f55132f7e2633 +SIZE (rust/crates/schemars_derive-1.1.0.crate) = 31175 SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49 SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619 -SHA256 (rust/crates/scroll-0.12.0.crate) = 6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6 -SIZE (rust/crates/scroll-0.12.0.crate) = 24145 -SHA256 (rust/crates/scroll_derive-0.12.0.crate) = 7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932 -SIZE (rust/crates/scroll_derive-0.12.0.crate) = 4693 +SHA256 (rust/crates/scroll-0.13.0.crate) = c1257cd4248b4132760d6524d6dda4e053bc648c9070b960929bf50cfb1e7add +SIZE (rust/crates/scroll-0.13.0.crate) = 24154 +SHA256 (rust/crates/scroll_derive-0.13.1.crate) = ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d +SIZE (rust/crates/scroll_derive-0.13.1.crate) = 8167 SHA256 (rust/crates/security-framework-2.11.0.crate) = c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0 SIZE (rust/crates/security-framework-2.11.0.crate) = 80191 SHA256 (rust/crates/security-framework-sys-2.11.0.crate) = 317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7 @@ -515,6 +523,8 @@ SHA256 (rust/crates/sharded-slab-0.1.7.crate) = f40ca3c46823713e0d4209592e8d6e82 SIZE (rust/crates/sharded-slab-0.1.7.crate) = 58227 SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde SIZE (rust/crates/shell-words-1.1.0.crate) = 9871 +SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 +SIZE (rust/crates/shlex-1.3.0.crate) = 18713 SHA256 (rust/crates/signal-hook-registry-1.4.2.crate) = a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1 SIZE (rust/crates/signal-hook-registry-1.4.2.crate) = 18064 SHA256 (rust/crates/simd-adler32-0.3.7.crate) = d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe @@ -529,10 +539,8 @@ SHA256 (rust/crates/socket2-0.5.7.crate) = ce305eb0b4296696835b71df73eb912e0f1ff SIZE (rust/crates/socket2-0.5.7.crate) = 55758 SHA256 (rust/crates/socket2-0.6.0.crate) = 233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807 SIZE (rust/crates/socket2-0.6.0.crate) = 57974 -SHA256 (rust/crates/spdx-0.12.0.crate) = 41cf87c0efffc158b9dde4d6e0567a43e4383adc4c949e687a2039732db2f23a -SIZE (rust/crates/spdx-0.12.0.crate) = 1051034 -SHA256 (rust/crates/spin-0.9.8.crate) = 6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67 -SIZE (rust/crates/spin-0.9.8.crate) = 38958 +SHA256 (rust/crates/spdx-0.13.2.crate) = 35107b1c818f4e9cb9e6c4444ca560ba03b4ee1288dcecc6d7830c2023a7609e +SIZE (rust/crates/spdx-0.13.2.crate) = 3022393 SHA256 (rust/crates/stable_deref_trait-1.2.0.crate) = a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3 SIZE (rust/crates/stable_deref_trait-1.2.0.crate) = 8054 SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f @@ -565,8 +573,8 @@ SHA256 (rust/crates/tar-0.4.44.crate) = 1d863878d212c87a19c1a610eb53bb01fe12951c SIZE (rust/crates/tar-0.4.44.crate) = 61020 SHA256 (rust/crates/target-lexicon-0.13.2.crate) = e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a SIZE (rust/crates/target-lexicon-0.13.2.crate) = 27923 -SHA256 (rust/crates/target-spec-3.4.2.crate) = 49424d0fdcba4406e46d1cea3014c4d1987263790b8e5d1be45c4509c9d52553 -SIZE (rust/crates/target-spec-3.4.2.crate) = 31648 +SHA256 (rust/crates/target-spec-3.5.4.crate) = ca3da9f675d5be234979ba2352a72510ac5fcf4a99cc48b402cd7bba300ec764 +SIZE (rust/crates/target-spec-3.5.4.crate) = 32195 SHA256 (rust/crates/temp-dir-0.1.16.crate) = 83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964 SIZE (rust/crates/temp-dir-0.1.16.crate) = 6127 SHA256 (rust/crates/tempfile-3.10.1.crate) = 85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1 @@ -621,12 +629,12 @@ SHA256 (rust/crates/tower-layer-0.3.2.crate) = c20c8dbed6283a09604c3e69b4b7eeb54 SIZE (rust/crates/tower-layer-0.3.2.crate) = 6023 SHA256 (rust/crates/tower-service-0.3.2.crate) = b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52 SIZE (rust/crates/tower-service-0.3.2.crate) = 6847 -SHA256 (rust/crates/tracing-0.1.41.crate) = 784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0 -SIZE (rust/crates/tracing-0.1.41.crate) = 82448 -SHA256 (rust/crates/tracing-attributes-0.1.28.crate) = 395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d -SIZE (rust/crates/tracing-attributes-0.1.28.crate) = 33280 -SHA256 (rust/crates/tracing-core-0.1.33.crate) = e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c -SIZE (rust/crates/tracing-core-0.1.33.crate) = 63434 +SHA256 (rust/crates/tracing-0.1.43.crate) = 2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647 +SIZE (rust/crates/tracing-0.1.43.crate) = 90033 +SHA256 (rust/crates/tracing-attributes-0.1.31.crate) = 7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da +SIZE (rust/crates/tracing-attributes-0.1.31.crate) = 39733 +SHA256 (rust/crates/tracing-core-0.1.35.crate) = 7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c +SIZE (rust/crates/tracing-core-0.1.35.crate) = 63837 SHA256 (rust/crates/tracing-log-0.2.0.crate) = ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3 SIZE (rust/crates/tracing-log-0.2.0.crate) = 17561 SHA256 (rust/crates/tracing-subscriber-0.3.20.crate) = 2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5 @@ -791,10 +799,10 @@ SHA256 (rust/crates/yoke-0.7.4.crate) = 6c5b1314b079b0930c31e3af543d8ee1757b1951 SIZE (rust/crates/yoke-0.7.4.crate) = 27781 SHA256 (rust/crates/yoke-derive-0.7.4.crate) = 28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95 SIZE (rust/crates/yoke-derive-0.7.4.crate) = 7470 -SHA256 (rust/crates/zerocopy-0.7.34.crate) = ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087 -SIZE (rust/crates/zerocopy-0.7.34.crate) = 151177 -SHA256 (rust/crates/zerocopy-derive-0.7.34.crate) = 15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b -SIZE (rust/crates/zerocopy-derive-0.7.34.crate) = 37907 +SHA256 (rust/crates/zerocopy-0.8.27.crate) = 0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c +SIZE (rust/crates/zerocopy-0.8.27.crate) = 252663 +SHA256 (rust/crates/zerocopy-derive-0.8.27.crate) = 88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831 +SIZE (rust/crates/zerocopy-derive-0.8.27.crate) = 89827 SHA256 (rust/crates/zerofrom-0.1.4.crate) = 91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55 SIZE (rust/crates/zerofrom-0.1.4.crate) = 5044 SHA256 (rust/crates/zerofrom-derive-0.1.4.crate) = 0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5 @@ -809,8 +817,8 @@ SHA256 (rust/crates/zerovec-derive-0.10.3.crate) = 6eafa6dfb17584ea3e2bd6e76e0cc SIZE (rust/crates/zerovec-derive-0.10.3.crate) = 19438 SHA256 (rust/crates/zip-4.5.0.crate) = 8835eb39822904d39cb19465de1159e05d371973f0c6df3a365ad50565ddc8b9 SIZE (rust/crates/zip-4.5.0.crate) = 115558 -SHA256 (rust/crates/zlib-rs-0.5.1.crate) = 626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a -SIZE (rust/crates/zlib-rs-0.5.1.crate) = 193055 +SHA256 (rust/crates/zlib-rs-0.5.3.crate) = 36134c44663532e6519d7a6dfdbbe06f6f8192bde8ae9ed076e9b213f0e31df7 +SIZE (rust/crates/zlib-rs-0.5.3.crate) = 206418 SHA256 (rust/crates/zopfli-0.8.2.crate) = edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7 SIZE (rust/crates/zopfli-0.8.2.crate) = 51842 SHA256 (rust/crates/zstd-0.13.1.crate) = 2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a @@ -819,5 +827,5 @@ SHA256 (rust/crates/zstd-safe-7.1.0.crate) = 1cd99b45c6bc03a018c8b8a86025678c87e SIZE (rust/crates/zstd-safe-7.1.0.crate) = 20792 SHA256 (rust/crates/zstd-sys-2.0.10+zstd.1.5.6.crate) = c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa SIZE (rust/crates/zstd-sys-2.0.10+zstd.1.5.6.crate) = 749088 -SHA256 (axodotdev-cargo-dist-v0.30.2_GH0.tar.gz) = 8c04414848f64a81a663b4c9200d4d04dc25b950e62db04767c0c0379ca76ebb -SIZE (axodotdev-cargo-dist-v0.30.2_GH0.tar.gz) = 3738888 +SHA256 (axodotdev-cargo-dist-v0.30.3_GH0.tar.gz) = 6df36011ee90735ed11904fb6a58dfa92cae67ca4c0ca119cfcd0f1ff2ce27f4 +SIZE (axodotdev-cargo-dist-v0.30.3_GH0.tar.gz) = 3661252 diff --git a/devel/cargo-edit/Makefile b/devel/cargo-edit/Makefile index 1329621734f9..86d7bb1ef8ba 100644 --- a/devel/cargo-edit/Makefile +++ b/devel/cargo-edit/Makefile @@ -1,6 +1,7 @@ PORTNAME= cargo-edit DISTVERSIONPREFIX= v DISTVERSION= 0.13.8 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-generate/Makefile b/devel/cargo-generate/Makefile index 898d21eb21bb..7ec5210b856a 100644 --- a/devel/cargo-generate/Makefile +++ b/devel/cargo-generate/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-generate DISTVERSIONPREFIX= v DISTVERSION= 0.23.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/cargo-hack/Makefile b/devel/cargo-hack/Makefile index f2ccf7de4c10..a25119211216 100644 --- a/devel/cargo-hack/Makefile +++ b/devel/cargo-hack/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-hack DISTVERSIONPREFIX= v DISTVERSION= 0.6.39 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-leptos/Makefile b/devel/cargo-leptos/Makefile index e143975cbe76..40390e54b75d 100644 --- a/devel/cargo-leptos/Makefile +++ b/devel/cargo-leptos/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-leptos DISTVERSIONPREFIX= v DISTVERSION= 0.2.42 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-llvm-cov/Makefile b/devel/cargo-llvm-cov/Makefile index 78c3d5870227..4c3b8e9f8c9d 100644 --- a/devel/cargo-llvm-cov/Makefile +++ b/devel/cargo-llvm-cov/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-llvm-cov DISTVERSIONPREFIX= v DISTVERSION= 0.6.21 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-make/Makefile b/devel/cargo-make/Makefile index b95fdd2b732a..9acccd304661 100644 --- a/devel/cargo-make/Makefile +++ b/devel/cargo-make/Makefile @@ -1,6 +1,6 @@ PORTNAME= cargo-make DISTVERSION= 0.37.24 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/cargo-mutants/Makefile b/devel/cargo-mutants/Makefile index 785cb005ff1f..aaf4b69f1d31 100644 --- a/devel/cargo-mutants/Makefile +++ b/devel/cargo-mutants/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-mutants DISTVERSIONPREFIX= v DISTVERSION= 25.3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-readme/Makefile b/devel/cargo-readme/Makefile index f55476366bb8..723b4c49fd3d 100644 --- a/devel/cargo-readme/Makefile +++ b/devel/cargo-readme/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-readme DISTVERSIONPREFIX= v DISTVERSION= 3.3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/cargo-tarpaulin/Makefile b/devel/cargo-tarpaulin/Makefile index 07226d99af78..60d8400ebc4a 100644 --- a/devel/cargo-tarpaulin/Makefile +++ b/devel/cargo-tarpaulin/Makefile @@ -1,6 +1,6 @@ PORTNAME= cargo-tarpaulin DISTVERSION= 0.34.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/catppuccin-whiskers/Makefile b/devel/catppuccin-whiskers/Makefile index b3f787b3aef9..fa7787717410 100644 --- a/devel/catppuccin-whiskers/Makefile +++ b/devel/catppuccin-whiskers/Makefile @@ -1,7 +1,7 @@ PORTNAME= whiskers DISTVERSIONPREFIX= v DISTVERSION= 2.5.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= catppuccin- diff --git a/devel/cbfmt/Makefile b/devel/cbfmt/Makefile index 080ff21e11ac..518bfb71d0d4 100644 --- a/devel/cbfmt/Makefile +++ b/devel/cbfmt/Makefile @@ -1,7 +1,7 @@ PORTNAME= cbfmt DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cocogitto/Makefile b/devel/cocogitto/Makefile index 5ff6b4af4c6b..223a1111bf82 100644 --- a/devel/cocogitto/Makefile +++ b/devel/cocogitto/Makefile @@ -1,6 +1,6 @@ PORTNAME= cocogitto DISTVERSION= 6.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/convco/Makefile b/devel/convco/Makefile index b2a2ba0d58b4..a25ece7606af 100644 --- a/devel/convco/Makefile +++ b/devel/convco/Makefile @@ -1,7 +1,7 @@ PORTNAME= convco DISTVERSIONPREFIX= v DISTVERSION= 0.6.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/corrosion/Makefile b/devel/corrosion/Makefile index 8bb4ddb92311..69aa494a4235 100644 --- a/devel/corrosion/Makefile +++ b/devel/corrosion/Makefile @@ -1,7 +1,7 @@ PORTNAME= corrosion DISTVERSIONPREFIX= v DISTVERSION= 0.5.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cpu_rec_rs/Makefile b/devel/cpu_rec_rs/Makefile index 789c382a68d8..4278a126d2ef 100644 --- a/devel/cpu_rec_rs/Makefile +++ b/devel/cpu_rec_rs/Makefile @@ -1,7 +1,7 @@ PORTNAME= cpu_rec_rs DISTVERSIONPREFIX= release- DISTVERSION= 1.0.0 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= devel PATCH_SITES= https://github.com/trou/${PORTNAME}/commit/ diff --git a/devel/dconf/Makefile b/devel/dconf/Makefile index 9594bca467e1..cee81577421c 100644 --- a/devel/dconf/Makefile +++ b/devel/dconf/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= docbook-xsl>=0:textproc/docbook-xsl \ - ${LOCALBASE}/libdata/pkgconfig/bash-completion.pc:shells/bash-completion + bash-completion>=0:shells/bash-completion LIB_DEPENDS= libdbus-1.so:devel/dbus USES= gettext gnome localbase meson pkgconfig python:build \ diff --git a/devel/desed/Makefile b/devel/desed/Makefile index 1bb4bd812790..dbfbfafc1b1d 100644 --- a/devel/desed/Makefile +++ b/devel/desed/Makefile @@ -1,6 +1,6 @@ PORTNAME= desed DISTVERSION= 1.2.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/devel/dorst/Makefile b/devel/dorst/Makefile index a8438a2d33d0..acab29027445 100644 --- a/devel/dorst/Makefile +++ b/devel/dorst/Makefile @@ -1,7 +1,7 @@ PORTNAME= dorst DISTVERSIONPREFIX= v DISTVERSION= 0.19.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= slowdive@me.com diff --git a/devel/dra/Makefile b/devel/dra/Makefile index 94781672b987..7b8bf30ae20c 100644 --- a/devel/dra/Makefile +++ b/devel/dra/Makefile @@ -1,5 +1,6 @@ PORTNAME= dra DISTVERSION= 0.9.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/dtool/Makefile b/devel/dtool/Makefile index fe3c5f29f228..3becf3fe7a71 100644 --- a/devel/dtool/Makefile +++ b/devel/dtool/Makefile @@ -1,7 +1,7 @@ PORTNAME= dtool DISTVERSIONPREFIX= v DISTVERSION= 0.12.0 -PORTREVISION= 33 +PORTREVISION= 34 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/dura/Makefile b/devel/dura/Makefile index ed469c46b04b..da5b045c0a71 100644 --- a/devel/dura/Makefile +++ b/devel/dura/Makefile @@ -1,7 +1,7 @@ PORTNAME= dura DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 31 +PORTREVISION= 32 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/electron36/Makefile b/devel/electron36/Makefile index 5c463a0d1c59..28c6eb91ed6d 100644 --- a/devel/electron36/Makefile +++ b/devel/electron36/Makefile @@ -1,7 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} -PORTREVISION= 2 +PORTREVISION= 3 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron37/Makefile b/devel/electron37/Makefile index a81f9cf8532c..37709631639f 100644 --- a/devel/electron37/Makefile +++ b/devel/electron37/Makefile @@ -1,6 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} +PORTREVISION= 1 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron38/Makefile b/devel/electron38/Makefile index bb31e1ea2998..6f8eace6a112 100644 --- a/devel/electron38/Makefile +++ b/devel/electron38/Makefile @@ -1,6 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} +PORTREVISION= 1 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron39/Makefile b/devel/electron39/Makefile index 0fda0a265899..aa8396890d0e 100644 --- a/devel/electron39/Makefile +++ b/devel/electron39/Makefile @@ -1,6 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} +PORTREVISION= 1 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/elfcat/Makefile b/devel/elfcat/Makefile index 9d06c85d6482..6dab2ad54678 100644 --- a/devel/elfcat/Makefile +++ b/devel/elfcat/Makefile @@ -1,6 +1,6 @@ PORTNAME= elfcat DISTVERSION= 0.1.10 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= lwhsu@FreeBSD.org diff --git a/devel/emacs-lsp-booster/Makefile b/devel/emacs-lsp-booster/Makefile index fdc71e70afc6..d0d49f0cebaf 100644 --- a/devel/emacs-lsp-booster/Makefile +++ b/devel/emacs-lsp-booster/Makefile @@ -1,7 +1,7 @@ PORTNAME= emacs-lsp-booster DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel MAINTAINER= ashish@FreeBSD.org diff --git a/devel/etcd34/Makefile b/devel/etcd34/Makefile index b299c5997fd1..f281d9881b74 100644 --- a/devel/etcd34/Makefile +++ b/devel/etcd34/Makefile @@ -15,16 +15,13 @@ WWW= https://github.com/coreos/etcd LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cpe go:1.23,modules +USES= cpe go:modules USE_GITHUB= yes GH_ACCOUNT= etcd-io GO_MODULE= go.etcd.io/etcd/v3 GO_MOD_DIST= github GO_TARGET= ./etcdctl . -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 - CONFLICTS_INSTALL= coreos-etcd[0-9][0-9] PLIST_FILES= bin/etcd \ diff --git a/devel/etcd36/Makefile b/devel/etcd36/Makefile index e5b5c1d078a1..82ccacfcef7a 100644 --- a/devel/etcd36/Makefile +++ b/devel/etcd36/Makefile @@ -25,16 +25,13 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NOT_FOR_ARCHS= aarch64 NOT_FOR_ARCHS_REASON= fails to fetch: v0.0.1-go1.23.8.freebsd-arm64.lock: no locks available -USES= cpe go:1.23,modules +USES= cpe go:modules USE_GITHUB= yes GH_ACCOUNT= etcd-io GO_MODULE= go.etcd.io/etcd/v3 GO_MOD_DIST= github GO_TARGET= ./etcdctl ./etcdutl ./server -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 - CONFLICTS_INSTALL= coreos-etcd[0-9][0-9] PLIST_FILES= bin/etcd \ diff --git a/devel/fatal/Makefile b/devel/fatal/Makefile index 88f7182f003c..b034e03795fc 100644 --- a/devel/fatal/Makefile +++ b/devel/fatal/Makefile @@ -1,6 +1,6 @@ PORTNAME= fatal DISTVERSIONPREFIX= v -DISTVERSION= 2025.12.01.00 +DISTVERSION= 2025.12.15.00 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/fatal/distinfo b/devel/fatal/distinfo index b7417fa7ba22..bc5fe3763b22 100644 --- a/devel/fatal/distinfo +++ b/devel/fatal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764662199 -SHA256 (facebook-fatal-v2025.12.01.00_GH0.tar.gz) = 0fb5e38dd6241fc7775fb8e112dc60e0f7ebdabdf391474ac9218b8548df6290 -SIZE (facebook-fatal-v2025.12.01.00_GH0.tar.gz) = 658634 +TIMESTAMP = 1765873872 +SHA256 (facebook-fatal-v2025.12.15.00_GH0.tar.gz) = 607951c8b80908721307876468aa42915500217c3cf9d1d463f8f4e497662047 +SIZE (facebook-fatal-v2025.12.15.00_GH0.tar.gz) = 658641 diff --git a/devel/fbthrift/Makefile b/devel/fbthrift/Makefile index 4a897bae8b3a..1ef7f5944b7c 100644 --- a/devel/fbthrift/Makefile +++ b/devel/fbthrift/Makefile @@ -1,7 +1,6 @@ PORTNAME= fbthrift DISTVERSIONPREFIX= v -DISTVERSION= 2025.12.01.00 -PORTREVISION= 1 +DISTVERSION= 2025.12.15.00 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/fbthrift/distinfo b/devel/fbthrift/distinfo index 52a1c708c0bc..c3c06b25eef1 100644 --- a/devel/fbthrift/distinfo +++ b/devel/fbthrift/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764662196 -SHA256 (facebook-fbthrift-v2025.12.01.00_GH0.tar.gz) = 0898d180d2c8f22cdbcce76654c1f56d86fb1fab3bbd90796457b5611cca7749 -SIZE (facebook-fbthrift-v2025.12.01.00_GH0.tar.gz) = 16369463 +TIMESTAMP = 1765873870 +SHA256 (facebook-fbthrift-v2025.12.15.00_GH0.tar.gz) = bc471e391f680d43a8ead487b0a85ec5a553e0840cbaf44d1a6bf8a3aedd77b0 +SIZE (facebook-fbthrift-v2025.12.15.00_GH0.tar.gz) = 16495834 diff --git a/devel/fbthrift/pkg-plist b/devel/fbthrift/pkg-plist index 8a0c81560d60..fdb2784d0cd1 100644 --- a/devel/fbthrift/pkg-plist +++ b/devel/fbthrift/pkg-plist @@ -313,14 +313,33 @@ include/thrift/lib/cpp2/debug_thrift_data_difference/pretty_print.h include/thrift/lib/cpp2/detail/EventHandlerRuntime.h include/thrift/lib/cpp2/detail/Isset.h include/thrift/lib/cpp2/detail/meta.h +include/thrift/lib/cpp2/dynamic/Any.h +include/thrift/lib/cpp2/dynamic/Binary.h +include/thrift/lib/cpp2/dynamic/DynamicValue.h +include/thrift/lib/cpp2/dynamic/List.h +include/thrift/lib/cpp2/dynamic/Map.h include/thrift/lib/cpp2/dynamic/SerializableRecord.h include/thrift/lib/cpp2/dynamic/SerializableTypeSystemBuilder.h +include/thrift/lib/cpp2/dynamic/Serialization.h +include/thrift/lib/cpp2/dynamic/Set.h +include/thrift/lib/cpp2/dynamic/String.h +include/thrift/lib/cpp2/dynamic/Struct.h include/thrift/lib/cpp2/dynamic/TypeId.h include/thrift/lib/cpp2/dynamic/TypeSystem.h include/thrift/lib/cpp2/dynamic/TypeSystemBuilder.h include/thrift/lib/cpp2/dynamic/TypeSystemTraits.h +include/thrift/lib/cpp2/dynamic/Union.h +include/thrift/lib/cpp2/dynamic/detail/ConcreteList.h +include/thrift/lib/cpp2/dynamic/detail/ConcreteMap.h +include/thrift/lib/cpp2/dynamic/detail/ConcreteSet.h +include/thrift/lib/cpp2/dynamic/detail/ConcreteTypes.h +include/thrift/lib/cpp2/dynamic/detail/Datum.h +include/thrift/lib/cpp2/dynamic/detail/DatumHash.h +include/thrift/lib/cpp2/dynamic/detail/ListIteratorBase.h +include/thrift/lib/cpp2/dynamic/detail/SmallBuffer.h include/thrift/lib/cpp2/dynamic/detail/Traits.h include/thrift/lib/cpp2/dynamic/detail/TypeSystem.h +include/thrift/lib/cpp2/dynamic/fwd.h include/thrift/lib/cpp2/folly_dynamic/folly_dynamic.h include/thrift/lib/cpp2/folly_dynamic/internal/folly_dynamic-inl-post.h include/thrift/lib/cpp2/folly_dynamic/internal/folly_dynamic-inl-pre.h @@ -432,6 +451,7 @@ include/thrift/lib/cpp2/protocol/Protocol.h include/thrift/lib/cpp2/protocol/ProtocolReaderStructReadState.h include/thrift/lib/cpp2/protocol/ProtocolReaderWireTypeInfo.h include/thrift/lib/cpp2/protocol/ProtocolReaderWithRefill.h +include/thrift/lib/cpp2/protocol/SchemaValidator.h include/thrift/lib/cpp2/protocol/Serializer.h include/thrift/lib/cpp2/protocol/SimpleJSONProtocol-inl.h include/thrift/lib/cpp2/protocol/SimpleJSONProtocol.h @@ -755,6 +775,7 @@ include/thrift/lib/cpp2/util/IntrusiveSharedPtr.h include/thrift/lib/cpp2/util/LegacyRequestExpiryGuard.h include/thrift/lib/cpp2/util/ManagedStringView.h include/thrift/lib/cpp2/util/MethodMetadata.h +include/thrift/lib/cpp2/util/SchemaToMetadata.h include/thrift/lib/cpp2/util/ScopedServerInterfaceThread-inl.h include/thrift/lib/cpp2/util/ScopedServerInterfaceThread.h include/thrift/lib/cpp2/util/ScopedServerThread.h diff --git a/devel/fnm/Makefile b/devel/fnm/Makefile index 56fef1bf5fa4..777c6ef0052f 100644 --- a/devel/fnm/Makefile +++ b/devel/fnm/Makefile @@ -1,7 +1,7 @@ PORTNAME= fnm DISTVERSIONPREFIX= v DISTVERSION= 1.38.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/folly/Makefile b/devel/folly/Makefile index 1d034df52915..899d0a52951b 100644 --- a/devel/folly/Makefile +++ b/devel/folly/Makefile @@ -1,7 +1,6 @@ PORTNAME= folly DISTVERSIONPREFIX= v -DISTVERSION= 2025.12.01.00 -PORTREVISION= 1 +DISTVERSION= 2025.12.15.00 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/folly/distinfo b/devel/folly/distinfo index e76bc9925bf0..5408cf9d6d2f 100644 --- a/devel/folly/distinfo +++ b/devel/folly/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764662189 -SHA256 (facebook-folly-v2025.12.01.00_GH0.tar.gz) = 920acdae6a6511de7079ceef02cfbe4ea6bc1aa795c81cdd12dcde283e55f37b -SIZE (facebook-folly-v2025.12.01.00_GH0.tar.gz) = 4727515 +TIMESTAMP = 1765873863 +SHA256 (facebook-folly-v2025.12.15.00_GH0.tar.gz) = 921c4248e53deb7d1962c93ef0536ee3aa0e8fc649b2bd80cd0c4476c5e16cd5 +SIZE (facebook-folly-v2025.12.15.00_GH0.tar.gz) = 4757189 diff --git a/devel/folly/pkg-plist b/devel/folly/pkg-plist index 63d0b0b87d13..6d0b613a488f 100644 --- a/devel/folly/pkg-plist +++ b/devel/folly/pkg-plist @@ -1010,8 +1010,11 @@ include/folly/python/request_context.h include/folly/random/hash.h include/folly/random/xoshiro256pp.h include/folly/result/coro.h +include/folly/result/detail/immortal_exception_storage.h include/folly/result/gtest_helpers.h include/folly/result/result.h +include/folly/result/rich_error_fwd.h +include/folly/result/rich_msg.h include/folly/result/try.h include/folly/result/value_only_result.h include/folly/result/value_only_result_coro.h diff --git a/devel/fsx/Makefile b/devel/fsx/Makefile index d5b2b9fc1799..d5d3d6562845 100644 --- a/devel/fsx/Makefile +++ b/devel/fsx/Makefile @@ -1,6 +1,6 @@ PORTNAME= fsx DISTVERSION= 0.3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/devel/gbump/Makefile b/devel/gbump/Makefile index ec521eb77799..6e4df6bab7ae 100644 --- a/devel/gbump/Makefile +++ b/devel/gbump/Makefile @@ -1,6 +1,6 @@ PORTNAME= gbump PORTVERSION= 1.1.2 -PORTREVISION= 20 +PORTREVISION= 21 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/devel/gettext-po-mode/Makefile b/devel/gettext-po-mode/Makefile index 84098cf00f4e..54f8e3d3d6cd 100644 --- a/devel/gettext-po-mode/Makefile +++ b/devel/gettext-po-mode/Makefile @@ -1,5 +1,5 @@ PORTNAME= gettext-po-mode -PORTREVISION= 10 +PORTREVISION= 0 MAINTAINER= mandree@FreeBSD.org COMMENT= GNU gettext po-mode for emacs diff --git a/devel/gettext-runtime/pkg-plist b/devel/gettext-runtime/pkg-plist index 69f5c0919ec5..140da640650c 100644 --- a/devel/gettext-runtime/pkg-plist +++ b/devel/gettext-runtime/pkg-plist @@ -2,6 +2,8 @@ bin/envsubst bin/gettext bin/gettext.sh bin/ngettext +bin/printf_gettext +bin/printf_ngettext include/autosprintf.h include/libintl.h lib/libasprintf.a @@ -11,7 +13,7 @@ lib/libasprintf.so.0.0.0 lib/libintl.a lib/libintl.so lib/libintl.so.8 -lib/libintl.so.8.4.2 +lib/libintl.so.8.4.5 %%PORTDOCS%%%%DOCSDIR%%/bind_textdomain_codeset.3.html %%PORTDOCS%%%%DOCSDIR%%/bindtextdomain.3.html %%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext.html @@ -39,6 +41,8 @@ lib/libintl.so.8.4.2 %%PORTDOCS%%%%DOCSDIR%%/javadoc2/stylesheet.css %%PORTDOCS%%%%DOCSDIR%%/ngettext.1.html %%PORTDOCS%%%%DOCSDIR%%/ngettext.3.html +%%PORTDOCS%%%%DOCSDIR%%/printf_gettext.1.html +%%PORTDOCS%%%%DOCSDIR%%/printf_ngettext.1.html %%PORTDOCS%%%%DOCSDIR%%/textdomain.3.html %%PORTDOCS%%share/doc/libasprintf/autosprintf_all.html %%DATADIR%%/ABOUT-NLS @@ -87,6 +91,8 @@ share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo share/man/man1/envsubst.1.gz share/man/man1/gettext.1.gz share/man/man1/ngettext.1.gz +share/man/man1/printf_gettext.1.gz +share/man/man1/printf_ngettext.1.gz share/man/man3/bind_textdomain_codeset.3.gz share/man/man3/bindtextdomain.3.gz share/man/man3/dcgettext.3.gz diff --git a/devel/gettext-tools/Makefile b/devel/gettext-tools/Makefile index ae5f960afa28..f49004bd43e8 100644 --- a/devel/gettext-tools/Makefile +++ b/devel/gettext-tools/Makefile @@ -3,7 +3,7 @@ # discretion. PORTNAME= gettext-tools -PORTREVISION= 1 +PORTREVISION= 0 COMMENT= GNU gettext development and translation tools WWW= https://www.gnu.org/software/gettext/ diff --git a/devel/gettext-tools/pkg-plist b/devel/gettext-tools/pkg-plist index 3a3fadede9b7..bfd00f4d0cc3 100644 --- a/devel/gettext-tools/pkg-plist +++ b/devel/gettext-tools/pkg-plist @@ -23,7 +23,7 @@ lib/libgettextlib.so lib/libgettextpo.a lib/libgettextpo.so lib/libgettextpo.so.0 -lib/libgettextpo.so.0.5.12 +lib/libgettextpo.so.0.5.15 lib/libgettextsrc-%%PORTVERSION%%.so lib/libgettextsrc.a lib/libgettextsrc.so @@ -32,88 +32,142 @@ libexec/gettext/hostname libexec/gettext/project-id libexec/gettext/urlget libexec/gettext/user-email -share/aclocal/build-to-host.m4 -share/aclocal/gettext.m4 -share/aclocal/host-cpu-c-abi.m4 -share/aclocal/iconv.m4 -share/aclocal/intlmacosx.m4 -share/aclocal/lib-ld.m4 -share/aclocal/lib-link.m4 -share/aclocal/lib-prefix.m4 share/aclocal/nls.m4 -share/aclocal/po.m4 -share/aclocal/progtest.m4 %%PORTDOCS%%%%DOCSDIR%%/FAQ.html %%PORTDOCS%%%%DOCSDIR%%/autopoint.1.html %%PORTEXAMPLES%%%%DOCSDIR%%/examples/README +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharp.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpcomp.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpcomp.sh.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec-test.exe %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec.sh.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/dcomp.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/dcomp.sh.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/gocomp.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/gocomp.sh.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javacomp.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javacomp.sh.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javaexec.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javaexec.sh.in -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/INSTALL -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/Makefile.am -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/autoclean.sh -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/autogen.sh -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/configure.ac -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/hello.cc -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/Makefile.am -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gnome-gnorba-check.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gnome-orbit-check.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gnome.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gtk--.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gtk.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/LINGUAS -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/Makevars -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/POTFILES.in -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/af.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ast.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/bg.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ca.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/cs.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/da.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/de.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/el.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/eo.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/es.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/fi.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/fr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ga.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/gl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/hr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/hu.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/id.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/it.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ja.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ka.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ky.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/lv.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ms.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/mt.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/nb.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/nl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/nn.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/pl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/pt.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/pt_BR.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ro.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ru.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sk.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sq.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sv.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ta.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/tr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/uk.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/vi.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/zh_CN.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/zh_HK.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/modula2comp.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/hello.cc +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome-gnorba-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome-orbit-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gtk--.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gtk.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/README +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.cc +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.desktop.in.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.gresource.xml +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.ui +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/BUGS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/Makefile.am @@ -412,73 +466,78 @@ share/aclocal/progtest.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_TW.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/INSTALL -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/Makefile.am -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/autoclean.sh -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/autogen.sh -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/configure.ac -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/hello.c -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/Makefile.am -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/gnome-gnorba-check.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/gnome-orbit-check.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/gnome.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/LINGUAS -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/Makevars -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/POTFILES.in -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/af.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ast.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/bg.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ca.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/cs.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/da.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/de.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/el.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/eo.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/es.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/fi.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/fr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ga.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/gl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/hr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/hu.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/id.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/it.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ja.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ka.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ky.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/lv.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ms.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/mt.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/nb.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/nl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/nn.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/pl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/pt.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/pt_BR.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ro.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ru.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sk.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sq.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sv.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ta.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/tr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/uk.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/vi.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/zh_CN.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/zh_HK.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/hello.c +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome-orbit-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/README %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.c %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.desktop.in.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.gresource.xml -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.gschema.xml %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.ui +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.c +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.desktop.in.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.gresource.xml +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.gschema.xml +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.ui %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/Makevars @@ -527,6 +586,60 @@ share/aclocal/progtest.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/hello-server.c +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/autoclean.sh @@ -741,6 +854,59 @@ share/aclocal/progtest.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/hello.d.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/autoclean.sh @@ -794,6 +960,123 @@ share/aclocal/progtest.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/hello1ml.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/hello1ml.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/hello1sl.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/hello2sl.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/hello3ml.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/autoclean.sh @@ -1121,63 +1404,116 @@ share/aclocal/progtest.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_TW.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/INSTALL -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/Makefile.am -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/autoclean.sh -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/autogen.sh -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/configure.ac -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/hello.m -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/Makefile.am -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/gnome-gnorba-check.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/gnome-orbit-check.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/gnome.m4 -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/LINGUAS -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/Makevars -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/POTFILES.in -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/af.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ast.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/bg.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ca.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/cs.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/da.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/de.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/el.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/eo.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/es.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/fi.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/fr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ga.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/gl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/hr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/hu.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/id.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/it.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ja.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ka.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ky.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/lv.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ms.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/mt.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/nb.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/nl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/nn.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/pl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/pt.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/pt_BR.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ro.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ru.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sk.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sl.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sq.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sv.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ta.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/tr.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/uk.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/vi.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/zh_CN.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/zh_HK.po -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/hello.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/hello.m +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/AppController.h %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/AppController.m %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/BUGS @@ -1503,12 +1839,121 @@ share/aclocal/progtest.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/hello.rb +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/Cargo.toml.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/src/main.rs.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/configure.ac -%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-1.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-2.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-3.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/Makefile.am @@ -1793,6 +2238,7 @@ share/aclocal/progtest.m4 %%PORTDOCS%%%%DOCSDIR%%/gettext_29.html %%PORTDOCS%%%%DOCSDIR%%/gettext_3.html %%PORTDOCS%%%%DOCSDIR%%/gettext_30.html +%%PORTDOCS%%%%DOCSDIR%%/gettext_31.html %%PORTDOCS%%%%DOCSDIR%%/gettext_4.html %%PORTDOCS%%%%DOCSDIR%%/gettext_5.html %%PORTDOCS%%%%DOCSDIR%%/gettext_6.html @@ -1835,6 +2281,17 @@ share/aclocal/progtest.m4 %%DATADIR%%/config.rpath %%DATADIR%%/disclaim-translations.txt %%DATADIR%%/javaversion.class +%%DATADIR%%/m4/build-to-host.m4 +%%DATADIR%%/m4/gettext.m4 +%%DATADIR%%/m4/host-cpu-c-abi.m4 +%%DATADIR%%/m4/iconv.m4 +%%DATADIR%%/m4/intlmacosx.m4 +%%DATADIR%%/m4/lib-ld.m4 +%%DATADIR%%/m4/lib-link.m4 +%%DATADIR%%/m4/lib-prefix.m4 +%%DATADIR%%/m4/nls.m4 +%%DATADIR%%/m4/po.m4 +%%DATADIR%%/m4/progtest.m4 %%DATADIR%%/msgunfmt.tcl %%DATADIR%%/po/Makefile.in.in %%DATADIR%%/po/Makevars.template diff --git a/devel/gettext/Makefile.common b/devel/gettext/Makefile.common index cf0fbd16c87e..39d4be568310 100644 --- a/devel/gettext/Makefile.common +++ b/devel/gettext/Makefile.common @@ -2,7 +2,7 @@ # experimental ports run. Untested commits may be backed out at portmgr's # discretion. -DISTVERSION= 0.23.1 +DISTVERSION= 0.26 PORTREVISION?= 0 # Leave this zero. Set in Makefile instead. CATEGORIES= devel MASTER_SITES= GNU/gettext diff --git a/devel/gettext/distinfo b/devel/gettext/distinfo index aa328f0b1afb..1f4fbd14d02a 100644 --- a/devel/gettext/distinfo +++ b/devel/gettext/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1735747768 -SHA256 (gettext-0.23.1.tar.xz) = c1f97a72a7385b7e71dd07b5fea6cdaf12c9b88b564976b23bd8c11857af2970 -SIZE (gettext-0.23.1.tar.xz) = 11038556 +TIMESTAMP = 1764337471 +SHA256 (gettext-0.26.tar.xz) = d1fb86e260cfe7da6031f94d2e44c0da55903dbae0a2fa0fae78c91ae1b56f00 +SIZE (gettext-0.26.tar.xz) = 10061740 diff --git a/devel/gflags/Makefile b/devel/gflags/Makefile index cce5a42f7b5f..9dcb5dc2c528 100644 --- a/devel/gflags/Makefile +++ b/devel/gflags/Makefile @@ -10,7 +10,7 @@ WWW= https://github.com/gflags/gflags LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.txt -USES= cmake:testing compiler:c++11-lang pathfix shebangfix +USES= cmake:testing compiler:c++11-lang shebangfix CMAKE_ARGS= -DGFLAGS_NAMESPACE:STRING=gflags CMAKE_OFF= BUILD_TESTING \ diff --git a/devel/gfold/Makefile b/devel/gfold/Makefile index ce29b1cb86b3..8063526e86dd 100644 --- a/devel/gfold/Makefile +++ b/devel/gfold/Makefile @@ -1,6 +1,6 @@ PORTNAME= gfold DISTVERSION= 4.0.0 -PORTREVISION= 32 +PORTREVISION= 33 CATEGORIES= devel MAINTAINER= sec.research.2005@gmail.com diff --git a/devel/gh/Makefile b/devel/gh/Makefile index 404a7b7b8bf6..f689c738241b 100644 --- a/devel/gh/Makefile +++ b/devel/gh/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= git:devel/git -USES= go:1.24,modules +USES= go:1.24+,modules _BUILD_VERSION= ${DISTVERSION} _BUILD_DATE= $$(date +%Y-%m-%d) diff --git a/devel/ghostie/Makefile b/devel/ghostie/Makefile index 0a5238228c90..e14f43426d17 100644 --- a/devel/ghostie/Makefile +++ b/devel/ghostie/Makefile @@ -1,7 +1,7 @@ PORTNAME= ghostie DISTVERSIONPREFIX= v DISTVERSION= 0.3.1 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/git-absorb/Makefile b/devel/git-absorb/Makefile index c06b51a50ac4..dc939ba090c4 100644 --- a/devel/git-absorb/Makefile +++ b/devel/git-absorb/Makefile @@ -1,6 +1,6 @@ PORTNAME= git-absorb DISTVERSION= 0.8.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org diff --git a/devel/git-cinnabar/Makefile b/devel/git-cinnabar/Makefile index 5ce7e1bd1f72..d90a0bcb9216 100644 --- a/devel/git-cinnabar/Makefile +++ b/devel/git-cinnabar/Makefile @@ -1,6 +1,6 @@ PORTNAME= git-cinnabar DISTVERSION= 0.7.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org diff --git a/devel/git-cliff/Makefile b/devel/git-cliff/Makefile index d9a8b526f4df..df4ce75da104 100644 --- a/devel/git-cliff/Makefile +++ b/devel/git-cliff/Makefile @@ -1,7 +1,7 @@ PORTNAME= git-cliff DISTVERSIONPREFIX= v -DISTVERSION= 2.10.1 -PORTREVISION= 2 +DISTVERSION= 2.11.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org @@ -30,19 +30,21 @@ CARGO_CRATES= addr2line-0.24.2 \ adler2-2.0.1 \ adler32-1.2.0 \ ahash-0.8.12 \ - aho-corasick-1.1.3 \ + aho-corasick-1.1.4 \ aligned-vec-0.6.4 \ allocator-api2-0.2.21 \ android_system_properties-0.1.5 \ - anstream-0.6.20 \ - anstyle-1.0.11 \ + anstream-0.6.21 \ + anstyle-1.0.13 \ anstyle-parse-0.2.7 \ - anstyle-query-1.1.4 \ - anstyle-wincon-3.0.10 \ + anstyle-query-1.1.5 \ + anstyle-wincon-3.0.11 \ anyhow-1.0.99 \ arraydeque-0.5.1 \ arrayvec-0.7.6 \ async-compression-0.4.30 \ + async-stream-0.3.6 \ + async-stream-impl-0.3.6 \ async-trait-0.1.89 \ atomic-waker-1.1.2 \ autocfg-1.5.0 \ @@ -53,29 +55,29 @@ CARGO_CRATES= addr2line-0.24.2 \ bincode-2.0.1 \ bincode_derive-2.0.1 \ bitflags-1.3.2 \ - bitflags-2.9.4 \ + bitflags-2.10.0 \ block-buffer-0.10.4 \ - bstr-1.12.0 \ + bstr-1.12.1 \ bumpalo-3.19.0 \ bytemuck-1.23.2 \ - bytes-1.10.1 \ + bytes-1.11.0 \ cacache-13.0.0 \ - cc-1.2.37 \ - cfg-if-1.0.3 \ + cc-1.2.49 \ + cfg-if-1.0.4 \ cfg_aliases-0.2.1 \ chrono-0.4.42 \ chrono-tz-0.9.0 \ chrono-tz-build-0.3.0 \ - clap-4.5.47 \ - clap_builder-4.5.47 \ - clap_complete-4.5.57 \ - clap_derive-4.5.47 \ - clap_lex-0.7.5 \ - clap_mangen-0.2.29 \ + clap-4.5.53 \ + clap_builder-4.5.53 \ + clap_complete-4.5.61 \ + clap_derive-4.5.49 \ + clap_lex-0.7.6 \ + clap_mangen-0.2.31 \ colorchoice-1.0.4 \ compression-codecs-0.4.30 \ compression-core-0.4.29 \ - config-0.15.15 \ + config-0.15.19 \ console-0.16.1 \ cookie-0.18.1 \ cookie_store-0.22.0 \ @@ -88,10 +90,10 @@ CARGO_CRATES= addr2line-0.24.2 \ crossbeam-deque-0.8.6 \ crossbeam-epoch-0.9.18 \ crossbeam-utils-0.8.21 \ - crypto-common-0.1.6 \ - dary_heap-0.3.7 \ + crypto-common-0.1.7 \ + dary_heap-0.3.8 \ debugid-0.8.0 \ - deranged-0.5.3 \ + deranged-0.5.5 \ deunicode-1.6.2 \ diff-0.1.13 \ digest-0.10.7 \ @@ -99,7 +101,7 @@ CARGO_CRATES= addr2line-0.24.2 \ dirs-sys-0.5.0 \ displaydoc-0.2.5 \ dissimilar-1.0.10 \ - document-features-0.2.11 \ + document-features-0.2.12 \ dyn-clone-1.0.20 \ either-1.15.0 \ encode_unicode-1.0.0 \ @@ -112,11 +114,12 @@ CARGO_CRATES= addr2line-0.24.2 \ etcetera-0.10.0 \ expect-test-1.5.1 \ fastrand-2.3.0 \ - find-msvc-tools-0.1.1 \ + find-msvc-tools-0.1.5 \ findshlibs-0.10.2 \ flate2-1.1.2 \ fnv-1.0.7 \ foldhash-0.1.5 \ + foldhash-0.2.0 \ form_urlencoded-1.2.2 \ futures-0.3.31 \ futures-channel-0.3.31 \ @@ -129,15 +132,15 @@ CARGO_CRATES= addr2line-0.24.2 \ futures-util-0.3.31 \ generic-array-0.14.7 \ getrandom-0.2.16 \ - getrandom-0.3.3 \ + getrandom-0.3.4 \ gimli-0.31.1 \ git-conventional-0.12.9 \ - git2-0.20.2 \ + git2-0.20.3 \ glob-0.3.3 \ - globset-0.4.16 \ + globset-0.4.18 \ globwalk-0.9.1 \ - hashbrown-0.14.5 \ hashbrown-0.15.5 \ + hashbrown-0.16.1 \ hashlink-0.10.0 \ heck-0.5.0 \ hermit-abi-0.5.2 \ @@ -159,70 +162,69 @@ CARGO_CRATES= addr2line-0.24.2 \ hyper-util-0.1.16 \ iana-time-zone-0.1.64 \ iana-time-zone-haiku-0.1.2 \ - icu_collections-2.0.0 \ - icu_locale_core-2.0.0 \ - icu_normalizer-2.0.0 \ - icu_normalizer_data-2.0.0 \ - icu_properties-2.0.1 \ - icu_properties_data-2.0.1 \ - icu_provider-2.0.0 \ + icu_collections-2.1.1 \ + icu_locale_core-2.1.1 \ + icu_normalizer-2.1.1 \ + icu_normalizer_data-2.1.1 \ + icu_properties-2.1.2 \ + icu_properties_data-2.1.2 \ + icu_provider-2.1.1 \ idna-1.1.0 \ idna_adapter-1.2.1 \ - ignore-0.4.23 \ + ignore-0.4.25 \ include-flate-0.3.1 \ include-flate-codegen-0.3.1 \ include-flate-compress-0.3.1 \ - indexmap-2.11.1 \ - indicatif-0.18.0 \ + indexmap-2.12.1 \ + indicatif-0.18.3 \ inferno-0.11.21 \ - io-uring-0.7.10 \ ipnet-2.11.0 \ iri-string-0.7.8 \ is-terminal-0.4.16 \ - is_terminal_polyfill-1.70.1 \ + is_terminal_polyfill-1.70.2 \ itoa-1.0.15 \ jobserver-0.1.34 \ js-sys-0.3.78 \ - lazy-regex-3.4.1 \ - lazy-regex-proc_macros-3.4.1 \ + lazy-regex-3.4.2 \ + lazy-regex-proc_macros-3.4.2 \ lazy_static-1.5.0 \ - libc-0.2.175 \ - libflate-2.1.0 \ - libflate_lz77-2.1.0 \ - libgit2-sys-0.18.2+1.9.1 \ + libc-0.2.178 \ + libflate-2.2.1 \ + libflate_lz77-2.2.0 \ + libgit2-sys-0.18.3+1.9.2 \ libm-0.2.15 \ libredox-0.1.10 \ libz-sys-1.1.22 \ linux-raw-sys-0.11.0 \ - litemap-0.8.0 \ - litrs-0.4.2 \ + litemap-0.8.1 \ + litrs-1.0.0 \ lock_api-0.4.13 \ - log-0.4.28 \ + log-0.4.29 \ lru-slab-0.1.2 \ - memchr-2.7.5 \ + memchr-2.7.6 \ memmap2-0.5.10 \ memmap2-0.9.8 \ miette-5.10.0 \ miette-derive-5.10.0 \ miniz_oxide-0.8.9 \ - mio-1.0.4 \ - next_version-0.2.25 \ + mio-1.1.1 \ + next_version-0.2.26 \ nix-0.26.4 \ num-conv-0.1.0 \ num-format-0.4.4 \ num-traits-0.2.19 \ object-0.36.7 \ once_cell-1.21.3 \ - once_cell_polyfill-1.70.1 \ + once_cell_polyfill-1.70.2 \ openssl-probe-0.1.6 \ option-ext-0.2.0 \ parse-zoneinfo-0.3.1 \ pathdiff-0.2.3 \ percent-encoding-2.3.2 \ - pest-2.8.2 \ - pest_derive-2.8.2 \ - pest_generator-2.8.2 \ - pest_meta-2.8.2 \ + pest-2.8.4 \ + pest_derive-2.8.4 \ + pest_generator-2.8.4 \ + pest_meta-2.8.4 \ phf-0.11.3 \ phf_codegen-0.11.3 \ phf_generator-0.11.3 \ @@ -231,19 +233,19 @@ CARGO_CRATES= addr2line-0.24.2 \ pin-utils-0.1.0 \ pkg-config-0.3.32 \ portable-atomic-1.11.1 \ - potential_utf-0.1.3 \ + potential_utf-0.1.4 \ powerfmt-0.2.0 \ pprof-0.15.0 \ ppv-lite86-0.2.21 \ pretty_assertions-1.4.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ - proc-macro2-1.0.101 \ + proc-macro2-1.0.103 \ quick-xml-0.26.0 \ quinn-0.11.9 \ quinn-proto-0.11.13 \ quinn-udp-0.5.14 \ - quote-1.0.40 \ + quote-1.0.42 \ r-efi-5.3.0 \ rand-0.8.5 \ rand-0.9.2 \ @@ -253,18 +255,18 @@ CARGO_CRATES= addr2line-0.24.2 \ rand_core-0.9.3 \ redox_users-0.5.2 \ reflink-copy-0.1.28 \ - regex-1.11.2 \ - regex-automata-0.4.10 \ - regex-syntax-0.8.6 \ - reqwest-0.12.23 \ + regex-1.12.2 \ + regex-automata-0.4.13 \ + regex-syntax-0.8.8 \ + reqwest-0.12.25 \ reqwest-middleware-0.4.2 \ rgb-0.8.52 \ ring-0.17.14 \ rle-decode-fast-1.0.3 \ roff-0.2.2 \ - rust-embed-8.7.2 \ - rust-embed-impl-8.7.2 \ - rust-embed-utils-8.7.2 \ + rust-embed-8.9.0 \ + rust-embed-impl-8.9.0 \ + rust-embed-utils-8.9.0 \ rustc-demangle-0.1.26 \ rustc-hash-2.1.1 \ rustix-1.1.2 \ @@ -281,13 +283,13 @@ CARGO_CRATES= addr2line-0.24.2 \ secrecy-0.8.0 \ security-framework-3.4.0 \ security-framework-sys-2.15.0 \ - semver-1.0.26 \ - serde-1.0.221 \ - serde_core-1.0.221 \ - serde_derive-1.0.221 \ - serde_json-1.0.144 \ + semver-1.0.27 \ + serde-1.0.228 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ + serde_json-1.0.145 \ serde_regex-1.1.0 \ - serde_spanned-1.0.0 \ + serde_spanned-1.0.3 \ serde_urlencoded-0.7.1 \ sha-1-0.10.1 \ sha1-0.10.6 \ @@ -298,63 +300,58 @@ CARGO_CRATES= addr2line-0.24.2 \ slab-0.4.11 \ slug-0.1.6 \ smallvec-1.15.1 \ - socket2-0.6.0 \ + socket2-0.6.1 \ spin-0.10.0 \ ssri-9.2.0 \ - stable_deref_trait-1.2.0 \ + stable_deref_trait-1.2.1 \ str_stack-0.1.0 \ strsim-0.11.1 \ subtle-2.6.1 \ symbolic-common-12.16.2 \ symbolic-demangle-12.16.2 \ syn-1.0.109 \ - syn-2.0.106 \ + syn-2.0.111 \ sync_wrapper-1.0.2 \ synstructure-0.13.2 \ temp-dir-0.1.16 \ tempfile-3.22.0 \ - tera-1.20.0 \ + tera-1.20.1 \ termcolor-1.4.1 \ terminal_size-0.4.3 \ thiserror-1.0.69 \ - thiserror-2.0.16 \ + thiserror-2.0.17 \ thiserror-impl-1.0.69 \ - thiserror-impl-2.0.16 \ - time-0.3.43 \ + thiserror-impl-2.0.17 \ + time-0.3.44 \ time-core-0.1.6 \ time-macros-0.2.24 \ - tinystr-0.8.1 \ + tinystr-0.8.2 \ tinyvec-1.10.0 \ tinyvec_macros-0.1.1 \ - tokio-1.47.1 \ - tokio-macros-2.5.0 \ + tokio-1.48.0 \ + tokio-macros-2.6.0 \ tokio-rustls-0.26.2 \ tokio-stream-0.1.17 \ tokio-util-0.7.16 \ - toml-0.9.5 \ - toml_datetime-0.7.0 \ - toml_parser-1.0.2 \ - toml_writer-1.0.2 \ + toml-0.9.8 \ + toml_datetime-0.7.3 \ + toml_parser-1.0.4 \ + toml_writer-1.0.4 \ tower-0.5.2 \ - tower-http-0.6.6 \ + tower-http-0.6.8 \ tower-layer-0.3.3 \ tower-service-0.3.3 \ tracing-0.1.41 \ tracing-core-0.1.34 \ try-lock-0.2.5 \ - typenum-1.18.0 \ + typenum-1.19.0 \ ucd-trie-0.1.7 \ - unic-char-property-0.9.0 \ - unic-char-range-0.9.0 \ - unic-common-0.9.0 \ - unic-segment-0.9.0 \ - unic-ucd-segment-0.9.0 \ - unic-ucd-version-0.9.0 \ unicase-2.8.1 \ - unicode-ident-1.0.19 \ + unicode-ident-1.0.22 \ + unicode-segmentation-1.12.0 \ unicode-width-0.1.14 \ - unicode-width-0.2.1 \ - unit-prefix-0.5.1 \ + unicode-width-0.2.2 \ + unit-prefix-0.5.2 \ untrusted-0.9.0 \ unty-0.0.4 \ update-informer-1.3.0 \ @@ -372,8 +369,7 @@ CARGO_CRATES= addr2line-0.24.2 \ walkdir-2.5.0 \ want-0.3.1 \ wasi-0.11.1+wasi-snapshot-preview1 \ - wasi-0.14.5+wasi-0.2.4 \ - wasip2-1.0.0+wasi-0.2.4 \ + wasip2-1.0.1+wasi-0.2.4 \ wasm-bindgen-0.2.101 \ wasm-bindgen-backend-0.2.101 \ wasm-bindgen-futures-0.4.51 \ @@ -389,54 +385,53 @@ CARGO_CRATES= addr2line-0.24.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.62.0 \ windows-collections-0.3.0 \ - windows-core-0.62.0 \ + windows-core-0.62.2 \ windows-future-0.3.0 \ - windows-implement-0.60.0 \ - windows-interface-0.59.1 \ - windows-link-0.1.3 \ - windows-link-0.2.0 \ + windows-implement-0.60.2 \ + windows-interface-0.59.3 \ + windows-link-0.2.1 \ windows-numerics-0.3.0 \ - windows-result-0.4.0 \ - windows-strings-0.5.0 \ + windows-result-0.4.1 \ + windows-strings-0.5.1 \ windows-sys-0.52.0 \ windows-sys-0.59.0 \ windows-sys-0.60.2 \ - windows-sys-0.61.0 \ + windows-sys-0.61.2 \ windows-targets-0.52.6 \ - windows-targets-0.53.3 \ + windows-targets-0.53.5 \ windows-threading-0.2.0 \ windows_aarch64_gnullvm-0.52.6 \ - windows_aarch64_gnullvm-0.53.0 \ + windows_aarch64_gnullvm-0.53.1 \ windows_aarch64_msvc-0.52.6 \ - windows_aarch64_msvc-0.53.0 \ + windows_aarch64_msvc-0.53.1 \ windows_i686_gnu-0.52.6 \ - windows_i686_gnu-0.53.0 \ + windows_i686_gnu-0.53.1 \ windows_i686_gnullvm-0.52.6 \ - windows_i686_gnullvm-0.53.0 \ + windows_i686_gnullvm-0.53.1 \ windows_i686_msvc-0.52.6 \ - windows_i686_msvc-0.53.0 \ + windows_i686_msvc-0.53.1 \ windows_x86_64_gnu-0.52.6 \ - windows_x86_64_gnu-0.53.0 \ + windows_x86_64_gnu-0.53.1 \ windows_x86_64_gnullvm-0.52.6 \ - windows_x86_64_gnullvm-0.53.0 \ + windows_x86_64_gnullvm-0.53.1 \ windows_x86_64_msvc-0.52.6 \ - windows_x86_64_msvc-0.53.0 \ - winnow-0.7.13 \ - wit-bindgen-0.45.1 \ - writeable-0.6.1 \ + windows_x86_64_msvc-0.53.1 \ + winnow-0.7.14 \ + wit-bindgen-0.46.0 \ + writeable-0.6.2 \ xxhash-rust-0.8.15 \ - yaml-rust2-0.10.3 \ + yaml-rust2-0.10.4 \ yansi-1.0.1 \ - yoke-0.8.0 \ - yoke-derive-0.8.0 \ - zerocopy-0.8.27 \ - zerocopy-derive-0.8.27 \ + yoke-0.8.1 \ + yoke-derive-0.8.1 \ + zerocopy-0.8.31 \ + zerocopy-derive-0.8.31 \ zerofrom-0.1.6 \ zerofrom-derive-0.1.6 \ zeroize-1.8.1 \ - zerotrie-0.2.2 \ - zerovec-0.11.4 \ - zerovec-derive-0.11.1 \ + zerotrie-0.2.3 \ + zerovec-0.11.5 \ + zerovec-derive-0.11.2 \ zstd-0.13.3 \ zstd-safe-7.2.4 \ zstd-sys-2.0.16+zstd.1.5.7 diff --git a/devel/git-cliff/distinfo b/devel/git-cliff/distinfo index 9a9017de509b..1ba629f842b9 100644 --- a/devel/git-cliff/distinfo +++ b/devel/git-cliff/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1758602508 +TIMESTAMP = 1765783675 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -7,24 +7,24 @@ SHA256 (rust/crates/adler32-1.2.0.crate) = aae1277d39aeec15cb388266ecc24b11c8046 SIZE (rust/crates/adler32-1.2.0.crate) = 6411 SHA256 (rust/crates/ahash-0.8.12.crate) = 5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75 SIZE (rust/crates/ahash-0.8.12.crate) = 43413 -SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 -SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 +SHA256 (rust/crates/aho-corasick-1.1.4.crate) = ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 +SIZE (rust/crates/aho-corasick-1.1.4.crate) = 184015 SHA256 (rust/crates/aligned-vec-0.6.4.crate) = dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b SIZE (rust/crates/aligned-vec-0.6.4.crate) = 12609 SHA256 (rust/crates/allocator-api2-0.2.21.crate) = 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 SIZE (rust/crates/allocator-api2-0.2.21.crate) = 63622 SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311 SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 -SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 -SIZE (rust/crates/anstream-0.6.20.crate) = 28797 -SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd -SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 +SHA256 (rust/crates/anstream-0.6.21.crate) = 43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a +SIZE (rust/crates/anstream-0.6.21.crate) = 29516 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 -SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 -SIZE (rust/crates/anstyle-query-1.1.4.crate) = 10192 -SHA256 (rust/crates/anstyle-wincon-3.0.10.crate) = 3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a -SIZE (rust/crates/anstyle-wincon-3.0.10.crate) = 12558 +SHA256 (rust/crates/anstyle-query-1.1.5.crate) = 40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc +SIZE (rust/crates/anstyle-query-1.1.5.crate) = 10264 +SHA256 (rust/crates/anstyle-wincon-3.0.11.crate) = 291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d +SIZE (rust/crates/anstyle-wincon-3.0.11.crate) = 12638 SHA256 (rust/crates/anyhow-1.0.99.crate) = b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100 SIZE (rust/crates/anyhow-1.0.99.crate) = 53809 SHA256 (rust/crates/arraydeque-0.5.1.crate) = 7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236 @@ -33,6 +33,10 @@ SHA256 (rust/crates/arrayvec-0.7.6.crate) = 7c02d123df017efcdfbd739ef81735b36c5b SIZE (rust/crates/arrayvec-0.7.6.crate) = 31237 SHA256 (rust/crates/async-compression-0.4.30.crate) = 977eb15ea9efd848bb8a4a1a2500347ed7f0bf794edf0dc3ddcf439f43d36b23 SIZE (rust/crates/async-compression-0.4.30.crate) = 98817 +SHA256 (rust/crates/async-stream-0.3.6.crate) = 0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476 +SIZE (rust/crates/async-stream-0.3.6.crate) = 13823 +SHA256 (rust/crates/async-stream-impl-0.3.6.crate) = c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d +SIZE (rust/crates/async-stream-impl-0.3.6.crate) = 4312 SHA256 (rust/crates/async-trait-0.1.89.crate) = 9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb SIZE (rust/crates/async-trait-0.1.89.crate) = 32171 SHA256 (rust/crates/atomic-waker-1.1.2.crate) = 1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0 @@ -53,24 +57,24 @@ SHA256 (rust/crates/bincode_derive-2.0.1.crate) = bf95709a440f45e986983918d0e8a1 SIZE (rust/crates/bincode_derive-2.0.1.crate) = 7404 SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 -SHA256 (rust/crates/bitflags-2.9.4.crate) = 2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394 -SIZE (rust/crates/bitflags-2.9.4.crate) = 47950 +SHA256 (rust/crates/bitflags-2.10.0.crate) = 812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3 +SIZE (rust/crates/bitflags-2.10.0.crate) = 48427 SHA256 (rust/crates/block-buffer-0.10.4.crate) = 3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71 SIZE (rust/crates/block-buffer-0.10.4.crate) = 10538 -SHA256 (rust/crates/bstr-1.12.0.crate) = 234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4 -SIZE (rust/crates/bstr-1.12.0.crate) = 351557 +SHA256 (rust/crates/bstr-1.12.1.crate) = 63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab +SIZE (rust/crates/bstr-1.12.1.crate) = 354916 SHA256 (rust/crates/bumpalo-3.19.0.crate) = 46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43 SIZE (rust/crates/bumpalo-3.19.0.crate) = 96414 SHA256 (rust/crates/bytemuck-1.23.2.crate) = 3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677 SIZE (rust/crates/bytemuck-1.23.2.crate) = 53021 -SHA256 (rust/crates/bytes-1.10.1.crate) = d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a -SIZE (rust/crates/bytes-1.10.1.crate) = 76779 +SHA256 (rust/crates/bytes-1.11.0.crate) = b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3 +SIZE (rust/crates/bytes-1.11.0.crate) = 78391 SHA256 (rust/crates/cacache-13.0.0.crate) = a61ff12b19d89c752c213316b87fdb4a587f073d219b893cc56974b8c9f39bf7 SIZE (rust/crates/cacache-13.0.0.crate) = 47440 -SHA256 (rust/crates/cc-1.2.37.crate) = 65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44 -SIZE (rust/crates/cc-1.2.37.crate) = 90111 -SHA256 (rust/crates/cfg-if-1.0.3.crate) = 2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9 -SIZE (rust/crates/cfg-if-1.0.3.crate) = 8719 +SHA256 (rust/crates/cc-1.2.49.crate) = 90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215 +SIZE (rust/crates/cc-1.2.49.crate) = 93145 +SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 +SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 SHA256 (rust/crates/cfg_aliases-0.2.1.crate) = 613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724 SIZE (rust/crates/cfg_aliases-0.2.1.crate) = 6355 SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 @@ -79,26 +83,26 @@ SHA256 (rust/crates/chrono-tz-0.9.0.crate) = 93698b29de5e97ad0ae26447b344c482a72 SIZE (rust/crates/chrono-tz-0.9.0.crate) = 361570 SHA256 (rust/crates/chrono-tz-build-0.3.0.crate) = 0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1 SIZE (rust/crates/chrono-tz-build-0.3.0.crate) = 6139 -SHA256 (rust/crates/clap-4.5.47.crate) = 7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931 -SIZE (rust/crates/clap-4.5.47.crate) = 58354 -SHA256 (rust/crates/clap_builder-4.5.47.crate) = 2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6 -SIZE (rust/crates/clap_builder-4.5.47.crate) = 170016 -SHA256 (rust/crates/clap_complete-4.5.57.crate) = 4d9501bd3f5f09f7bbee01da9a511073ed30a80cd7a509f1214bb74eadea71ad -SIZE (rust/crates/clap_complete-4.5.57.crate) = 48637 -SHA256 (rust/crates/clap_derive-4.5.47.crate) = bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c -SIZE (rust/crates/clap_derive-4.5.47.crate) = 33550 -SHA256 (rust/crates/clap_lex-0.7.5.crate) = b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675 -SIZE (rust/crates/clap_lex-0.7.5.crate) = 13469 -SHA256 (rust/crates/clap_mangen-0.2.29.crate) = 27b4c3c54b30f0d9adcb47f25f61fcce35c4dd8916638c6b82fbd5f4fb4179e2 -SIZE (rust/crates/clap_mangen-0.2.29.crate) = 16080 +SHA256 (rust/crates/clap-4.5.53.crate) = c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8 +SIZE (rust/crates/clap-4.5.53.crate) = 62036 +SHA256 (rust/crates/clap_builder-4.5.53.crate) = d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00 +SIZE (rust/crates/clap_builder-4.5.53.crate) = 170811 +SHA256 (rust/crates/clap_complete-4.5.61.crate) = 39615915e2ece2550c0149addac32fb5bd312c657f43845bb9088cb9c8a7c992 +SIZE (rust/crates/clap_complete-4.5.61.crate) = 48828 +SHA256 (rust/crates/clap_derive-4.5.49.crate) = 2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671 +SIZE (rust/crates/clap_derive-4.5.49.crate) = 33559 +SHA256 (rust/crates/clap_lex-0.7.6.crate) = a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d +SIZE (rust/crates/clap_lex-0.7.6.crate) = 13466 +SHA256 (rust/crates/clap_mangen-0.2.31.crate) = 439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301 +SIZE (rust/crates/clap_mangen-0.2.31.crate) = 16345 SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75 SIZE (rust/crates/colorchoice-1.0.4.crate) = 8196 SHA256 (rust/crates/compression-codecs-0.4.30.crate) = 485abf41ac0c8047c07c87c72c8fb3eb5197f6e9d7ded615dfd1a00ae00a0f64 SIZE (rust/crates/compression-codecs-0.4.30.crate) = 22516 SHA256 (rust/crates/compression-core-0.4.29.crate) = e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb SIZE (rust/crates/compression-core-0.4.29.crate) = 4321 -SHA256 (rust/crates/config-0.15.15.crate) = 0faa974509d38b33ff89282db9c3295707ccf031727c0de9772038ec526852ba -SIZE (rust/crates/config-0.15.15.crate) = 56766 +SHA256 (rust/crates/config-0.15.19.crate) = b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6 +SIZE (rust/crates/config-0.15.19.crate) = 57567 SHA256 (rust/crates/console-0.16.1.crate) = b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4 SIZE (rust/crates/console-0.16.1.crate) = 39129 SHA256 (rust/crates/cookie-0.18.1.crate) = 4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747 @@ -123,14 +127,14 @@ SHA256 (rust/crates/crossbeam-epoch-0.9.18.crate) = 5b82ac4a3c2ca9c3460964f020e1 SIZE (rust/crates/crossbeam-epoch-0.9.18.crate) = 46875 SHA256 (rust/crates/crossbeam-utils-0.8.21.crate) = d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28 SIZE (rust/crates/crossbeam-utils-0.8.21.crate) = 42691 -SHA256 (rust/crates/crypto-common-0.1.6.crate) = 1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3 -SIZE (rust/crates/crypto-common-0.1.6.crate) = 8760 -SHA256 (rust/crates/dary_heap-0.3.7.crate) = 04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728 -SIZE (rust/crates/dary_heap-0.3.7.crate) = 24076 +SHA256 (rust/crates/crypto-common-0.1.7.crate) = 78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a +SIZE (rust/crates/crypto-common-0.1.7.crate) = 9619 +SHA256 (rust/crates/dary_heap-0.3.8.crate) = 06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04 +SIZE (rust/crates/dary_heap-0.3.8.crate) = 26544 SHA256 (rust/crates/debugid-0.8.0.crate) = bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d SIZE (rust/crates/debugid-0.8.0.crate) = 12757 -SHA256 (rust/crates/deranged-0.5.3.crate) = d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc -SIZE (rust/crates/deranged-0.5.3.crate) = 24353 +SHA256 (rust/crates/deranged-0.5.5.crate) = ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587 +SIZE (rust/crates/deranged-0.5.5.crate) = 24438 SHA256 (rust/crates/deunicode-1.6.2.crate) = abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04 SIZE (rust/crates/deunicode-1.6.2.crate) = 172772 SHA256 (rust/crates/diff-0.1.13.crate) = 56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8 @@ -145,8 +149,8 @@ SHA256 (rust/crates/displaydoc-0.2.5.crate) = 97369cbbc041bc366949bc74d34658d6cd SIZE (rust/crates/displaydoc-0.2.5.crate) = 24219 SHA256 (rust/crates/dissimilar-1.0.10.crate) = 8975ffdaa0ef3661bfe02dbdcc06c9f829dfafe6a3c474de366a8d5e44276921 SIZE (rust/crates/dissimilar-1.0.10.crate) = 27757 -SHA256 (rust/crates/document-features-0.2.11.crate) = 95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d -SIZE (rust/crates/document-features-0.2.11.crate) = 14640 +SHA256 (rust/crates/document-features-0.2.12.crate) = d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61 +SIZE (rust/crates/document-features-0.2.12.crate) = 14739 SHA256 (rust/crates/dyn-clone-1.0.20.crate) = d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555 SIZE (rust/crates/dyn-clone-1.0.20.crate) = 13134 SHA256 (rust/crates/either-1.15.0.crate) = 48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719 @@ -171,8 +175,8 @@ SHA256 (rust/crates/expect-test-1.5.1.crate) = 63af43ff4431e848fb47472a920f14fa7 SIZE (rust/crates/expect-test-1.5.1.crate) = 13672 SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 -SHA256 (rust/crates/find-msvc-tools-0.1.1.crate) = 7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d -SIZE (rust/crates/find-msvc-tools-0.1.1.crate) = 30228 +SHA256 (rust/crates/find-msvc-tools-0.1.5.crate) = 3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844 +SIZE (rust/crates/find-msvc-tools-0.1.5.crate) = 30942 SHA256 (rust/crates/findshlibs-0.10.2.crate) = 40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64 SIZE (rust/crates/findshlibs-0.10.2.crate) = 20101 SHA256 (rust/crates/flate2-1.1.2.crate) = 4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d @@ -181,6 +185,8 @@ SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da2 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 SHA256 (rust/crates/foldhash-0.1.5.crate) = d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2 SIZE (rust/crates/foldhash-0.1.5.crate) = 21901 +SHA256 (rust/crates/foldhash-0.2.0.crate) = 77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb +SIZE (rust/crates/foldhash-0.2.0.crate) = 23329 SHA256 (rust/crates/form_urlencoded-1.2.2.crate) = cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf SIZE (rust/crates/form_urlencoded-1.2.2.crate) = 9347 SHA256 (rust/crates/futures-0.3.31.crate) = 65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876 @@ -205,24 +211,24 @@ SHA256 (rust/crates/generic-array-0.14.7.crate) = 85649ca51fd72272d7821adaf274ad SIZE (rust/crates/generic-array-0.14.7.crate) = 15950 SHA256 (rust/crates/getrandom-0.2.16.crate) = 335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592 SIZE (rust/crates/getrandom-0.2.16.crate) = 40163 -SHA256 (rust/crates/getrandom-0.3.3.crate) = 26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4 -SIZE (rust/crates/getrandom-0.3.3.crate) = 49493 +SHA256 (rust/crates/getrandom-0.3.4.crate) = 899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd +SIZE (rust/crates/getrandom-0.3.4.crate) = 50932 SHA256 (rust/crates/gimli-0.31.1.crate) = 07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f SIZE (rust/crates/gimli-0.31.1.crate) = 279515 SHA256 (rust/crates/git-conventional-0.12.9.crate) = f6a949b7fcc81df22526032dcddb006e78c8575e47b0e7ba57d9960570a57bc4 SIZE (rust/crates/git-conventional-0.12.9.crate) = 16954 -SHA256 (rust/crates/git2-0.20.2.crate) = 2deb07a133b1520dc1a5690e9bd08950108873d7ed5de38dcc74d3b5ebffa110 -SIZE (rust/crates/git2-0.20.2.crate) = 223479 +SHA256 (rust/crates/git2-0.20.3.crate) = 3e2b37e2f62729cdada11f0e6b3b6fe383c69c29fc619e391223e12856af308c +SIZE (rust/crates/git2-0.20.3.crate) = 224085 SHA256 (rust/crates/glob-0.3.3.crate) = 0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280 SIZE (rust/crates/glob-0.3.3.crate) = 22861 -SHA256 (rust/crates/globset-0.4.16.crate) = 54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5 -SIZE (rust/crates/globset-0.4.16.crate) = 26533 +SHA256 (rust/crates/globset-0.4.18.crate) = 52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3 +SIZE (rust/crates/globset-0.4.18.crate) = 28970 SHA256 (rust/crates/globwalk-0.9.1.crate) = 0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757 SIZE (rust/crates/globwalk-0.9.1.crate) = 12572 -SHA256 (rust/crates/hashbrown-0.14.5.crate) = e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1 -SIZE (rust/crates/hashbrown-0.14.5.crate) = 141498 SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 +SHA256 (rust/crates/hashbrown-0.16.1.crate) = 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 +SIZE (rust/crates/hashbrown-0.16.1.crate) = 147785 SHA256 (rust/crates/hashlink-0.10.0.crate) = 7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1 SIZE (rust/crates/hashlink-0.10.0.crate) = 29402 SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea @@ -265,68 +271,66 @@ SHA256 (rust/crates/iana-time-zone-0.1.64.crate) = 33e57f83510bb73707521ebaffa78 SIZE (rust/crates/iana-time-zone-0.1.64.crate) = 33152 SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f SIZE (rust/crates/iana-time-zone-haiku-0.1.2.crate) = 7185 -SHA256 (rust/crates/icu_collections-2.0.0.crate) = 200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47 -SIZE (rust/crates/icu_collections-2.0.0.crate) = 83033 -SHA256 (rust/crates/icu_locale_core-2.0.0.crate) = 0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a -SIZE (rust/crates/icu_locale_core-2.0.0.crate) = 74430 -SHA256 (rust/crates/icu_normalizer-2.0.0.crate) = 436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979 -SIZE (rust/crates/icu_normalizer-2.0.0.crate) = 61543 -SHA256 (rust/crates/icu_normalizer_data-2.0.0.crate) = 00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3 -SIZE (rust/crates/icu_normalizer_data-2.0.0.crate) = 68101 -SHA256 (rust/crates/icu_properties-2.0.1.crate) = 016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b -SIZE (rust/crates/icu_properties-2.0.1.crate) = 58165 -SHA256 (rust/crates/icu_properties_data-2.0.1.crate) = 298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632 -SIZE (rust/crates/icu_properties_data-2.0.1.crate) = 159735 -SHA256 (rust/crates/icu_provider-2.0.0.crate) = 03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af -SIZE (rust/crates/icu_provider-2.0.0.crate) = 50966 +SHA256 (rust/crates/icu_collections-2.1.1.crate) = 4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43 +SIZE (rust/crates/icu_collections-2.1.1.crate) = 87233 +SHA256 (rust/crates/icu_locale_core-2.1.1.crate) = edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6 +SIZE (rust/crates/icu_locale_core-2.1.1.crate) = 70876 +SHA256 (rust/crates/icu_normalizer-2.1.1.crate) = 5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599 +SIZE (rust/crates/icu_normalizer-2.1.1.crate) = 67132 +SHA256 (rust/crates/icu_normalizer_data-2.1.1.crate) = 7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a +SIZE (rust/crates/icu_normalizer_data-2.1.1.crate) = 68649 +SHA256 (rust/crates/icu_properties-2.1.2.crate) = 020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec +SIZE (rust/crates/icu_properties-2.1.2.crate) = 60136 +SHA256 (rust/crates/icu_properties_data-2.1.2.crate) = 616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af +SIZE (rust/crates/icu_properties_data-2.1.2.crate) = 163057 +SHA256 (rust/crates/icu_provider-2.1.1.crate) = 85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614 +SIZE (rust/crates/icu_provider-2.1.1.crate) = 50907 SHA256 (rust/crates/idna-1.1.0.crate) = 3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de SIZE (rust/crates/idna-1.1.0.crate) = 148747 SHA256 (rust/crates/idna_adapter-1.2.1.crate) = 3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344 SIZE (rust/crates/idna_adapter-1.2.1.crate) = 10389 -SHA256 (rust/crates/ignore-0.4.23.crate) = 6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b -SIZE (rust/crates/ignore-0.4.23.crate) = 55901 +SHA256 (rust/crates/ignore-0.4.25.crate) = d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a +SIZE (rust/crates/ignore-0.4.25.crate) = 59154 SHA256 (rust/crates/include-flate-0.3.1.crate) = e01b7cb6ca682a621e7cda1c358c9724b53a7b4409be9be1dd443b7f3a26f998 SIZE (rust/crates/include-flate-0.3.1.crate) = 10464 SHA256 (rust/crates/include-flate-codegen-0.3.1.crate) = 4f49bf5274aebe468d6e6eba14a977eaf1efa481dc173f361020de70c1c48050 SIZE (rust/crates/include-flate-codegen-0.3.1.crate) = 5756 SHA256 (rust/crates/include-flate-compress-0.3.1.crate) = eae6a40e716bcd5931f5dbb79cd921512a4f647e2e9413fded3171fca3824dbc SIZE (rust/crates/include-flate-compress-0.3.1.crate) = 4807 -SHA256 (rust/crates/indexmap-2.11.1.crate) = 206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921 -SIZE (rust/crates/indexmap-2.11.1.crate) = 99966 -SHA256 (rust/crates/indicatif-0.18.0.crate) = 70a646d946d06bedbbc4cac4c218acf4bbf2d87757a784857025f4d447e4e1cd -SIZE (rust/crates/indicatif-0.18.0.crate) = 67969 +SHA256 (rust/crates/indexmap-2.12.1.crate) = 0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2 +SIZE (rust/crates/indexmap-2.12.1.crate) = 100184 +SHA256 (rust/crates/indicatif-0.18.3.crate) = 9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88 +SIZE (rust/crates/indicatif-0.18.3.crate) = 66504 SHA256 (rust/crates/inferno-0.11.21.crate) = 232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88 SIZE (rust/crates/inferno-0.11.21.crate) = 102615 -SHA256 (rust/crates/io-uring-0.7.10.crate) = 046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b -SIZE (rust/crates/io-uring-0.7.10.crate) = 103070 SHA256 (rust/crates/ipnet-2.11.0.crate) = 469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130 SIZE (rust/crates/ipnet-2.11.0.crate) = 29718 SHA256 (rust/crates/iri-string-0.7.8.crate) = dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2 SIZE (rust/crates/iri-string-0.7.8.crate) = 141493 SHA256 (rust/crates/is-terminal-0.4.16.crate) = e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9 SIZE (rust/crates/is-terminal-0.4.16.crate) = 7811 -SHA256 (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf -SIZE (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7492 +SHA256 (rust/crates/is_terminal_polyfill-1.70.2.crate) = a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695 +SIZE (rust/crates/is_terminal_polyfill-1.70.2.crate) = 7548 SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c SIZE (rust/crates/itoa-1.0.15.crate) = 11231 SHA256 (rust/crates/jobserver-0.1.34.crate) = 9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33 SIZE (rust/crates/jobserver-0.1.34.crate) = 29013 SHA256 (rust/crates/js-sys-0.3.78.crate) = 0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738 SIZE (rust/crates/js-sys-0.3.78.crate) = 56010 -SHA256 (rust/crates/lazy-regex-3.4.1.crate) = 60c7310b93682b36b98fa7ea4de998d3463ccbebd94d935d6b48ba5b6ffa7126 -SIZE (rust/crates/lazy-regex-3.4.1.crate) = 7808 -SHA256 (rust/crates/lazy-regex-proc_macros-3.4.1.crate) = 4ba01db5ef81e17eb10a5e0f2109d1b3a3e29bac3070fdbd7d156bf7dbd206a1 -SIZE (rust/crates/lazy-regex-proc_macros-3.4.1.crate) = 6022 +SHA256 (rust/crates/lazy-regex-3.4.2.crate) = 191898e17ddee19e60bccb3945aa02339e81edd4a8c50e21fd4d48cdecda7b29 +SIZE (rust/crates/lazy-regex-3.4.2.crate) = 9028 +SHA256 (rust/crates/lazy-regex-proc_macros-3.4.2.crate) = c35dc8b0da83d1a9507e12122c80dea71a9c7c613014347392483a83ea593e04 +SIZE (rust/crates/lazy-regex-proc_macros-3.4.2.crate) = 6813 SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 -SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 -SIZE (rust/crates/libc-0.2.175.crate) = 788728 -SHA256 (rust/crates/libflate-2.1.0.crate) = 45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e -SIZE (rust/crates/libflate-2.1.0.crate) = 43366 -SHA256 (rust/crates/libflate_lz77-2.1.0.crate) = e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d -SIZE (rust/crates/libflate_lz77-2.1.0.crate) = 5918 -SHA256 (rust/crates/libgit2-sys-0.18.2+1.9.1.crate) = 1c42fe03df2bd3c53a3a9c7317ad91d80c81cd1fb0caec8d7cc4cd2bfa10c222 -SIZE (rust/crates/libgit2-sys-0.18.2+1.9.1.crate) = 1856057 +SHA256 (rust/crates/libc-0.2.178.crate) = 37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091 +SIZE (rust/crates/libc-0.2.178.crate) = 783720 +SHA256 (rust/crates/libflate-2.2.1.crate) = e3248b8d211bd23a104a42d81b4fa8bb8ac4a3b75e7a43d85d2c9ccb6179cd74 +SIZE (rust/crates/libflate-2.2.1.crate) = 40550 +SHA256 (rust/crates/libflate_lz77-2.2.0.crate) = a599cb10a9cd92b1300debcef28da8f70b935ec937f44fcd1b70a7c986a11c5c +SIZE (rust/crates/libflate_lz77-2.2.0.crate) = 7627 +SHA256 (rust/crates/libgit2-sys-0.18.3+1.9.2.crate) = c9b3acc4b91781bb0b3386669d325163746af5f6e4f73e6d2d630e09a35f3487 +SIZE (rust/crates/libgit2-sys-0.18.3+1.9.2.crate) = 1865532 SHA256 (rust/crates/libm-0.2.15.crate) = f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de SIZE (rust/crates/libm-0.2.15.crate) = 156108 SHA256 (rust/crates/libredox-0.1.10.crate) = 416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb @@ -335,18 +339,18 @@ SHA256 (rust/crates/libz-sys-1.1.22.crate) = 8b70e7a7df205e92a1a4cd9aaae7898dac0 SIZE (rust/crates/libz-sys-1.1.22.crate) = 841053 SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 -SHA256 (rust/crates/litemap-0.8.0.crate) = 241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956 -SIZE (rust/crates/litemap-0.8.0.crate) = 34344 -SHA256 (rust/crates/litrs-0.4.2.crate) = f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed -SIZE (rust/crates/litrs-0.4.2.crate) = 43399 +SHA256 (rust/crates/litemap-0.8.1.crate) = 6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77 +SIZE (rust/crates/litemap-0.8.1.crate) = 34172 +SHA256 (rust/crates/litrs-1.0.0.crate) = 11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092 +SIZE (rust/crates/litrs-1.0.0.crate) = 46610 SHA256 (rust/crates/lock_api-0.4.13.crate) = 96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765 SIZE (rust/crates/lock_api-0.4.13.crate) = 28565 -SHA256 (rust/crates/log-0.4.28.crate) = 34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432 -SIZE (rust/crates/log-0.4.28.crate) = 51131 +SHA256 (rust/crates/log-0.4.29.crate) = 5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897 +SIZE (rust/crates/log-0.4.29.crate) = 51515 SHA256 (rust/crates/lru-slab-0.1.2.crate) = 112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154 SIZE (rust/crates/lru-slab-0.1.2.crate) = 9090 -SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 -SIZE (rust/crates/memchr-2.7.5.crate) = 97603 +SHA256 (rust/crates/memchr-2.7.6.crate) = f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273 +SIZE (rust/crates/memchr-2.7.6.crate) = 97616 SHA256 (rust/crates/memmap2-0.5.10.crate) = 83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327 SIZE (rust/crates/memmap2-0.5.10.crate) = 26847 SHA256 (rust/crates/memmap2-0.9.8.crate) = 843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7 @@ -357,10 +361,10 @@ SHA256 (rust/crates/miette-derive-5.10.0.crate) = 49e7bc1560b95a3c4a25d03de42fe7 SIZE (rust/crates/miette-derive-5.10.0.crate) = 16062 SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 -SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c -SIZE (rust/crates/mio-1.0.4.crate) = 104212 -SHA256 (rust/crates/next_version-0.2.25.crate) = 2af0742157c04cea78f8643de0d0785a29d53c4dd08d985bc542cdd4d2ec9830 -SIZE (rust/crates/next_version-0.2.25.crate) = 9137 +SHA256 (rust/crates/mio-1.1.1.crate) = a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc +SIZE (rust/crates/mio-1.1.1.crate) = 105630 +SHA256 (rust/crates/next_version-0.2.26.crate) = cc89399c10a3de3a18971b961e9fea788eb252d887c1c2f740f351a907088d0c +SIZE (rust/crates/next_version-0.2.26.crate) = 9178 SHA256 (rust/crates/nix-0.26.4.crate) = 598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b SIZE (rust/crates/nix-0.26.4.crate) = 279099 SHA256 (rust/crates/num-conv-0.1.0.crate) = 51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9 @@ -373,8 +377,8 @@ SHA256 (rust/crates/object-0.36.7.crate) = 62948e14d923ea95ea2c7c86c71013138b665 SIZE (rust/crates/object-0.36.7.crate) = 329938 SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 -SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad -SIZE (rust/crates/once_cell_polyfill-1.70.1.crate) = 7510 +SHA256 (rust/crates/once_cell_polyfill-1.70.2.crate) = 384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe +SIZE (rust/crates/once_cell_polyfill-1.70.2.crate) = 7448 SHA256 (rust/crates/openssl-probe-0.1.6.crate) = d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e SIZE (rust/crates/openssl-probe-0.1.6.crate) = 8128 SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d @@ -385,14 +389,14 @@ SHA256 (rust/crates/pathdiff-0.2.3.crate) = df94ce210e5bc13cb6651479fa48d14f601d SIZE (rust/crates/pathdiff-0.2.3.crate) = 7495 SHA256 (rust/crates/percent-encoding-2.3.2.crate) = 9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220 SIZE (rust/crates/percent-encoding-2.3.2.crate) = 11583 -SHA256 (rust/crates/pest-2.8.2.crate) = 21e0a3a33733faeaf8651dfee72dd0f388f0c8e5ad496a3478fa5a922f49cfa8 -SIZE (rust/crates/pest-2.8.2.crate) = 130430 -SHA256 (rust/crates/pest_derive-2.8.2.crate) = bc58706f770acb1dbd0973e6530a3cff4746fb721207feb3a8a6064cd0b6c663 -SIZE (rust/crates/pest_derive-2.8.2.crate) = 42335 -SHA256 (rust/crates/pest_generator-2.8.2.crate) = 6d4f36811dfe07f7b8573462465d5cb8965fffc2e71ae377a33aecf14c2c9a2f -SIZE (rust/crates/pest_generator-2.8.2.crate) = 18669 -SHA256 (rust/crates/pest_meta-2.8.2.crate) = 42919b05089acbd0a5dcd5405fb304d17d1053847b81163d09c4ad18ce8e8420 -SIZE (rust/crates/pest_meta-2.8.2.crate) = 42952 +SHA256 (rust/crates/pest-2.8.4.crate) = cbcfd20a6d4eeba40179f05735784ad32bdaef05ce8e8af05f180d45bb3e7e22 +SIZE (rust/crates/pest-2.8.4.crate) = 129758 +SHA256 (rust/crates/pest_derive-2.8.4.crate) = 51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f +SIZE (rust/crates/pest_derive-2.8.4.crate) = 43466 +SHA256 (rust/crates/pest_generator-2.8.4.crate) = dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625 +SIZE (rust/crates/pest_generator-2.8.4.crate) = 18650 +SHA256 (rust/crates/pest_meta-2.8.4.crate) = bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82 +SIZE (rust/crates/pest_meta-2.8.4.crate) = 42947 SHA256 (rust/crates/phf-0.11.3.crate) = 1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078 SIZE (rust/crates/phf-0.11.3.crate) = 23231 SHA256 (rust/crates/phf_codegen-0.11.3.crate) = aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a @@ -409,8 +413,8 @@ SHA256 (rust/crates/pkg-config-0.3.32.crate) = 7edddbd0b52d732b21ad9a5fab5c704c1 SIZE (rust/crates/pkg-config-0.3.32.crate) = 21370 SHA256 (rust/crates/portable-atomic-1.11.1.crate) = f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483 SIZE (rust/crates/portable-atomic-1.11.1.crate) = 185506 -SHA256 (rust/crates/potential_utf-0.1.3.crate) = 84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a -SIZE (rust/crates/potential_utf-0.1.3.crate) = 9698 +SHA256 (rust/crates/potential_utf-0.1.4.crate) = b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77 +SIZE (rust/crates/potential_utf-0.1.4.crate) = 9514 SHA256 (rust/crates/powerfmt-0.2.0.crate) = 439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391 SIZE (rust/crates/powerfmt-0.2.0.crate) = 15165 SHA256 (rust/crates/pprof-0.15.0.crate) = 38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187 @@ -423,8 +427,8 @@ SHA256 (rust/crates/proc-macro-error-1.0.4.crate) = da25490ff9892aab3fcf7c36f08c SIZE (rust/crates/proc-macro-error-1.0.4.crate) = 25293 SHA256 (rust/crates/proc-macro-error-attr-1.0.4.crate) = a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869 SIZE (rust/crates/proc-macro-error-attr-1.0.4.crate) = 7971 -SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de -SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 +SHA256 (rust/crates/proc-macro2-1.0.103.crate) = 5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8 +SIZE (rust/crates/proc-macro2-1.0.103.crate) = 60024 SHA256 (rust/crates/quick-xml-0.26.0.crate) = 7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd SIZE (rust/crates/quick-xml-0.26.0.crate) = 116260 SHA256 (rust/crates/quinn-0.11.9.crate) = b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20 @@ -433,8 +437,8 @@ SHA256 (rust/crates/quinn-proto-0.11.13.crate) = f1906b49b0c3bc04b5fe5d86a77925a SIZE (rust/crates/quinn-proto-0.11.13.crate) = 243837 SHA256 (rust/crates/quinn-udp-0.5.14.crate) = addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd SIZE (rust/crates/quinn-udp-0.5.14.crate) = 33436 -SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d -SIZE (rust/crates/quote-1.0.40.crate) = 31063 +SHA256 (rust/crates/quote-1.0.42.crate) = a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f +SIZE (rust/crates/quote-1.0.42.crate) = 31504 SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 @@ -453,14 +457,14 @@ SHA256 (rust/crates/redox_users-0.5.2.crate) = a4e608c6638b9c18977b00b475ac1f28d SIZE (rust/crates/redox_users-0.5.2.crate) = 17280 SHA256 (rust/crates/reflink-copy-0.1.28.crate) = 23bbed272e39c47a095a5242218a67412a220006842558b03fe2935e8f3d7b92 SIZE (rust/crates/reflink-copy-0.1.28.crate) = 23811 -SHA256 (rust/crates/regex-1.11.2.crate) = 23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912 -SIZE (rust/crates/regex-1.11.2.crate) = 166265 -SHA256 (rust/crates/regex-automata-0.4.10.crate) = 6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6 -SIZE (rust/crates/regex-automata-0.4.10.crate) = 622754 -SHA256 (rust/crates/regex-syntax-0.8.6.crate) = caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001 -SIZE (rust/crates/regex-syntax-0.8.6.crate) = 358808 -SHA256 (rust/crates/reqwest-0.12.23.crate) = d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb -SIZE (rust/crates/reqwest-0.12.23.crate) = 161307 +SHA256 (rust/crates/regex-1.12.2.crate) = 843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4 +SIZE (rust/crates/regex-1.12.2.crate) = 163843 +SHA256 (rust/crates/regex-automata-0.4.13.crate) = 5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c +SIZE (rust/crates/regex-automata-0.4.13.crate) = 625250 +SHA256 (rust/crates/regex-syntax-0.8.8.crate) = 7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58 +SIZE (rust/crates/regex-syntax-0.8.8.crate) = 359141 +SHA256 (rust/crates/reqwest-0.12.25.crate) = b6eff9328d40131d43bd911d42d79eb6a47312002a4daefc9e37f17e74a7701a +SIZE (rust/crates/reqwest-0.12.25.crate) = 156003 SHA256 (rust/crates/reqwest-middleware-0.4.2.crate) = 57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e SIZE (rust/crates/reqwest-middleware-0.4.2.crate) = 28290 SHA256 (rust/crates/rgb-0.8.52.crate) = 0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce @@ -471,12 +475,12 @@ SHA256 (rust/crates/rle-decode-fast-1.0.3.crate) = 3582f63211428f83597b51b2ddb88 SIZE (rust/crates/rle-decode-fast-1.0.3.crate) = 62086 SHA256 (rust/crates/roff-0.2.2.crate) = 88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3 SIZE (rust/crates/roff-0.2.2.crate) = 11648 -SHA256 (rust/crates/rust-embed-8.7.2.crate) = 025908b8682a26ba8d12f6f2d66b987584a4a87bc024abc5bbc12553a8cd178a -SIZE (rust/crates/rust-embed-8.7.2.crate) = 906250 -SHA256 (rust/crates/rust-embed-impl-8.7.2.crate) = 6065f1a4392b71819ec1ea1df1120673418bf386f50de1d6f54204d836d4349c -SIZE (rust/crates/rust-embed-impl-8.7.2.crate) = 9663 -SHA256 (rust/crates/rust-embed-utils-8.7.2.crate) = f6cc0c81648b20b70c491ff8cce00c1c3b223bb8ed2b5d41f0e54c6c4c0a3594 -SIZE (rust/crates/rust-embed-utils-8.7.2.crate) = 6123 +SHA256 (rust/crates/rust-embed-8.9.0.crate) = 947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca +SIZE (rust/crates/rust-embed-8.9.0.crate) = 900777 +SHA256 (rust/crates/rust-embed-impl-8.9.0.crate) = 5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2 +SIZE (rust/crates/rust-embed-impl-8.9.0.crate) = 9279 +SHA256 (rust/crates/rust-embed-utils-8.9.0.crate) = 60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475 +SIZE (rust/crates/rust-embed-utils-8.9.0.crate) = 5730 SHA256 (rust/crates/rustc-demangle-0.1.26.crate) = 56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace SIZE (rust/crates/rustc-demangle-0.1.26.crate) = 30340 SHA256 (rust/crates/rustc-hash-2.1.1.crate) = 357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d @@ -509,20 +513,20 @@ SHA256 (rust/crates/security-framework-3.4.0.crate) = 60b369d18893388b345804dc00 SIZE (rust/crates/security-framework-3.4.0.crate) = 88668 SHA256 (rust/crates/security-framework-sys-2.15.0.crate) = cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0 SIZE (rust/crates/security-framework-sys-2.15.0.crate) = 20718 -SHA256 (rust/crates/semver-1.0.26.crate) = 56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0 -SIZE (rust/crates/semver-1.0.26.crate) = 31303 -SHA256 (rust/crates/serde-1.0.221.crate) = 341877e04a22458705eb4e131a1508483c877dca2792b3781d4e5d8a6019ec43 -SIZE (rust/crates/serde-1.0.221.crate) = 27364 -SHA256 (rust/crates/serde_core-1.0.221.crate) = 0c459bc0a14c840cb403fc14b148620de1e0778c96ecd6e0c8c3cacb6d8d00fe -SIZE (rust/crates/serde_core-1.0.221.crate) = 63479 -SHA256 (rust/crates/serde_derive-1.0.221.crate) = d6185cf75117e20e62b1ff867b9518577271e58abe0037c40bb4794969355ab0 -SIZE (rust/crates/serde_derive-1.0.221.crate) = 57911 -SHA256 (rust/crates/serde_json-1.0.144.crate) = 56177480b00303e689183f110b4e727bb4211d692c62d4fcd16d02be93077d40 -SIZE (rust/crates/serde_json-1.0.144.crate) = 155711 +SHA256 (rust/crates/semver-1.0.27.crate) = d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2 +SIZE (rust/crates/semver-1.0.27.crate) = 30081 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 +SHA256 (rust/crates/serde_json-1.0.145.crate) = 402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c +SIZE (rust/crates/serde_json-1.0.145.crate) = 155748 SHA256 (rust/crates/serde_regex-1.1.0.crate) = a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf SIZE (rust/crates/serde_regex-1.1.0.crate) = 9710 -SHA256 (rust/crates/serde_spanned-1.0.0.crate) = 40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83 -SIZE (rust/crates/serde_spanned-1.0.0.crate) = 10956 +SHA256 (rust/crates/serde_spanned-1.0.3.crate) = e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392 +SIZE (rust/crates/serde_spanned-1.0.3.crate) = 11011 SHA256 (rust/crates/serde_urlencoded-0.7.1.crate) = d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd SIZE (rust/crates/serde_urlencoded-0.7.1.crate) = 12822 SHA256 (rust/crates/sha-1-0.10.1.crate) = f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c @@ -543,14 +547,14 @@ SHA256 (rust/crates/slug-0.1.6.crate) = 882a80f72ee45de3cc9a5afeb2da0331d58df69e SIZE (rust/crates/slug-0.1.6.crate) = 6787 SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 -SHA256 (rust/crates/socket2-0.6.0.crate) = 233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807 -SIZE (rust/crates/socket2-0.6.0.crate) = 57974 +SHA256 (rust/crates/socket2-0.6.1.crate) = 17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881 +SIZE (rust/crates/socket2-0.6.1.crate) = 58486 SHA256 (rust/crates/spin-0.10.0.crate) = d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591 SIZE (rust/crates/spin-0.10.0.crate) = 39654 SHA256 (rust/crates/ssri-9.2.0.crate) = da7a2b3c2bc9693bcb40870c4e9b5bf0d79f9cb46273321bf855ec513e919082 SIZE (rust/crates/ssri-9.2.0.crate) = 23448 -SHA256 (rust/crates/stable_deref_trait-1.2.0.crate) = a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3 -SIZE (rust/crates/stable_deref_trait-1.2.0.crate) = 8054 +SHA256 (rust/crates/stable_deref_trait-1.2.1.crate) = 6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596 +SIZE (rust/crates/stable_deref_trait-1.2.1.crate) = 8186 SHA256 (rust/crates/str_stack-0.1.0.crate) = 9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb SIZE (rust/crates/str_stack-0.1.0.crate) = 7977 SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f @@ -563,8 +567,8 @@ SHA256 (rust/crates/symbolic-demangle-12.16.2.crate) = 6fd35afe0ef9d35d3dcd41c67 SIZE (rust/crates/symbolic-demangle-12.16.2.crate) = 192834 SHA256 (rust/crates/syn-1.0.109.crate) = 72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237 SIZE (rust/crates/syn-1.0.109.crate) = 237611 -SHA256 (rust/crates/syn-2.0.106.crate) = ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6 -SIZE (rust/crates/syn-2.0.106.crate) = 301514 +SHA256 (rust/crates/syn-2.0.111.crate) = 390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87 +SIZE (rust/crates/syn-2.0.111.crate) = 302117 SHA256 (rust/crates/sync_wrapper-1.0.2.crate) = 0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263 SIZE (rust/crates/sync_wrapper-1.0.2.crate) = 6958 SHA256 (rust/crates/synstructure-0.13.2.crate) = 728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2 @@ -573,54 +577,54 @@ SHA256 (rust/crates/temp-dir-0.1.16.crate) = 83176759e9416cf81ee66cb6508dbfe9c96 SIZE (rust/crates/temp-dir-0.1.16.crate) = 6127 SHA256 (rust/crates/tempfile-3.22.0.crate) = 84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53 SIZE (rust/crates/tempfile-3.22.0.crate) = 43044 -SHA256 (rust/crates/tera-1.20.0.crate) = ab9d851b45e865f178319da0abdbfe6acbc4328759ff18dafc3a41c16b4cd2ee -SIZE (rust/crates/tera-1.20.0.crate) = 104452 +SHA256 (rust/crates/tera-1.20.1.crate) = e8004bca281f2d32df3bacd59bc67b312cb4c70cea46cbd79dbe8ac5ed206722 +SIZE (rust/crates/tera-1.20.1.crate) = 104815 SHA256 (rust/crates/termcolor-1.4.1.crate) = 06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755 SIZE (rust/crates/termcolor-1.4.1.crate) = 18773 SHA256 (rust/crates/terminal_size-0.4.3.crate) = 60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0 SIZE (rust/crates/terminal_size-0.4.3.crate) = 10686 SHA256 (rust/crates/thiserror-1.0.69.crate) = b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52 SIZE (rust/crates/thiserror-1.0.69.crate) = 22198 -SHA256 (rust/crates/thiserror-2.0.16.crate) = 3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0 -SIZE (rust/crates/thiserror-2.0.16.crate) = 29095 +SHA256 (rust/crates/thiserror-2.0.17.crate) = f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8 +SIZE (rust/crates/thiserror-2.0.17.crate) = 28857 SHA256 (rust/crates/thiserror-impl-1.0.69.crate) = 4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1 SIZE (rust/crates/thiserror-impl-1.0.69.crate) = 18365 -SHA256 (rust/crates/thiserror-impl-2.0.16.crate) = 6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960 -SIZE (rust/crates/thiserror-impl-2.0.16.crate) = 21214 -SHA256 (rust/crates/time-0.3.43.crate) = 83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031 -SIZE (rust/crates/time-0.3.43.crate) = 142912 +SHA256 (rust/crates/thiserror-impl-2.0.17.crate) = 3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913 +SIZE (rust/crates/thiserror-impl-2.0.17.crate) = 21344 +SHA256 (rust/crates/time-0.3.44.crate) = 91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d +SIZE (rust/crates/time-0.3.44.crate) = 143200 SHA256 (rust/crates/time-core-0.1.6.crate) = 40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b SIZE (rust/crates/time-core-0.1.6.crate) = 9105 SHA256 (rust/crates/time-macros-0.2.24.crate) = 30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3 SIZE (rust/crates/time-macros-0.2.24.crate) = 24715 -SHA256 (rust/crates/tinystr-0.8.1.crate) = 5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b -SIZE (rust/crates/tinystr-0.8.1.crate) = 23333 +SHA256 (rust/crates/tinystr-0.8.2.crate) = 42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869 +SIZE (rust/crates/tinystr-0.8.2.crate) = 23942 SHA256 (rust/crates/tinyvec-1.10.0.crate) = bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa SIZE (rust/crates/tinyvec-1.10.0.crate) = 51996 SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20 SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865 -SHA256 (rust/crates/tokio-1.47.1.crate) = 89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038 -SIZE (rust/crates/tokio-1.47.1.crate) = 829790 -SHA256 (rust/crates/tokio-macros-2.5.0.crate) = 6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8 -SIZE (rust/crates/tokio-macros-2.5.0.crate) = 12617 +SHA256 (rust/crates/tokio-1.48.0.crate) = ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408 +SIZE (rust/crates/tokio-1.48.0.crate) = 843434 +SHA256 (rust/crates/tokio-macros-2.6.0.crate) = af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5 +SIZE (rust/crates/tokio-macros-2.6.0.crate) = 16505 SHA256 (rust/crates/tokio-rustls-0.26.2.crate) = 8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b SIZE (rust/crates/tokio-rustls-0.26.2.crate) = 31655 SHA256 (rust/crates/tokio-stream-0.1.17.crate) = eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047 SIZE (rust/crates/tokio-stream-0.1.17.crate) = 38477 SHA256 (rust/crates/tokio-util-0.7.16.crate) = 14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5 SIZE (rust/crates/tokio-util-0.7.16.crate) = 127775 -SHA256 (rust/crates/toml-0.9.5.crate) = 75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8 -SIZE (rust/crates/toml-0.9.5.crate) = 56833 -SHA256 (rust/crates/toml_datetime-0.7.0.crate) = bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3 -SIZE (rust/crates/toml_datetime-0.7.0.crate) = 18108 -SHA256 (rust/crates/toml_parser-1.0.2.crate) = b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10 -SIZE (rust/crates/toml_parser-1.0.2.crate) = 35241 -SHA256 (rust/crates/toml_writer-1.0.2.crate) = fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64 -SIZE (rust/crates/toml_writer-1.0.2.crate) = 16988 +SHA256 (rust/crates/toml-0.9.8.crate) = f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8 +SIZE (rust/crates/toml-0.9.8.crate) = 56104 +SHA256 (rust/crates/toml_datetime-0.7.3.crate) = f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533 +SIZE (rust/crates/toml_datetime-0.7.3.crate) = 17827 +SHA256 (rust/crates/toml_parser-1.0.4.crate) = c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e +SIZE (rust/crates/toml_parser-1.0.4.crate) = 34978 +SHA256 (rust/crates/toml_writer-1.0.4.crate) = df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2 +SIZE (rust/crates/toml_writer-1.0.4.crate) = 17146 SHA256 (rust/crates/tower-0.5.2.crate) = d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9 SIZE (rust/crates/tower-0.5.2.crate) = 109417 -SHA256 (rust/crates/tower-http-0.6.6.crate) = adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2 -SIZE (rust/crates/tower-http-0.6.6.crate) = 133515 +SHA256 (rust/crates/tower-http-0.6.8.crate) = d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8 +SIZE (rust/crates/tower-http-0.6.8.crate) = 135827 SHA256 (rust/crates/tower-layer-0.3.3.crate) = 121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e SIZE (rust/crates/tower-layer-0.3.3.crate) = 6180 SHA256 (rust/crates/tower-service-0.3.3.crate) = 8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3 @@ -631,32 +635,22 @@ SHA256 (rust/crates/tracing-core-0.1.34.crate) = b9d12581f227e93f094d3af2ae690a5 SIZE (rust/crates/tracing-core-0.1.34.crate) = 63760 SHA256 (rust/crates/try-lock-0.2.5.crate) = e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b SIZE (rust/crates/try-lock-0.2.5.crate) = 4314 -SHA256 (rust/crates/typenum-1.18.0.crate) = 1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f -SIZE (rust/crates/typenum-1.18.0.crate) = 74871 +SHA256 (rust/crates/typenum-1.19.0.crate) = 562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb +SIZE (rust/crates/typenum-1.19.0.crate) = 76414 SHA256 (rust/crates/ucd-trie-0.1.7.crate) = 2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971 SIZE (rust/crates/ucd-trie-0.1.7.crate) = 46795 -SHA256 (rust/crates/unic-char-property-0.9.0.crate) = a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221 -SIZE (rust/crates/unic-char-property-0.9.0.crate) = 6809 -SHA256 (rust/crates/unic-char-range-0.9.0.crate) = 0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc -SIZE (rust/crates/unic-char-range-0.9.0.crate) = 7020 -SHA256 (rust/crates/unic-common-0.9.0.crate) = 80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc -SIZE (rust/crates/unic-common-0.9.0.crate) = 2558 -SHA256 (rust/crates/unic-segment-0.9.0.crate) = e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23 -SIZE (rust/crates/unic-segment-0.9.0.crate) = 34848 -SHA256 (rust/crates/unic-ucd-segment-0.9.0.crate) = 2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700 -SIZE (rust/crates/unic-ucd-segment-0.9.0.crate) = 39262 -SHA256 (rust/crates/unic-ucd-version-0.9.0.crate) = 96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4 -SIZE (rust/crates/unic-ucd-version-0.9.0.crate) = 2246 SHA256 (rust/crates/unicase-2.8.1.crate) = 75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539 SIZE (rust/crates/unicase-2.8.1.crate) = 24088 -SHA256 (rust/crates/unicode-ident-1.0.19.crate) = f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d -SIZE (rust/crates/unicode-ident-1.0.19.crate) = 47480 +SHA256 (rust/crates/unicode-ident-1.0.22.crate) = 9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5 +SIZE (rust/crates/unicode-ident-1.0.22.crate) = 47919 +SHA256 (rust/crates/unicode-segmentation-1.12.0.crate) = f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493 +SIZE (rust/crates/unicode-segmentation-1.12.0.crate) = 106323 SHA256 (rust/crates/unicode-width-0.1.14.crate) = 7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af SIZE (rust/crates/unicode-width-0.1.14.crate) = 271615 -SHA256 (rust/crates/unicode-width-0.2.1.crate) = 4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c -SIZE (rust/crates/unicode-width-0.2.1.crate) = 279344 -SHA256 (rust/crates/unit-prefix-0.5.1.crate) = 323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817 -SIZE (rust/crates/unit-prefix-0.5.1.crate) = 7627 +SHA256 (rust/crates/unicode-width-0.2.2.crate) = b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254 +SIZE (rust/crates/unicode-width-0.2.2.crate) = 282768 +SHA256 (rust/crates/unit-prefix-0.5.2.crate) = 81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3 +SIZE (rust/crates/unit-prefix-0.5.2.crate) = 8041 SHA256 (rust/crates/untrusted-0.9.0.crate) = 8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1 SIZE (rust/crates/untrusted-0.9.0.crate) = 14447 SHA256 (rust/crates/unty-0.0.4.crate) = 6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae @@ -691,10 +685,8 @@ SHA256 (rust/crates/want-0.3.1.crate) = bfa7760aed19e106de2c7c0b581b509f2f25d3da SIZE (rust/crates/want-0.3.1.crate) = 6398 SHA256 (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b SIZE (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = 28477 -SHA256 (rust/crates/wasi-0.14.5+wasi-0.2.4.crate) = a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4 -SIZE (rust/crates/wasi-0.14.5+wasi-0.2.4.crate) = 18092 -SHA256 (rust/crates/wasip2-1.0.0+wasi-0.2.4.crate) = 03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24 -SIZE (rust/crates/wasip2-1.0.0+wasi-0.2.4.crate) = 132019 +SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 +SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 SHA256 (rust/crates/wasm-bindgen-0.2.101.crate) = 7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b SIZE (rust/crates/wasm-bindgen-0.2.101.crate) = 47841 SHA256 (rust/crates/wasm-bindgen-backend-0.2.101.crate) = e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb @@ -725,107 +717,105 @@ SHA256 (rust/crates/windows-0.62.0.crate) = 9579d0e6970fd5250aa29aba5994052385ff SIZE (rust/crates/windows-0.62.0.crate) = 9361442 SHA256 (rust/crates/windows-collections-0.3.0.crate) = a90dd7a7b86859ec4cdf864658b311545ef19dbcf17a672b52ab7cefe80c336f SIZE (rust/crates/windows-collections-0.3.0.crate) = 13558 -SHA256 (rust/crates/windows-core-0.62.0.crate) = 57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c -SIZE (rust/crates/windows-core-0.62.0.crate) = 36955 +SHA256 (rust/crates/windows-core-0.62.2.crate) = b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb +SIZE (rust/crates/windows-core-0.62.2.crate) = 36932 SHA256 (rust/crates/windows-future-0.3.0.crate) = b2194dee901458cb79e1148a4e9aac2b164cc95fa431891e7b296ff0b2f1d8a6 SIZE (rust/crates/windows-future-0.3.0.crate) = 17988 -SHA256 (rust/crates/windows-implement-0.60.0.crate) = a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836 -SIZE (rust/crates/windows-implement-0.60.0.crate) = 15073 -SHA256 (rust/crates/windows-interface-0.59.1.crate) = bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8 -SIZE (rust/crates/windows-interface-0.59.1.crate) = 11735 -SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a -SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 -SHA256 (rust/crates/windows-link-0.2.0.crate) = 45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65 -SIZE (rust/crates/windows-link-0.2.0.crate) = 6170 +SHA256 (rust/crates/windows-implement-0.60.2.crate) = 053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf +SIZE (rust/crates/windows-implement-0.60.2.crate) = 15325 +SHA256 (rust/crates/windows-interface-0.59.3.crate) = 3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358 +SIZE (rust/crates/windows-interface-0.59.3.crate) = 11809 +SHA256 (rust/crates/windows-link-0.2.1.crate) = f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 +SIZE (rust/crates/windows-link-0.2.1.crate) = 6133 SHA256 (rust/crates/windows-numerics-0.3.0.crate) = 2ce3498fe0aba81e62e477408383196b4b0363db5e0c27646f932676283b43d8 SIZE (rust/crates/windows-numerics-0.3.0.crate) = 9786 -SHA256 (rust/crates/windows-result-0.4.0.crate) = 7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f -SIZE (rust/crates/windows-result-0.4.0.crate) = 13420 -SHA256 (rust/crates/windows-strings-0.5.0.crate) = 7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda -SIZE (rust/crates/windows-strings-0.5.0.crate) = 13992 +SHA256 (rust/crates/windows-result-0.4.1.crate) = 7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5 +SIZE (rust/crates/windows-result-0.4.1.crate) = 13381 +SHA256 (rust/crates/windows-strings-0.5.1.crate) = 7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091 +SIZE (rust/crates/windows-strings-0.5.1.crate) = 13966 SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 -SHA256 (rust/crates/windows-sys-0.61.0.crate) = e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa -SIZE (rust/crates/windows-sys-0.61.0.crate) = 2517134 +SHA256 (rust/crates/windows-sys-0.61.2.crate) = ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc +SIZE (rust/crates/windows-sys-0.61.2.crate) = 2517186 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 -SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 -SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 +SHA256 (rust/crates/windows-targets-0.53.5.crate) = 4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3 +SIZE (rust/crates/windows-targets-0.53.5.crate) = 7126 SHA256 (rust/crates/windows-threading-0.2.0.crate) = ab47f085ad6932defa48855254c758cdd0e2f2d48e62a34118a268d8f345e118 SIZE (rust/crates/windows-threading-0.2.0.crate) = 9777 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 -SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 -SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = 787748 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 -SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c -SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.1.crate) = b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006 +SIZE (rust/crates/windows_aarch64_msvc-0.53.1.crate) = 838009 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 -SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 -SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 +SHA256 (rust/crates/windows_i686_gnu-0.53.1.crate) = 960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3 +SIZE (rust/crates/windows_i686_gnu-0.53.1.crate) = 939775 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 -SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 -SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.1.crate) = fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c +SIZE (rust/crates/windows_i686_gnullvm-0.53.1.crate) = 857396 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 -SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d -SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 +SHA256 (rust/crates/windows_i686_msvc-0.53.1.crate) = 1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2 +SIZE (rust/crates/windows_i686_msvc-0.53.1.crate) = 907688 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 -SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba -SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499 +SIZE (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 903712 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 -SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 -SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 787739 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 -SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 -SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 -SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf -SIZE (rust/crates/winnow-0.7.13.crate) = 174454 -SHA256 (rust/crates/wit-bindgen-0.45.1.crate) = 5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36 -SIZE (rust/crates/wit-bindgen-0.45.1.crate) = 60395 -SHA256 (rust/crates/writeable-0.6.1.crate) = ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb -SIZE (rust/crates/writeable-0.6.1.crate) = 24068 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.1.crate) = d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650 +SIZE (rust/crates/windows_x86_64_msvc-0.53.1.crate) = 837950 +SHA256 (rust/crates/winnow-0.7.14.crate) = 5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829 +SIZE (rust/crates/winnow-0.7.14.crate) = 184718 +SHA256 (rust/crates/wit-bindgen-0.46.0.crate) = f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59 +SIZE (rust/crates/wit-bindgen-0.46.0.crate) = 60508 +SHA256 (rust/crates/writeable-0.6.2.crate) = 9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9 +SIZE (rust/crates/writeable-0.6.2.crate) = 25181 SHA256 (rust/crates/xxhash-rust-0.8.15.crate) = fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3 SIZE (rust/crates/xxhash-rust-0.8.15.crate) = 21515 -SHA256 (rust/crates/yaml-rust2-0.10.3.crate) = 4ce2a4ff45552406d02501cea6c18d8a7e50228e7736a872951fe2fe75c91be7 -SIZE (rust/crates/yaml-rust2-0.10.3.crate) = 76325 +SHA256 (rust/crates/yaml-rust2-0.10.4.crate) = 2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9 +SIZE (rust/crates/yaml-rust2-0.10.4.crate) = 76453 SHA256 (rust/crates/yansi-1.0.1.crate) = cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049 SIZE (rust/crates/yansi-1.0.1.crate) = 75497 -SHA256 (rust/crates/yoke-0.8.0.crate) = 5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc -SIZE (rust/crates/yoke-0.8.0.crate) = 28726 -SHA256 (rust/crates/yoke-derive-0.8.0.crate) = 38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6 -SIZE (rust/crates/yoke-derive-0.8.0.crate) = 7521 -SHA256 (rust/crates/zerocopy-0.8.27.crate) = 0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c -SIZE (rust/crates/zerocopy-0.8.27.crate) = 252663 -SHA256 (rust/crates/zerocopy-derive-0.8.27.crate) = 88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831 -SIZE (rust/crates/zerocopy-derive-0.8.27.crate) = 89827 +SHA256 (rust/crates/yoke-0.8.1.crate) = 72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954 +SIZE (rust/crates/yoke-0.8.1.crate) = 32016 +SHA256 (rust/crates/yoke-derive-0.8.1.crate) = b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d +SIZE (rust/crates/yoke-derive-0.8.1.crate) = 7593 +SHA256 (rust/crates/zerocopy-0.8.31.crate) = fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3 +SIZE (rust/crates/zerocopy-0.8.31.crate) = 257633 +SHA256 (rust/crates/zerocopy-derive-0.8.31.crate) = d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a +SIZE (rust/crates/zerocopy-derive-0.8.31.crate) = 90835 SHA256 (rust/crates/zerofrom-0.1.6.crate) = 50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5 SIZE (rust/crates/zerofrom-0.1.6.crate) = 5669 SHA256 (rust/crates/zerofrom-derive-0.1.6.crate) = d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502 SIZE (rust/crates/zerofrom-derive-0.1.6.crate) = 8305 SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 -SHA256 (rust/crates/zerotrie-0.2.2.crate) = 36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595 -SIZE (rust/crates/zerotrie-0.2.2.crate) = 74423 -SHA256 (rust/crates/zerovec-0.11.4.crate) = e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b -SIZE (rust/crates/zerovec-0.11.4.crate) = 125080 -SHA256 (rust/crates/zerovec-derive-0.11.1.crate) = 5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f -SIZE (rust/crates/zerovec-derive-0.11.1.crate) = 21294 +SHA256 (rust/crates/zerotrie-0.2.3.crate) = 2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851 +SIZE (rust/crates/zerotrie-0.2.3.crate) = 69547 +SHA256 (rust/crates/zerovec-0.11.5.crate) = 6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002 +SIZE (rust/crates/zerovec-0.11.5.crate) = 119620 +SHA256 (rust/crates/zerovec-derive-0.11.2.crate) = eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3 +SIZE (rust/crates/zerovec-derive-0.11.2.crate) = 21421 SHA256 (rust/crates/zstd-0.13.3.crate) = e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a SIZE (rust/crates/zstd-0.13.3.crate) = 30514 SHA256 (rust/crates/zstd-safe-7.2.4.crate) = 8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d SIZE (rust/crates/zstd-safe-7.2.4.crate) = 29350 SHA256 (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748 SIZE (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 775620 -SHA256 (orhun-git-cliff-v2.10.1_GH0.tar.gz) = 172888704ad429e238e61472e31704d4fdf5ff9c2c04479bb9452fb70d7a9278 -SIZE (orhun-git-cliff-v2.10.1_GH0.tar.gz) = 13072444 +SHA256 (orhun-git-cliff-v2.11.0_GH0.tar.gz) = e298a7ff6c12ee26c814a4aad4829dc4078f1b767710acf0158ab40b0d0e9fe9 +SIZE (orhun-git-cliff-v2.11.0_GH0.tar.gz) = 13084356 diff --git a/devel/git-delta/Makefile b/devel/git-delta/Makefile index d7f42c6f89c5..99403292590d 100644 --- a/devel/git-delta/Makefile +++ b/devel/git-delta/Makefile @@ -1,6 +1,6 @@ PORTNAME= delta DISTVERSION= 0.18.2 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= devel PKGNAMEPREFIX= git- diff --git a/devel/git-graph/Makefile b/devel/git-graph/Makefile index 13a952863f33..4754b6bd66c6 100644 --- a/devel/git-graph/Makefile +++ b/devel/git-graph/Makefile @@ -1,6 +1,7 @@ PORTNAME= git-graph DISTVERSIONPREFIX= v DISTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= rodrigo@FreeBSD.org diff --git a/devel/git-repo-manager/Makefile b/devel/git-repo-manager/Makefile index 035a43ed409d..ae2326d04302 100644 --- a/devel/git-repo-manager/Makefile +++ b/devel/git-repo-manager/Makefile @@ -1,7 +1,7 @@ PORTNAME= git-repo-manager DISTVERSIONPREFIX= v DISTVERSION= 0.8.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/git-town/Makefile b/devel/git-town/Makefile index b73980a9f08c..e2afd52f6fcf 100644 --- a/devel/git-town/Makefile +++ b/devel/git-town/Makefile @@ -13,13 +13,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= git:devel/git -USES= go:1.21,modules +USES= go:modules USE_GITHUB= nodefault GH_TUPLE= golang:sys:v0.6.0:sys -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 - GO_MODULE= github.com/git-town/git-town/v10 PLIST_FILES= bin/${PORTNAME} diff --git a/devel/git-workspace/Makefile b/devel/git-workspace/Makefile index 9d6c06cf783e..ca6304e5d8f2 100644 --- a/devel/git-workspace/Makefile +++ b/devel/git-workspace/Makefile @@ -1,7 +1,7 @@ PORTNAME= git-workspace DISTVERSIONPREFIX= v DISTVERSION= 1.9.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/gitleaks/Makefile b/devel/gitleaks/Makefile index 9333ef3ba29c..733c0554b029 100644 --- a/devel/gitleaks/Makefile +++ b/devel/gitleaks/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/gitleaks/gitleaks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.25,modules +USES= go:1.25+,modules USE_GITHUB= nodefault GH_TUPLE= golang:sys:v0.6.0:sys diff --git a/devel/gitoxide/Makefile b/devel/gitoxide/Makefile index 948d309d9555..14e1b9ac68e3 100644 --- a/devel/gitoxide/Makefile +++ b/devel/gitoxide/Makefile @@ -1,6 +1,7 @@ PORTNAME= gitoxide DISTVERSIONPREFIX= v DISTVERSION= 0.47.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/gitu/Makefile b/devel/gitu/Makefile index 9d46c02f452d..e46341016866 100644 --- a/devel/gitu/Makefile +++ b/devel/gitu/Makefile @@ -1,6 +1,7 @@ PORTNAME= gitu DISTVERSIONPREFIX= v DISTVERSION= 0.39.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/gitui/Makefile b/devel/gitui/Makefile index 3d3cfc2b2c44..b74d5ee5588e 100644 --- a/devel/gitui/Makefile +++ b/devel/gitui/Makefile @@ -1,7 +1,7 @@ PORTNAME= gitui DISTVERSIONPREFIX= v -DISTVERSION= 0.27.0 # After update, `make patch` and `make cargo-crates > Makefile.crates` to avoid fetching vendored openssl-src -PORTREVISION= 9 +DISTVERSION= 0.28.0 # After update, `make patch` and `make cargo-crates > Makefile.crates` to avoid fetching vendored openssl-src +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/gitui/Makefile.crates b/devel/gitui/Makefile.crates index 02783200620d..736451ebb6e9 100644 --- a/devel/gitui/Makefile.crates +++ b/devel/gitui/Makefile.crates @@ -1,61 +1,58 @@ -CARGO_CRATES= addr2line-0.24.2 \ +CARGO_CRATES= addr2line-0.25.1 \ adler2-2.0.0 \ aead-0.5.2 \ aes-0.8.4 \ aes-gcm-0.10.3 \ - ahash-0.8.11 \ aho-corasick-1.1.3 \ allocator-api2-0.2.21 \ - android-tzdata-0.1.1 \ android_system_properties-0.1.5 \ anstream-0.6.18 \ anstyle-1.0.10 \ anstyle-parse-0.2.6 \ anstyle-query-1.1.2 \ anstyle-wincon-3.0.6 \ - anyhow-1.0.95 \ + anyhow-1.0.100 \ arc-swap-1.7.1 \ arrayvec-0.7.6 \ autocfg-1.4.0 \ - backtrace-0.3.74 \ + backtrace-0.3.76 \ base16ct-0.2.0 \ - base64-0.21.7 \ + base64-0.22.1 \ base64ct-1.6.0 \ bcrypt-pbkdf-0.10.0 \ bincode-1.3.3 \ - bit-set-0.5.3 \ - bit-vec-0.6.3 \ + bit-set-0.8.0 \ + bit-vec-0.8.0 \ bitflags-1.3.2 \ - bitflags-2.7.0 \ + bitflags-2.10.0 \ block-buffer-0.10.4 \ block-padding-0.3.3 \ blowfish-0.9.1 \ - bstr-1.11.3 \ + bstr-1.12.0 \ bugreport-0.5.1 \ bumpalo-3.16.0 \ bwrap-1.3.0 \ byteorder-1.5.0 \ - bytesize-1.3.0 \ + bytesize-2.3.1 \ cassowary-0.3.0 \ castaway-0.2.3 \ cbc-0.1.2 \ cc-1.2.7 \ cfg-if-1.0.0 \ chacha20-0.9.1 \ - chrono-0.4.39 \ + chrono-0.4.42 \ cipher-0.4.4 \ - clap-4.5.26 \ - clap_builder-4.5.26 \ + clap-4.5.53 \ + clap_builder-4.5.53 \ clap_lex-0.7.4 \ clru-0.6.2 \ - cmake-0.1.52 \ colorchoice-1.0.3 \ compact_str-0.8.1 \ const-oid-0.9.6 \ core-foundation-sys-0.8.7 \ cpufeatures-0.2.16 \ - crc32fast-1.4.2 \ - crossbeam-channel-0.5.14 \ + crc32fast-1.5.0 \ + crossbeam-channel-0.5.15 \ crossbeam-deque-0.8.6 \ crossbeam-epoch-0.9.18 \ crossbeam-utils-0.8.21 \ @@ -69,34 +66,37 @@ CARGO_CRATES= addr2line-0.24.2 \ darling-0.20.10 \ darling_core-0.20.10 \ darling_macro-0.20.10 \ + dashmap-6.1.0 \ der-0.7.9 \ deranged-0.3.11 \ diff-0.1.13 \ digest-0.10.7 \ - dirs-5.0.1 \ - dirs-sys-0.4.1 \ + dirs-6.0.0 \ + dirs-sys-0.5.0 \ displaydoc-0.2.5 \ dunce-1.0.5 \ - easy-cast-0.5.3 \ + easy-cast-0.5.4 \ ecdsa-0.16.9 \ ed25519-2.2.3 \ ed25519-dalek-2.1.1 \ either-1.13.0 \ elliptic-curve-0.13.8 \ + encoding_rs-0.8.35 \ env_filter-0.1.3 \ env_home-0.1.0 \ - env_logger-0.11.6 \ + env_logger-0.11.8 \ equivalent-1.0.1 \ errno-0.3.10 \ - fancy-regex-0.11.0 \ - faster-hex-0.9.0 \ + fancy-regex-0.16.2 \ + faster-hex-0.10.0 \ fastrand-2.3.0 \ ff-0.13.0 \ fiat-crypto-0.2.9 \ filetime-0.2.25 \ - flate2-1.0.35 \ + flate2-1.1.1 \ fnv-1.0.7 \ foldhash-0.1.4 \ + foldhash-0.2.0 \ form_urlencoded-1.2.1 \ fsevent-sys-4.1.0 \ futures-0.3.31 \ @@ -110,57 +110,68 @@ CARGO_CRATES= addr2line-0.24.2 \ fuzzy-matcher-0.3.7 \ generic-array-0.14.7 \ getrandom-0.2.15 \ + getrandom-0.3.4 \ gh-emoji-1.0.8 \ ghash-0.5.1 \ - gimli-0.31.1 \ + gimli-0.32.3 \ git-version-0.3.9 \ git-version-macro-0.3.9 \ - git2-0.20.0 \ - gix-0.69.1 \ - gix-actor-0.33.1 \ - gix-bitmap-0.2.13 \ - gix-chunk-0.4.10 \ - gix-command-0.4.0 \ - gix-commitgraph-0.25.1 \ - gix-config-0.42.0 \ - gix-config-value-0.14.10 \ - gix-date-0.9.3 \ - gix-diff-0.49.0 \ - gix-discover-0.37.0 \ - gix-features-0.39.1 \ - gix-fs-0.12.1 \ - gix-glob-0.17.1 \ - gix-hash-0.15.1 \ - gix-hashtable-0.6.0 \ - gix-index-0.37.0 \ - gix-lock-15.0.1 \ - gix-object-0.46.1 \ - gix-odb-0.66.0 \ - gix-pack-0.56.0 \ - gix-packetline-0.18.2 \ - gix-path-0.10.13 \ - gix-protocol-0.47.0 \ - gix-quote-0.4.14 \ - gix-ref-0.49.1 \ - gix-refspec-0.27.0 \ - gix-revision-0.31.1 \ - gix-revwalk-0.17.0 \ - gix-sec-0.10.10 \ - gix-shallow-0.1.0 \ - gix-tempfile-15.0.0 \ - gix-trace-0.1.11 \ - gix-transport-0.44.0 \ - gix-traverse-0.43.1 \ - gix-url-0.28.2 \ - gix-utils-0.1.13 \ - gix-validate-0.9.2 \ + git2-0.20.3 \ + gix-0.75.0 \ + gix-actor-0.36.0 \ + gix-attributes-0.28.1 \ + gix-bitmap-0.2.15 \ + gix-chunk-0.4.12 \ + gix-command-0.6.3 \ + gix-commitgraph-0.30.1 \ + gix-config-0.48.0 \ + gix-config-value-0.15.3 \ + gix-date-0.11.0 \ + gix-diff-0.55.0 \ + gix-dir-0.17.0 \ + gix-discover-0.43.0 \ + gix-features-0.44.1 \ + gix-filter-0.22.0 \ + gix-fs-0.17.0 \ + gix-glob-0.22.1 \ + gix-hash-0.20.1 \ + gix-hashtable-0.10.0 \ + gix-ignore-0.17.1 \ + gix-index-0.43.0 \ + gix-lock-19.0.0 \ + gix-mailmap-0.28.0 \ + gix-object-0.52.0 \ + gix-odb-0.72.0 \ + gix-pack-0.62.0 \ + gix-packetline-0.20.0 \ + gix-path-0.10.22 \ + gix-pathspec-0.13.0 \ + gix-protocol-0.53.0 \ + gix-quote-0.6.1 \ + gix-ref-0.55.0 \ + gix-refspec-0.33.0 \ + gix-revision-0.37.0 \ + gix-revwalk-0.23.0 \ + gix-sec-0.12.2 \ + gix-shallow-0.6.0 \ + gix-status-0.22.0 \ + gix-submodule-0.22.0 \ + gix-tempfile-19.0.1 \ + gix-trace-0.1.15 \ + gix-transport-0.50.0 \ + gix-traverse-0.49.0 \ + gix-url-0.33.2 \ + gix-utils-0.3.1 \ + gix-validate-0.10.1 \ + gix-worktree-0.44.0 \ group-0.13.0 \ + hash32-0.3.1 \ hashbrown-0.14.5 \ hashbrown-0.15.2 \ + hashbrown-0.16.1 \ + heapless-0.8.0 \ heck-0.5.0 \ hmac-0.12.1 \ - home-0.5.11 \ - humantime-2.1.0 \ iana-time-zone-0.1.61 \ iana-time-zone-haiku-0.1.2 \ icu_collections-1.5.0 \ @@ -176,7 +187,8 @@ CARGO_CRATES= addr2line-0.24.2 \ ident_case-1.0.1 \ idna-1.0.3 \ idna_adapter-1.2.0 \ - indexmap-2.7.0 \ + imara-diff-0.1.8 \ + indexmap-2.12.1 \ indoc-2.0.5 \ inotify-0.11.0 \ inotify-sys-0.1.5 \ @@ -186,33 +198,36 @@ CARGO_CRATES= addr2line-0.24.2 \ itertools-0.13.0 \ itertools-0.14.0 \ itoa-1.0.14 \ - jiff-0.1.21 \ - jiff-tzdb-0.1.1 \ - jiff-tzdb-platform-0.1.1 \ + jiff-0.2.15 \ + jiff-static-0.2.15 \ + jiff-tzdb-0.1.4 \ + jiff-tzdb-platform-0.1.3 \ jobserver-0.1.32 \ js-sys-0.3.76 \ - kqueue-1.0.8 \ + kqueue-1.1.1 \ kqueue-sys-1.0.4 \ + kstring-2.0.2 \ lazy_static-1.5.0 \ - libc-0.2.169 \ - libgit2-sys-0.18.0+1.9.0 \ + libc-0.2.177 \ + libgit2-sys-0.18.3+1.9.2 \ libm-0.2.11 \ libredox-0.1.3 \ - libssh2-sys-0.3.0 \ - libz-ng-sys-1.1.21 \ + libssh2-sys-0.3.1 \ + libz-rs-sys-0.5.2 \ libz-sys-1.1.21 \ linux-raw-sys-0.4.15 \ + linux-raw-sys-0.11.0 \ litemap-0.7.4 \ - lock_api-0.4.12 \ - log-0.4.22 \ + lock_api-0.4.14 \ + log-0.4.29 \ lru-0.12.5 \ maybe-async-0.2.10 \ memchr-2.7.4 \ - memmap2-0.9.5 \ - miniz_oxide-0.8.2 \ + memmap2-0.9.9 \ + miniz_oxide-0.8.7 \ mio-1.0.3 \ - notify-8.0.0 \ - notify-debouncer-mini-0.6.0 \ + notify-8.2.0 \ + notify-debouncer-mini-0.7.0 \ notify-types-2.0.0 \ ntapi-0.4.1 \ num-bigint-dig-0.8.4 \ @@ -220,19 +235,20 @@ CARGO_CRATES= addr2line-0.24.2 \ num-integer-0.1.46 \ num-iter-0.1.45 \ num-traits-0.2.19 \ - object-0.36.7 \ - once_cell-1.20.2 \ - onig-6.4.0 \ - onig_sys-69.8.1 \ + object-0.37.3 \ + once_cell-1.21.3 \ + onig-6.5.1 \ + onig_sys-69.9.1 \ opaque-debug-0.3.1 \ openssl-probe-0.1.5 \ - openssl-sys-0.9.104 \ + openssl-src-300.4.1+3.4.0 \ + openssl-sys-0.9.111 \ option-ext-0.2.0 \ p256-0.13.2 \ p384-0.13.0 \ p521-0.13.3 \ - parking_lot-0.12.3 \ - parking_lot_core-0.9.10 \ + parking_lot-0.12.5 \ + parking_lot_core-0.9.12 \ paste-1.0.15 \ pbkdf2-0.12.2 \ pem-rfc7468-0.7.0 \ @@ -244,6 +260,7 @@ CARGO_CRATES= addr2line-0.24.2 \ pkcs1-0.7.5 \ pkcs8-0.10.2 \ pkg-config-0.3.31 \ + plist-1.7.0 \ poly1305-0.8.0 \ polyval-0.6.2 \ portable-atomic-1.10.0 \ @@ -252,46 +269,49 @@ CARGO_CRATES= addr2line-0.24.2 \ ppv-lite86-0.2.20 \ pretty_assertions-1.4.1 \ primeorder-0.13.6 \ - proc-macro2-1.0.92 \ - prodash-29.0.0 \ + proc-macro2-1.0.94 \ + prodash-30.0.1 \ + quick-xml-0.32.0 \ quote-1.0.38 \ + r-efi-5.3.0 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.4 \ ratatui-0.29.0 \ - rayon-1.10.0 \ - rayon-core-1.12.1 \ + rayon-1.11.0 \ + rayon-core-1.13.0 \ redox_syscall-0.5.8 \ - redox_users-0.4.6 \ + redox_users-0.5.0 \ regex-1.11.1 \ regex-automata-0.4.9 \ regex-syntax-0.8.5 \ rfc6979-0.4.0 \ - ron-0.8.1 \ + ron-0.12.0 \ rsa-0.9.7 \ rustc-demangle-0.1.24 \ rustc_version-0.4.1 \ rustix-0.38.43 \ + rustix-1.1.2 \ rustversion-1.0.19 \ ryu-1.0.18 \ same-file-1.0.6 \ - scc-2.3.0 \ + scc-2.3.4 \ scopeguard-1.2.0 \ - sdd-3.0.5 \ + sdd-3.0.8 \ sec1-0.7.3 \ semver-1.0.24 \ - serde-1.0.217 \ - serde_derive-1.0.217 \ + serde-1.0.228 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ serde_json-1.0.135 \ serial_test-3.2.0 \ serial_test_derive-3.2.0 \ sha1-0.10.6 \ - sha1-asm-0.5.3 \ - sha1_smol-1.0.1 \ + sha1-checked-0.10.0 \ sha2-0.10.8 \ shell-escape-0.1.5 \ shell-words-1.1.0 \ - shellexpand-3.1.0 \ + shellexpand-3.1.1 \ shlex-1.3.0 \ signal-hook-0.3.17 \ signal-hook-mio-0.2.4 \ @@ -300,7 +320,7 @@ CARGO_CRATES= addr2line-0.24.2 \ simplelog-0.12.2 \ siphasher-1.0.1 \ slab-0.4.9 \ - smallvec-1.13.2 \ + smallvec-1.15.1 \ spin-0.9.8 \ spki-0.7.3 \ ssh-cipher-0.2.0 \ @@ -309,20 +329,18 @@ CARGO_CRATES= addr2line-0.24.2 \ stable_deref_trait-1.2.0 \ static_assertions-1.1.0 \ strsim-0.11.1 \ - struct-patch-0.8.7 \ - struct-patch-derive-0.8.7 \ + struct-patch-0.10.4 \ + struct-patch-derive-0.10.4 \ strum-0.26.3 \ strum_macros-0.26.4 \ subtle-2.6.1 \ - syn-2.0.96 \ + syn-2.0.100 \ synstructure-0.13.1 \ - syntect-5.2.0 \ + syntect-5.3.0 \ sysinfo-0.33.1 \ - tempfile-3.15.0 \ - thiserror-1.0.69 \ - thiserror-2.0.11 \ - thiserror-impl-1.0.69 \ - thiserror-impl-2.0.11 \ + tempfile-3.23.0 \ + thiserror-2.0.17 \ + thiserror-impl-2.0.17 \ thread_local-1.1.8 \ time-0.3.37 \ time-core-0.1.2 \ @@ -331,7 +349,8 @@ CARGO_CRATES= addr2line-0.24.2 \ tinyvec-1.8.1 \ tinyvec_macros-0.1.1 \ tui-textarea-0.7.0 \ - two-face-0.4.0 \ + two-face-0.4.4 \ + typeid-1.0.3 \ typenum-1.17.0 \ uluru-3.1.0 \ unicode-bom-2.0.3 \ @@ -351,12 +370,13 @@ CARGO_CRATES= addr2line-0.24.2 \ version_check-0.9.5 \ walkdir-2.5.0 \ wasi-0.11.0+wasi-snapshot-preview1 \ + wasip2-1.0.1+wasi-0.2.4 \ wasm-bindgen-0.2.99 \ wasm-bindgen-backend-0.2.99 \ wasm-bindgen-macro-0.2.99 \ wasm-bindgen-macro-support-0.2.99 \ wasm-bindgen-shared-0.2.99 \ - which-7.0.1 \ + which-8.0.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.9 \ @@ -366,29 +386,33 @@ CARGO_CRATES= addr2line-0.24.2 \ windows-core-0.57.0 \ windows-implement-0.57.0 \ windows-interface-0.57.0 \ + windows-link-0.2.1 \ windows-result-0.1.2 \ - windows-sys-0.48.0 \ windows-sys-0.52.0 \ windows-sys-0.59.0 \ - windows-targets-0.48.5 \ + windows-sys-0.60.2 \ + windows-sys-0.61.2 \ windows-targets-0.52.6 \ - windows_aarch64_gnullvm-0.48.5 \ + windows-targets-0.53.5 \ windows_aarch64_gnullvm-0.52.6 \ - windows_aarch64_msvc-0.48.5 \ + windows_aarch64_gnullvm-0.53.1 \ windows_aarch64_msvc-0.52.6 \ - windows_i686_gnu-0.48.5 \ + windows_aarch64_msvc-0.53.1 \ windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.1 \ windows_i686_gnullvm-0.52.6 \ - windows_i686_msvc-0.48.5 \ + windows_i686_gnullvm-0.53.1 \ windows_i686_msvc-0.52.6 \ - windows_x86_64_gnu-0.48.5 \ + windows_i686_msvc-0.53.1 \ windows_x86_64_gnu-0.52.6 \ - windows_x86_64_gnullvm-0.48.5 \ + windows_x86_64_gnu-0.53.1 \ windows_x86_64_gnullvm-0.52.6 \ - windows_x86_64_msvc-0.48.5 \ + windows_x86_64_gnullvm-0.53.1 \ windows_x86_64_msvc-0.52.6 \ - winnow-0.6.22 \ + windows_x86_64_msvc-0.53.1 \ + winnow-0.7.13 \ winsafe-0.0.19 \ + wit-bindgen-0.46.0 \ write16-1.0.0 \ writeable-0.5.5 \ yansi-1.0.1 \ @@ -398,6 +422,7 @@ CARGO_CRATES= addr2line-0.24.2 \ zerocopy-derive-0.7.35 \ zerofrom-0.1.5 \ zerofrom-derive-0.1.5 \ - zeroize-1.8.1 \ + zeroize-1.8.2 \ zerovec-0.10.4 \ - zerovec-derive-0.10.3 + zerovec-derive-0.10.3 \ + zlib-rs-0.5.2 diff --git a/devel/gitui/distinfo b/devel/gitui/distinfo index 37654350c102..de8cbd4338b5 100644 --- a/devel/gitui/distinfo +++ b/devel/gitui/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1744906932 -SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 -SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 +TIMESTAMP = 1765784528 +SHA256 (rust/crates/addr2line-0.25.1.crate) = 1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b +SIZE (rust/crates/addr2line-0.25.1.crate) = 43134 SHA256 (rust/crates/adler2-2.0.0.crate) = 512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627 SIZE (rust/crates/adler2-2.0.0.crate) = 13529 SHA256 (rust/crates/aead-0.5.2.crate) = d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0 @@ -9,14 +9,10 @@ SHA256 (rust/crates/aes-0.8.4.crate) = b169f7a6d4742236a0a00c541b845991d0ac43e54 SIZE (rust/crates/aes-0.8.4.crate) = 124812 SHA256 (rust/crates/aes-gcm-0.10.3.crate) = 831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1 SIZE (rust/crates/aes-gcm-0.10.3.crate) = 148991 -SHA256 (rust/crates/ahash-0.8.11.crate) = e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011 -SIZE (rust/crates/ahash-0.8.11.crate) = 43607 SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 SHA256 (rust/crates/allocator-api2-0.2.21.crate) = 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 SIZE (rust/crates/allocator-api2-0.2.21.crate) = 63622 -SHA256 (rust/crates/android-tzdata-0.1.1.crate) = e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0 -SIZE (rust/crates/android-tzdata-0.1.1.crate) = 7674 SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311 SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 SHA256 (rust/crates/anstream-0.6.18.crate) = 8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b @@ -29,42 +25,42 @@ SHA256 (rust/crates/anstyle-query-1.1.2.crate) = 79947af37f4177cfead1110013d6789 SIZE (rust/crates/anstyle-query-1.1.2.crate) = 9969 SHA256 (rust/crates/anstyle-wincon-3.0.6.crate) = 2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125 SIZE (rust/crates/anstyle-wincon-3.0.6.crate) = 12271 -SHA256 (rust/crates/anyhow-1.0.95.crate) = 34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04 -SIZE (rust/crates/anyhow-1.0.95.crate) = 52155 +SHA256 (rust/crates/anyhow-1.0.100.crate) = a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61 +SIZE (rust/crates/anyhow-1.0.100.crate) = 54059 SHA256 (rust/crates/arc-swap-1.7.1.crate) = 69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457 SIZE (rust/crates/arc-swap-1.7.1.crate) = 68512 SHA256 (rust/crates/arrayvec-0.7.6.crate) = 7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50 SIZE (rust/crates/arrayvec-0.7.6.crate) = 31237 SHA256 (rust/crates/autocfg-1.4.0.crate) = ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26 SIZE (rust/crates/autocfg-1.4.0.crate) = 17712 -SHA256 (rust/crates/backtrace-0.3.74.crate) = 8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a -SIZE (rust/crates/backtrace-0.3.74.crate) = 88516 +SHA256 (rust/crates/backtrace-0.3.76.crate) = bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6 +SIZE (rust/crates/backtrace-0.3.76.crate) = 89458 SHA256 (rust/crates/base16ct-0.2.0.crate) = 4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf SIZE (rust/crates/base16ct-0.2.0.crate) = 10240 -SHA256 (rust/crates/base64-0.21.7.crate) = 9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567 -SIZE (rust/crates/base64-0.21.7.crate) = 82576 +SHA256 (rust/crates/base64-0.22.1.crate) = 72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6 +SIZE (rust/crates/base64-0.22.1.crate) = 81597 SHA256 (rust/crates/base64ct-1.6.0.crate) = 8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b SIZE (rust/crates/base64ct-1.6.0.crate) = 28870 SHA256 (rust/crates/bcrypt-pbkdf-0.10.0.crate) = 6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2 SIZE (rust/crates/bcrypt-pbkdf-0.10.0.crate) = 11032 SHA256 (rust/crates/bincode-1.3.3.crate) = b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad SIZE (rust/crates/bincode-1.3.3.crate) = 28958 -SHA256 (rust/crates/bit-set-0.5.3.crate) = 0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1 -SIZE (rust/crates/bit-set-0.5.3.crate) = 14470 -SHA256 (rust/crates/bit-vec-0.6.3.crate) = 349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb -SIZE (rust/crates/bit-vec-0.6.3.crate) = 19927 +SHA256 (rust/crates/bit-set-0.8.0.crate) = 08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3 +SIZE (rust/crates/bit-set-0.8.0.crate) = 16289 +SHA256 (rust/crates/bit-vec-0.8.0.crate) = 5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7 +SIZE (rust/crates/bit-vec-0.8.0.crate) = 24132 SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 -SHA256 (rust/crates/bitflags-2.7.0.crate) = 1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be -SIZE (rust/crates/bitflags-2.7.0.crate) = 45924 +SHA256 (rust/crates/bitflags-2.10.0.crate) = 812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3 +SIZE (rust/crates/bitflags-2.10.0.crate) = 48427 SHA256 (rust/crates/block-buffer-0.10.4.crate) = 3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71 SIZE (rust/crates/block-buffer-0.10.4.crate) = 10538 SHA256 (rust/crates/block-padding-0.3.3.crate) = a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93 SIZE (rust/crates/block-padding-0.3.3.crate) = 8504 SHA256 (rust/crates/blowfish-0.9.1.crate) = e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7 SIZE (rust/crates/blowfish-0.9.1.crate) = 16734 -SHA256 (rust/crates/bstr-1.11.3.crate) = 531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0 -SIZE (rust/crates/bstr-1.11.3.crate) = 351536 +SHA256 (rust/crates/bstr-1.12.0.crate) = 234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4 +SIZE (rust/crates/bstr-1.12.0.crate) = 351557 SHA256 (rust/crates/bugreport-0.5.1.crate) = f280f65ce85b880919349bbfcb204930291251eedcb2e5f84ce2f51df969c162 SIZE (rust/crates/bugreport-0.5.1.crate) = 17606 SHA256 (rust/crates/bumpalo-3.16.0.crate) = 79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c @@ -73,8 +69,8 @@ SHA256 (rust/crates/bwrap-1.3.0.crate) = d13da3319ae5c5771712fba7b79b028793149bc SIZE (rust/crates/bwrap-1.3.0.crate) = 112849 SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 -SHA256 (rust/crates/bytesize-1.3.0.crate) = a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc -SIZE (rust/crates/bytesize-1.3.0.crate) = 10164 +SHA256 (rust/crates/bytesize-2.3.1.crate) = 6bd91ee7b2422bcb158d90ef4d14f75ef67f340943fc4149891dcce8f8b972a3 +SIZE (rust/crates/bytesize-2.3.1.crate) = 22218 SHA256 (rust/crates/cassowary-0.3.0.crate) = df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53 SIZE (rust/crates/cassowary-0.3.0.crate) = 22876 SHA256 (rust/crates/castaway-0.2.3.crate) = 0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5 @@ -87,20 +83,18 @@ SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582eb SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 SHA256 (rust/crates/chacha20-0.9.1.crate) = c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818 SIZE (rust/crates/chacha20-0.9.1.crate) = 23424 -SHA256 (rust/crates/chrono-0.4.39.crate) = 7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825 -SIZE (rust/crates/chrono-0.4.39.crate) = 222248 +SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 +SIZE (rust/crates/chrono-0.4.42.crate) = 238174 SHA256 (rust/crates/cipher-0.4.4.crate) = 773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad SIZE (rust/crates/cipher-0.4.4.crate) = 19073 -SHA256 (rust/crates/clap-4.5.26.crate) = a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783 -SIZE (rust/crates/clap-4.5.26.crate) = 56474 -SHA256 (rust/crates/clap_builder-4.5.26.crate) = 96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121 -SIZE (rust/crates/clap_builder-4.5.26.crate) = 167961 +SHA256 (rust/crates/clap-4.5.53.crate) = c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8 +SIZE (rust/crates/clap-4.5.53.crate) = 62036 +SHA256 (rust/crates/clap_builder-4.5.53.crate) = d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00 +SIZE (rust/crates/clap_builder-4.5.53.crate) = 170811 SHA256 (rust/crates/clap_lex-0.7.4.crate) = f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6 SIZE (rust/crates/clap_lex-0.7.4.crate) = 12858 SHA256 (rust/crates/clru-0.6.2.crate) = cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59 SIZE (rust/crates/clru-0.6.2.crate) = 16497 -SHA256 (rust/crates/cmake-0.1.52.crate) = c682c223677e0e5b6b7f63a64b9351844c3f1b1678a68b7ee617e30fb082620e -SIZE (rust/crates/cmake-0.1.52.crate) = 18119 SHA256 (rust/crates/colorchoice-1.0.3.crate) = 5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990 SIZE (rust/crates/colorchoice-1.0.3.crate) = 7923 SHA256 (rust/crates/compact_str-0.8.1.crate) = 3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32 @@ -111,10 +105,10 @@ SHA256 (rust/crates/core-foundation-sys-0.8.7.crate) = 773648b94d0e5d620f64f2807 SIZE (rust/crates/core-foundation-sys-0.8.7.crate) = 37712 SHA256 (rust/crates/cpufeatures-0.2.16.crate) = 16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3 SIZE (rust/crates/cpufeatures-0.2.16.crate) = 13405 -SHA256 (rust/crates/crc32fast-1.4.2.crate) = a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3 -SIZE (rust/crates/crc32fast-1.4.2.crate) = 38491 -SHA256 (rust/crates/crossbeam-channel-0.5.14.crate) = 06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471 -SIZE (rust/crates/crossbeam-channel-0.5.14.crate) = 92728 +SHA256 (rust/crates/crc32fast-1.5.0.crate) = 9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511 +SIZE (rust/crates/crc32fast-1.5.0.crate) = 40723 +SHA256 (rust/crates/crossbeam-channel-0.5.15.crate) = 82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2 +SIZE (rust/crates/crossbeam-channel-0.5.15.crate) = 92716 SHA256 (rust/crates/crossbeam-deque-0.8.6.crate) = 9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51 SIZE (rust/crates/crossbeam-deque-0.8.6.crate) = 22471 SHA256 (rust/crates/crossbeam-epoch-0.9.18.crate) = 5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e @@ -141,6 +135,8 @@ SHA256 (rust/crates/darling_core-0.20.10.crate) = 95133861a8032aaea082871032f581 SIZE (rust/crates/darling_core-0.20.10.crate) = 65015 SHA256 (rust/crates/darling_macro-0.20.10.crate) = d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806 SIZE (rust/crates/darling_macro-0.20.10.crate) = 1874 +SHA256 (rust/crates/dashmap-6.1.0.crate) = 5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf +SIZE (rust/crates/dashmap-6.1.0.crate) = 24828 SHA256 (rust/crates/der-0.7.9.crate) = f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0 SIZE (rust/crates/der-0.7.9.crate) = 85173 SHA256 (rust/crates/deranged-0.3.11.crate) = b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4 @@ -149,16 +145,16 @@ SHA256 (rust/crates/diff-0.1.13.crate) = 56254986775e3233ffa9c4d7d3faaf6d36a2c09 SIZE (rust/crates/diff-0.1.13.crate) = 46216 SHA256 (rust/crates/digest-0.10.7.crate) = 9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292 SIZE (rust/crates/digest-0.10.7.crate) = 19557 -SHA256 (rust/crates/dirs-5.0.1.crate) = 44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225 -SIZE (rust/crates/dirs-5.0.1.crate) = 12255 -SHA256 (rust/crates/dirs-sys-0.4.1.crate) = 520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c -SIZE (rust/crates/dirs-sys-0.4.1.crate) = 10719 +SHA256 (rust/crates/dirs-6.0.0.crate) = c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e +SIZE (rust/crates/dirs-6.0.0.crate) = 14190 +SHA256 (rust/crates/dirs-sys-0.5.0.crate) = e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab +SIZE (rust/crates/dirs-sys-0.5.0.crate) = 10157 SHA256 (rust/crates/displaydoc-0.2.5.crate) = 97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0 SIZE (rust/crates/displaydoc-0.2.5.crate) = 24219 SHA256 (rust/crates/dunce-1.0.5.crate) = 92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813 SIZE (rust/crates/dunce-1.0.5.crate) = 8244 -SHA256 (rust/crates/easy-cast-0.5.3.crate) = 72852736692ec862655eca398c9bb1b476161b563c9f80f45f4808b9629750d6 -SIZE (rust/crates/easy-cast-0.5.3.crate) = 16738 +SHA256 (rust/crates/easy-cast-0.5.4.crate) = 23f40539c229fc2e4674bdecdf24bfcc2cb83631ca911c78a035fa9f2381c32b +SIZE (rust/crates/easy-cast-0.5.4.crate) = 18284 SHA256 (rust/crates/ecdsa-0.16.9.crate) = ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca SIZE (rust/crates/ecdsa-0.16.9.crate) = 31406 SHA256 (rust/crates/ed25519-2.2.3.crate) = 115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53 @@ -169,20 +165,22 @@ SHA256 (rust/crates/either-1.13.0.crate) = 60b1af1c220855b6ceac025d3f6ecdd2b7c48 SIZE (rust/crates/either-1.13.0.crate) = 19169 SHA256 (rust/crates/elliptic-curve-0.13.8.crate) = b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47 SIZE (rust/crates/elliptic-curve-0.13.8.crate) = 63198 +SHA256 (rust/crates/encoding_rs-0.8.35.crate) = 75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3 +SIZE (rust/crates/encoding_rs-0.8.35.crate) = 1381050 SHA256 (rust/crates/env_filter-0.1.3.crate) = 186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0 SIZE (rust/crates/env_filter-0.1.3.crate) = 15191 SHA256 (rust/crates/env_home-0.1.0.crate) = c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe SIZE (rust/crates/env_home-0.1.0.crate) = 9006 -SHA256 (rust/crates/env_logger-0.11.6.crate) = dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0 -SIZE (rust/crates/env_logger-0.11.6.crate) = 31105 +SHA256 (rust/crates/env_logger-0.11.8.crate) = 13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f +SIZE (rust/crates/env_logger-0.11.8.crate) = 32538 SHA256 (rust/crates/equivalent-1.0.1.crate) = 5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5 SIZE (rust/crates/equivalent-1.0.1.crate) = 6615 SHA256 (rust/crates/errno-0.3.10.crate) = 33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d SIZE (rust/crates/errno-0.3.10.crate) = 11824 -SHA256 (rust/crates/fancy-regex-0.11.0.crate) = b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2 -SIZE (rust/crates/fancy-regex-0.11.0.crate) = 82918 -SHA256 (rust/crates/faster-hex-0.9.0.crate) = a2a2b11eda1d40935b26cf18f6833c526845ae8c41e58d09af6adeb6f0269183 -SIZE (rust/crates/faster-hex-0.9.0.crate) = 13053 +SHA256 (rust/crates/fancy-regex-0.16.2.crate) = 998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f +SIZE (rust/crates/fancy-regex-0.16.2.crate) = 100662 +SHA256 (rust/crates/faster-hex-0.10.0.crate) = 7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73 +SIZE (rust/crates/faster-hex-0.10.0.crate) = 13419 SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 SHA256 (rust/crates/ff-0.13.0.crate) = ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449 @@ -191,12 +189,14 @@ SHA256 (rust/crates/fiat-crypto-0.2.9.crate) = 28dea519a9695b9977216879a3ebfddf9 SIZE (rust/crates/fiat-crypto-0.2.9.crate) = 495390 SHA256 (rust/crates/filetime-0.2.25.crate) = 35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586 SIZE (rust/crates/filetime-0.2.25.crate) = 14940 -SHA256 (rust/crates/flate2-1.0.35.crate) = c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c -SIZE (rust/crates/flate2-1.0.35.crate) = 109188 +SHA256 (rust/crates/flate2-1.1.1.crate) = 7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece +SIZE (rust/crates/flate2-1.1.1.crate) = 77224 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 SHA256 (rust/crates/foldhash-0.1.4.crate) = a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f SIZE (rust/crates/foldhash-0.1.4.crate) = 13764 +SHA256 (rust/crates/foldhash-0.2.0.crate) = 77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb +SIZE (rust/crates/foldhash-0.2.0.crate) = 23329 SHA256 (rust/crates/form_urlencoded-1.2.1.crate) = e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456 SIZE (rust/crates/form_urlencoded-1.2.1.crate) = 8969 SHA256 (rust/crates/fsevent-sys-4.1.0.crate) = 76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2 @@ -223,108 +223,130 @@ SHA256 (rust/crates/generic-array-0.14.7.crate) = 85649ca51fd72272d7821adaf274ad SIZE (rust/crates/generic-array-0.14.7.crate) = 15950 SHA256 (rust/crates/getrandom-0.2.15.crate) = c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7 SIZE (rust/crates/getrandom-0.2.15.crate) = 37163 +SHA256 (rust/crates/getrandom-0.3.4.crate) = 899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd +SIZE (rust/crates/getrandom-0.3.4.crate) = 50932 SHA256 (rust/crates/gh-emoji-1.0.8.crate) = eb8adf61df288369c9d1c6bb142f61db30c18619a71f64915d64e916f23c8c37 SIZE (rust/crates/gh-emoji-1.0.8.crate) = 22354 SHA256 (rust/crates/ghash-0.5.1.crate) = f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1 SIZE (rust/crates/ghash-0.5.1.crate) = 9482 -SHA256 (rust/crates/gimli-0.31.1.crate) = 07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f -SIZE (rust/crates/gimli-0.31.1.crate) = 279515 +SHA256 (rust/crates/gimli-0.32.3.crate) = e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7 +SIZE (rust/crates/gimli-0.32.3.crate) = 289789 SHA256 (rust/crates/git-version-0.3.9.crate) = 1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19 SIZE (rust/crates/git-version-0.3.9.crate) = 3087 SHA256 (rust/crates/git-version-macro-0.3.9.crate) = 53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0 SIZE (rust/crates/git-version-macro-0.3.9.crate) = 5622 -SHA256 (rust/crates/git2-0.20.0.crate) = 3fda788993cc341f69012feba8bf45c0ba4f3291fcc08e214b4d5a7332d88aff -SIZE (rust/crates/git2-0.20.0.crate) = 219198 -SHA256 (rust/crates/gix-0.69.1.crate) = 8d0eebdaecdcf405d5433a36f85e4f058cf4de48ee2604388be0dbccbaad353e -SIZE (rust/crates/gix-0.69.1.crate) = 283914 -SHA256 (rust/crates/gix-actor-0.33.1.crate) = 32b24171f514cef7bb4dfb72a0b06dacf609b33ba8ad2489d4c4559a03b7afb3 -SIZE (rust/crates/gix-actor-0.33.1.crate) = 10085 -SHA256 (rust/crates/gix-bitmap-0.2.13.crate) = d48b897b4bbc881aea994b4a5bbb340a04979d7be9089791304e04a9fbc66b53 -SIZE (rust/crates/gix-bitmap-0.2.13.crate) = 7689 -SHA256 (rust/crates/gix-chunk-0.4.10.crate) = c6ffbeb3a5c0b8b84c3fe4133a6f8c82fa962f4caefe8d0762eced025d3eb4f7 -SIZE (rust/crates/gix-chunk-0.4.10.crate) = 10131 -SHA256 (rust/crates/gix-command-0.4.0.crate) = 9405c0a56e17f8365a46870cd2c7db71323ecc8bda04b50cb746ea37bd091e90 -SIZE (rust/crates/gix-command-0.4.0.crate) = 11815 -SHA256 (rust/crates/gix-commitgraph-0.25.1.crate) = a8da6591a7868fb2b6dabddea6b09988b0b05e0213f938dbaa11a03dd7a48d85 -SIZE (rust/crates/gix-commitgraph-0.25.1.crate) = 18945 -SHA256 (rust/crates/gix-config-0.42.0.crate) = 6649b406ca1f99cb148959cf00468b231f07950f8ec438cc0903cda563606f19 -SIZE (rust/crates/gix-config-0.42.0.crate) = 64315 -SHA256 (rust/crates/gix-config-value-0.14.10.crate) = 49aaeef5d98390a3bcf9dbc6440b520b793d1bf3ed99317dc407b02be995b28e -SIZE (rust/crates/gix-config-value-0.14.10.crate) = 13604 -SHA256 (rust/crates/gix-date-0.9.3.crate) = c57c477b645ee248b173bb1176b52dd528872f12c50375801a58aaf5ae91113f -SIZE (rust/crates/gix-date-0.9.3.crate) = 11299 -SHA256 (rust/crates/gix-diff-0.49.0.crate) = a8e92566eccbca205a0a0f96ffb0327c061e85bc5c95abbcddfe177498aa04f6 -SIZE (rust/crates/gix-diff-0.49.0.crate) = 41572 -SHA256 (rust/crates/gix-discover-0.37.0.crate) = 83bf6dfa4e266a4a9becb4d18fc801f92c3f7cc6c433dd86fdadbcf315ffb6ef -SIZE (rust/crates/gix-discover-0.37.0.crate) = 16673 -SHA256 (rust/crates/gix-features-0.39.1.crate) = 7d85d673f2e022a340dba4713bed77ef2cf4cd737d2f3e0f159d45e0935fd81f -SIZE (rust/crates/gix-features-0.39.1.crate) = 31228 -SHA256 (rust/crates/gix-fs-0.12.1.crate) = 3b3d4fac505a621f97e5ce2c69fdc425742af00c0920363ca4074f0eb48b1db9 -SIZE (rust/crates/gix-fs-0.12.1.crate) = 15734 -SHA256 (rust/crates/gix-glob-0.17.1.crate) = aaf69a6bec0a3581567484bf99a4003afcaf6c469fd4214352517ea355cf3435 -SIZE (rust/crates/gix-glob-0.17.1.crate) = 14136 -SHA256 (rust/crates/gix-hash-0.15.1.crate) = 0b5eccc17194ed0e67d49285e4853307e4147e95407f91c1c3e4a13ba9f4e4ce -SIZE (rust/crates/gix-hash-0.15.1.crate) = 13513 -SHA256 (rust/crates/gix-hashtable-0.6.0.crate) = 0ef65b256631078ef733bc5530c4e6b1c2e7d5c2830b75d4e9034ab3997d18fe -SIZE (rust/crates/gix-hashtable-0.6.0.crate) = 7189 -SHA256 (rust/crates/gix-index-0.37.0.crate) = 270645fd20556b64c8ffa1540d921b281e6994413a0ca068596f97e9367a257a -SIZE (rust/crates/gix-index-0.37.0.crate) = 46644 -SHA256 (rust/crates/gix-lock-15.0.1.crate) = 1cd3ab68a452db63d9f3ebdacb10f30dba1fa0d31ac64f4203d395ed1102d940 -SIZE (rust/crates/gix-lock-15.0.1.crate) = 10515 -SHA256 (rust/crates/gix-object-0.46.1.crate) = e42d58010183ef033f31088479b4eb92b44fe341b35b62d39eb8b185573d77ea -SIZE (rust/crates/gix-object-0.46.1.crate) = 40544 -SHA256 (rust/crates/gix-odb-0.66.0.crate) = cb780eceb3372ee204469478de02eaa34f6ba98247df0186337e0333de97d0ae -SIZE (rust/crates/gix-odb-0.66.0.crate) = 56319 -SHA256 (rust/crates/gix-pack-0.56.0.crate) = 4158928929be29cae7ab97afc8e820a932071a7f39d8ba388eed2380c12c566c -SIZE (rust/crates/gix-pack-0.56.0.crate) = 97454 -SHA256 (rust/crates/gix-packetline-0.18.2.crate) = 911aeea8b2dabeed2f775af9906152a1f0109787074daf9e64224e3892dde453 -SIZE (rust/crates/gix-packetline-0.18.2.crate) = 21148 -SHA256 (rust/crates/gix-path-0.10.13.crate) = afc292ef1a51e340aeb0e720800338c805975724c1dfbd243185452efd8645b7 -SIZE (rust/crates/gix-path-0.10.13.crate) = 22831 -SHA256 (rust/crates/gix-protocol-0.47.0.crate) = c84642e8b6fed7035ce9cc449593019c55b0ec1af7a5dce1ab8a0636eaaeb067 -SIZE (rust/crates/gix-protocol-0.47.0.crate) = 44961 -SHA256 (rust/crates/gix-quote-0.4.14.crate) = 64a1e282216ec2ab2816cd57e6ed88f8009e634aec47562883c05ac8a7009a63 -SIZE (rust/crates/gix-quote-0.4.14.crate) = 7828 -SHA256 (rust/crates/gix-ref-0.49.1.crate) = a91b61776c839d0f1b7114901179afb0947aa7f4d30793ca1c56d335dfef485f -SIZE (rust/crates/gix-ref-0.49.1.crate) = 58105 -SHA256 (rust/crates/gix-refspec-0.27.0.crate) = 00c056bb747868c7eb0aeb352c9f9181ab8ca3d0a2550f16470803500c6c413d -SIZE (rust/crates/gix-refspec-0.27.0.crate) = 16887 -SHA256 (rust/crates/gix-revision-0.31.1.crate) = 61e1ddc474405a68d2ce8485705dd72fe6ce959f2f5fe718601ead5da2c8f9e7 -SIZE (rust/crates/gix-revision-0.31.1.crate) = 22665 -SHA256 (rust/crates/gix-revwalk-0.17.0.crate) = 510026fc32f456f8f067d8f37c34088b97a36b2229d88a6a5023ef179fcb109d -SIZE (rust/crates/gix-revwalk-0.17.0.crate) = 13323 -SHA256 (rust/crates/gix-sec-0.10.10.crate) = a8b876ef997a955397809a2ec398d6a45b7a55b4918f2446344330f778d14fd6 -SIZE (rust/crates/gix-sec-0.10.10.crate) = 10205 -SHA256 (rust/crates/gix-shallow-0.1.0.crate) = 88d2673242e87492cb6ff671f0c01f689061ca306c4020f137197f3abc84ce01 -SIZE (rust/crates/gix-shallow-0.1.0.crate) = 7545 -SHA256 (rust/crates/gix-tempfile-15.0.0.crate) = 2feb86ef094cc77a4a9a5afbfe5de626897351bbbd0de3cb9314baf3049adb82 -SIZE (rust/crates/gix-tempfile-15.0.0.crate) = 18426 -SHA256 (rust/crates/gix-trace-0.1.11.crate) = 04bdde120c29f1fc23a24d3e115aeeea3d60d8e65bab92cc5f9d90d9302eb952 -SIZE (rust/crates/gix-trace-0.1.11.crate) = 10424 -SHA256 (rust/crates/gix-transport-0.44.0.crate) = dd04d91e507a8713cfa2318d5a85d75b36e53a40379cc7eb7634ce400ecacbaf -SIZE (rust/crates/gix-transport-0.44.0.crate) = 50856 -SHA256 (rust/crates/gix-traverse-0.43.1.crate) = 6ed47d648619e23e93f971d2bba0d10c1100e54ef95d2981d609907a8cabac89 -SIZE (rust/crates/gix-traverse-0.43.1.crate) = 18569 -SHA256 (rust/crates/gix-url-0.28.2.crate) = d096fb733ba6bd3f5403dba8bd72bdd8809fe2b347b57844040b8f49c93492d9 -SIZE (rust/crates/gix-url-0.28.2.crate) = 15297 -SHA256 (rust/crates/gix-utils-0.1.13.crate) = ba427e3e9599508ed98a6ddf8ed05493db114564e338e41f6a996d2e4790335f -SIZE (rust/crates/gix-utils-0.1.13.crate) = 10194 -SHA256 (rust/crates/gix-validate-0.9.2.crate) = cd520d09f9f585b34b32aba1d0b36ada89ab7fefb54a8ca3fe37fc482a750937 -SIZE (rust/crates/gix-validate-0.9.2.crate) = 11923 +SHA256 (rust/crates/git2-0.20.3.crate) = 3e2b37e2f62729cdada11f0e6b3b6fe383c69c29fc619e391223e12856af308c +SIZE (rust/crates/git2-0.20.3.crate) = 224085 +SHA256 (rust/crates/gix-0.75.0.crate) = 60beff35667fb0ac935c4c45941868d9cf5025e4b85c58deb3c5a65113e22ce4 +SIZE (rust/crates/gix-0.75.0.crate) = 299895 +SHA256 (rust/crates/gix-actor-0.36.0.crate) = 694f6c16eb88b16b00b1d811e4e4bda6f79e9eb467a1b04fd5b848da677baa81 +SIZE (rust/crates/gix-actor-0.36.0.crate) = 13444 +SHA256 (rust/crates/gix-attributes-0.28.1.crate) = cc6591add69314fc43db078076a8da6f07957c65abb0b21c3e1b6a3cf50aa18d +SIZE (rust/crates/gix-attributes-0.28.1.crate) = 22749 +SHA256 (rust/crates/gix-bitmap-0.2.15.crate) = 5e150161b8a75b5860521cb876b506879a3376d3adc857ec7a9d35e7c6a5e531 +SIZE (rust/crates/gix-bitmap-0.2.15.crate) = 8153 +SHA256 (rust/crates/gix-chunk-0.4.12.crate) = 5c356b3825677cb6ff579551bb8311a81821e184453cbd105e2fc5311b288eeb +SIZE (rust/crates/gix-chunk-0.4.12.crate) = 10638 +SHA256 (rust/crates/gix-command-0.6.3.crate) = 095c8367c9dc4872a7706fbc39c7f34271b88b541120a4365ff0e36366f66e62 +SIZE (rust/crates/gix-command-0.6.3.crate) = 15123 +SHA256 (rust/crates/gix-commitgraph-0.30.1.crate) = 826994ff6c01f1ff00d6a1844d7506717810a91ffed143da71e3bf39369751ef +SIZE (rust/crates/gix-commitgraph-0.30.1.crate) = 22423 +SHA256 (rust/crates/gix-config-0.48.0.crate) = 9419284839421488b5ab9b9b88386bdc1e159a986c08e17ffa3e9a5cd2b139f5 +SIZE (rust/crates/gix-config-0.48.0.crate) = 73767 +SHA256 (rust/crates/gix-config-value-0.15.3.crate) = 2c489abb061c74b0c3ad790e24a606ef968cebab48ec673d6a891ece7d5aef64 +SIZE (rust/crates/gix-config-value-0.15.3.crate) = 15605 +SHA256 (rust/crates/gix-date-0.11.0.crate) = 9f94626a5bc591a57025361a3a890092469e47c7667e59fc143439cd6eaf47fe +SIZE (rust/crates/gix-date-0.11.0.crate) = 16334 +SHA256 (rust/crates/gix-diff-0.55.0.crate) = cfc7735ca267da78c37e916e9b32d67b0b0e3fc9401378920e9469b5d497dccf +SIZE (rust/crates/gix-diff-0.55.0.crate) = 60308 +SHA256 (rust/crates/gix-dir-0.17.0.crate) = cb9a55642e31c81d235e6ab2a7f00343c0f79e70973245a8a1e1d16c498e3e86 +SIZE (rust/crates/gix-dir-0.17.0.crate) = 67171 +SHA256 (rust/crates/gix-discover-0.43.0.crate) = 809f8dba9fbd7a054894ec222815742b96def1ca08e18c38b1dbc1f737dd213d +SIZE (rust/crates/gix-discover-0.43.0.crate) = 23281 +SHA256 (rust/crates/gix-features-0.44.1.crate) = dfa64593d1586135102307fb57fb3a9d3868b6b1f45a4da1352cce5070f8916a +SIZE (rust/crates/gix-features-0.44.1.crate) = 34680 +SHA256 (rust/crates/gix-filter-0.22.0.crate) = 9e137e7df1ae40fe2b49dcb2845c6bf7ac04cd53a320d72e761c598a6fd452ed +SIZE (rust/crates/gix-filter-0.22.0.crate) = 38719 +SHA256 (rust/crates/gix-fs-0.17.0.crate) = 3f1ecd896258cdc5ccd94d18386d17906b8de265ad2ecf68e3bea6b007f6a28f +SIZE (rust/crates/gix-fs-0.17.0.crate) = 20022 +SHA256 (rust/crates/gix-glob-0.22.1.crate) = 74254992150b0a88fdb3ad47635ab649512dff2cbbefca7916bb459894fc9d56 +SIZE (rust/crates/gix-glob-0.22.1.crate) = 16299 +SHA256 (rust/crates/gix-hash-0.20.1.crate) = 826036a9bee95945b0be1e2394c64cd4289916c34a639818f8fd5153906985c1 +SIZE (rust/crates/gix-hash-0.20.1.crate) = 19230 +SHA256 (rust/crates/gix-hashtable-0.10.0.crate) = a27d4a3ea9640da504a2657fef3419c517fd71f1767ad8935298bcc805edd195 +SIZE (rust/crates/gix-hashtable-0.10.0.crate) = 10303 +SHA256 (rust/crates/gix-ignore-0.17.1.crate) = 93b6a9679a1488123b7f2929684bacfd9cd2a24f286b52203b8752cbb8d7fc49 +SIZE (rust/crates/gix-ignore-0.17.1.crate) = 12402 +SHA256 (rust/crates/gix-index-0.43.0.crate) = eab6410318b98750883eb3e35eb999abfb155b407eb0580726d4d868b60cde04 +SIZE (rust/crates/gix-index-0.43.0.crate) = 54361 +SHA256 (rust/crates/gix-lock-19.0.0.crate) = 729d7857429a66023bc0c29d60fa21d0d6ae8862f33c1937ba89e0f74dd5c67f +SIZE (rust/crates/gix-lock-19.0.0.crate) = 14263 +SHA256 (rust/crates/gix-mailmap-0.28.0.crate) = 2a97041c66c8b6c2f34cf6b8585a36e28a07401a611a69d8a5d2cee0eea2aa72 +SIZE (rust/crates/gix-mailmap-0.28.0.crate) = 14696 +SHA256 (rust/crates/gix-object-0.52.0.crate) = 84743d1091c501a56f00d7f4c595cb30f20fcef6503b32ac0a1ff3817efd7b5d +SIZE (rust/crates/gix-object-0.52.0.crate) = 50541 +SHA256 (rust/crates/gix-odb-0.72.0.crate) = 5f81b480252f3a4d55f87e6e358c4c6f7615f98b1742e1e70118c57282a92e82 +SIZE (rust/crates/gix-odb-0.72.0.crate) = 62986 +SHA256 (rust/crates/gix-pack-0.62.0.crate) = 38e868463538731a0fd99f3950637957413bbfbe69143520c0b5c1e163303577 +SIZE (rust/crates/gix-pack-0.62.0.crate) = 104744 +SHA256 (rust/crates/gix-packetline-0.20.0.crate) = fad0ffb982a289888087a165d3e849cbac724f2aa5431236b050dd2cb9c7de31 +SIZE (rust/crates/gix-packetline-0.20.0.crate) = 28268 +SHA256 (rust/crates/gix-path-0.10.22.crate) = 7cb06c3e4f8eed6e24fd915fa93145e28a511f4ea0e768bae16673e05ed3f366 +SIZE (rust/crates/gix-path-0.10.22.crate) = 33919 +SHA256 (rust/crates/gix-pathspec-0.13.0.crate) = d05e28457dca7c65a2dbe118869aab922a5bd382b7bb10cff5354f366845c128 +SIZE (rust/crates/gix-pathspec-0.13.0.crate) = 23314 +SHA256 (rust/crates/gix-protocol-0.53.0.crate) = 6947d3b919ec8d10738f4251905a8485366ffdd24942cdbe9c6b69376bf57d64 +SIZE (rust/crates/gix-protocol-0.53.0.crate) = 55824 +SHA256 (rust/crates/gix-quote-0.6.1.crate) = e912ec04b7b1566a85ad486db0cab6b9955e3e32bcd3c3a734542ab3af084c5b +SIZE (rust/crates/gix-quote-0.6.1.crate) = 8984 +SHA256 (rust/crates/gix-ref-0.55.0.crate) = e51330a32f173c8e831731dfef8e93a748c23c057f4b028841f222564cad84cb +SIZE (rust/crates/gix-ref-0.55.0.crate) = 65278 +SHA256 (rust/crates/gix-refspec-0.33.0.crate) = 7f88233214a302d61e60bb9d1387043c1759b761dba4a8704b341fecbf6b1266 +SIZE (rust/crates/gix-refspec-0.33.0.crate) = 23467 +SHA256 (rust/crates/gix-revision-0.37.0.crate) = ffe7f489bd27e7e388885210bc189088012db6062ccc75d713d1cef8eff56883 +SIZE (rust/crates/gix-revision-0.37.0.crate) = 28024 +SHA256 (rust/crates/gix-revwalk-0.23.0.crate) = dd2fae8449d97fb92078c46cb63544e0024955f43738a610d24277a3b01d5a00 +SIZE (rust/crates/gix-revwalk-0.23.0.crate) = 18307 +SHA256 (rust/crates/gix-sec-0.12.2.crate) = ea9962ed6d9114f7f100efe038752f41283c225bb507a2888903ac593dffa6be +SIZE (rust/crates/gix-sec-0.12.2.crate) = 13263 +SHA256 (rust/crates/gix-shallow-0.6.0.crate) = e2374692db1ee1ffa0eddcb9e86ec218f7c4cdceda800ebc5a9fdf73a8c08223 +SIZE (rust/crates/gix-shallow-0.6.0.crate) = 12364 +SHA256 (rust/crates/gix-status-0.22.0.crate) = 53c9ad16b4d9da73d527eb6d1be05de9e0641855b8084b362dd657255684f81f +SIZE (rust/crates/gix-status-0.22.0.crate) = 41972 +SHA256 (rust/crates/gix-submodule-0.22.0.crate) = 2b79f64c669d8578f45046b3ffb8d4d9cc4beb798871ff638a7b5c1f59dbd2fc +SIZE (rust/crates/gix-submodule-0.22.0.crate) = 20111 +SHA256 (rust/crates/gix-tempfile-19.0.1.crate) = e265fc6b54e57693232a79d84038381ebfda7b1a3b1b8a9320d4d5fe6e820086 +SIZE (rust/crates/gix-tempfile-19.0.1.crate) = 19058 +SHA256 (rust/crates/gix-trace-0.1.15.crate) = 1d3f59a8de2934f6391b6b3a1a7654eae18961fcb9f9c843533fed34ad0f3457 +SIZE (rust/crates/gix-trace-0.1.15.crate) = 10867 +SHA256 (rust/crates/gix-transport-0.50.0.crate) = e058d6667165dba7642b3c293d7c355e2a964acef9bc9408604547d952943a8f +SIZE (rust/crates/gix-transport-0.50.0.crate) = 70749 +SHA256 (rust/crates/gix-traverse-0.49.0.crate) = 054c79f4c3f87e794ff7dc1fec8306a2bb563cfb38f6be2dc0e4c0fa82f74d59 +SIZE (rust/crates/gix-traverse-0.49.0.crate) = 27016 +SHA256 (rust/crates/gix-url-0.33.2.crate) = d995249a1cf1ad79ba10af6499d4bf37cb78035c0983eaa09ec5910da694957c +SIZE (rust/crates/gix-url-0.33.2.crate) = 19762 +SHA256 (rust/crates/gix-utils-0.3.1.crate) = befcdbdfb1238d2854591f760a48711bed85e72d80a10e8f2f93f656746ef7c5 +SIZE (rust/crates/gix-utils-0.3.1.crate) = 11157 +SHA256 (rust/crates/gix-validate-0.10.1.crate) = 5b1e63a5b516e970a594f870ed4571a8fdcb8a344e7bd407a20db8bd61dbfde4 +SIZE (rust/crates/gix-validate-0.10.1.crate) = 12803 +SHA256 (rust/crates/gix-worktree-0.44.0.crate) = 428e8928e0e27341b58aa89e20adaf643efd6a8f863bc9cdf3ec6199c2110c96 +SIZE (rust/crates/gix-worktree-0.44.0.crate) = 25538 SHA256 (rust/crates/group-0.13.0.crate) = f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63 SIZE (rust/crates/group-0.13.0.crate) = 16526 +SHA256 (rust/crates/hash32-0.3.1.crate) = 47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606 +SIZE (rust/crates/hash32-0.3.1.crate) = 10273 SHA256 (rust/crates/hashbrown-0.14.5.crate) = e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1 SIZE (rust/crates/hashbrown-0.14.5.crate) = 141498 SHA256 (rust/crates/hashbrown-0.15.2.crate) = bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289 SIZE (rust/crates/hashbrown-0.15.2.crate) = 138478 +SHA256 (rust/crates/hashbrown-0.16.1.crate) = 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 +SIZE (rust/crates/hashbrown-0.16.1.crate) = 147785 +SHA256 (rust/crates/heapless-0.8.0.crate) = 0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad +SIZE (rust/crates/heapless-0.8.0.crate) = 77802 SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea SIZE (rust/crates/heck-0.5.0.crate) = 11517 SHA256 (rust/crates/hmac-0.12.1.crate) = 6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e SIZE (rust/crates/hmac-0.12.1.crate) = 42657 -SHA256 (rust/crates/home-0.5.11.crate) = 589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf -SIZE (rust/crates/home-0.5.11.crate) = 9926 -SHA256 (rust/crates/humantime-2.1.0.crate) = 9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4 -SIZE (rust/crates/humantime-2.1.0.crate) = 16749 SHA256 (rust/crates/iana-time-zone-0.1.61.crate) = 235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220 SIZE (rust/crates/iana-time-zone-0.1.61.crate) = 27685 SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f @@ -355,8 +377,10 @@ SHA256 (rust/crates/idna-1.0.3.crate) = 686f825264d630750a544639377bae737628043f SIZE (rust/crates/idna-1.0.3.crate) = 142515 SHA256 (rust/crates/idna_adapter-1.2.0.crate) = daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71 SIZE (rust/crates/idna_adapter-1.2.0.crate) = 8206 -SHA256 (rust/crates/indexmap-2.7.0.crate) = 62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f -SIZE (rust/crates/indexmap-2.7.0.crate) = 85335 +SHA256 (rust/crates/imara-diff-0.1.8.crate) = 17d34b7d42178945f775e84bc4c36dde7c1c6cdfea656d3354d009056f2bb3d2 +SIZE (rust/crates/imara-diff-0.1.8.crate) = 155787 +SHA256 (rust/crates/indexmap-2.12.1.crate) = 0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2 +SIZE (rust/crates/indexmap-2.12.1.crate) = 100184 SHA256 (rust/crates/indoc-2.0.5.crate) = b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5 SIZE (rust/crates/indoc-2.0.5.crate) = 14396 SHA256 (rust/crates/inotify-0.11.0.crate) = f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3 @@ -375,60 +399,66 @@ SHA256 (rust/crates/itertools-0.14.0.crate) = 2b192c782037fadd9cfa75548310488aab SIZE (rust/crates/itertools-0.14.0.crate) = 152715 SHA256 (rust/crates/itoa-1.0.14.crate) = d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674 SIZE (rust/crates/itoa-1.0.14.crate) = 11210 -SHA256 (rust/crates/jiff-0.1.21.crate) = ed0ce60560149333a8e41ca7dc78799c47c5fd435e2bc18faf6a054382eec037 -SIZE (rust/crates/jiff-0.1.21.crate) = 687373 -SHA256 (rust/crates/jiff-tzdb-0.1.1.crate) = 91335e575850c5c4c673b9bd467b0e025f164ca59d0564f69d0c2ee0ffad4653 -SIZE (rust/crates/jiff-tzdb-0.1.1.crate) = 82030 -SHA256 (rust/crates/jiff-tzdb-platform-0.1.1.crate) = 9835f0060a626fe59f160437bc725491a6af23133ea906500027d1bd2f8f4329 -SIZE (rust/crates/jiff-tzdb-platform-0.1.1.crate) = 2945 +SHA256 (rust/crates/jiff-0.2.15.crate) = be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49 +SIZE (rust/crates/jiff-0.2.15.crate) = 712996 +SHA256 (rust/crates/jiff-static-0.2.15.crate) = 03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4 +SIZE (rust/crates/jiff-static-0.2.15.crate) = 76146 +SHA256 (rust/crates/jiff-tzdb-0.1.4.crate) = c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524 +SIZE (rust/crates/jiff-tzdb-0.1.4.crate) = 62435 +SHA256 (rust/crates/jiff-tzdb-platform-0.1.3.crate) = 875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8 +SIZE (rust/crates/jiff-tzdb-platform-0.1.3.crate) = 3179 SHA256 (rust/crates/jobserver-0.1.32.crate) = 48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0 SIZE (rust/crates/jobserver-0.1.32.crate) = 27549 SHA256 (rust/crates/js-sys-0.3.76.crate) = 6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7 SIZE (rust/crates/js-sys-0.3.76.crate) = 54420 -SHA256 (rust/crates/kqueue-1.0.8.crate) = 7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c -SIZE (rust/crates/kqueue-1.0.8.crate) = 12642 +SHA256 (rust/crates/kqueue-1.1.1.crate) = eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a +SIZE (rust/crates/kqueue-1.1.1.crate) = 21504 SHA256 (rust/crates/kqueue-sys-1.0.4.crate) = ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b SIZE (rust/crates/kqueue-sys-1.0.4.crate) = 7160 +SHA256 (rust/crates/kstring-2.0.2.crate) = 558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1 +SIZE (rust/crates/kstring-2.0.2.crate) = 23044 SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 -SHA256 (rust/crates/libc-0.2.169.crate) = b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a -SIZE (rust/crates/libc-0.2.169.crate) = 757901 -SHA256 (rust/crates/libgit2-sys-0.18.0+1.9.0.crate) = e1a117465e7e1597e8febea8bb0c410f1c7fb93b1e1cddf34363f8390367ffec -SIZE (rust/crates/libgit2-sys-0.18.0+1.9.0.crate) = 1853724 +SHA256 (rust/crates/libc-0.2.177.crate) = 2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976 +SIZE (rust/crates/libc-0.2.177.crate) = 792045 +SHA256 (rust/crates/libgit2-sys-0.18.3+1.9.2.crate) = c9b3acc4b91781bb0b3386669d325163746af5f6e4f73e6d2d630e09a35f3487 +SIZE (rust/crates/libgit2-sys-0.18.3+1.9.2.crate) = 1865532 SHA256 (rust/crates/libm-0.2.11.crate) = 8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa SIZE (rust/crates/libm-0.2.11.crate) = 111477 SHA256 (rust/crates/libredox-0.1.3.crate) = c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d SIZE (rust/crates/libredox-0.1.3.crate) = 6068 -SHA256 (rust/crates/libssh2-sys-0.3.0.crate) = 2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee -SIZE (rust/crates/libssh2-sys-0.3.0.crate) = 514550 -SHA256 (rust/crates/libz-ng-sys-1.1.21.crate) = 7cee1488e961a80d172564fd6fcda11d8a4ac6672c06fe008e9213fa60520c2b -SIZE (rust/crates/libz-ng-sys-1.1.21.crate) = 487230 +SHA256 (rust/crates/libssh2-sys-0.3.1.crate) = 220e4f05ad4a218192533b300327f5150e809b54c4ec83b5a1d91833601811b9 +SIZE (rust/crates/libssh2-sys-0.3.1.crate) = 582851 +SHA256 (rust/crates/libz-rs-sys-0.5.2.crate) = 840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd +SIZE (rust/crates/libz-rs-sys-0.5.2.crate) = 46524 SHA256 (rust/crates/libz-sys-1.1.21.crate) = df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa SIZE (rust/crates/libz-sys-1.1.21.crate) = 839973 SHA256 (rust/crates/linux-raw-sys-0.4.15.crate) = d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab SIZE (rust/crates/linux-raw-sys-0.4.15.crate) = 2150898 +SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 +SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 SHA256 (rust/crates/litemap-0.7.4.crate) = 4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104 SIZE (rust/crates/litemap-0.7.4.crate) = 28257 -SHA256 (rust/crates/lock_api-0.4.12.crate) = 07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17 -SIZE (rust/crates/lock_api-0.4.12.crate) = 27591 -SHA256 (rust/crates/log-0.4.22.crate) = a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24 -SIZE (rust/crates/log-0.4.22.crate) = 44027 +SHA256 (rust/crates/lock_api-0.4.14.crate) = 224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965 +SIZE (rust/crates/lock_api-0.4.14.crate) = 29249 +SHA256 (rust/crates/log-0.4.29.crate) = 5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897 +SIZE (rust/crates/log-0.4.29.crate) = 51515 SHA256 (rust/crates/lru-0.12.5.crate) = 234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38 SIZE (rust/crates/lru-0.12.5.crate) = 16047 SHA256 (rust/crates/maybe-async-0.2.10.crate) = 5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11 SIZE (rust/crates/maybe-async-0.2.10.crate) = 22107 SHA256 (rust/crates/memchr-2.7.4.crate) = 78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3 SIZE (rust/crates/memchr-2.7.4.crate) = 96670 -SHA256 (rust/crates/memmap2-0.9.5.crate) = fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f -SIZE (rust/crates/memmap2-0.9.5.crate) = 33280 -SHA256 (rust/crates/miniz_oxide-0.8.2.crate) = 4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394 -SIZE (rust/crates/miniz_oxide-0.8.2.crate) = 59068 +SHA256 (rust/crates/memmap2-0.9.9.crate) = 744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490 +SIZE (rust/crates/memmap2-0.9.9.crate) = 34576 +SHA256 (rust/crates/miniz_oxide-0.8.7.crate) = ff70ce3e48ae43fa075863cef62e8b43b71a4f2382229920e0df362592919430 +SIZE (rust/crates/miniz_oxide-0.8.7.crate) = 66905 SHA256 (rust/crates/mio-1.0.3.crate) = 2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd SIZE (rust/crates/mio-1.0.3.crate) = 103703 -SHA256 (rust/crates/notify-8.0.0.crate) = 2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943 -SIZE (rust/crates/notify-8.0.0.crate) = 35590 -SHA256 (rust/crates/notify-debouncer-mini-0.6.0.crate) = a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8 -SIZE (rust/crates/notify-debouncer-mini-0.6.0.crate) = 9951 +SHA256 (rust/crates/notify-8.2.0.crate) = 4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3 +SIZE (rust/crates/notify-8.2.0.crate) = 39067 +SHA256 (rust/crates/notify-debouncer-mini-0.7.0.crate) = 17849edfaabd9a5fef1c606d99cfc615a8e99f7ac4366406d86c7942a3184cf2 +SIZE (rust/crates/notify-debouncer-mini-0.7.0.crate) = 10187 SHA256 (rust/crates/notify-types-2.0.0.crate) = 5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d SIZE (rust/crates/notify-types-2.0.0.crate) = 14495 SHA256 (rust/crates/ntapi-0.4.1.crate) = e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4 @@ -443,20 +473,22 @@ SHA256 (rust/crates/num-iter-0.1.45.crate) = 1429034a0490724d0075ebb2bc9e875d650 SIZE (rust/crates/num-iter-0.1.45.crate) = 10320 SHA256 (rust/crates/num-traits-0.2.19.crate) = 071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841 SIZE (rust/crates/num-traits-0.2.19.crate) = 51631 -SHA256 (rust/crates/object-0.36.7.crate) = 62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87 -SIZE (rust/crates/object-0.36.7.crate) = 329938 -SHA256 (rust/crates/once_cell-1.20.2.crate) = 1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775 -SIZE (rust/crates/once_cell-1.20.2.crate) = 33394 -SHA256 (rust/crates/onig-6.4.0.crate) = 8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f -SIZE (rust/crates/onig-6.4.0.crate) = 32616 -SHA256 (rust/crates/onig_sys-69.8.1.crate) = 7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7 -SIZE (rust/crates/onig_sys-69.8.1.crate) = 638216 +SHA256 (rust/crates/object-0.37.3.crate) = ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe +SIZE (rust/crates/object-0.37.3.crate) = 344032 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 +SHA256 (rust/crates/onig-6.5.1.crate) = 336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0 +SIZE (rust/crates/onig-6.5.1.crate) = 32394 +SHA256 (rust/crates/onig_sys-69.9.1.crate) = c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc +SIZE (rust/crates/onig_sys-69.9.1.crate) = 656378 SHA256 (rust/crates/opaque-debug-0.3.1.crate) = c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381 SIZE (rust/crates/opaque-debug-0.3.1.crate) = 7066 SHA256 (rust/crates/openssl-probe-0.1.5.crate) = ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf SIZE (rust/crates/openssl-probe-0.1.5.crate) = 7227 -SHA256 (rust/crates/openssl-sys-0.9.104.crate) = 45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741 -SIZE (rust/crates/openssl-sys-0.9.104.crate) = 72287 +SHA256 (rust/crates/openssl-src-300.4.1+3.4.0.crate) = faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c +SIZE (rust/crates/openssl-src-300.4.1+3.4.0.crate) = 9945831 +SHA256 (rust/crates/openssl-sys-0.9.111.crate) = 82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321 +SIZE (rust/crates/openssl-sys-0.9.111.crate) = 80871 SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 SHA256 (rust/crates/p256-0.13.2.crate) = c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b @@ -465,10 +497,10 @@ SHA256 (rust/crates/p384-0.13.0.crate) = 70786f51bcc69f6a4c0360e063a4cac5419ef7c SIZE (rust/crates/p384-0.13.0.crate) = 236495 SHA256 (rust/crates/p521-0.13.3.crate) = 0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2 SIZE (rust/crates/p521-0.13.3.crate) = 138499 -SHA256 (rust/crates/parking_lot-0.12.3.crate) = f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27 -SIZE (rust/crates/parking_lot-0.12.3.crate) = 41860 -SHA256 (rust/crates/parking_lot_core-0.9.10.crate) = 1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8 -SIZE (rust/crates/parking_lot_core-0.9.10.crate) = 32406 +SHA256 (rust/crates/parking_lot-0.12.5.crate) = 93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a +SIZE (rust/crates/parking_lot-0.12.5.crate) = 46735 +SHA256 (rust/crates/parking_lot_core-0.9.12.crate) = 2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1 +SIZE (rust/crates/parking_lot_core-0.9.12.crate) = 34110 SHA256 (rust/crates/paste-1.0.15.crate) = 57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a SIZE (rust/crates/paste-1.0.15.crate) = 18374 SHA256 (rust/crates/pbkdf2-0.12.2.crate) = f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2 @@ -491,6 +523,8 @@ SHA256 (rust/crates/pkcs8-0.10.2.crate) = f950b2377845cebe5cf8b5165cb3cc1a5e0fa5 SIZE (rust/crates/pkcs8-0.10.2.crate) = 26360 SHA256 (rust/crates/pkg-config-0.3.31.crate) = 953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2 SIZE (rust/crates/pkg-config-0.3.31.crate) = 20880 +SHA256 (rust/crates/plist-1.7.0.crate) = 42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016 +SIZE (rust/crates/plist-1.7.0.crate) = 101068 SHA256 (rust/crates/poly1305-0.8.0.crate) = 8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf SIZE (rust/crates/poly1305-0.8.0.crate) = 32633 SHA256 (rust/crates/polyval-0.6.2.crate) = 9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25 @@ -507,12 +541,16 @@ SHA256 (rust/crates/pretty_assertions-1.4.1.crate) = 3ae130e2f271fbc2ac3a40fb1d0 SIZE (rust/crates/pretty_assertions-1.4.1.crate) = 78952 SHA256 (rust/crates/primeorder-0.13.6.crate) = 353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6 SIZE (rust/crates/primeorder-0.13.6.crate) = 21296 -SHA256 (rust/crates/proc-macro2-1.0.92.crate) = 37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0 -SIZE (rust/crates/proc-macro2-1.0.92.crate) = 52353 -SHA256 (rust/crates/prodash-29.0.0.crate) = a266d8d6020c61a437be704c5e618037588e1985c7dbb7bf8d265db84cffe325 -SIZE (rust/crates/prodash-29.0.0.crate) = 90594 +SHA256 (rust/crates/proc-macro2-1.0.94.crate) = a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84 +SIZE (rust/crates/proc-macro2-1.0.94.crate) = 52391 +SHA256 (rust/crates/prodash-30.0.1.crate) = 5a6efc566849d3d9d737c5cb06cc50e48950ebe3d3f9d70631490fff3a07b139 +SIZE (rust/crates/prodash-30.0.1.crate) = 92925 +SHA256 (rust/crates/quick-xml-0.32.0.crate) = 1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2 +SIZE (rust/crates/quick-xml-0.32.0.crate) = 184149 SHA256 (rust/crates/quote-1.0.38.crate) = 0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc SIZE (rust/crates/quote-1.0.38.crate) = 31252 +SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f +SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 SIZE (rust/crates/rand-0.8.5.crate) = 87113 SHA256 (rust/crates/rand_chacha-0.3.1.crate) = e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88 @@ -521,14 +559,14 @@ SHA256 (rust/crates/rand_core-0.6.4.crate) = ec0be4795e2f6a28069bec0b5ff3e2ac9ba SIZE (rust/crates/rand_core-0.6.4.crate) = 22666 SHA256 (rust/crates/ratatui-0.29.0.crate) = eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b SIZE (rust/crates/ratatui-0.29.0.crate) = 543514 -SHA256 (rust/crates/rayon-1.10.0.crate) = b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa -SIZE (rust/crates/rayon-1.10.0.crate) = 180155 -SHA256 (rust/crates/rayon-core-1.12.1.crate) = 1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2 -SIZE (rust/crates/rayon-core-1.12.1.crate) = 70701 +SHA256 (rust/crates/rayon-1.11.0.crate) = 368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f +SIZE (rust/crates/rayon-1.11.0.crate) = 182470 +SHA256 (rust/crates/rayon-core-1.13.0.crate) = 22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91 +SIZE (rust/crates/rayon-core-1.13.0.crate) = 73151 SHA256 (rust/crates/redox_syscall-0.5.8.crate) = 03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834 SIZE (rust/crates/redox_syscall-0.5.8.crate) = 26319 -SHA256 (rust/crates/redox_users-0.4.6.crate) = ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43 -SIZE (rust/crates/redox_users-0.4.6.crate) = 15585 +SHA256 (rust/crates/redox_users-0.5.0.crate) = dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b +SIZE (rust/crates/redox_users-0.5.0.crate) = 15586 SHA256 (rust/crates/regex-1.11.1.crate) = b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191 SIZE (rust/crates/regex-1.11.1.crate) = 254170 SHA256 (rust/crates/regex-automata-0.4.9.crate) = 809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908 @@ -537,8 +575,8 @@ SHA256 (rust/crates/regex-syntax-0.8.5.crate) = 2b15c43186be67a4fd63bee50d0303af SIZE (rust/crates/regex-syntax-0.8.5.crate) = 357541 SHA256 (rust/crates/rfc6979-0.4.0.crate) = f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2 SIZE (rust/crates/rfc6979-0.4.0.crate) = 9140 -SHA256 (rust/crates/ron-0.8.1.crate) = b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94 -SIZE (rust/crates/ron-0.8.1.crate) = 63251 +SHA256 (rust/crates/ron-0.12.0.crate) = fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32 +SIZE (rust/crates/ron-0.12.0.crate) = 119892 SHA256 (rust/crates/rsa-0.9.7.crate) = 47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519 SIZE (rust/crates/rsa-0.9.7.crate) = 80231 SHA256 (rust/crates/rustc-demangle-0.1.24.crate) = 719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f @@ -547,26 +585,30 @@ SHA256 (rust/crates/rustc_version-0.4.1.crate) = cfcb3a22ef46e85b45de6ee7e79d063 SIZE (rust/crates/rustc_version-0.4.1.crate) = 12245 SHA256 (rust/crates/rustix-0.38.43.crate) = a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6 SIZE (rust/crates/rustix-0.38.43.crate) = 379134 +SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e +SIZE (rust/crates/rustix-1.1.2.crate) = 422717 SHA256 (rust/crates/rustversion-1.0.19.crate) = f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4 SIZE (rust/crates/rustversion-1.0.19.crate) = 20616 SHA256 (rust/crates/ryu-1.0.18.crate) = f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f SIZE (rust/crates/ryu-1.0.18.crate) = 47713 SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 SIZE (rust/crates/same-file-1.0.6.crate) = 10183 -SHA256 (rust/crates/scc-2.3.0.crate) = 28e1c91382686d21b5ac7959341fcb9780fa7c03773646995a87c950fa7be640 -SIZE (rust/crates/scc-2.3.0.crate) = 130826 +SHA256 (rust/crates/scc-2.3.4.crate) = 22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4 +SIZE (rust/crates/scc-2.3.4.crate) = 143387 SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49 SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619 -SHA256 (rust/crates/sdd-3.0.5.crate) = 478f121bb72bbf63c52c93011ea1791dca40140dfe13f8336c4c5ac952c33aa9 -SIZE (rust/crates/sdd-3.0.5.crate) = 25330 +SHA256 (rust/crates/sdd-3.0.8.crate) = 584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21 +SIZE (rust/crates/sdd-3.0.8.crate) = 31934 SHA256 (rust/crates/sec1-0.7.3.crate) = d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc SIZE (rust/crates/sec1-0.7.3.crate) = 17979 SHA256 (rust/crates/semver-1.0.24.crate) = 3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba SIZE (rust/crates/semver-1.0.24.crate) = 31267 -SHA256 (rust/crates/serde-1.0.217.crate) = 02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70 -SIZE (rust/crates/serde-1.0.217.crate) = 79019 -SHA256 (rust/crates/serde_derive-1.0.217.crate) = 5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0 -SIZE (rust/crates/serde_derive-1.0.217.crate) = 57749 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 SHA256 (rust/crates/serde_json-1.0.135.crate) = 2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9 SIZE (rust/crates/serde_json-1.0.135.crate) = 154499 SHA256 (rust/crates/serial_test-3.2.0.crate) = 1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9 @@ -575,18 +617,16 @@ SHA256 (rust/crates/serial_test_derive-3.2.0.crate) = 5d69265a08751de7844521fd15 SIZE (rust/crates/serial_test_derive-3.2.0.crate) = 6992 SHA256 (rust/crates/sha1-0.10.6.crate) = e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba SIZE (rust/crates/sha1-0.10.6.crate) = 13517 -SHA256 (rust/crates/sha1-asm-0.5.3.crate) = 286acebaf8b67c1130aedffad26f594eff0c1292389158135327d2e23aed582b -SIZE (rust/crates/sha1-asm-0.5.3.crate) = 5830 -SHA256 (rust/crates/sha1_smol-1.0.1.crate) = bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d -SIZE (rust/crates/sha1_smol-1.0.1.crate) = 9809 +SHA256 (rust/crates/sha1-checked-0.10.0.crate) = 89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423 +SIZE (rust/crates/sha1-checked-0.10.0.crate) = 783840 SHA256 (rust/crates/sha2-0.10.8.crate) = 793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8 SIZE (rust/crates/sha2-0.10.8.crate) = 26357 SHA256 (rust/crates/shell-escape-0.1.5.crate) = 45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f SIZE (rust/crates/shell-escape-0.1.5.crate) = 6847 SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde SIZE (rust/crates/shell-words-1.1.0.crate) = 9871 -SHA256 (rust/crates/shellexpand-3.1.0.crate) = da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b -SIZE (rust/crates/shellexpand-3.1.0.crate) = 25591 +SHA256 (rust/crates/shellexpand-3.1.1.crate) = 8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb +SIZE (rust/crates/shellexpand-3.1.1.crate) = 25904 SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 SIZE (rust/crates/shlex-1.3.0.crate) = 18713 SHA256 (rust/crates/signal-hook-0.3.17.crate) = 8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801 @@ -603,8 +643,8 @@ SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42 SIZE (rust/crates/siphasher-1.0.1.crate) = 10351 SHA256 (rust/crates/slab-0.4.9.crate) = 8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67 SIZE (rust/crates/slab-0.4.9.crate) = 17108 -SHA256 (rust/crates/smallvec-1.13.2.crate) = 3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67 -SIZE (rust/crates/smallvec-1.13.2.crate) = 35216 +SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 +SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 SHA256 (rust/crates/spin-0.9.8.crate) = 6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67 SIZE (rust/crates/spin-0.9.8.crate) = 38958 SHA256 (rust/crates/spki-0.7.3.crate) = d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d @@ -621,34 +661,30 @@ SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1 SIZE (rust/crates/static_assertions-1.1.0.crate) = 18480 SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f SIZE (rust/crates/strsim-0.11.1.crate) = 14266 -SHA256 (rust/crates/struct-patch-0.8.7.crate) = cde1b55ce4b9efe4b5c302dea2d0f1297a522963024e160a587a2670c24f3f04 -SIZE (rust/crates/struct-patch-0.8.7.crate) = 13998 -SHA256 (rust/crates/struct-patch-derive-0.8.7.crate) = ac94fea04bf721f57ed7f421e64d3a04858e15708d00e8aa814cad7507427503 -SIZE (rust/crates/struct-patch-derive-0.8.7.crate) = 8206 +SHA256 (rust/crates/struct-patch-0.10.4.crate) = 9e986d2cf6e819bd843319120453d837dfdfa31497c3fee4cefa614b2d182d8c +SIZE (rust/crates/struct-patch-0.10.4.crate) = 16669 +SHA256 (rust/crates/struct-patch-derive-0.10.4.crate) = 68c6387c1c7b53060605101b63d93edca618c6cf7ce61839f2ec2a527419fdb5 +SIZE (rust/crates/struct-patch-derive-0.10.4.crate) = 10860 SHA256 (rust/crates/strum-0.26.3.crate) = 8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06 SIZE (rust/crates/strum-0.26.3.crate) = 7237 SHA256 (rust/crates/strum_macros-0.26.4.crate) = 4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be SIZE (rust/crates/strum_macros-0.26.4.crate) = 27531 SHA256 (rust/crates/subtle-2.6.1.crate) = 13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292 SIZE (rust/crates/subtle-2.6.1.crate) = 14562 -SHA256 (rust/crates/syn-2.0.96.crate) = d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80 -SIZE (rust/crates/syn-2.0.96.crate) = 297497 +SHA256 (rust/crates/syn-2.0.100.crate) = b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0 +SIZE (rust/crates/syn-2.0.100.crate) = 297947 SHA256 (rust/crates/synstructure-0.13.1.crate) = c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971 SIZE (rust/crates/synstructure-0.13.1.crate) = 18327 -SHA256 (rust/crates/syntect-5.2.0.crate) = 874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1 -SIZE (rust/crates/syntect-5.2.0.crate) = 822671 +SHA256 (rust/crates/syntect-5.3.0.crate) = 656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925 +SIZE (rust/crates/syntect-5.3.0.crate) = 833348 SHA256 (rust/crates/sysinfo-0.33.1.crate) = 4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01 SIZE (rust/crates/sysinfo-0.33.1.crate) = 197268 -SHA256 (rust/crates/tempfile-3.15.0.crate) = 9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704 -SIZE (rust/crates/tempfile-3.15.0.crate) = 35693 -SHA256 (rust/crates/thiserror-1.0.69.crate) = b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52 -SIZE (rust/crates/thiserror-1.0.69.crate) = 22198 -SHA256 (rust/crates/thiserror-2.0.11.crate) = d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc -SIZE (rust/crates/thiserror-2.0.11.crate) = 28648 -SHA256 (rust/crates/thiserror-impl-1.0.69.crate) = 4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1 -SIZE (rust/crates/thiserror-impl-1.0.69.crate) = 18365 -SHA256 (rust/crates/thiserror-impl-2.0.11.crate) = 26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2 -SIZE (rust/crates/thiserror-impl-2.0.11.crate) = 21067 +SHA256 (rust/crates/tempfile-3.23.0.crate) = 2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16 +SIZE (rust/crates/tempfile-3.23.0.crate) = 43063 +SHA256 (rust/crates/thiserror-2.0.17.crate) = f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8 +SIZE (rust/crates/thiserror-2.0.17.crate) = 28857 +SHA256 (rust/crates/thiserror-impl-2.0.17.crate) = 3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913 +SIZE (rust/crates/thiserror-impl-2.0.17.crate) = 21344 SHA256 (rust/crates/thread_local-1.1.8.crate) = 8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c SIZE (rust/crates/thread_local-1.1.8.crate) = 13962 SHA256 (rust/crates/time-0.3.37.crate) = 35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21 @@ -665,8 +701,10 @@ SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865 SHA256 (rust/crates/tui-textarea-0.7.0.crate) = 0a5318dd619ed73c52a9417ad19046724effc1287fb75cdcc4eca1d6ac1acbae SIZE (rust/crates/tui-textarea-0.7.0.crate) = 67947 -SHA256 (rust/crates/two-face-0.4.0.crate) = 0ccd4843ea031c609fe9c16cae00e9657bad8a9f735a3cc2e420955d802b4268 -SIZE (rust/crates/two-face-0.4.0.crate) = 3197879 +SHA256 (rust/crates/two-face-0.4.4.crate) = 3d112cfd41c1387546416bcf49c4ae2a1fcacda0d42c9e97120e9798c90c0923 +SIZE (rust/crates/two-face-0.4.4.crate) = 3454955 +SHA256 (rust/crates/typeid-1.0.3.crate) = bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c +SIZE (rust/crates/typeid-1.0.3.crate) = 9006 SHA256 (rust/crates/typenum-1.17.0.crate) = 42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825 SIZE (rust/crates/typenum-1.17.0.crate) = 42849 SHA256 (rust/crates/uluru-3.1.0.crate) = 7c8a2469e56e6e5095c82ccd3afb98dad95f7af7929aab6d8ba8d6e0f73657da @@ -705,6 +743,8 @@ SHA256 (rust/crates/walkdir-2.5.0.crate) = 29790946404f91d9c5d06f9874efddea1dc06 SIZE (rust/crates/walkdir-2.5.0.crate) = 23951 SHA256 (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423 SIZE (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 28131 +SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 +SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 SHA256 (rust/crates/wasm-bindgen-0.2.99.crate) = a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396 SIZE (rust/crates/wasm-bindgen-0.2.99.crate) = 46136 SHA256 (rust/crates/wasm-bindgen-backend-0.2.99.crate) = 5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79 @@ -715,8 +755,8 @@ SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.99.crate) = 30d7a95b763d3c459 SIZE (rust/crates/wasm-bindgen-macro-support-0.2.99.crate) = 22800 SHA256 (rust/crates/wasm-bindgen-shared-0.2.99.crate) = 943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6 SIZE (rust/crates/wasm-bindgen-shared-0.2.99.crate) = 7773 -SHA256 (rust/crates/which-7.0.1.crate) = fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028 -SIZE (rust/crates/which-7.0.1.crate) = 18596 +SHA256 (rust/crates/which-8.0.0.crate) = d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d +SIZE (rust/crates/which-8.0.0.crate) = 26209 SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 @@ -735,52 +775,60 @@ SHA256 (rust/crates/windows-implement-0.57.0.crate) = 9107ddc059d5b6fbfbffdfa7a7 SIZE (rust/crates/windows-implement-0.57.0.crate) = 10470 SHA256 (rust/crates/windows-interface-0.57.0.crate) = 29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7 SIZE (rust/crates/windows-interface-0.57.0.crate) = 10931 +SHA256 (rust/crates/windows-link-0.2.1.crate) = f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 +SIZE (rust/crates/windows-link-0.2.1.crate) = 6133 SHA256 (rust/crates/windows-result-0.1.2.crate) = 5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8 SIZE (rust/crates/windows-result-0.1.2.crate) = 10601 -SHA256 (rust/crates/windows-sys-0.48.0.crate) = 677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9 -SIZE (rust/crates/windows-sys-0.48.0.crate) = 2628884 SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 -SHA256 (rust/crates/windows-targets-0.48.5.crate) = 9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c -SIZE (rust/crates/windows-targets-0.48.5.crate) = 6904 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-sys-0.61.2.crate) = ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc +SIZE (rust/crates/windows-sys-0.61.2.crate) = 2517186 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 -SHA256 (rust/crates/windows_aarch64_gnullvm-0.48.5.crate) = 2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8 -SIZE (rust/crates/windows_aarch64_gnullvm-0.48.5.crate) = 418492 +SHA256 (rust/crates/windows-targets-0.53.5.crate) = 4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3 +SIZE (rust/crates/windows-targets-0.53.5.crate) = 7126 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 -SHA256 (rust/crates/windows_aarch64_msvc-0.48.5.crate) = dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc -SIZE (rust/crates/windows_aarch64_msvc-0.48.5.crate) = 798483 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = 787748 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 -SHA256 (rust/crates/windows_i686_gnu-0.48.5.crate) = a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e -SIZE (rust/crates/windows_i686_gnu-0.48.5.crate) = 844891 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.1.crate) = b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006 +SIZE (rust/crates/windows_aarch64_msvc-0.53.1.crate) = 838009 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 +SHA256 (rust/crates/windows_i686_gnu-0.53.1.crate) = 960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3 +SIZE (rust/crates/windows_i686_gnu-0.53.1.crate) = 939775 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 -SHA256 (rust/crates/windows_i686_msvc-0.48.5.crate) = 8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406 -SIZE (rust/crates/windows_i686_msvc-0.48.5.crate) = 864300 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.1.crate) = fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c +SIZE (rust/crates/windows_i686_gnullvm-0.53.1.crate) = 857396 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 -SHA256 (rust/crates/windows_x86_64_gnu-0.48.5.crate) = 53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e -SIZE (rust/crates/windows_x86_64_gnu-0.48.5.crate) = 801619 +SHA256 (rust/crates/windows_i686_msvc-0.53.1.crate) = 1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2 +SIZE (rust/crates/windows_i686_msvc-0.53.1.crate) = 907688 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 -SHA256 (rust/crates/windows_x86_64_gnullvm-0.48.5.crate) = 0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc -SIZE (rust/crates/windows_x86_64_gnullvm-0.48.5.crate) = 418486 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499 +SIZE (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 903712 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 -SHA256 (rust/crates/windows_x86_64_msvc-0.48.5.crate) = ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538 -SIZE (rust/crates/windows_x86_64_msvc-0.48.5.crate) = 798412 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 787739 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 -SHA256 (rust/crates/winnow-0.6.22.crate) = 39281189af81c07ec09db316b302a3e67bf9bd7cbf6c820b50e35fee9c2fa980 -SIZE (rust/crates/winnow-0.6.22.crate) = 164867 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.1.crate) = d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650 +SIZE (rust/crates/windows_x86_64_msvc-0.53.1.crate) = 837950 +SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf +SIZE (rust/crates/winnow-0.7.13.crate) = 174454 SHA256 (rust/crates/winsafe-0.0.19.crate) = d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904 SIZE (rust/crates/winsafe-0.0.19.crate) = 492820 +SHA256 (rust/crates/wit-bindgen-0.46.0.crate) = f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59 +SIZE (rust/crates/wit-bindgen-0.46.0.crate) = 60508 SHA256 (rust/crates/write16-1.0.0.crate) = d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936 SIZE (rust/crates/write16-1.0.0.crate) = 7218 SHA256 (rust/crates/writeable-0.5.5.crate) = 1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51 @@ -799,11 +847,13 @@ SHA256 (rust/crates/zerofrom-0.1.5.crate) = cff3ee08c995dee1859d998dea82f7374f28 SIZE (rust/crates/zerofrom-0.1.5.crate) = 5091 SHA256 (rust/crates/zerofrom-derive-0.1.5.crate) = 595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808 SIZE (rust/crates/zerofrom-derive-0.1.5.crate) = 8285 -SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde -SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 +SHA256 (rust/crates/zeroize-1.8.2.crate) = b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0 +SIZE (rust/crates/zeroize-1.8.2.crate) = 20907 SHA256 (rust/crates/zerovec-0.10.4.crate) = aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079 SIZE (rust/crates/zerovec-0.10.4.crate) = 126398 SHA256 (rust/crates/zerovec-derive-0.10.3.crate) = 6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6 SIZE (rust/crates/zerovec-derive-0.10.3.crate) = 19438 -SHA256 (gitui-org-gitui-v0.27.0_GH0.tar.gz) = 55a85f4a3ce97712b618575aa80f3c15ea4004d554e8899669910d7fb4ff6e4b -SIZE (gitui-org-gitui-v0.27.0_GH0.tar.gz) = 34695215 +SHA256 (rust/crates/zlib-rs-0.5.2.crate) = 2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2 +SIZE (rust/crates/zlib-rs-0.5.2.crate) = 194342 +SHA256 (gitui-org-gitui-v0.28.0_GH0.tar.gz) = 3d7d1deef84b8cb3f59882b57b9a70d39ddd6491bd4539504d69b2b3924c044f +SIZE (gitui-org-gitui-v0.28.0_GH0.tar.gz) = 35102374 diff --git a/devel/gitui/files/patch-Cargo.lock b/devel/gitui/files/patch-Cargo.lock deleted file mode 100644 index bc5958f5fd7d..000000000000 --- a/devel/gitui/files/patch-Cargo.lock +++ /dev/null @@ -1,26 +0,0 @@ ---- Cargo.lock.orig 2025-01-15 04:20:00 UTC -+++ Cargo.lock -@@ -2481,15 +2481,6 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" - - [[package]] --name = "openssl-src" --version = "300.4.1+3.4.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c" --dependencies = [ -- "cc", --] -- --[[package]] - name = "openssl-sys" - version = "0.9.104" - source = "registry+https://github.com/rust-lang/crates.io-index" -@@ -2497,7 +2488,6 @@ dependencies = [ - dependencies = [ - "cc", - "libc", -- "openssl-src", - "pkg-config", - "vcpkg", - ] diff --git a/devel/gitui/files/patch-asyncgit_Cargo.toml b/devel/gitui/files/patch-asyncgit_Cargo.toml deleted file mode 100644 index 5365ae230259..000000000000 --- a/devel/gitui/files/patch-asyncgit_Cargo.toml +++ /dev/null @@ -1,11 +0,0 @@ ---- asyncgit/Cargo.toml.orig 2024-06-02 20:08:17 UTC -+++ asyncgit/Cargo.toml -@@ -23,7 +23,7 @@ log = "0.4" - # git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]} - # git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]} - # pinning to vendored openssl, using the git2 feature this gets lost with new resolver --openssl-sys = { version = '0.9', features = ["vendored"], optional = true } -+openssl-sys = { version = '0.9', optional = true } - rayon = "1.10" - rayon-core = "1.12" - scopetime = { path = "../scopetime", version = "0.1" } diff --git a/devel/glitter/Makefile b/devel/glitter/Makefile index 284cbf65f9bf..d7bae11315f7 100644 --- a/devel/glitter/Makefile +++ b/devel/glitter/Makefile @@ -1,7 +1,7 @@ PORTNAME= glitter DISTVERSIONPREFIX= v DISTVERSION= 1.6.6 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel PKGNAMESUFFIX= -git-tool diff --git a/devel/go-critic/Makefile b/devel/go-critic/Makefile index 1885d1da1107..33ca64728860 100644 --- a/devel/go-critic/Makefile +++ b/devel/go-critic/Makefile @@ -11,7 +11,7 @@ WWW= https://go-critic.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.24,modules +USES= go:1.24+,modules GO_MODULE= github.com/go-critic/go-critic GO_TARGET= ./cmd/go-critic \ ./cmd/go-critic-analysis diff --git a/devel/golangci-lint/Makefile b/devel/golangci-lint/Makefile index a88e2c8f2781..82f227b979b2 100644 --- a/devel/golangci-lint/Makefile +++ b/devel/golangci-lint/Makefile @@ -1,6 +1,6 @@ PORTNAME= golangci-lint DISTVERSIONPREFIX= v -DISTVERSION= 2.7.1 +DISTVERSION= 2.7.2 CATEGORIES= devel MAINTAINER= dutra@FreeBSD.org @@ -10,10 +10,10 @@ WWW= https://github.com/golangci/golangci-lint LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= gmake go:1.24,modules +USES= gmake go:1.24+,modules _BUILD_VERSION= ${DISTVERSION} -_BUILD_COMMIT= a4b55eb +_BUILD_COMMIT= 9f61b0f _BUILD_DATE= $$(date -u "+%Y-%m-%dT%H:%M:%SZ") GO_MODULE= github.com/${PORTNAME:S/-lint//}/${PORTNAME}/v2 diff --git a/devel/golangci-lint/distinfo b/devel/golangci-lint/distinfo index cfff1ca24456..0cfccc0754ff 100644 --- a/devel/golangci-lint/distinfo +++ b/devel/golangci-lint/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1765125769 -SHA256 (go/devel_golangci-lint/golangci-lint-v2.7.1/v2.7.1.mod) = e339d35ac9589d25cbcabeffb4bee25c841488efdafbaee490618b4252438489 -SIZE (go/devel_golangci-lint/golangci-lint-v2.7.1/v2.7.1.mod) = 9783 -SHA256 (go/devel_golangci-lint/golangci-lint-v2.7.1/v2.7.1.zip) = 9c63001cf813e8d24025d8e8a7383ea90050750266403847f7afa20d37b55cc8 -SIZE (go/devel_golangci-lint/golangci-lint-v2.7.1/v2.7.1.zip) = 1938512 +TIMESTAMP = 1765372577 +SHA256 (go/devel_golangci-lint/golangci-lint-v2.7.2/v2.7.2.mod) = 80d7c51f8f5cf9c1f598b2ef62ab3dab9c16fd922a568fb19b78e00f2ab43145 +SIZE (go/devel_golangci-lint/golangci-lint-v2.7.2/v2.7.2.mod) = 9852 +SHA256 (go/devel_golangci-lint/golangci-lint-v2.7.2/v2.7.2.zip) = 4bab6fedf8c25b6134484b1ebe09d6f8ed1019d1c0d42038f22cb221e0684d17 +SIZE (go/devel_golangci-lint/golangci-lint-v2.7.2/v2.7.2.zip) = 1938593 diff --git a/devel/gomigrate/Makefile b/devel/gomigrate/Makefile index f0b6f618991e..9d560035297f 100644 --- a/devel/gomigrate/Makefile +++ b/devel/gomigrate/Makefile @@ -11,10 +11,7 @@ WWW= https://github.com/golang-migrate/migrate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.23,modules - -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 +USES= go:modules CONFLICTS_INSTALL= migrate diff --git a/devel/gopls/Makefile b/devel/gopls/Makefile index 9c215c6c16ac..420d9bdc9a2f 100644 --- a/devel/gopls/Makefile +++ b/devel/gopls/Makefile @@ -11,7 +11,7 @@ WWW= https://pkg.go.dev/golang.org/x/tools/gopls LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.24,modules +USES= go:1.24+,modules GO_MODULE= golang.org/x/tools/gopls OPTIONS_DEFINE= DOCS diff --git a/devel/goreleaser/Makefile b/devel/goreleaser/Makefile index 6ccfc75a632c..3d17bf3e5d1b 100644 --- a/devel/goreleaser/Makefile +++ b/devel/goreleaser/Makefile @@ -10,7 +10,7 @@ WWW= https://goreleaser.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md -USES= go:1.25,modules +USES= go:1.25+,modules GO_MODULE= github.com/goreleaser/goreleaser/v2 GO_TARGET= .:goreleaser GO_BUILDFLAGS= -ldflags="-X main.version=${PKGVERSION} -X 'main.builtBy=FreeBSD ports' ${STRIP}" diff --git a/devel/grcov/Makefile b/devel/grcov/Makefile index acb013c84e88..2bea068b7ad3 100644 --- a/devel/grcov/Makefile +++ b/devel/grcov/Makefile @@ -1,7 +1,7 @@ PORTNAME= grcov DISTVERSIONPREFIX= v DISTVERSION= 0.10.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/grex/Makefile b/devel/grex/Makefile index 4d24bdfb80b6..2470e4ce7c75 100644 --- a/devel/grex/Makefile +++ b/devel/grex/Makefile @@ -1,6 +1,7 @@ PORTNAME= grex DISTVERSIONPREFIX= v DISTVERSION= 1.4.6 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= petteri.valkonen@iki.fi diff --git a/devel/hvm/Makefile b/devel/hvm/Makefile index 440e2c1b268b..0a3c8b7aec44 100644 --- a/devel/hvm/Makefile +++ b/devel/hvm/Makefile @@ -1,6 +1,6 @@ PORTNAME= hvm DISTVERSION= g20240821 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/interactive_rebase_tool/Makefile b/devel/interactive_rebase_tool/Makefile index 133a830a5559..6e5af2ad65f0 100644 --- a/devel/interactive_rebase_tool/Makefile +++ b/devel/interactive_rebase_tool/Makefile @@ -1,6 +1,6 @@ PORTNAME= interactive_rebase_tool DISTVERSION= 2.4.1 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel MAINTAINER= petteri.valkonen@iki.fi diff --git a/devel/janet-lsp/Makefile b/devel/janet-lsp/Makefile new file mode 100644 index 000000000000..4e6d46e92a30 --- /dev/null +++ b/devel/janet-lsp/Makefile @@ -0,0 +1,55 @@ +PORTNAME= janet-lsp +PORTVERSION= 0.0.11 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= dave@freedave.net +COMMENT= LSP for lang/janet +WWW= https://github.com/CFiggers/janet-lsp + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +# Technically jpm should depend on janet. +BUILD_DEPENDS= janet>=1.17.2:lang/janet \ + jpm>=1.1.0:lang/jpm + +USE_GITHUB= yes +GH_ACCOUNT= CFiggers + +# These are a little more recent than latest releases. But there is no lockfile +# so by default jpm(1) would use HEAD. There is also a conflict for cmd and the +# CFiggers version is more recent (and required by janet-lsp). +# Alphabetical order by project works but is coincidental and only because the +# sole depenedency is 'judge' on 'cmd'. +# +# This ordering is respected in do-build. +GH_TUPLE= CFiggers:cmd:b0a34d6:cmd \ + CFiggers:jayson:4f54041:jayson \ + ianthehenry:judge:3b92185:judge \ + janet-lang:spork:7b780cc:spork + +PLIST_FILES= bin/janet-lsp + +# `jpm install` does not actually install anyway. This does a build (with no +# dependency checking, which is why order matters) and install to the work +# "jpm_tree". Which is where all the dependencies and the project expect to find +# any of their build dependencies. +# +# Use GH_TUPLE project-hash as directory to avoid an unnecessary copy. +do-build: +.for dep in ${GH_TUPLE:C@^([^:]*):([^:]*):([^:]*):([^:]*)@\2-\3@} + cd ${WRKDIR}/${dep} && \ + ${LOCALBASE}/bin/jpm --tree=${WRKSRC}/jpm_tree "install" +.endfor + cd ${WRKSRC} && ${LOCALBASE}/bin/jpm --tree=${WRKSRC}/jpm_tree build + +do-install: + ${MKDIR} ${STAGEDIR}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/build/janet-lsp \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +do-test: + cd ${WRKSRC} && jpm test -l + +.include <bsd.port.mk> diff --git a/devel/janet-lsp/distinfo b/devel/janet-lsp/distinfo new file mode 100644 index 000000000000..aea5462c51fe --- /dev/null +++ b/devel/janet-lsp/distinfo @@ -0,0 +1,11 @@ +TIMESTAMP = 1765654720 +SHA256 (CFiggers-janet-lsp-v0.0.11_GH0.tar.gz) = 6dec1d75547cb99097415822605dc9d4bccd897bb1e206264b1280f38bbe824f +SIZE (CFiggers-janet-lsp-v0.0.11_GH0.tar.gz) = 33575 +SHA256 (CFiggers-cmd-b0a34d6_GH0.tar.gz) = e5ed4f760d2d0beb607e554ed928232d908643bf5d1051a3d8e12fe9160e561c +SIZE (CFiggers-cmd-b0a34d6_GH0.tar.gz) = 22306 +SHA256 (CFiggers-jayson-4f54041_GH0.tar.gz) = 2f88178be3f8cb44dad5cda8f140c85f010acb28820400998208ea3d292883c8 +SIZE (CFiggers-jayson-4f54041_GH0.tar.gz) = 3864843 +SHA256 (ianthehenry-judge-3b92185_GH0.tar.gz) = 904208053f675844d3e7cc18d21d893ecef356603df4ce1bdf6cd0933090163b +SIZE (ianthehenry-judge-3b92185_GH0.tar.gz) = 31792 +SHA256 (janet-lang-spork-7b780cc_GH0.tar.gz) = 34cb553a153fa328b8e792435a2194700c822935baf184e9864d4fdabf50c37a +SIZE (janet-lang-spork-7b780cc_GH0.tar.gz) = 267805 diff --git a/devel/janet-lsp/files/patch-project.janet b/devel/janet-lsp/files/patch-project.janet new file mode 100644 index 000000000000..90c646d2579e --- /dev/null +++ b/devel/janet-lsp/files/patch-project.janet @@ -0,0 +1,29 @@ +--- project.janet.orig 2025-09-05 00:00:02 UTC ++++ project.janet +@@ -7,16 +7,17 @@ + "https://github.com/ianthehenry/judge.git" + "https://github.com/CFiggers/cmd.git"]) + +-# (def cflags +-# (case (os/which) +-# :windows [] +-# ["-s"])) ++(def cflags ++ (case (os/which) ++ :windows [] ++ :freebsd [] ++ ["-s"])) + +-# (declare-executable +-# :name "janet-lsp" +-# :entry "src/main.janet" +-# :cflags cflags +-# :install true) ++(declare-executable ++ :name "janet-lsp" ++ :entry "src/main.janet" ++ :cflags cflags ++ :install true) + + (declare-archive + :name "janet-lsp" diff --git a/devel/janet-lsp/files/patch-src_main.janet b/devel/janet-lsp/files/patch-src_main.janet new file mode 100644 index 000000000000..fd9ea4e1dfd2 --- /dev/null +++ b/devel/janet-lsp/files/patch-src_main.janet @@ -0,0 +1,19 @@ +--- src/main.janet.orig 2025-12-15 16:13:59 UTC ++++ src/main.janet +@@ -16,12 +16,10 @@ + (use judge) + + (def version "0.0.11") +-(def commit +- (with [proc (os/spawn ["git" "rev-parse" "--short" "HEAD"] :xp {:out :pipe})] +- (let [[out] (ev/gather +- (ev/read (proc :out) :all) +- (os/proc-wait proc))] +- (if out (string/trimr out) "")))) ++ ++# `git rev-parse --short HEAD` is going to find the revision of the ports tree. ++# The tag should be enough so just supply a string for commit. ++(def commit "FreeBSD") + + (def jpm-defs (require "../libs/jpm-defs")) + diff --git a/devel/janet-lsp/pkg-descr b/devel/janet-lsp/pkg-descr new file mode 100644 index 000000000000..b5ade15bab58 --- /dev/null +++ b/devel/janet-lsp/pkg-descr @@ -0,0 +1,8 @@ +This is an LSP server for the Janet language, supporting: + +Current features: +* Auto-completion based on symbols in the Janet Standard Library and defined in + user code +* On-hover definition of symbols as returned by (doc ,symbol) +* Inline compiler errors +* Pop-up signature help diff --git a/devel/jenkins/Makefile b/devel/jenkins/Makefile index 989a067c8a5e..8a248bc604a0 100644 --- a/devel/jenkins/Makefile +++ b/devel/jenkins/Makefile @@ -1,5 +1,5 @@ PORTNAME= jenkins -PORTVERSION= 2.541 +PORTVERSION= 2.542 CATEGORIES= devel java MASTER_SITES= https://get.jenkins.io/war/${PORTVERSION}/ DISTNAME= jenkins diff --git a/devel/jenkins/distinfo b/devel/jenkins/distinfo index 00c47b4556f3..1a06fc1aad73 100644 --- a/devel/jenkins/distinfo +++ b/devel/jenkins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765469758 -SHA256 (jenkins/2.541/jenkins.war) = 5794313add16a97b205a1d1f5a3cdac25f5f294bdc22496deef9d5d016fca0ce -SIZE (jenkins/2.541/jenkins.war) = 96252746 +TIMESTAMP = 1765894373 +SHA256 (jenkins/2.542/jenkins.war) = b0a46c076e0bd3bfe76d6fd20f0de17316424f2b9b1528e96ae0ec16c4b19230 +SIZE (jenkins/2.542/jenkins.war) = 96412175 diff --git a/devel/jetbrains-restarter/Makefile b/devel/jetbrains-restarter/Makefile index eaa4ace64e15..275a6c6644ad 100644 --- a/devel/jetbrains-restarter/Makefile +++ b/devel/jetbrains-restarter/Makefile @@ -1,6 +1,6 @@ PORTNAME= restarter DISTVERSION= 2025.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= jetbrains- DIST_SUBDIR= jetbrains diff --git a/devel/jujutsu/Makefile b/devel/jujutsu/Makefile index 5506c036fa1b..187ba71c2ed1 100644 --- a/devel/jujutsu/Makefile +++ b/devel/jujutsu/Makefile @@ -1,7 +1,7 @@ PORTNAME= jujutsu DISTVERSIONPREFIX= v DISTVERSION= 0.35.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= se@FreeBSD.org diff --git a/devel/lazygit/Makefile b/devel/lazygit/Makefile index 53f881f7e050..9059f2c513b5 100644 --- a/devel/lazygit/Makefile +++ b/devel/lazygit/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/jesseduffield/lazygit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.24,modules +USES= go:1.24+,modules GO_MODULE= github.com/jesseduffield/lazygit diff --git a/devel/lefthook/Makefile b/devel/lefthook/Makefile index c81ed6cfd8d6..971119850258 100644 --- a/devel/lefthook/Makefile +++ b/devel/lefthook/Makefile @@ -12,7 +12,7 @@ WWW= https://evilmartians.github.io/lefthook/ \ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.25,modules +USES= go:1.25+,modules GO_MODULE= github.com/evilmartians/lefthook/v2 diff --git a/devel/libantlr4/Makefile b/devel/libantlr4/Makefile index c6c4261868d3..e15081f0eb81 100644 --- a/devel/libantlr4/Makefile +++ b/devel/libantlr4/Makefile @@ -1,11 +1,15 @@ PORTNAME= antlr4 DISTVERSION= 4.13.2 +PORTREVISION= 1 DISTVERSIONPREFIX= cpp-runtime- DISTVERSIONSUFFIX= -source CATEGORIES= devel MASTER_SITES= http://www.antlr.org/download/ PKGNAMEPREFIX= lib +PATCH_SITES+= https://github.com/antlr/antlr4/commit/ +PATCHFILES+= df4d68c09cdef73e023b8838a8bc7ca4dff1d1de.patch:-p3 + MAINTAINER= fluffy@FreeBSD.org COMMENT= ANother Tool for Language Recognition (C runtime) WWW= https://www.antlr.org/ diff --git a/devel/libantlr4/distinfo b/devel/libantlr4/distinfo index 1863017b6faf..0a1f0411f5cc 100644 --- a/devel/libantlr4/distinfo +++ b/devel/libantlr4/distinfo @@ -1,3 +1,5 @@ -TIMESTAMP = 1730830190 +TIMESTAMP = 1765551156 SHA256 (antlr4-cpp-runtime-4.13.2-source.zip) = 0ed13668906e86dbc0dcddf30fdee68c10203dea4e83852b4edb810821bee3c4 SIZE (antlr4-cpp-runtime-4.13.2-source.zip) = 3182150 +SHA256 (df4d68c09cdef73e023b8838a8bc7ca4dff1d1de.patch) = ce5695876ae674db2e0cba4c4bbf6845596e510b034075f8ba19c8bc9e4cc9da +SIZE (df4d68c09cdef73e023b8838a8bc7ca4dff1d1de.patch) = 830 diff --git a/devel/libdatadog/Makefile b/devel/libdatadog/Makefile index 1062a7cf0673..b1109daac99b 100644 --- a/devel/libdatadog/Makefile +++ b/devel/libdatadog/Makefile @@ -1,6 +1,7 @@ PORTNAME= libdatadog PORTVERSION= 24.0.2 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= sunpoet@FreeBSD.org diff --git a/devel/libhtp/Makefile b/devel/libhtp/Makefile index 1b70c9ffca2d..5709b7a83f0d 100644 --- a/devel/libhtp/Makefile +++ b/devel/libhtp/Makefile @@ -9,8 +9,8 @@ WWW= https://github.com/ironbee/libhtp LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= autoreconf cpe iconv:translit libtool localbase:ldflags pathfix \ - pkgconfig +USES= autoreconf cpe gettext-tools iconv:translit libtool \ + localbase:ldflags pathfix pkgconfig CPE_VENDOR= oisf USE_GITHUB= yes GH_ACCOUNT= OISF diff --git a/devel/librashader/Makefile b/devel/librashader/Makefile index 5691255374e3..cdab83922ba8 100644 --- a/devel/librashader/Makefile +++ b/devel/librashader/Makefile @@ -1,7 +1,7 @@ PORTNAME= librashader DISTVERSIONPREFIX= v DISTVERSION= 0.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= bsdcode@disroot.org diff --git a/devel/libtextstyle/pkg-plist b/devel/libtextstyle/pkg-plist index f39018b4e695..69dba9d615d1 100644 --- a/devel/libtextstyle/pkg-plist +++ b/devel/libtextstyle/pkg-plist @@ -5,7 +5,7 @@ include/textstyle/woe32dll.h lib/libtextstyle.a lib/libtextstyle.so lib/libtextstyle.so.0 -lib/libtextstyle.so.0.2.3 +lib/libtextstyle.so.0.2.6 %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_1.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_2.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_3.html diff --git a/devel/libtickit/Makefile b/devel/libtickit/Makefile index 3fb29f96dbf5..29b61cb5702b 100644 --- a/devel/libtickit/Makefile +++ b/devel/libtickit/Makefile @@ -15,9 +15,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libtermkey.so:devel/libtermkey \ libunibilium.so:devel/unibilium -USES= compiler:c11 gmake libtool:build ncurses pathfix pkgconfig +USES= compiler:c11 gmake libtool:build ncurses pkgconfig -PATHFIX_MAKEFILEIN= Makefile USE_LDCONFIG= yes post-install: diff --git a/devel/libwasmtime/Makefile b/devel/libwasmtime/Makefile index 281196059f01..f0467fc6da89 100644 --- a/devel/libwasmtime/Makefile +++ b/devel/libwasmtime/Makefile @@ -1,7 +1,7 @@ PORTNAME= lib${GH_PROJECT} PORTVERSION= 38.0.3 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= ports@FreeBSD.org diff --git a/devel/libxtend/Makefile b/devel/libxtend/Makefile index f3fddb2215cd..b15b7e6abe89 100644 --- a/devel/libxtend/Makefile +++ b/devel/libxtend/Makefile @@ -1,5 +1,6 @@ PORTNAME= libxtend -DISTVERSION= 0.2.1 +DISTVERSION= 0.2.1-10 +DISTVERSIONSUFFIX= -gc76bb25 CATEGORIES= devel MAINTAINER= jwb@FreeBSD.org diff --git a/devel/libxtend/distinfo b/devel/libxtend/distinfo index 7b1fb487abbd..35fc6afe95c1 100644 --- a/devel/libxtend/distinfo +++ b/devel/libxtend/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745680895 -SHA256 (outpaddling-libxtend-0.2.1_GH0.tar.gz) = cc8ced000e9ef2ab801bc540156bbe38518712d54931ffa7b344a6a95ea1571d -SIZE (outpaddling-libxtend-0.2.1_GH0.tar.gz) = 105018 +TIMESTAMP = 1765320305 +SHA256 (outpaddling-libxtend-0.2.1-10-gc76bb25_GH0.tar.gz) = caa6a38fa74ccc3c5cb2525dfd3a9f1750ba09bebe85760286cb11195843f78d +SIZE (outpaddling-libxtend-0.2.1-10-gc76bb25_GH0.tar.gz) = 105398 diff --git a/devel/log4cpp/Makefile b/devel/log4cpp/Makefile index 7e9f9c972f66..0eeb27f17c76 100644 --- a/devel/log4cpp/Makefile +++ b/devel/log4cpp/Makefile @@ -10,7 +10,7 @@ WWW= https://log4cpp.sourceforge.net/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -USES= autoreconf compiler:c++11-lang gmake libtool pathfix +USES= autoreconf compiler:c++11-lang gmake libtool CONFIGURE_ARGS= --disable-dot --disable-html-docs --disable-latex-docs GNU_CONFIGURE= yes diff --git a/devel/log4cxx/Makefile b/devel/log4cxx/Makefile index b1d5a593aae6..3ffc58fdb424 100644 --- a/devel/log4cxx/Makefile +++ b/devel/log4cxx/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libapr-1.so:devel/apr1 \ libfmt.so:devel/libfmt TEST_DEPENDS= zip:archivers/zip -USES= cmake:testing compiler:c++17-lang pathfix +USES= cmake:testing compiler:c++17-lang CMAKE_OFF= APACHE_MAINTAINER \ APR_STATIC \ diff --git a/devel/lstr/Makefile b/devel/lstr/Makefile index c9cf629f50f0..f41720126a4b 100644 --- a/devel/lstr/Makefile +++ b/devel/lstr/Makefile @@ -1,7 +1,7 @@ PORTNAME= lstr PORTVERSION= 0.2.1 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= sunpoet@FreeBSD.org diff --git a/devel/nextest/Makefile b/devel/nextest/Makefile index 83598b34a1a1..6c3a93928f92 100644 --- a/devel/nextest/Makefile +++ b/devel/nextest/Makefile @@ -1,6 +1,6 @@ PORTNAME= nextest DISTVERSIONPREFIX= cargo-nextest- -DISTVERSION= 0.9.109 +DISTVERSION= 0.9.115 PORTREVISION= 1 CATEGORIES= devel @@ -36,14 +36,12 @@ CARGO_CRATES= addr2line-0.24.2 \ anstyle-wincon-3.0.8 \ anyhow-1.0.98 \ async-scoped-0.9.0 \ - async-stream-0.3.6 \ - async-stream-impl-0.3.6 \ async-trait-0.1.88 \ atomic-waker-1.1.2 \ atomicwrites-0.4.4 \ autocfg-1.5.0 \ - axum-0.7.9 \ - axum-core-0.4.5 \ + axum-0.8.6 \ + axum-core-0.5.5 \ backtrace-0.3.75 \ backtrace-ext-0.2.1 \ base64-0.21.7 \ @@ -57,29 +55,29 @@ CARGO_CRATES= addr2line-0.24.2 \ bstr-1.12.1 \ bumpalo-3.19.0 \ byteorder-1.5.0 \ - bytes-1.10.1 \ + bytes-1.11.0 \ camino-1.2.1 \ camino-tempfile-1.4.1 \ camino-tempfile-ext-0.3.3 \ cargo-platform-0.3.0 \ - cargo_metadata-0.23.0 \ + cargo_metadata-0.23.1 \ cc-1.2.30 \ cfg-expr-0.20.3 \ cfg-if-1.0.4 \ cfg_aliases-0.2.1 \ chrono-0.4.42 \ - clap-4.5.50 \ - clap_builder-4.5.50 \ + clap-4.5.53 \ + clap_builder-4.5.53 \ clap_derive-4.5.49 \ clap_lex-0.7.4 \ color-eyre-0.6.5 \ color-spantrace-0.3.0 \ colorchoice-1.0.3 \ - config-0.15.18 \ + config-0.15.19 \ console-0.15.11 \ - console-0.16.0 \ - console-api-0.8.1 \ - console-subscriber-0.4.1 \ + console-0.16.1 \ + console-api-0.9.0 \ + console-subscriber-0.5.0 \ const-oid-0.9.6 \ convert_case-0.7.1 \ core-foundation-0.9.4 \ @@ -109,7 +107,7 @@ CARGO_CRATES= addr2line-0.24.2 \ document-features-0.2.11 \ dof-0.4.0 \ dtrace-parser-0.3.0 \ - duct-1.1.0 \ + duct-1.1.1 \ dunce-1.0.5 \ ed25519-2.2.3 \ ed25519-dalek-2.1.1 \ @@ -132,7 +130,7 @@ CARGO_CRATES= addr2line-0.24.2 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.2.2 \ - fs-err-3.1.3 \ + fs-err-3.2.0 \ future-queue-0.4.0 \ futures-0.3.31 \ futures-channel-0.3.31 \ @@ -153,9 +151,8 @@ CARGO_CRATES= addr2line-0.24.2 \ guppy-0.17.23 \ guppy-workspace-hack-0.1.0 \ h2-0.4.10 \ - hashbrown-0.12.3 \ hashbrown-0.15.5 \ - hashbrown-0.16.0 \ + hashbrown-0.16.1 \ hdrhistogram-7.5.4 \ heck-0.5.0 \ hex-0.4.3 \ @@ -174,7 +171,7 @@ CARGO_CRATES= addr2line-0.24.2 \ hyper-util-0.1.13 \ iana-time-zone-0.1.63 \ iana-time-zone-haiku-0.1.2 \ - iddqd-0.3.14 \ + iddqd-0.3.17 \ idna-1.1.0 \ idna_adapter-1.0.0 \ ignore-0.4.23 \ @@ -182,12 +179,11 @@ CARGO_CRATES= addr2line-0.24.2 \ include_dir_macros-0.7.4 \ indent_write-2.2.0 \ indenter-0.3.4 \ - indexmap-1.9.3 \ - indexmap-2.12.0 \ + indexmap-2.12.1 \ indicatif-0.17.11 \ - indicatif-0.18.2 \ + indicatif-0.18.3 \ indoc-2.0.7 \ - insta-1.43.2 \ + insta-1.44.3 \ ipnet-2.11.0 \ iri-string-0.7.8 \ is_ci-1.2.0 \ @@ -197,18 +193,18 @@ CARGO_CRATES= addr2line-0.24.2 \ jobserver-0.1.33 \ js-sys-0.3.77 \ lazy_static-1.5.0 \ - libc-0.2.177 \ + libc-0.2.178 \ libredox-0.1.3 \ libtest-mimic-0.8.1 \ linux-raw-sys-0.4.15 \ linux-raw-sys-0.9.4 \ litrs-0.4.1 \ lock_api-0.4.13 \ - log-0.4.28 \ + log-0.4.29 \ lru-slab-0.1.2 \ maplit-1.0.2 \ matchers-0.2.0 \ - matchit-0.7.3 \ + matchit-0.8.4 \ memchr-2.7.5 \ memmap2-0.9.8 \ miette-7.6.0 \ @@ -220,7 +216,7 @@ CARGO_CRATES= addr2line-0.24.2 \ mukti-metadata-0.3.0 \ native-tls-0.2.14 \ nested-0.1.1 \ - newtype-uuid-1.3.1 \ + newtype-uuid-1.3.2 \ nix-0.30.1 \ nom-7.1.3 \ num-traits-0.2.19 \ @@ -243,7 +239,7 @@ CARGO_CRATES= addr2line-0.24.2 \ pest_derive-2.8.3 \ pest_generator-2.8.3 \ pest_meta-2.8.3 \ - petgraph-0.8.2 \ + petgraph-0.8.3 \ pin-project-1.1.10 \ pin-project-internal-1.1.10 \ pin-project-lite-0.2.16 \ @@ -257,21 +253,20 @@ CARGO_CRATES= addr2line-0.24.2 \ pretty_assertions-1.4.1 \ proc-macro2-1.0.101 \ proptest-1.9.0 \ - prost-0.13.5 \ - prost-derive-0.13.5 \ - prost-types-0.13.5 \ + prost-0.14.1 \ + prost-derive-0.14.1 \ + prost-types-0.14.1 \ pulldown-cmark-0.13.0 \ quick-error-1.2.3 \ - quick-junit-0.5.1 \ + quick-junit-0.5.2 \ quick-xml-0.37.5 \ + quick-xml-0.38.3 \ quinn-0.11.8 \ quinn-proto-0.11.12 \ quinn-udp-0.5.12 \ quote-1.0.40 \ r-efi-5.3.0 \ - rand-0.8.5 \ rand-0.9.2 \ - rand_chacha-0.3.1 \ rand_chacha-0.9.0 \ rand_core-0.6.4 \ rand_core-0.9.3 \ @@ -283,7 +278,7 @@ CARGO_CRATES= addr2line-0.24.2 \ regex-syntax-0.8.8 \ reqwest-0.12.19 \ ring-0.17.14 \ - ron-0.8.1 \ + ron-0.12.0 \ rustc-demangle-0.1.25 \ rustc-hash-2.1.1 \ rustc_version-0.4.1 \ @@ -319,7 +314,7 @@ CARGO_CRATES= addr2line-0.24.2 \ sharded-slab-0.1.7 \ shared_child-1.1.1 \ shared_thread-0.2.0 \ - shell-words-1.1.0 \ + shell-words-1.1.1 \ shlex-1.3.0 \ sigchld-0.2.4 \ signal-hook-0.3.18 \ @@ -375,33 +370,34 @@ CARGO_CRATES= addr2line-0.24.2 \ toml_datetime-0.6.11 \ toml_datetime-0.7.3 \ toml_edit-0.22.27 \ - toml_edit-0.23.7 \ + toml_edit-0.23.9 \ toml_parser-1.0.4 \ toml_write-0.1.2 \ toml_writer-1.0.4 \ - tonic-0.12.3 \ - tower-0.4.13 \ + tonic-0.14.2 \ + tonic-prost-0.14.2 \ tower-0.5.2 \ tower-http-0.6.6 \ tower-layer-0.3.3 \ tower-service-0.3.3 \ - tracing-0.1.41 \ - tracing-attributes-0.1.30 \ - tracing-core-0.1.34 \ + tracing-0.1.43 \ + tracing-attributes-0.1.31 \ + tracing-core-0.1.35 \ tracing-error-0.2.1 \ tracing-log-0.2.0 \ - tracing-subscriber-0.3.20 \ + tracing-subscriber-0.3.22 \ try-lock-0.2.5 \ + typeid-1.0.3 \ typenum-1.18.0 \ ucd-trie-0.1.7 \ unarray-0.1.4 \ unicase-2.8.1 \ - unicode-ident-1.0.20 \ + unicode-ident-1.0.22 \ unicode-linebreak-0.1.5 \ - unicode-normalization-0.1.24 \ + unicode-normalization-0.1.25 \ unicode-segmentation-1.12.0 \ unicode-width-0.1.14 \ - unicode-width-0.2.0 \ + unicode-width-0.2.2 \ unit-prefix-0.5.1 \ untrusted-0.9.0 \ url-2.5.7 \ @@ -472,7 +468,7 @@ CARGO_CRATES= addr2line-0.24.2 \ windows_x86_64_gnullvm-0.53.0 \ windows_x86_64_msvc-0.52.6 \ windows_x86_64_msvc-0.53.0 \ - winnow-0.7.13 \ + winnow-0.7.14 \ wit-bindgen-rt-0.39.0 \ xattr-1.5.0 \ xxhash-rust-0.8.15 \ diff --git a/devel/nextest/distinfo b/devel/nextest/distinfo index 65b111eb9546..b36ab783a11b 100644 --- a/devel/nextest/distinfo +++ b/devel/nextest/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1761807223 +TIMESTAMP = 1765786722 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -25,10 +25,6 @@ SHA256 (rust/crates/anyhow-1.0.98.crate) = e16d2d3311acee920a9eb8d33b8cbc1787ce4 SIZE (rust/crates/anyhow-1.0.98.crate) = 53334 SHA256 (rust/crates/async-scoped-0.9.0.crate) = 4042078ea593edffc452eef14e99fdb2b120caa4ad9618bcdeabc4a023b98740 SIZE (rust/crates/async-scoped-0.9.0.crate) = 10352 -SHA256 (rust/crates/async-stream-0.3.6.crate) = 0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476 -SIZE (rust/crates/async-stream-0.3.6.crate) = 13823 -SHA256 (rust/crates/async-stream-impl-0.3.6.crate) = c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d -SIZE (rust/crates/async-stream-impl-0.3.6.crate) = 4312 SHA256 (rust/crates/async-trait-0.1.88.crate) = e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5 SIZE (rust/crates/async-trait-0.1.88.crate) = 32084 SHA256 (rust/crates/atomic-waker-1.1.2.crate) = 1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0 @@ -37,10 +33,10 @@ SHA256 (rust/crates/atomicwrites-0.4.4.crate) = 3ef1bb8d1b645fe38d51dfc331d720fb SIZE (rust/crates/atomicwrites-0.4.4.crate) = 6598 SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 -SHA256 (rust/crates/axum-0.7.9.crate) = edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f -SIZE (rust/crates/axum-0.7.9.crate) = 155272 -SHA256 (rust/crates/axum-core-0.4.5.crate) = 09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199 -SIZE (rust/crates/axum-core-0.4.5.crate) = 22183 +SHA256 (rust/crates/axum-0.8.6.crate) = 8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871 +SIZE (rust/crates/axum-0.8.6.crate) = 178581 +SHA256 (rust/crates/axum-core-0.5.5.crate) = 59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22 +SIZE (rust/crates/axum-core-0.5.5.crate) = 26919 SHA256 (rust/crates/backtrace-0.3.75.crate) = 6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002 SIZE (rust/crates/backtrace-0.3.75.crate) = 92665 SHA256 (rust/crates/backtrace-ext-0.2.1.crate) = 537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50 @@ -67,8 +63,8 @@ SHA256 (rust/crates/bumpalo-3.19.0.crate) = 46c5e41b57b8bba42a04676d81cb89e9ee8e SIZE (rust/crates/bumpalo-3.19.0.crate) = 96414 SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 -SHA256 (rust/crates/bytes-1.10.1.crate) = d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a -SIZE (rust/crates/bytes-1.10.1.crate) = 76779 +SHA256 (rust/crates/bytes-1.11.0.crate) = b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3 +SIZE (rust/crates/bytes-1.11.0.crate) = 78391 SHA256 (rust/crates/camino-1.2.1.crate) = 276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609 SIZE (rust/crates/camino-1.2.1.crate) = 41364 SHA256 (rust/crates/camino-tempfile-1.4.1.crate) = 64308c4c82a5c38679945ddf88738dc1483dcc563bbb5780755ae9f8497d2b20 @@ -77,8 +73,8 @@ SHA256 (rust/crates/camino-tempfile-ext-0.3.3.crate) = a8c236e531d024b1524669ee2 SIZE (rust/crates/camino-tempfile-ext-0.3.3.crate) = 19167 SHA256 (rust/crates/cargo-platform-0.3.0.crate) = 8abf5d501fd757c2d2ee78d0cc40f606e92e3a63544420316565556ed28485e2 SIZE (rust/crates/cargo-platform-0.3.0.crate) = 13252 -SHA256 (rust/crates/cargo_metadata-0.23.0.crate) = 981a6f317983eec002839b90fae7411a85621410ae591a9cab2ecf5cb5744873 -SIZE (rust/crates/cargo_metadata-0.23.0.crate) = 30522 +SHA256 (rust/crates/cargo_metadata-0.23.1.crate) = ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9 +SIZE (rust/crates/cargo_metadata-0.23.1.crate) = 30497 SHA256 (rust/crates/cc-1.2.30.crate) = deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7 SIZE (rust/crates/cc-1.2.30.crate) = 108550 SHA256 (rust/crates/cfg-expr-0.20.3.crate) = 1a2c5f3bf25ec225351aa1c8e230d04d880d3bd89dea133537dafad4ae291e5c @@ -89,10 +85,10 @@ SHA256 (rust/crates/cfg_aliases-0.2.1.crate) = 613afe47fcd5fac7ccf1db93babcb082c SIZE (rust/crates/cfg_aliases-0.2.1.crate) = 6355 SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 SIZE (rust/crates/chrono-0.4.42.crate) = 238174 -SHA256 (rust/crates/clap-4.5.50.crate) = 0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623 -SIZE (rust/crates/clap-4.5.50.crate) = 62030 -SHA256 (rust/crates/clap_builder-4.5.50.crate) = 0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0 -SIZE (rust/crates/clap_builder-4.5.50.crate) = 171137 +SHA256 (rust/crates/clap-4.5.53.crate) = c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8 +SIZE (rust/crates/clap-4.5.53.crate) = 62036 +SHA256 (rust/crates/clap_builder-4.5.53.crate) = d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00 +SIZE (rust/crates/clap_builder-4.5.53.crate) = 170811 SHA256 (rust/crates/clap_derive-4.5.49.crate) = 2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671 SIZE (rust/crates/clap_derive-4.5.49.crate) = 33559 SHA256 (rust/crates/clap_lex-0.7.4.crate) = f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6 @@ -103,16 +99,16 @@ SHA256 (rust/crates/color-spantrace-0.3.0.crate) = b8b88ea9df13354b55bc7234ebcce SIZE (rust/crates/color-spantrace-0.3.0.crate) = 12884 SHA256 (rust/crates/colorchoice-1.0.3.crate) = 5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990 SIZE (rust/crates/colorchoice-1.0.3.crate) = 7923 -SHA256 (rust/crates/config-0.15.18.crate) = 180e549344080374f9b32ed41bf3b6b57885ff6a289367b3dbc10eea8acc1918 -SIZE (rust/crates/config-0.15.18.crate) = 59347 +SHA256 (rust/crates/config-0.15.19.crate) = b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6 +SIZE (rust/crates/config-0.15.19.crate) = 57567 SHA256 (rust/crates/console-0.15.11.crate) = 054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8 SIZE (rust/crates/console-0.15.11.crate) = 37822 -SHA256 (rust/crates/console-0.16.0.crate) = 2e09ced7ebbccb63b4c65413d821f2e00ce54c5ca4514ddc6b3c892fdbcbc69d -SIZE (rust/crates/console-0.16.0.crate) = 39107 -SHA256 (rust/crates/console-api-0.8.1.crate) = 8030735ecb0d128428b64cd379809817e620a40e5001c54465b99ec5feec2857 -SIZE (rust/crates/console-api-0.8.1.crate) = 33145 -SHA256 (rust/crates/console-subscriber-0.4.1.crate) = 6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01 -SIZE (rust/crates/console-subscriber-0.4.1.crate) = 125969 +SHA256 (rust/crates/console-0.16.1.crate) = b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4 +SIZE (rust/crates/console-0.16.1.crate) = 39129 +SHA256 (rust/crates/console-api-0.9.0.crate) = e8599749b6667e2f0c910c1d0dff6901163ff698a52d5a39720f61b5be4b20d3 +SIZE (rust/crates/console-api-0.9.0.crate) = 41126 +SHA256 (rust/crates/console-subscriber-0.5.0.crate) = fb4915b7d8dd960457a1b6c380114c2944f728e7c65294ab247ae6b6f1f37592 +SIZE (rust/crates/console-subscriber-0.5.0.crate) = 127350 SHA256 (rust/crates/const-oid-0.9.6.crate) = c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8 SIZE (rust/crates/const-oid-0.9.6.crate) = 45382 SHA256 (rust/crates/convert_case-0.7.1.crate) = bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7 @@ -171,8 +167,8 @@ SHA256 (rust/crates/dof-0.4.0.crate) = 0ed9b77e3c2a83995eedff2fbf992eef44c9f319b SIZE (rust/crates/dof-0.4.0.crate) = 13905 SHA256 (rust/crates/dtrace-parser-0.3.0.crate) = dc09b90bda5770641457f1c0a42c8203c48f5a3d9799dcf1bafbd84e30ccf080 SIZE (rust/crates/dtrace-parser-0.3.0.crate) = 9569 -SHA256 (rust/crates/duct-1.1.0.crate) = d7478638a31d1f1f3d6c9f5e57c76b906a04ac4879d6fd0fb6245bc88f73fd0b -SIZE (rust/crates/duct-1.1.0.crate) = 35093 +SHA256 (rust/crates/duct-1.1.1.crate) = 7e66e9c0c03d094e1a0ba1be130b849034aa80c3a2ab8ee94316bc809f3fa684 +SIZE (rust/crates/duct-1.1.1.crate) = 37041 SHA256 (rust/crates/dunce-1.0.5.crate) = 92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813 SIZE (rust/crates/dunce-1.0.5.crate) = 8244 SHA256 (rust/crates/ed25519-2.2.3.crate) = 115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53 @@ -217,8 +213,8 @@ SHA256 (rust/crates/foreign-types-shared-0.1.1.crate) = 00b0228411908ca8685dba7f SIZE (rust/crates/foreign-types-shared-0.1.1.crate) = 5672 SHA256 (rust/crates/form_urlencoded-1.2.2.crate) = cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf SIZE (rust/crates/form_urlencoded-1.2.2.crate) = 9347 -SHA256 (rust/crates/fs-err-3.1.3.crate) = 6ad492b2cf1d89d568a43508ab24f98501fe03f2f31c01e1d0fe7366a71745d2 -SIZE (rust/crates/fs-err-3.1.3.crate) = 24297 +SHA256 (rust/crates/fs-err-3.2.0.crate) = 62d91fd049c123429b018c47887d3f75a265540dd3c30ba9cb7bae9197edb03a +SIZE (rust/crates/fs-err-3.2.0.crate) = 26521 SHA256 (rust/crates/future-queue-0.4.0.crate) = 47cdf4a7eef4808ffa1e5c47dbf37124dfe33a7acc34e8568c5d5359b365a8cb SIZE (rust/crates/future-queue-0.4.0.crate) = 31187 SHA256 (rust/crates/futures-0.3.31.crate) = 65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876 @@ -259,12 +255,10 @@ SHA256 (rust/crates/guppy-workspace-hack-0.1.0.crate) = 92620684d99f750bae383ecb SIZE (rust/crates/guppy-workspace-hack-0.1.0.crate) = 1031 SHA256 (rust/crates/h2-0.4.10.crate) = a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5 SIZE (rust/crates/h2-0.4.10.crate) = 174800 -SHA256 (rust/crates/hashbrown-0.12.3.crate) = 8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888 -SIZE (rust/crates/hashbrown-0.12.3.crate) = 102968 SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 -SHA256 (rust/crates/hashbrown-0.16.0.crate) = 5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d -SIZE (rust/crates/hashbrown-0.16.0.crate) = 141708 +SHA256 (rust/crates/hashbrown-0.16.1.crate) = 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 +SIZE (rust/crates/hashbrown-0.16.1.crate) = 147785 SHA256 (rust/crates/hdrhistogram-7.5.4.crate) = 765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d SIZE (rust/crates/hdrhistogram-7.5.4.crate) = 319746 SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea @@ -301,8 +295,8 @@ SHA256 (rust/crates/iana-time-zone-0.1.63.crate) = b0c919e5debc312ad217002b8048a SIZE (rust/crates/iana-time-zone-0.1.63.crate) = 32919 SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f SIZE (rust/crates/iana-time-zone-haiku-0.1.2.crate) = 7185 -SHA256 (rust/crates/iddqd-0.3.14.crate) = bac5efd33e0c5eb0ac45cbd210541a214dac576896ca97ba08e16e3b1079cdd8 -SIZE (rust/crates/iddqd-0.3.14.crate) = 112432 +SHA256 (rust/crates/iddqd-0.3.17.crate) = 6b215e67ed1d1a4b1702acd787c487d16e4c977c5dcbcc4587bdb5ea26b6ce06 +SIZE (rust/crates/iddqd-0.3.17.crate) = 136631 SHA256 (rust/crates/idna-1.1.0.crate) = 3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de SIZE (rust/crates/idna-1.1.0.crate) = 148747 SHA256 (rust/crates/idna_adapter-1.0.0.crate) = cfdf4f5d937a025381f5ab13624b1c5f51414bfe5c9885663226eae8d6d39560 @@ -317,18 +311,16 @@ SHA256 (rust/crates/indent_write-2.2.0.crate) = 0cfe9645a18782869361d9c8732246be SIZE (rust/crates/indent_write-2.2.0.crate) = 11090 SHA256 (rust/crates/indenter-0.3.4.crate) = 964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5 SIZE (rust/crates/indenter-0.3.4.crate) = 11101 -SHA256 (rust/crates/indexmap-1.9.3.crate) = bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99 -SIZE (rust/crates/indexmap-1.9.3.crate) = 54653 -SHA256 (rust/crates/indexmap-2.12.0.crate) = 6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f -SIZE (rust/crates/indexmap-2.12.0.crate) = 100446 +SHA256 (rust/crates/indexmap-2.12.1.crate) = 0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2 +SIZE (rust/crates/indexmap-2.12.1.crate) = 100184 SHA256 (rust/crates/indicatif-0.17.11.crate) = 183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235 SIZE (rust/crates/indicatif-0.17.11.crate) = 66577 -SHA256 (rust/crates/indicatif-0.18.2.crate) = ade6dfcba0dfb62ad59e59e7241ec8912af34fd29e0e743e3db992bd278e8b65 -SIZE (rust/crates/indicatif-0.18.2.crate) = 67401 +SHA256 (rust/crates/indicatif-0.18.3.crate) = 9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88 +SIZE (rust/crates/indicatif-0.18.3.crate) = 66504 SHA256 (rust/crates/indoc-2.0.7.crate) = 79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706 SIZE (rust/crates/indoc-2.0.7.crate) = 17184 -SHA256 (rust/crates/insta-1.43.2.crate) = 46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0 -SIZE (rust/crates/insta-1.43.2.crate) = 102183 +SHA256 (rust/crates/insta-1.44.3.crate) = b5c943d4415edd8153251b6f197de5eb1640e56d84e8d9159bea190421c73698 +SIZE (rust/crates/insta-1.44.3.crate) = 104449 SHA256 (rust/crates/ipnet-2.11.0.crate) = 469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130 SIZE (rust/crates/ipnet-2.11.0.crate) = 29718 SHA256 (rust/crates/iri-string-0.7.8.crate) = dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2 @@ -347,8 +339,8 @@ SHA256 (rust/crates/js-sys-0.3.77.crate) = 1cfaf33c695fc6e08064efbc1f72ec9374296 SIZE (rust/crates/js-sys-0.3.77.crate) = 55538 SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 -SHA256 (rust/crates/libc-0.2.177.crate) = 2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976 -SIZE (rust/crates/libc-0.2.177.crate) = 792045 +SHA256 (rust/crates/libc-0.2.178.crate) = 37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091 +SIZE (rust/crates/libc-0.2.178.crate) = 783720 SHA256 (rust/crates/libredox-0.1.3.crate) = c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d SIZE (rust/crates/libredox-0.1.3.crate) = 6068 SHA256 (rust/crates/libtest-mimic-0.8.1.crate) = 5297962ef19edda4ce33aaa484386e0a5b3d7f2f4e037cbeee00503ef6b29d33 @@ -361,16 +353,16 @@ SHA256 (rust/crates/litrs-0.4.1.crate) = b4ce301924b7887e9d637144fdade93f9dfff9b SIZE (rust/crates/litrs-0.4.1.crate) = 42603 SHA256 (rust/crates/lock_api-0.4.13.crate) = 96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765 SIZE (rust/crates/lock_api-0.4.13.crate) = 28565 -SHA256 (rust/crates/log-0.4.28.crate) = 34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432 -SIZE (rust/crates/log-0.4.28.crate) = 51131 +SHA256 (rust/crates/log-0.4.29.crate) = 5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897 +SIZE (rust/crates/log-0.4.29.crate) = 51515 SHA256 (rust/crates/lru-slab-0.1.2.crate) = 112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154 SIZE (rust/crates/lru-slab-0.1.2.crate) = 9090 SHA256 (rust/crates/maplit-1.0.2.crate) = 3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d SIZE (rust/crates/maplit-1.0.2.crate) = 8871 SHA256 (rust/crates/matchers-0.2.0.crate) = d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9 SIZE (rust/crates/matchers-0.2.0.crate) = 7075 -SHA256 (rust/crates/matchit-0.7.3.crate) = 0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94 -SIZE (rust/crates/matchit-0.7.3.crate) = 30372 +SHA256 (rust/crates/matchit-0.8.4.crate) = 47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3 +SIZE (rust/crates/matchit-0.8.4.crate) = 33986 SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 SIZE (rust/crates/memchr-2.7.5.crate) = 97603 SHA256 (rust/crates/memmap2-0.9.8.crate) = 843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7 @@ -393,8 +385,8 @@ SHA256 (rust/crates/native-tls-0.2.14.crate) = 87de3442987e9dbec73158d5c715e7ad9 SIZE (rust/crates/native-tls-0.2.14.crate) = 29385 SHA256 (rust/crates/nested-0.1.1.crate) = ca2b420f638f07fe83056b55ea190bb815f609ec5a35e7017884a10f78839c9e SIZE (rust/crates/nested-0.1.1.crate) = 6191 -SHA256 (rust/crates/newtype-uuid-1.3.1.crate) = 74d1216f62e63be5fb25a9ecd1e2b37b1556a9b8c02f4831770f5d01df85c226 -SIZE (rust/crates/newtype-uuid-1.3.1.crate) = 19484 +SHA256 (rust/crates/newtype-uuid-1.3.2.crate) = 5c012d14ef788ab066a347d19e3dda699916c92293b05b85ba2c76b8c82d2830 +SIZE (rust/crates/newtype-uuid-1.3.2.crate) = 20681 SHA256 (rust/crates/nix-0.30.1.crate) = 74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6 SIZE (rust/crates/nix-0.30.1.crate) = 342015 SHA256 (rust/crates/nom-7.1.3.crate) = d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a @@ -439,8 +431,8 @@ SHA256 (rust/crates/pest_generator-2.8.3.crate) = 49b401d98f5757ebe97a26085998d6 SIZE (rust/crates/pest_generator-2.8.3.crate) = 43010 SHA256 (rust/crates/pest_meta-2.8.3.crate) = 72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a SIZE (rust/crates/pest_meta-2.8.3.crate) = 67289 -SHA256 (rust/crates/petgraph-0.8.2.crate) = 54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca -SIZE (rust/crates/petgraph-0.8.2.crate) = 780998 +SHA256 (rust/crates/petgraph-0.8.3.crate) = 8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455 +SIZE (rust/crates/petgraph-0.8.3.crate) = 807555 SHA256 (rust/crates/pin-project-1.1.10.crate) = 677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a SIZE (rust/crates/pin-project-1.1.10.crate) = 56348 SHA256 (rust/crates/pin-project-internal-1.1.10.crate) = 6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861 @@ -467,20 +459,22 @@ SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f3 SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 SHA256 (rust/crates/proptest-1.9.0.crate) = bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40 SIZE (rust/crates/proptest-1.9.0.crate) = 205346 -SHA256 (rust/crates/prost-0.13.5.crate) = 2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5 -SIZE (rust/crates/prost-0.13.5.crate) = 32469 -SHA256 (rust/crates/prost-derive-0.13.5.crate) = 8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d -SIZE (rust/crates/prost-derive-0.13.5.crate) = 20600 -SHA256 (rust/crates/prost-types-0.13.5.crate) = 52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16 -SIZE (rust/crates/prost-types-0.13.5.crate) = 49145 +SHA256 (rust/crates/prost-0.14.1.crate) = 7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d +SIZE (rust/crates/prost-0.14.1.crate) = 32444 +SHA256 (rust/crates/prost-derive-0.14.1.crate) = 9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425 +SIZE (rust/crates/prost-derive-0.14.1.crate) = 20626 +SHA256 (rust/crates/prost-types-0.14.1.crate) = b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72 +SIZE (rust/crates/prost-types-0.14.1.crate) = 49534 SHA256 (rust/crates/pulldown-cmark-0.13.0.crate) = 1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0 SIZE (rust/crates/pulldown-cmark-0.13.0.crate) = 154023 SHA256 (rust/crates/quick-error-1.2.3.crate) = a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0 SIZE (rust/crates/quick-error-1.2.3.crate) = 15066 -SHA256 (rust/crates/quick-junit-0.5.1.crate) = 3ed1a693391a16317257103ad06a88c6529ac640846021da7c435a06fffdacd7 -SIZE (rust/crates/quick-junit-0.5.1.crate) = 21088 +SHA256 (rust/crates/quick-junit-0.5.2.crate) = 6ee9342d671fae8d66b3ae9fd7a9714dfd089c04d2a8b1ec0436ef77aee15e5f +SIZE (rust/crates/quick-junit-0.5.2.crate) = 46417 SHA256 (rust/crates/quick-xml-0.37.5.crate) = 331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb SIZE (rust/crates/quick-xml-0.37.5.crate) = 190481 +SHA256 (rust/crates/quick-xml-0.38.3.crate) = 42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89 +SIZE (rust/crates/quick-xml-0.38.3.crate) = 204498 SHA256 (rust/crates/quinn-0.11.8.crate) = 626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8 SIZE (rust/crates/quinn-0.11.8.crate) = 79949 SHA256 (rust/crates/quinn-proto-0.11.12.crate) = 49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e @@ -491,12 +485,8 @@ SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae SIZE (rust/crates/quote-1.0.40.crate) = 31063 SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 -SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 -SIZE (rust/crates/rand-0.8.5.crate) = 87113 SHA256 (rust/crates/rand-0.9.2.crate) = 6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1 SIZE (rust/crates/rand-0.9.2.crate) = 99930 -SHA256 (rust/crates/rand_chacha-0.3.1.crate) = e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88 -SIZE (rust/crates/rand_chacha-0.3.1.crate) = 15251 SHA256 (rust/crates/rand_chacha-0.9.0.crate) = d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb SIZE (rust/crates/rand_chacha-0.9.0.crate) = 18258 SHA256 (rust/crates/rand_core-0.6.4.crate) = ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c @@ -519,8 +509,8 @@ SHA256 (rust/crates/reqwest-0.12.19.crate) = a2f8e5513d63f2e5b386eb5106dc67eaf3f SIZE (rust/crates/reqwest-0.12.19.crate) = 198998 SHA256 (rust/crates/ring-0.17.14.crate) = a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7 SIZE (rust/crates/ring-0.17.14.crate) = 1502610 -SHA256 (rust/crates/ron-0.8.1.crate) = b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94 -SIZE (rust/crates/ron-0.8.1.crate) = 63251 +SHA256 (rust/crates/ron-0.12.0.crate) = fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32 +SIZE (rust/crates/ron-0.12.0.crate) = 119892 SHA256 (rust/crates/rustc-demangle-0.1.25.crate) = 989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f SIZE (rust/crates/rustc-demangle-0.1.25.crate) = 29590 SHA256 (rust/crates/rustc-hash-2.1.1.crate) = 357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d @@ -591,8 +581,8 @@ SHA256 (rust/crates/shared_child-1.1.1.crate) = 1e362d9935bc50f019969e2f9ecd6678 SIZE (rust/crates/shared_child-1.1.1.crate) = 14191 SHA256 (rust/crates/shared_thread-0.2.0.crate) = 52b86057fcb5423f5018e331ac04623e32d6b5ce85e33300f92c79a1973928b0 SIZE (rust/crates/shared_thread-0.2.0.crate) = 6364 -SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde -SIZE (rust/crates/shell-words-1.1.0.crate) = 9871 +SHA256 (rust/crates/shell-words-1.1.1.crate) = dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77 +SIZE (rust/crates/shell-words-1.1.1.crate) = 10012 SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 SIZE (rust/crates/shlex-1.3.0.crate) = 18713 SHA256 (rust/crates/sigchld-0.2.4.crate) = 47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1 @@ -703,18 +693,18 @@ SHA256 (rust/crates/toml_datetime-0.7.3.crate) = f2cdb639ebbc97961c51720f858597f SIZE (rust/crates/toml_datetime-0.7.3.crate) = 17827 SHA256 (rust/crates/toml_edit-0.22.27.crate) = 41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a SIZE (rust/crates/toml_edit-0.22.27.crate) = 78602 -SHA256 (rust/crates/toml_edit-0.23.7.crate) = 6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d -SIZE (rust/crates/toml_edit-0.23.7.crate) = 65946 +SHA256 (rust/crates/toml_edit-0.23.9.crate) = 5d7cbc3b4b49633d57a0509303158ca50de80ae32c265093b24c414705807832 +SIZE (rust/crates/toml_edit-0.23.9.crate) = 65870 SHA256 (rust/crates/toml_parser-1.0.4.crate) = c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e SIZE (rust/crates/toml_parser-1.0.4.crate) = 34978 SHA256 (rust/crates/toml_write-0.1.2.crate) = 5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801 SIZE (rust/crates/toml_write-0.1.2.crate) = 15660 SHA256 (rust/crates/toml_writer-1.0.4.crate) = df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2 SIZE (rust/crates/toml_writer-1.0.4.crate) = 17146 -SHA256 (rust/crates/tonic-0.12.3.crate) = 877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52 -SIZE (rust/crates/tonic-0.12.3.crate) = 99380 -SHA256 (rust/crates/tower-0.4.13.crate) = b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c -SIZE (rust/crates/tower-0.4.13.crate) = 106906 +SHA256 (rust/crates/tonic-0.14.2.crate) = eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203 +SIZE (rust/crates/tonic-0.14.2.crate) = 108054 +SHA256 (rust/crates/tonic-prost-0.14.2.crate) = 66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67 +SIZE (rust/crates/tonic-prost-0.14.2.crate) = 8266 SHA256 (rust/crates/tower-0.5.2.crate) = d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9 SIZE (rust/crates/tower-0.5.2.crate) = 109417 SHA256 (rust/crates/tower-http-0.6.6.crate) = adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2 @@ -723,20 +713,22 @@ SHA256 (rust/crates/tower-layer-0.3.3.crate) = 121c2a6cda46980bb0fcd1647ffaf6cd3 SIZE (rust/crates/tower-layer-0.3.3.crate) = 6180 SHA256 (rust/crates/tower-service-0.3.3.crate) = 8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3 SIZE (rust/crates/tower-service-0.3.3.crate) = 6950 -SHA256 (rust/crates/tracing-0.1.41.crate) = 784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0 -SIZE (rust/crates/tracing-0.1.41.crate) = 82448 -SHA256 (rust/crates/tracing-attributes-0.1.30.crate) = 81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903 -SIZE (rust/crates/tracing-attributes-0.1.30.crate) = 39142 -SHA256 (rust/crates/tracing-core-0.1.34.crate) = b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678 -SIZE (rust/crates/tracing-core-0.1.34.crate) = 63760 +SHA256 (rust/crates/tracing-0.1.43.crate) = 2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647 +SIZE (rust/crates/tracing-0.1.43.crate) = 90033 +SHA256 (rust/crates/tracing-attributes-0.1.31.crate) = 7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da +SIZE (rust/crates/tracing-attributes-0.1.31.crate) = 39733 +SHA256 (rust/crates/tracing-core-0.1.35.crate) = 7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c +SIZE (rust/crates/tracing-core-0.1.35.crate) = 63837 SHA256 (rust/crates/tracing-error-0.2.1.crate) = 8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db SIZE (rust/crates/tracing-error-0.2.1.crate) = 14135 SHA256 (rust/crates/tracing-log-0.2.0.crate) = ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3 SIZE (rust/crates/tracing-log-0.2.0.crate) = 17561 -SHA256 (rust/crates/tracing-subscriber-0.3.20.crate) = 2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5 -SIZE (rust/crates/tracing-subscriber-0.3.20.crate) = 212274 +SHA256 (rust/crates/tracing-subscriber-0.3.22.crate) = 2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e +SIZE (rust/crates/tracing-subscriber-0.3.22.crate) = 212851 SHA256 (rust/crates/try-lock-0.2.5.crate) = e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b SIZE (rust/crates/try-lock-0.2.5.crate) = 4314 +SHA256 (rust/crates/typeid-1.0.3.crate) = bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c +SIZE (rust/crates/typeid-1.0.3.crate) = 9006 SHA256 (rust/crates/typenum-1.18.0.crate) = 1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f SIZE (rust/crates/typenum-1.18.0.crate) = 74871 SHA256 (rust/crates/ucd-trie-0.1.7.crate) = 2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971 @@ -745,18 +737,18 @@ SHA256 (rust/crates/unarray-0.1.4.crate) = eaea85b334db583fe3274d12b4cd1880032be SIZE (rust/crates/unarray-0.1.4.crate) = 12895 SHA256 (rust/crates/unicase-2.8.1.crate) = 75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539 SIZE (rust/crates/unicase-2.8.1.crate) = 24088 -SHA256 (rust/crates/unicode-ident-1.0.20.crate) = 462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06 -SIZE (rust/crates/unicode-ident-1.0.20.crate) = 47416 +SHA256 (rust/crates/unicode-ident-1.0.22.crate) = 9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5 +SIZE (rust/crates/unicode-ident-1.0.22.crate) = 47919 SHA256 (rust/crates/unicode-linebreak-0.1.5.crate) = 3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f SIZE (rust/crates/unicode-linebreak-0.1.5.crate) = 15324 -SHA256 (rust/crates/unicode-normalization-0.1.24.crate) = 5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956 -SIZE (rust/crates/unicode-normalization-0.1.24.crate) = 126536 +SHA256 (rust/crates/unicode-normalization-0.1.25.crate) = 5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8 +SIZE (rust/crates/unicode-normalization-0.1.25.crate) = 128462 SHA256 (rust/crates/unicode-segmentation-1.12.0.crate) = f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493 SIZE (rust/crates/unicode-segmentation-1.12.0.crate) = 106323 SHA256 (rust/crates/unicode-width-0.1.14.crate) = 7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af SIZE (rust/crates/unicode-width-0.1.14.crate) = 271615 -SHA256 (rust/crates/unicode-width-0.2.0.crate) = 1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd -SIZE (rust/crates/unicode-width-0.2.0.crate) = 271509 +SHA256 (rust/crates/unicode-width-0.2.2.crate) = b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254 +SIZE (rust/crates/unicode-width-0.2.2.crate) = 282768 SHA256 (rust/crates/unit-prefix-0.5.1.crate) = 323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817 SIZE (rust/crates/unit-prefix-0.5.1.crate) = 7627 SHA256 (rust/crates/untrusted-0.9.0.crate) = 8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1 @@ -897,8 +889,8 @@ SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270 SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 -SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf -SIZE (rust/crates/winnow-0.7.13.crate) = 174454 +SHA256 (rust/crates/winnow-0.7.14.crate) = 5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829 +SIZE (rust/crates/winnow-0.7.14.crate) = 184718 SHA256 (rust/crates/wit-bindgen-rt-0.39.0.crate) = 6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1 SIZE (rust/crates/wit-bindgen-rt-0.39.0.crate) = 12241 SHA256 (rust/crates/xattr-1.5.0.crate) = 0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e @@ -921,5 +913,5 @@ SHA256 (rust/crates/zstd-safe-7.2.4.crate) = 8f49c4d5f0abb602a93fb8736af2a4f4dd9 SIZE (rust/crates/zstd-safe-7.2.4.crate) = 29350 SHA256 (rust/crates/zstd-sys-2.0.15+zstd.1.5.7.crate) = eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237 SIZE (rust/crates/zstd-sys-2.0.15+zstd.1.5.7.crate) = 774847 -SHA256 (nextest-rs-nextest-cargo-nextest-0.9.109_GH0.tar.gz) = f3cf84703796cd413798c59552e6eaebbe18b7d5ac75106e41837a46f22891dc -SIZE (nextest-rs-nextest-cargo-nextest-0.9.109_GH0.tar.gz) = 7445550 +SHA256 (nextest-rs-nextest-cargo-nextest-0.9.115_GH0.tar.gz) = b1a48bb44561f16b4a7f84bd3c2435b7d2016b8cbe4aec085a2c2bb9a7f54294 +SIZE (nextest-rs-nextest-cargo-nextest-0.9.115_GH0.tar.gz) = 7523853 diff --git a/devel/omnilinter/Makefile b/devel/omnilinter/Makefile index 6705fbd9505f..f705c7b6e7c9 100644 --- a/devel/omnilinter/Makefile +++ b/devel/omnilinter/Makefile @@ -1,6 +1,6 @@ PORTNAME= omnilinter PORTVERSION= 0.7.0 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/openapi-tui/Makefile b/devel/openapi-tui/Makefile index 898e6cd0417f..87648aaaa228 100644 --- a/devel/openapi-tui/Makefile +++ b/devel/openapi-tui/Makefile @@ -1,6 +1,6 @@ PORTNAME= openapi-tui DISTVERSION= 0.10.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= olgeni@FreeBSD.org diff --git a/devel/oq/Makefile b/devel/oq/Makefile index 4c87d1daecfa..97cca88e04b8 100644 --- a/devel/oq/Makefile +++ b/devel/oq/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/plutov/oq LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.25,modules +USES= go:1.25+,modules GO_MODULE= github.com/plutov/oq PLIST_FILES= bin/${PORTNAME} diff --git a/devel/parol-ls/Makefile b/devel/parol-ls/Makefile index a0f2a390857e..a62699736aa8 100644 --- a/devel/parol-ls/Makefile +++ b/devel/parol-ls/Makefile @@ -1,6 +1,6 @@ PORTNAME= parol-ls DISTVERSION= 1.0.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/parol/Makefile b/devel/parol/Makefile index 1c2920cabb2c..a0955dd111ea 100644 --- a/devel/parol/Makefile +++ b/devel/parol/Makefile @@ -1,6 +1,6 @@ PORTNAME= parol DISTVERSION= 1.0.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/patsh/Makefile b/devel/patsh/Makefile index 409ea12d4be3..48f9c94f7eb0 100644 --- a/devel/patsh/Makefile +++ b/devel/patsh/Makefile @@ -1,7 +1,7 @@ PORTNAME= patsh DISTVERSIONPREFIX= v DISTVERSION= 0.2.1 -PORTREVISION= 20 +PORTREVISION= 21 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/pijul/Makefile b/devel/pijul/Makefile index be760c8bc73b..afc27ea9b8db 100644 --- a/devel/pijul/Makefile +++ b/devel/pijul/Makefile @@ -1,6 +1,6 @@ PORTNAME= pijul PORTVERSION= 1.0.0.b9 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/pipelight/Makefile b/devel/pipelight/Makefile index 048e660406ad..ffac7cc5bfd5 100644 --- a/devel/pipelight/Makefile +++ b/devel/pipelight/Makefile @@ -1,7 +1,7 @@ PORTNAME= pipelight DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= ashish@FreeBSD.org diff --git a/devel/popt/Makefile b/devel/popt/Makefile index 556b891b2757..892686e19cbd 100644 --- a/devel/popt/Makefile +++ b/devel/popt/Makefile @@ -12,7 +12,7 @@ WWW= https://github.com/rpm-software-management/popt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= cpe iconv libtool pathfix +USES= cpe iconv libtool GNU_CONFIGURE= yes INSTALL_TARGET= install-strip diff --git a/devel/pprof/Makefile b/devel/pprof/Makefile index 4ce7bdb0417e..1febcd7e8896 100644 --- a/devel/pprof/Makefile +++ b/devel/pprof/Makefile @@ -10,10 +10,7 @@ WWW= https://github.com/google/pprof LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.22,modules - -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 +USES= go:modules USE_GITHUB= yes GH_ACCOUNT= google diff --git a/devel/protobuf/Makefile b/devel/protobuf/Makefile index dd17fb51e54e..ba2108e301c3 100644 --- a/devel/protobuf/Makefile +++ b/devel/protobuf/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libabsl_base.so:devel/abseil \ libjsoncpp.so:devel/jsoncpp TEST_DEPENDS= googletest>=0:devel/googletest -USES= cmake:testing compiler:c++17-lang cpe localbase pathfix pkgconfig +USES= cmake:testing compiler:c++17-lang cpe localbase pkgconfig CMAKE_ARGS= -Dprotobuf_ABSL_PROVIDER=package \ -Dprotobuf_JSONCPP_PROVIDER=package @@ -44,9 +44,7 @@ CMAKE_ON= protobuf_ABSOLUTE_TEST_PLUGIN_PATH \ protobuf_VERBOSE \ protobuf_WITH_ZLIB \ utf8_range_ENABLE_INSTALL -CMAKE_TESTING_ON= \ - protobuf_BUILD_TESTS -PATHFIX_CMAKELISTSTXT= CMakeLists.txt install.cmake +CMAKE_TESTING_ON= protobuf_BUILD_TESTS USE_CXXSTD= c++17 USE_LDCONFIG= yes diff --git a/devel/protobuf3/Makefile b/devel/protobuf3/Makefile index a8fb070c979c..424c0e77a12f 100644 --- a/devel/protobuf3/Makefile +++ b/devel/protobuf3/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= googletest>=0:devel/googletest -USES= compiler:c++11-lang cpe libtool localbase pathfix pkgconfig +USES= compiler:c++11-lang cpe libtool localbase pkgconfig CFLAGS+= -D_THREAD_SAFE -DGOOGLE_PROTOBUF_NO_RTTI -I${WRKSRC}/src CONFIGURE_ENV= CC_FOR_BUILD="${CC}" \ diff --git a/devel/py-archinfo/Makefile b/devel/py-archinfo/Makefile index f273a2f38c7a..946636f7813c 100644 --- a/devel/py-archinfo/Makefile +++ b/devel/py-archinfo/Makefile @@ -1,6 +1,6 @@ PORTNAME= archinfo DISTVERSIONPREFIX= v -DISTVERSION= 9.2.185 +DISTVERSION= 9.2.188 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-archinfo/distinfo b/devel/py-archinfo/distinfo index 4455c893e14a..3272e0ac1b80 100644 --- a/devel/py-archinfo/distinfo +++ b/devel/py-archinfo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764325732 -SHA256 (angr-archinfo-v9.2.185_GH0.tar.gz) = 1359a25df46d836caead5aab930c3a599913981995815fe4c46d869812f634f5 -SIZE (angr-archinfo-v9.2.185_GH0.tar.gz) = 44783 +TIMESTAMP = 1765711297 +SHA256 (angr-archinfo-v9.2.188_GH0.tar.gz) = f5f3950ca5495a46c2ba2ac3041b907d5707adf12251d2cbb356769144056004 +SIZE (angr-archinfo-v9.2.188_GH0.tar.gz) = 44790 diff --git a/devel/py-dbt-extractor/Makefile b/devel/py-dbt-extractor/Makefile index 0f8d24034b91..22120da5805d 100644 --- a/devel/py-dbt-extractor/Makefile +++ b/devel/py-dbt-extractor/Makefile @@ -1,6 +1,6 @@ PORTNAME= dbt-extractor PORTVERSION= 0.5.1 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-ddtrace/Makefile b/devel/py-ddtrace/Makefile index 43d67f90a764..3af00b69c7eb 100644 --- a/devel/py-ddtrace/Makefile +++ b/devel/py-ddtrace/Makefile @@ -1,6 +1,6 @@ PORTNAME= ddtrace PORTVERSION= 2.21.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI \ https://github.com/abseil/abseil-cpp/releases/download/${ABSEIL_VERSION}/:abseil diff --git a/devel/py-deptry/Makefile b/devel/py-deptry/Makefile index 4b52efc232aa..8ab316dba8d6 100644 --- a/devel/py-deptry/Makefile +++ b/devel/py-deptry/Makefile @@ -1,5 +1,6 @@ PORTNAME= deptry PORTVERSION= 0.24.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-dulwich/Makefile b/devel/py-dulwich/Makefile index dfe10c254463..8369399c77d8 100644 --- a/devel/py-dulwich/Makefile +++ b/devel/py-dulwich/Makefile @@ -1,5 +1,6 @@ PORTNAME= dulwich PORTVERSION= 0.24.10 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-electrum-aionostr/Makefile b/devel/py-electrum-aionostr/Makefile index a93b2e97a89e..aa77c14d5db7 100644 --- a/devel/py-electrum-aionostr/Makefile +++ b/devel/py-electrum-aionostr/Makefile @@ -1,5 +1,5 @@ PORTNAME= electrum-aionostr -DISTVERSION= 0.0.11 +DISTVERSION= 0.1.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-electrum-aionostr/distinfo b/devel/py-electrum-aionostr/distinfo index b078450dce85..17d122e30fcd 100644 --- a/devel/py-electrum-aionostr/distinfo +++ b/devel/py-electrum-aionostr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752847893 -SHA256 (electrum_aionostr-0.0.11.tar.gz) = 0eeb1d01e55d4bab2c116268965a0b2c11490659e969fd864c453104558bcf81 -SIZE (electrum_aionostr-0.0.11.tar.gz) = 22126 +TIMESTAMP = 1765772777 +SHA256 (electrum_aionostr-0.1.0.tar.gz) = 3774f8e8312388272e10851a869c9f4d3d4a54d8d564851c36e2dc40297bec84 +SIZE (electrum_aionostr-0.1.0.tar.gz) = 25995 diff --git a/devel/py-electrum-aionostr/files/patch-pyproject.toml b/devel/py-electrum-aionostr/files/patch-pyproject.toml new file mode 100644 index 000000000000..9905f9bf33e7 --- /dev/null +++ b/devel/py-electrum-aionostr/files/patch-pyproject.toml @@ -0,0 +1,12 @@ +--- pyproject.toml.orig 2000-11-11 11:11:11 UTC ++++ pyproject.toml +@@ -10,8 +10,7 @@ readme = "README.md" + description = "asyncio nostr client" + keywords = ["nostr", "asyncio"] + readme = "README.md" +-license = "BSD-3-Clause" +-license-files = ["LICENSE"] ++license = { text = "BSD-3-Clause" } + requires-python = ">=3.10" + dependencies = [ + "electrum_ecc", diff --git a/devel/py-fastuuid/Makefile b/devel/py-fastuuid/Makefile index 20beaa8970e8..64afaa08d272 100644 --- a/devel/py-fastuuid/Makefile +++ b/devel/py-fastuuid/Makefile @@ -1,6 +1,6 @@ PORTNAME= fastuuid DISTVERSION= 0.14.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-jellyfish/Makefile b/devel/py-jellyfish/Makefile index a0f47e7e87e9..687aa22ceb05 100644 --- a/devel/py-jellyfish/Makefile +++ b/devel/py-jellyfish/Makefile @@ -1,6 +1,6 @@ PORTNAME= jellyfish PORTVERSION= 0.11.2 -PORTREVISION= 23 +PORTREVISION= 24 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-libcst/Makefile b/devel/py-libcst/Makefile index 262f6fbb4c86..95be5e5dad05 100644 --- a/devel/py-libcst/Makefile +++ b/devel/py-libcst/Makefile @@ -1,6 +1,6 @@ PORTNAME= libcst PORTVERSION= 1.8.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-maturin/Makefile b/devel/py-maturin/Makefile index 091ccb53185b..7cc70600a73e 100644 --- a/devel/py-maturin/Makefile +++ b/devel/py-maturin/Makefile @@ -1,5 +1,6 @@ PORTNAME= maturin DISTVERSION= 1.10.2 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-orjson/Makefile b/devel/py-orjson/Makefile index ebf8619f381a..1366bc1747d3 100644 --- a/devel/py-orjson/Makefile +++ b/devel/py-orjson/Makefile @@ -1,5 +1,6 @@ PORTNAME= orjson DISTVERSION= 3.11.4 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-ormsgpack/Makefile b/devel/py-ormsgpack/Makefile index 81693d78deca..6b62d558803d 100644 --- a/devel/py-ormsgpack/Makefile +++ b/devel/py-ormsgpack/Makefile @@ -1,6 +1,6 @@ PORTNAME= ormsgpack -DISTVERSION= 1.10.0 -PORTREVISION= 3 +DISTVERSION= 1.12.1 +PORTREVISION= 1 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,7 +21,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>0:devel/py-msgpack@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mypy>0:devel/py-mypy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pendulum>0:devel/py-pendulum@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pydantic>0:devel/py-pydantic@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic2>0:devel/py-pydantic2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-benchmark>0:devel/py-pytest-benchmark@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-dateutil>0:devel/py-python-dateutil@${PY_FLAVOR} \ @@ -38,10 +38,10 @@ GH_ACCOUNT= aviramha CARGO_CRATES= ahash-0.8.12 \ autocfg-1.4.0 \ - bytecount-0.6.8 \ + bytecount-0.6.9 \ byteorder-1.5.0 \ cfg-if-1.0.0 \ - chrono-0.4.41 \ + chrono-0.4.42 \ crunchy-0.2.3 \ half-2.6.0 \ itoa-1.0.15 \ @@ -51,15 +51,16 @@ CARGO_CRATES= ahash-0.8.12 \ once_cell-1.21.3 \ portable-atomic-1.11.0 \ proc-macro2-1.0.94 \ - pyo3-0.25.0 \ - pyo3-build-config-0.25.0 \ - pyo3-ffi-0.25.0 \ + pyo3-0.27.2 \ + pyo3-build-config-0.27.2 \ + pyo3-ffi-0.27.2 \ quote-1.0.40 \ - serde-1.0.219 \ - serde_bytes-0.11.17 \ - serde_derive-1.0.219 \ + serde-1.0.228 \ + serde_bytes-0.11.19 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ simdutf8-0.1.5 \ - smallvec-1.15.0 \ + smallvec-1.15.1 \ syn-2.0.100 \ target-lexicon-0.13.2 \ unicode-ident-1.0.18 \ @@ -72,6 +73,8 @@ CARGO_INSTALL= no CARGO_TEST= no CARGO_TARGET_DIR= ${WRKSRC}/target -# tests as of 1.10.0: 8 failed, 504 passed, 1 warning in 7.64s, see https://github.com/aviramha/ormsgpack/issues/411 +TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + +# tests as of 1.12.1: 516 passed, 1 skipped in 1.16s .include <bsd.port.mk> diff --git a/devel/py-ormsgpack/distinfo b/devel/py-ormsgpack/distinfo index 7b168f20b220..a5b083785c38 100644 --- a/devel/py-ormsgpack/distinfo +++ b/devel/py-ormsgpack/distinfo @@ -1,16 +1,16 @@ -TIMESTAMP = 1752741921 +TIMESTAMP = 1765785056 SHA256 (rust/crates/ahash-0.8.12.crate) = 5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75 SIZE (rust/crates/ahash-0.8.12.crate) = 43413 SHA256 (rust/crates/autocfg-1.4.0.crate) = ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26 SIZE (rust/crates/autocfg-1.4.0.crate) = 17712 -SHA256 (rust/crates/bytecount-0.6.8.crate) = 5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce -SIZE (rust/crates/bytecount-0.6.8.crate) = 14694 +SHA256 (rust/crates/bytecount-0.6.9.crate) = 175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e +SIZE (rust/crates/bytecount-0.6.9.crate) = 18695 SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 -SHA256 (rust/crates/chrono-0.4.41.crate) = c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d -SIZE (rust/crates/chrono-0.4.41.crate) = 234621 +SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 +SIZE (rust/crates/chrono-0.4.42.crate) = 238174 SHA256 (rust/crates/crunchy-0.2.3.crate) = 43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929 SIZE (rust/crates/crunchy-0.2.3.crate) = 3775 SHA256 (rust/crates/half-2.6.0.crate) = 459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9 @@ -29,24 +29,26 @@ SHA256 (rust/crates/portable-atomic-1.11.0.crate) = 350e9b48cbc6b0e028b0473b1144 SIZE (rust/crates/portable-atomic-1.11.0.crate) = 181258 SHA256 (rust/crates/proc-macro2-1.0.94.crate) = a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84 SIZE (rust/crates/proc-macro2-1.0.94.crate) = 52391 -SHA256 (rust/crates/pyo3-0.25.0.crate) = f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4 -SIZE (rust/crates/pyo3-0.25.0.crate) = 1120850 -SHA256 (rust/crates/pyo3-build-config-0.25.0.crate) = 755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d -SIZE (rust/crates/pyo3-build-config-0.25.0.crate) = 34122 -SHA256 (rust/crates/pyo3-ffi-0.25.0.crate) = fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e -SIZE (rust/crates/pyo3-ffi-0.25.0.crate) = 77991 +SHA256 (rust/crates/pyo3-0.27.2.crate) = ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d +SIZE (rust/crates/pyo3-0.27.2.crate) = 1171342 +SHA256 (rust/crates/pyo3-build-config-0.27.2.crate) = b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6 +SIZE (rust/crates/pyo3-build-config-0.27.2.crate) = 35564 +SHA256 (rust/crates/pyo3-ffi-0.27.2.crate) = 1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089 +SIZE (rust/crates/pyo3-ffi-0.27.2.crate) = 78552 SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d SIZE (rust/crates/quote-1.0.40.crate) = 31063 -SHA256 (rust/crates/serde-1.0.219.crate) = 5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6 -SIZE (rust/crates/serde-1.0.219.crate) = 78983 -SHA256 (rust/crates/serde_bytes-0.11.17.crate) = 8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96 -SIZE (rust/crates/serde_bytes-0.11.17.crate) = 13256 -SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00 -SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_bytes-0.11.19.crate) = a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8 +SIZE (rust/crates/serde_bytes-0.11.19.crate) = 13427 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 SHA256 (rust/crates/simdutf8-0.1.5.crate) = e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e SIZE (rust/crates/simdutf8-0.1.5.crate) = 28488 -SHA256 (rust/crates/smallvec-1.15.0.crate) = 8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9 -SIZE (rust/crates/smallvec-1.15.0.crate) = 38113 +SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 +SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 SHA256 (rust/crates/syn-2.0.100.crate) = b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0 SIZE (rust/crates/syn-2.0.100.crate) = 297947 SHA256 (rust/crates/target-lexicon-0.13.2.crate) = e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a @@ -59,5 +61,5 @@ SHA256 (rust/crates/zerocopy-0.8.25.crate) = a1702d9583232ddb9174e01bb7c15a2ab8f SIZE (rust/crates/zerocopy-0.8.25.crate) = 252714 SHA256 (rust/crates/zerocopy-derive-0.8.25.crate) = 28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef SIZE (rust/crates/zerocopy-derive-0.8.25.crate) = 87671 -SHA256 (aviramha-ormsgpack-1.10.0_GH0.tar.gz) = 5a9ab2b3eac58362e86db43c9fbfd5702795b389a6f981a631228c044af60c21 -SIZE (aviramha-ormsgpack-1.10.0_GH0.tar.gz) = 688277 +SHA256 (aviramha-ormsgpack-1.12.1_GH0.tar.gz) = 28e4d519320aa050a6efb2ada742c48816215929c9fb7c2c4beca9a16295d004 +SIZE (aviramha-ormsgpack-1.12.1_GH0.tar.gz) = 687127 diff --git a/devel/py-pendulum/Makefile b/devel/py-pendulum/Makefile index e651b57b260c..0ced37e6a437 100644 --- a/devel/py-pendulum/Makefile +++ b/devel/py-pendulum/Makefile @@ -1,6 +1,6 @@ PORTNAME= pendulum PORTVERSION= 3.1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-plette/Makefile b/devel/py-plette/Makefile index 44e048e45533..c098a9e4e38a 100644 --- a/devel/py-plette/Makefile +++ b/devel/py-plette/Makefile @@ -1,5 +1,6 @@ PORTNAME= plette PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -24,6 +25,6 @@ OPTIONS_DEFINE= VALIDATION OPTIONS_DEFAULT=VALIDATION VALIDATION_DESC=Validation support -VALIDATION_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Cerberus>=0:devel/py-cerberus@${PY_FLAVOR} +VALIDATION_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cerberus>=0:devel/py-cerberus@${PY_FLAVOR} .include <bsd.port.mk> diff --git a/devel/py-pycrdt/Makefile b/devel/py-pycrdt/Makefile index eead3db029e1..b53e6c5cf6dd 100644 --- a/devel/py-pycrdt/Makefile +++ b/devel/py-pycrdt/Makefile @@ -1,5 +1,6 @@ PORTNAME= pycrdt PORTVERSION= 0.12.44 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pydantic-core/Makefile b/devel/py-pydantic-core/Makefile index 1b8f8bfb24ee..0757abcfa1be 100644 --- a/devel/py-pydantic-core/Makefile +++ b/devel/py-pydantic-core/Makefile @@ -1,6 +1,6 @@ PORTNAME= pydantic-core PORTVERSION= 2.41.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyperscan/Makefile b/devel/py-pyperscan/Makefile index 2268b8243463..2332083322e6 100644 --- a/devel/py-pyperscan/Makefile +++ b/devel/py-pyperscan/Makefile @@ -1,7 +1,7 @@ PORTNAME= pyperscan DISTVERSIONPREFIX= v DISTVERSION= 0.3.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyproject-fmt-rust/Makefile b/devel/py-pyproject-fmt-rust/Makefile index 009a5d384721..d93f355daec8 100644 --- a/devel/py-pyproject-fmt-rust/Makefile +++ b/devel/py-pyproject-fmt-rust/Makefile @@ -1,6 +1,6 @@ PORTNAME= pyproject-fmt-rust PORTVERSION= 1.2.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyproject-fmt/Makefile b/devel/py-pyproject-fmt/Makefile index b57eb36af47b..cd0da2a0b2ec 100644 --- a/devel/py-pyproject-fmt/Makefile +++ b/devel/py-pyproject-fmt/Makefile @@ -1,5 +1,6 @@ PORTNAME= pyproject-fmt PORTVERSION= 2.11.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-python-dbusmock/Makefile b/devel/py-python-dbusmock/Makefile index 84c26c573fd0..d6ab768427a5 100644 --- a/devel/py-python-dbusmock/Makefile +++ b/devel/py-python-dbusmock/Makefile @@ -1,5 +1,5 @@ PORTNAME= python-dbusmock -DISTVERSION= 0.37.1 +DISTVERSION= 0.37.2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-python-dbusmock/distinfo b/devel/py-python-dbusmock/distinfo index 0a325b73de85..ef9f1950e81c 100644 --- a/devel/py-python-dbusmock/distinfo +++ b/devel/py-python-dbusmock/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760016085 -SHA256 (python_dbusmock-0.37.1.tar.gz) = a65aeedc17d8bbc1f0bf3f0b295988914c48619882d77b9afa4117eed95fc594 -SIZE (python_dbusmock-0.37.1.tar.gz) = 107458 +TIMESTAMP = 1765765603 +SHA256 (python_dbusmock-0.37.2.tar.gz) = e0c7354f6887036ee519f2fbba55ce14bb21c3ffceab06c085d15bbbda2b1d03 +SIZE (python_dbusmock-0.37.2.tar.gz) = 107498 diff --git a/devel/py-qcs-sdk-python/Makefile b/devel/py-qcs-sdk-python/Makefile index 578506e3b9ad..103aff9384b6 100644 --- a/devel/py-qcs-sdk-python/Makefile +++ b/devel/py-qcs-sdk-python/Makefile @@ -1,7 +1,7 @@ PORTNAME= qcs-sdk-python DISTVERSIONPREFIX= python/v DISTVERSION= 0.20.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-regress/Makefile b/devel/py-regress/Makefile index 45fb3449a6b3..59031f1ef3c6 100644 --- a/devel/py-regress/Makefile +++ b/devel/py-regress/Makefile @@ -1,6 +1,6 @@ PORTNAME= regress PORTVERSION= 0.4.2 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-rpds-py/Makefile b/devel/py-rpds-py/Makefile index 3a924b6d09e2..adc0f457b299 100644 --- a/devel/py-rpds-py/Makefile +++ b/devel/py-rpds-py/Makefile @@ -1,5 +1,6 @@ PORTNAME= rpds-py PORTVERSION= 0.30.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI \ https://github.com/crate-py/rpds/releases/download/v${PORTVERSION}/ diff --git a/devel/py-ruff/Makefile b/devel/py-ruff/Makefile index b071076fa00c..8695ea6f03d2 100644 --- a/devel/py-ruff/Makefile +++ b/devel/py-ruff/Makefile @@ -1,5 +1,6 @@ PORTNAME= ruff DISTVERSION= 0.14.7 +PORTREVISION= 1 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-stringzilla/Makefile b/devel/py-stringzilla/Makefile index 9393b06bb1c0..a18fcc4111de 100644 --- a/devel/py-stringzilla/Makefile +++ b/devel/py-stringzilla/Makefile @@ -1,6 +1,6 @@ PORTNAME= stringzilla DISTVERSIONPREFIX= v -DISTVERSION= 4.4.2 +DISTVERSION= 4.5.1 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-stringzilla/distinfo b/devel/py-stringzilla/distinfo index 227da0554bc3..b163cc9caf3a 100644 --- a/devel/py-stringzilla/distinfo +++ b/devel/py-stringzilla/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764922380 -SHA256 (ashvardanian-StringZilla-v4.4.2_GH0.tar.gz) = 5c49782bc7f5a7392c8b960248d3cc9ba87b3a9629b665f731a2d407fefe425b -SIZE (ashvardanian-StringZilla-v4.4.2_GH0.tar.gz) = 729225 +TIMESTAMP = 1765878799 +SHA256 (ashvardanian-StringZilla-v4.5.1_GH0.tar.gz) = 2b706dff69baa28911f7df445f62391b8cc4b6b599c542a015dd685e7ea01948 +SIZE (ashvardanian-StringZilla-v4.5.1_GH0.tar.gz) = 784132 diff --git a/devel/py-tox-toml-fmt/Makefile b/devel/py-tox-toml-fmt/Makefile index 7be6997e258f..dcf49a943460 100644 --- a/devel/py-tox-toml-fmt/Makefile +++ b/devel/py-tox-toml-fmt/Makefile @@ -1,5 +1,6 @@ PORTNAME= tox-toml-fmt PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-ty/Makefile b/devel/py-ty/Makefile index fe8131e75125..548a15073781 100644 --- a/devel/py-ty/Makefile +++ b/devel/py-ty/Makefile @@ -1,5 +1,6 @@ PORTNAME= ty -DISTVERSION= 0.0.1a33 +DISTVERSION= 0.0.1a34 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-ty/Makefile.crates b/devel/py-ty/Makefile.crates index caec93d5b60f..f824ba5943d0 100644 --- a/devel/py-ty/Makefile.crates +++ b/devel/py-ty/Makefile.crates @@ -127,8 +127,8 @@ CARGO_CRATES= adler2-2.0.1 \ fsevent-sys-4.1.0 \ funty-2.0.0 \ generic-array-0.14.7 \ - get-size-derive2-0.7.2 \ - get-size2-0.7.2 \ + get-size-derive2-0.7.3 \ + get-size2-0.7.3 \ getopts-0.2.24 \ getrandom-0.2.16 \ getrandom-0.3.4 \ @@ -229,7 +229,7 @@ CARGO_CRATES= adler2-2.0.1 \ once_cell_polyfill-1.70.1 \ oorandom-11.1.5 \ option-ext-0.2.0 \ - ordermap-0.5.12 \ + ordermap-1.0.0 \ os_pipe-1.2.2 \ os_str_bytes-7.1.1 \ parking_lot-0.12.4 \ @@ -465,5 +465,5 @@ CARGO_CRATES= adler2-2.0.1 \ zstd-0.11.2+zstd.1.5.2 \ zstd-safe-5.0.2+zstd.1.5.2 \ zstd-sys-2.0.16+zstd.1.5.7 \ - salsa,salsa-macro-rules,salsa-macros@git+https://github.com/salsa-rs/salsa.git?rev=59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0\#59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0 \ - lsp-types@git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f\#3512a9f33eadc5402cfab1b8f7340824c8ca1439 + lsp-types@git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f\#3512a9f33eadc5402cfab1b8f7340824c8ca1439 \ + salsa,salsa-macro-rules,salsa-macros@git+https://github.com/salsa-rs/salsa.git?rev=55e5e7d32fa3fc189276f35bb04c9438f9aedbd1\#55e5e7d32fa3fc189276f35bb04c9438f9aedbd1 diff --git a/devel/py-ty/distinfo b/devel/py-ty/distinfo index 25058f8e0999..1d9e6d2360ab 100644 --- a/devel/py-ty/distinfo +++ b/devel/py-ty/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1765335036 -SHA256 (ty-0.0.1a33.tar.gz) = 1db139aa7cbc9879e93146c99bf5f1f5273ca608683f71b3a9a75f9f812b729f -SIZE (ty-0.0.1a33.tar.gz) = 4704365 +TIMESTAMP = 1765762199 +SHA256 (ty-0.0.1a34.tar.gz) = 659e409cc3b5c9fb99a453d256402a4e3bd95b1dbcc477b55c039697c807ab79 +SIZE (ty-0.0.1a34.tar.gz) = 4735988 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa SIZE (rust/crates/adler2-2.0.1.crate) = 13366 SHA256 (rust/crates/aho-corasick-1.1.4.crate) = ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 @@ -259,10 +259,10 @@ SHA256 (rust/crates/funty-2.0.0.crate) = e6d5a32815ae3f33302d95fdcb2ce17862f8c65 SIZE (rust/crates/funty-2.0.0.crate) = 13160 SHA256 (rust/crates/generic-array-0.14.7.crate) = 85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a SIZE (rust/crates/generic-array-0.14.7.crate) = 15950 -SHA256 (rust/crates/get-size-derive2-0.7.2.crate) = ff47daa61505c85af126e9dd64af6a342a33dc0cccfe1be74ceadc7d352e6efd -SIZE (rust/crates/get-size-derive2-0.7.2.crate) = 8859 -SHA256 (rust/crates/get-size2-0.7.2.crate) = ac7bb8710e1f09672102be7ddf39f764d8440ae74a9f4e30aaa4820dcdffa4af -SIZE (rust/crates/get-size2-0.7.2.crate) = 19159 +SHA256 (rust/crates/get-size-derive2-0.7.3.crate) = ab21d7bd2c625f2064f04ce54bcb88bc57c45724cde45cba326d784e22d3f71a +SIZE (rust/crates/get-size-derive2-0.7.3.crate) = 8865 +SHA256 (rust/crates/get-size2-0.7.3.crate) = 879272b0de109e2b67b39fcfe3d25fdbba96ac07e44a254f5a0b4d7ff55340cb +SIZE (rust/crates/get-size2-0.7.3.crate) = 19162 SHA256 (rust/crates/getopts-0.2.24.crate) = cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df SIZE (rust/crates/getopts-0.2.24.crate) = 21467 SHA256 (rust/crates/getrandom-0.2.16.crate) = 335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592 @@ -463,8 +463,8 @@ SHA256 (rust/crates/oorandom-11.1.5.crate) = d6790f58c7ff633d8771f42965289203411 SIZE (rust/crates/oorandom-11.1.5.crate) = 23750 SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 -SHA256 (rust/crates/ordermap-0.5.12.crate) = b100f7dd605611822d30e182214d3c02fdefce2d801d23993f6b6ba6ca1392af -SIZE (rust/crates/ordermap-0.5.12.crate) = 69927 +SHA256 (rust/crates/ordermap-1.0.0.crate) = ed637741ced8fb240855d22a2b4f208dab7a06bcce73380162e5253000c16758 +SIZE (rust/crates/ordermap-1.0.0.crate) = 70288 SHA256 (rust/crates/os_pipe-1.2.2.crate) = db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224 SIZE (rust/crates/os_pipe-1.2.2.crate) = 10810 SHA256 (rust/crates/os_str_bytes-7.1.1.crate) = 63eceb7b5d757011a87d08eb2123db15d87fb0c281f65d101ce30a1e96c3ad5c @@ -935,7 +935,7 @@ SHA256 (rust/crates/zstd-safe-5.0.2+zstd.1.5.2.crate) = 1d2a5585e04f9eea4b2a3d1e SIZE (rust/crates/zstd-safe-5.0.2+zstd.1.5.2.crate) = 17273 SHA256 (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748 SIZE (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 775620 -SHA256 (salsa-rs-salsa-59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0_GH0.tar.gz) = 8e97da54c8a7504d600cfed4e23a2c12446828d509ed0e922d9e2cbb4facb9eb -SIZE (salsa-rs-salsa-59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0_GH0.tar.gz) = 731457 SHA256 (astral-sh-lsp-types-3512a9f33eadc5402cfab1b8f7340824c8ca1439_GH0.tar.gz) = 410f889792e86186b6299ad534446510207a9e2e55b78301b77fc8b661b46913 SIZE (astral-sh-lsp-types-3512a9f33eadc5402cfab1b8f7340824c8ca1439_GH0.tar.gz) = 71124 +SHA256 (salsa-rs-salsa-55e5e7d32fa3fc189276f35bb04c9438f9aedbd1_GH0.tar.gz) = 8a2810644755691ed3ee236c2743c3d52ab89ca340aeac8bdd9f0220ef45ace1 +SIZE (salsa-rs-salsa-55e5e7d32fa3fc189276f35bb04c9438f9aedbd1_GH0.tar.gz) = 731425 diff --git a/devel/py-tzdata/Makefile b/devel/py-tzdata/Makefile index 42910df3b1c2..b7982f603b14 100644 --- a/devel/py-tzdata/Makefile +++ b/devel/py-tzdata/Makefile @@ -1,5 +1,5 @@ PORTNAME= tzdata -DISTVERSION= 2025.2 +DISTVERSION= 2025.3 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-tzdata/distinfo b/devel/py-tzdata/distinfo index 0c103103e844..53dc7a7e12e7 100644 --- a/devel/py-tzdata/distinfo +++ b/devel/py-tzdata/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742794170 -SHA256 (tzdata-2025.2.tar.gz) = b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9 -SIZE (tzdata-2025.2.tar.gz) = 196380 +TIMESTAMP = 1765712999 +SHA256 (tzdata-2025.3.tar.gz) = de39c2ca5dc7b0344f2eba86f49d614019d29f060fc4ebc8a417896a620b56a7 +SIZE (tzdata-2025.3.tar.gz) = 196772 diff --git a/devel/py-uv-build/Makefile b/devel/py-uv-build/Makefile index 8a4b4e460cbc..1297b4a081ea 100644 --- a/devel/py-uv-build/Makefile +++ b/devel/py-uv-build/Makefile @@ -1,5 +1,5 @@ PORTNAME= uv-build -DISTVERSION= 0.9.15 +DISTVERSION= 0.9.17 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-uv-build/distinfo b/devel/py-uv-build/distinfo index 3d1d1eabcf12..ea07cdfdb3b2 100644 --- a/devel/py-uv-build/distinfo +++ b/devel/py-uv-build/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764758237 -SHA256 (uv_build-0.9.15.tar.gz) = 620b079ee55e7c53c9286ebfbf05af31ff0b5ee8c81c72a1bc03e40e4cebd3f0 -SIZE (uv_build-0.9.15.tar.gz) = 354021 +TIMESTAMP = 1765783803 +SHA256 (uv_build-0.9.17.tar.gz) = aee981beef5503ac94c982a7205ca77c35b81eaadbb7f0c8583bd6a0f804fffc +SIZE (uv_build-0.9.17.tar.gz) = 356435 diff --git a/devel/py-uv-build08/Makefile b/devel/py-uv-build08/Makefile index d1d3b319359b..95b33080b9f6 100644 --- a/devel/py-uv-build08/Makefile +++ b/devel/py-uv-build08/Makefile @@ -1,6 +1,6 @@ PORTNAME= uv-build PORTVERSION= 0.8.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-uv-bump/Makefile b/devel/py-uv-bump/Makefile index 94fbe9349119..b850d8133b02 100644 --- a/devel/py-uv-bump/Makefile +++ b/devel/py-uv-bump/Makefile @@ -1,5 +1,5 @@ PORTNAME= uv-bump -DISTVERSION= 0.3.1 +DISTVERSION= 0.4.0 CATEGORIES= devel python #MASTER_SITES= PYPI # no tests PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-uv-bump/distinfo b/devel/py-uv-bump/distinfo index 4ffdea46bf85..2c73be3cac6e 100644 --- a/devel/py-uv-bump/distinfo +++ b/devel/py-uv-bump/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759910419 -SHA256 (zundertj-uv-bump-0.3.1_GH0.tar.gz) = 52d0d6253bf86bf68e0739ae6e6433528793b54f4be0968193871c115232f277 -SIZE (zundertj-uv-bump-0.3.1_GH0.tar.gz) = 28404 +TIMESTAMP = 1765784871 +SHA256 (zundertj-uv-bump-0.4.0_GH0.tar.gz) = ebc887e2b534b5d89b959e61d9b89026695c2b56b70c6a57925f3b951dfe28d1 +SIZE (zundertj-uv-bump-0.4.0_GH0.tar.gz) = 38047 diff --git a/devel/py-uv/Makefile b/devel/py-uv/Makefile index 6f4a155955a0..b78539418393 100644 --- a/devel/py-uv/Makefile +++ b/devel/py-uv/Makefile @@ -1,5 +1,5 @@ PORTNAME= uv -DISTVERSION= 0.9.15 +DISTVERSION= 0.9.17 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-uv/distinfo b/devel/py-uv/distinfo index 6725d922840c..377b1d67f2e6 100644 --- a/devel/py-uv/distinfo +++ b/devel/py-uv/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764758225 -SHA256 (astral-sh-uv-0.9.15_GH0.tar.gz) = 4bd98152fbeb3cbe4a06fd0d49824d44db3023e24d17ba265df71fd52591bc09 -SIZE (astral-sh-uv-0.9.15_GH0.tar.gz) = 4887603 +TIMESTAMP = 1765783784 +SHA256 (astral-sh-uv-0.9.17_GH0.tar.gz) = ea948dc7141c56c798ff603f71793351917f9c777302d428840848515999fb29 +SIZE (astral-sh-uv-0.9.17_GH0.tar.gz) = 4774663 diff --git a/devel/py-uv/files/patch-pyproject.toml b/devel/py-uv/files/patch-pyproject.toml index ac7e902e78dc..d16a03f5d31c 100644 --- a/devel/py-uv/files/patch-pyproject.toml +++ b/devel/py-uv/files/patch-pyproject.toml @@ -1,4 +1,4 @@ ---- pyproject.toml.orig 2025-12-03 00:57:55 UTC +--- pyproject.toml.orig 2025-12-09 22:36:00 UTC +++ pyproject.toml @@ -1,6 +1,6 @@ [build-system] @@ -9,7 +9,7 @@ [project] name = "uv" -@@ -40,55 +40,12 @@ Discord = "https://discord.gg/astral-sh" +@@ -40,56 +40,12 @@ Discord = "https://discord.gg/astral-sh" Releases = "https://github.com/astral-sh/uv/releases" Discord = "https://discord.gg/astral-sh" @@ -48,6 +48,7 @@ - "docs/guides/integration/docker.md", - "docs/guides/integration/pre-commit.md", - "docs/guides/integration/github.md", +- "docs/guides/integration/gitlab.md", - "docs/guides/integration/aws-lambda.md", - "docs/concepts/build-backend.md", - "docs/concepts/projects/init.md", diff --git a/devel/py-watchfiles/Makefile b/devel/py-watchfiles/Makefile index 5819814f8cd4..b3e6f5869fd5 100644 --- a/devel/py-watchfiles/Makefile +++ b/devel/py-watchfiles/Makefile @@ -1,6 +1,6 @@ PORTNAME= watchfiles PORTVERSION= 1.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/pylyzer/Makefile b/devel/pylyzer/Makefile index 2e56def8d2a3..8c8fabac0002 100644 --- a/devel/pylyzer/Makefile +++ b/devel/pylyzer/Makefile @@ -1,7 +1,7 @@ PORTNAME= pylyzer DISTVERSIONPREFIX= v DISTVERSION= 0.0.78 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel python MAINTAINER= yuri@FreeBSD.org diff --git a/devel/qlementine/Makefile b/devel/qlementine/Makefile index bbcfdb597fc0..f3c4d545de83 100644 --- a/devel/qlementine/Makefile +++ b/devel/qlementine/Makefile @@ -1,5 +1,5 @@ PORTNAME= qlementine -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 DISTVERSIONPREFIX= v CATEGORIES= devel diff --git a/devel/qlementine/distinfo b/devel/qlementine/distinfo index 1ccc15697a3e..b820d38ce1cd 100644 --- a/devel/qlementine/distinfo +++ b/devel/qlementine/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764345355 -SHA256 (oclero-qlementine-v1.4.0_GH0.tar.gz) = 0b6e2696532667510a445b6e0d3a03c7f9b1ba5ae4823a1a35bb77d8cc459bbb -SIZE (oclero-qlementine-v1.4.0_GH0.tar.gz) = 3682654 +TIMESTAMP = 1765904432 +SHA256 (oclero-qlementine-v1.4.1_GH0.tar.gz) = 3f514cef49b1a72fb4b5905f023645553b51d08353c21fc153cb0e08e84c8a74 +SIZE (oclero-qlementine-v1.4.1_GH0.tar.gz) = 3682576 diff --git a/devel/radicle/Makefile b/devel/radicle/Makefile index a8554461bff2..d2723198a31b 100644 --- a/devel/radicle/Makefile +++ b/devel/radicle/Makefile @@ -1,6 +1,6 @@ PORTNAME= radicle DISTVERSION= 1.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://distfiles.pirateparty.in/ashish/:sources \ LOCAL/ashish:sources diff --git a/devel/revive/Makefile b/devel/revive/Makefile index d8f35251c4d8..5007ebf581c0 100644 --- a/devel/revive/Makefile +++ b/devel/revive/Makefile @@ -10,10 +10,7 @@ WWW= https://revive.run LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.23,modules - -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 +USES= go:modules _BUILD_VERSION= ${DISTVERSION} _BUILD_COMMIT= e1d05f7 diff --git a/devel/rubygem-prometheus-client-mmap/Makefile b/devel/rubygem-prometheus-client-mmap/Makefile index e9183dd46b25..36452df9720c 100644 --- a/devel/rubygem-prometheus-client-mmap/Makefile +++ b/devel/rubygem-prometheus-client-mmap/Makefile @@ -1,6 +1,6 @@ PORTNAME= prometheus-client-mmap PORTVERSION= 1.2.10 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/ruff/Makefile b/devel/ruff/Makefile index 7cee91b1c942..d2fc3cbc0e55 100644 --- a/devel/ruff/Makefile +++ b/devel/ruff/Makefile @@ -1,5 +1,6 @@ PORTNAME= ruff DISTVERSION= 0.14.7 +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= yuri@FreeBSD.org diff --git a/devel/rust-analyzer/Makefile b/devel/rust-analyzer/Makefile index 887f8b0f904d..295d47ca4123 100644 --- a/devel/rust-analyzer/Makefile +++ b/devel/rust-analyzer/Makefile @@ -1,6 +1,6 @@ PORTNAME= rust-analyzer DISTVERSION= 2025-08-25 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= rust@FreeBSD.org diff --git a/devel/rust-bindgen-cli/Makefile b/devel/rust-bindgen-cli/Makefile index 459873ed86a5..ca7ea5666751 100644 --- a/devel/rust-bindgen-cli/Makefile +++ b/devel/rust-bindgen-cli/Makefile @@ -1,6 +1,6 @@ PORTNAME= bindgen-cli DISTVERSION= 0.72.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= CRATESIO PKGNAMEPREFIX= rust- diff --git a/devel/rust-cbindgen/Makefile b/devel/rust-cbindgen/Makefile index 503e4f8ae8f8..165a8412cf46 100644 --- a/devel/rust-cbindgen/Makefile +++ b/devel/rust-cbindgen/Makefile @@ -1,6 +1,6 @@ PORTNAME= cbindgen DISTVERSION= 0.29.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= CRATESIO PKGNAMEPREFIX= rust- diff --git a/devel/rust-script/Makefile b/devel/rust-script/Makefile index 21579fa1705e..66efd98663fd 100644 --- a/devel/rust-script/Makefile +++ b/devel/rust-script/Makefile @@ -1,6 +1,6 @@ PORTNAME= rust-script DISTVERSION= 0.36.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= pat@patmaddox.com diff --git a/devel/rustc-demangle/Makefile b/devel/rustc-demangle/Makefile index b29b1dcf763e..6e50b99d2f78 100644 --- a/devel/rustc-demangle/Makefile +++ b/devel/rustc-demangle/Makefile @@ -1,7 +1,7 @@ PORTNAME= rustc-demangle DISTVERSIONPREFIX= rustc-demangle-v DISTVERSION= 0.1.26 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/rustup-init/Makefile b/devel/rustup-init/Makefile index 25c3ede69ffc..f43664a9df4f 100644 --- a/devel/rustup-init/Makefile +++ b/devel/rustup-init/Makefile @@ -1,6 +1,6 @@ PORTNAME= rustup-init DISTVERSION= 1.28.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel DISTNAME= rustup diff --git a/devel/rye/Makefile b/devel/rye/Makefile index abef6f9bd540..793cfb130570 100644 --- a/devel/rye/Makefile +++ b/devel/rye/Makefile @@ -1,6 +1,6 @@ PORTNAME= rye DISTVERSION= 0.44.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/sccache/Makefile b/devel/sccache/Makefile index bf4966f9bfc8..81fe2d32f124 100644 --- a/devel/sccache/Makefile +++ b/devel/sccache/Makefile @@ -1,7 +1,7 @@ PORTNAME= sccache DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= devel diff --git a/devel/selene/Makefile b/devel/selene/Makefile index 97a815251ffb..4f2ad7a49b31 100644 --- a/devel/selene/Makefile +++ b/devel/selene/Makefile @@ -1,5 +1,6 @@ PORTNAME= selene DISTVERSION= 0.29.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/sentry-cli/Makefile b/devel/sentry-cli/Makefile index 2d208f6c2c00..a8886a464db8 100644 --- a/devel/sentry-cli/Makefile +++ b/devel/sentry-cli/Makefile @@ -1,6 +1,6 @@ PORTNAME= sentry-cli DISTVERSION= 2.31.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/signal-sqlcipher-extension/Makefile b/devel/signal-sqlcipher-extension/Makefile index 8177aa951acd..046734f25f45 100644 --- a/devel/signal-sqlcipher-extension/Makefile +++ b/devel/signal-sqlcipher-extension/Makefile @@ -1,7 +1,7 @@ PORTNAME= signal-sqlcipher-extension DISTVERSIONPREFIX= v DISTVERSION= 0.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= mikael@FreeBSD.org diff --git a/devel/snazy/Makefile b/devel/snazy/Makefile index 321757b43130..a8de5d859cf9 100644 --- a/devel/snazy/Makefile +++ b/devel/snazy/Makefile @@ -1,5 +1,6 @@ PORTNAME= snazy DISTVERSION= 0.58.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/spr/Makefile b/devel/spr/Makefile index 6ef2ae0bbfb2..71b25105f03f 100644 --- a/devel/spr/Makefile +++ b/devel/spr/Makefile @@ -1,7 +1,7 @@ PORTNAME= spr DISTVERSIONPREFIX= v DISTVERSION= 1.3.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/stgit/Makefile b/devel/stgit/Makefile index 7f33dc117b16..3884243cf18b 100644 --- a/devel/stgit/Makefile +++ b/devel/stgit/Makefile @@ -1,6 +1,7 @@ PORTNAME= stgit DISTVERSIONPREFIX= v DISTVERSION= 2.5.5 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/stringzilla/Makefile b/devel/stringzilla/Makefile index 059b3ffa0afa..c760abf66ea2 100644 --- a/devel/stringzilla/Makefile +++ b/devel/stringzilla/Makefile @@ -1,6 +1,6 @@ PORTNAME= stringzilla DISTVERSIONPREFIX= v -DISTVERSION= 4.4.2 +DISTVERSION= 4.5.1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/stringzilla/distinfo b/devel/stringzilla/distinfo index 1b2581f446d5..ba28d1494679 100644 --- a/devel/stringzilla/distinfo +++ b/devel/stringzilla/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1764921730 -SHA256 (ashvardanian-StringZilla-v4.4.2_GH0.tar.gz) = 5c49782bc7f5a7392c8b960248d3cc9ba87b3a9629b665f731a2d407fefe425b -SIZE (ashvardanian-StringZilla-v4.4.2_GH0.tar.gz) = 729225 +TIMESTAMP = 1765878785 +SHA256 (ashvardanian-StringZilla-v4.5.1_GH0.tar.gz) = 2b706dff69baa28911f7df445f62391b8cc4b6b599c542a015dd685e7ea01948 +SIZE (ashvardanian-StringZilla-v4.5.1_GH0.tar.gz) = 784132 SHA256 (ashvardanian-ForkUnion-c613f50_GH0.tar.gz) = 04875a3cfd40fd1c6d4350f8c4d9fc4d8a0b601084210e884fd2908129c40562 SIZE (ashvardanian-ForkUnion-c613f50_GH0.tar.gz) = 110524 diff --git a/devel/stringzilla/pkg-plist b/devel/stringzilla/pkg-plist index 1c8ddc209417..7d3112a6f52c 100644 --- a/devel/stringzilla/pkg-plist +++ b/devel/stringzilla/pkg-plist @@ -12,6 +12,7 @@ include/stringzilla/types.h include/stringzilla/types.hpp include/stringzilla/utf8.h include/stringzilla/utf8_case.h +include/stringzilla/utf8_word.h include/stringzillas/fingerprints.cuh include/stringzillas/fingerprints.hpp include/stringzillas/similarities.cuh @@ -21,10 +22,10 @@ include/stringzillas/types.cuh include/stringzillas/types.hpp lib/libstringzilla_bare.so lib/libstringzilla_bare.so.1 -lib/libstringzilla_bare.so.4.4.2 +lib/libstringzilla_bare.so.4.5.1 lib/libstringzilla_shared.so lib/libstringzilla_shared.so.1 -lib/libstringzilla_shared.so.4.4.2 +lib/libstringzilla_shared.so.4.5.1 lib/libstringzillas_cpus_shared.so lib/libstringzillas_cpus_shared.so.1 -lib/libstringzillas_cpus_shared.so.4.4.2 +lib/libstringzillas_cpus_shared.so.4.5.1 diff --git a/devel/stylua/Makefile b/devel/stylua/Makefile index 07f2f35a8110..e4676304579b 100644 --- a/devel/stylua/Makefile +++ b/devel/stylua/Makefile @@ -1,7 +1,7 @@ PORTNAME= stylua DISTVERSIONPREFIX= v DISTVERSION= 2.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/subprocess/Makefile b/devel/subprocess/Makefile index 5e73db8ffa2c..f26f0364f7d8 100644 --- a/devel/subprocess/Makefile +++ b/devel/subprocess/Makefile @@ -1,13 +1,8 @@ PORTNAME= subprocess DISTVERSIONPREFIX= v -DISTVERSION= 0.4.0-6 -DISTVERSIONSUFFIX= -g29d01c7 +DISTVERSION= 0.6.0 CATEGORIES= devel -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 2caf8c1e119d5f14f4ae31316ddfd03126e101ac.patch:-p1 # https://github.com/benman64/subprocess/pull/17 -PATCHFILES+= cef6823e5834053a20144b790945f7ed1808c28c.patch:-p1 # https://github.com/benman64/subprocess/pull/18 - MAINTAINER= yuri@FreeBSD.org COMMENT= C++ subprocess library similar in design to Python subprocess library WWW= https://github.com/benman64/subprocess @@ -32,4 +27,6 @@ do-install: .endfor ${INSTALL_LIB} ${BUILD_WRKSRC}/subprocess/libsubprocess.so ${STAGEDIR}${PREFIX}/lib +# tests as of 0.6.0: 100% tests passed, 0 tests failed out of 1 + .include <bsd.port.mk> diff --git a/devel/subprocess/distinfo b/devel/subprocess/distinfo index 3d0c6a8b7bf1..950f076cee11 100644 --- a/devel/subprocess/distinfo +++ b/devel/subprocess/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1717738163 -SHA256 (benman64-subprocess-v0.4.0-6-g29d01c7_GH0.tar.gz) = d52f6c578048de03aac10b100eeef42ef06677b5c1cc0816eae2e0906d2745df -SIZE (benman64-subprocess-v0.4.0-6-g29d01c7_GH0.tar.gz) = 717218 -SHA256 (2caf8c1e119d5f14f4ae31316ddfd03126e101ac.patch) = e6ed70cf42f7e43db6bfaea58c8c9eb1e0b5b83b0fb10fbae0f98a3e0d326259 -SIZE (2caf8c1e119d5f14f4ae31316ddfd03126e101ac.patch) = 677 -SHA256 (cef6823e5834053a20144b790945f7ed1808c28c.patch) = 9f82743ba74894497327f23d54a048a2fdf49ec82ee48bc5d10ed951bdabaa15 -SIZE (cef6823e5834053a20144b790945f7ed1808c28c.patch) = 1309 +TIMESTAMP = 1765787274 +SHA256 (benman64-subprocess-v0.6.0_GH0.tar.gz) = eb976fe5f632760a53398965df4d0ed4780e11cf0b154dc73ba2795585a25414 +SIZE (benman64-subprocess-v0.6.0_GH0.tar.gz) = 723949 diff --git a/devel/tabby/Makefile b/devel/tabby/Makefile index 056a6ba5177e..f6378d9dc49b 100644 --- a/devel/tabby/Makefile +++ b/devel/tabby/Makefile @@ -1,7 +1,7 @@ PORTNAME= tabby DISTVERSIONPREFIX= v DISTVERSION= 0.31.2 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel # machine-learning MASTER_SITES= https://github.com/swagger-api/swagger-ui/archive/refs/tags/:swagger PKGNAMESUFFIX= -ai-coding-assistant diff --git a/devel/tagref/Makefile b/devel/tagref/Makefile index 88b71c31124e..a08d88efce7d 100644 --- a/devel/tagref/Makefile +++ b/devel/tagref/Makefile @@ -1,7 +1,7 @@ PORTNAME= tagref DISTVERSIONPREFIX= v DISTVERSION= 1.10.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/terraform-ls/Makefile b/devel/terraform-ls/Makefile index b3176155ded0..be472d7e8eb0 100644 --- a/devel/terraform-ls/Makefile +++ b/devel/terraform-ls/Makefile @@ -10,7 +10,7 @@ WWW= https://github.com/hashicorp/terraform-ls LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.24,modules +USES= go:1.24+,modules GO_MODULE= github.com/hashicorp/terraform-ls diff --git a/devel/tevent017/Makefile b/devel/tevent017/Makefile index 26328c687a1b..113fe05b878b 100644 --- a/devel/tevent017/Makefile +++ b/devel/tevent017/Makefile @@ -1,5 +1,5 @@ PORTNAME= tevent -DISTVERSION= 0.17.0 +DISTVERSION= 0.17.1 CATEGORIES= devel MASTER_SITES= SAMBA PKGNAMESUFFIX= 017 diff --git a/devel/tevent017/distinfo b/devel/tevent017/distinfo index b350508b3a79..0e362286e833 100644 --- a/devel/tevent017/distinfo +++ b/devel/tevent017/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751442485 -SHA256 (tevent-0.17.0.tar.gz) = 7702fb373b69da2960b86134b6a9ec6fa0b949a01756fec00a4a6a43575c8361 -SIZE (tevent-0.17.0.tar.gz) = 903251 +TIMESTAMP = 1765737897 +SHA256 (tevent-0.17.1.tar.gz) = 1be2dea737cde25fe06621f84945e63eb71259e0c43e9f8f5da482dab1a7be92 +SIZE (tevent-0.17.1.tar.gz) = 902444 diff --git a/devel/texlab/Makefile b/devel/texlab/Makefile index 35c64b214c28..ba0a696ea7ff 100644 --- a/devel/texlab/Makefile +++ b/devel/texlab/Makefile @@ -1,7 +1,7 @@ PORTNAME= texlab DISTVERSIONPREFIX= v DISTVERSION= 4.2.0 -PORTREVISION= 30 +PORTREVISION= 31 CATEGORIES= devel MAINTAINER= kfv@kfv.io diff --git a/devel/the-way/Makefile b/devel/the-way/Makefile index c977c54cecf3..596198ef5bce 100644 --- a/devel/the-way/Makefile +++ b/devel/the-way/Makefile @@ -1,7 +1,7 @@ PORTNAME= the-way DISTVERSIONPREFIX= v DISTVERSION= 0.20.3 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/tig/Makefile b/devel/tig/Makefile index 7c9c9bded2bb..c11187565810 100644 --- a/devel/tig/Makefile +++ b/devel/tig/Makefile @@ -1,5 +1,5 @@ PORTNAME= tig -DISTVERSION= 2.5.12 +DISTVERSION= 2.6.0 CATEGORIES= devel MASTER_SITES= https://github.com/jonas/tig/releases/download/${DISTNAME}/ @@ -14,7 +14,6 @@ TEST_DEPENDS= git:devel/git USES= gmake iconv ncurses pkgconfig readline GNU_CONFIGURE= yes -CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} MAKE_ARGS= V=1 INSTALL_TARGET= install install-doc-man @@ -36,7 +35,7 @@ OPTIONS_DEFINE= GIT PCRE GIT_DESC= Install devel/git as runtime dependency GIT_RUN_DEPENDS= git:devel/git -GIT_VARS_OFF= PKGMESSAGE="${.CURDIR}/pkg-message-git" +GIT_VARS_OFF= PKGMESSAGE="${.CURDIR}/pkg-message ${.CURDIR}/pkg-message-git" PCRE_LIB_DEPENDS= libpcre2-posix.so:devel/pcre2 PCRE_CONFIGURE_WITH= pcre diff --git a/devel/tig/distinfo b/devel/tig/distinfo index 5ee03efd5274..ba6a9960987c 100644 --- a/devel/tig/distinfo +++ b/devel/tig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748630550 -SHA256 (tig-2.5.12.tar.gz) = 5dda8a098810bb499096e17fc9f69c0a5915a23f46be27209fc8195d7a792108 -SIZE (tig-2.5.12.tar.gz) = 1190652 +TIMESTAMP = 1760263709 +SHA256 (tig-2.6.0.tar.gz) = 99d4a0fdd3d93547ebacfe511195cb92e4f75b91644c06293c067f401addeb3e +SIZE (tig-2.6.0.tar.gz) = 1196658 diff --git a/devel/tig/pkg-message b/devel/tig/pkg-message new file mode 100644 index 000000000000..b0d0a8b9bf9a --- /dev/null +++ b/devel/tig/pkg-message @@ -0,0 +1,9 @@ +[ +{ type: install + message: <<EOM +In version 2.6.0, users should update the settings for the blame, +main, reflog, and refs views in their ~/.tigrc file to include the +committer column. +EOM +} +] diff --git a/devel/tig/pkg-message-git b/devel/tig/pkg-message-git index 9cf7166699dd..7d4e7ce5fbee 100644 --- a/devel/tig/pkg-message-git +++ b/devel/tig/pkg-message-git @@ -1,6 +1,7 @@ [ { type: install message: <<EOM + Required to (post-)install devel/git* port as runtime dependency. EOM } diff --git a/devel/tinycbor/Makefile b/devel/tinycbor/Makefile index 0b1f4194b2c7..f6cdce53be96 100644 --- a/devel/tinycbor/Makefile +++ b/devel/tinycbor/Makefile @@ -16,11 +16,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcjson.so:devel/libcjson -USES= gmake localbase:ldflags pathfix +USES= gmake localbase:ldflags INSTALL_TARGET= install-strip MAKE_ARGS= SOVERSION=${PORTVERSION:R:R} -PATHFIX_MAKEFILEIN= Makefile PLIST_SUB= PORTVERSION=${PORTVERSION} diff --git a/devel/tokei/Makefile b/devel/tokei/Makefile index fcd81833e7e8..a3844514d96f 100644 --- a/devel/tokei/Makefile +++ b/devel/tokei/Makefile @@ -1,6 +1,7 @@ PORTNAME= tokei DISTVERSIONPREFIX= v DISTVERSION= 13.0.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org diff --git a/devel/tokio-console/Makefile b/devel/tokio-console/Makefile index 48de721b5db8..105a5ffa0ff5 100644 --- a/devel/tokio-console/Makefile +++ b/devel/tokio-console/Makefile @@ -1,7 +1,7 @@ PORTNAME= tokio-console DISTVERSIONPREFIX= tokio-console-v DISTVERSION= 0.1.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/tree-sitter-cli/Makefile b/devel/tree-sitter-cli/Makefile index babe8f5d3ea5..d5d1495608bf 100644 --- a/devel/tree-sitter-cli/Makefile +++ b/devel/tree-sitter-cli/Makefile @@ -1,7 +1,7 @@ PORTNAME= tree-sitter-cli DISTVERSIONPREFIX= v DISTVERSION= 0.25.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= amad@atl.tools diff --git a/devel/tree-sitter-graph/Makefile b/devel/tree-sitter-graph/Makefile index d84ae6c86aea..bf69dc837a5e 100644 --- a/devel/tree-sitter-graph/Makefile +++ b/devel/tree-sitter-graph/Makefile @@ -1,7 +1,7 @@ PORTNAME= tree-sitter-graph DISTVERSIONPREFIX= v DISTVERSION= 0.12.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/treefmt/Makefile b/devel/treefmt/Makefile index fb4d2c1b0357..dd75afd8e866 100644 --- a/devel/treefmt/Makefile +++ b/devel/treefmt/Makefile @@ -12,10 +12,7 @@ WWW= https://treefmt.com/ \ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.22,modules - -DEPRECATED= Uses old go, but try building without USES=go:someversion -EXPIRATION_DATE=2026-01-01 +USES= go:modules USE_GITHUB= yes GH_ACCOUNT= numtide diff --git a/devel/twiggy/Makefile b/devel/twiggy/Makefile index 5fef2ad4debd..2482cafac418 100644 --- a/devel/twiggy/Makefile +++ b/devel/twiggy/Makefile @@ -1,6 +1,6 @@ PORTNAME= twiggy DISTVERSION= 0.6.0 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= devel www MAINTAINER= yuri@FreeBSD.org diff --git a/devel/typeshare/Makefile b/devel/typeshare/Makefile index 6cf8b06102a3..e8c5f333dd4d 100644 --- a/devel/typeshare/Makefile +++ b/devel/typeshare/Makefile @@ -1,7 +1,7 @@ PORTNAME= typeshare DISTVERSIONPREFIX= v DISTVERSION= 1.13.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/unit-otel/Makefile b/devel/unit-otel/Makefile index 962454981e31..a2e8e5511fb9 100644 --- a/devel/unit-otel/Makefile +++ b/devel/unit-otel/Makefile @@ -1,6 +1,6 @@ PORTNAME= unit-otel PORTVERSION= ${UNIT_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES?= https://unit.nginx.org/download/ DISTFILES= unit-${PORTVERSION}.tar.gz diff --git a/devel/uv/Makefile b/devel/uv/Makefile index 29f00230495d..e27e46ad2b73 100644 --- a/devel/uv/Makefile +++ b/devel/uv/Makefile @@ -1,5 +1,6 @@ PORTNAME= uv -DISTVERSION= 0.9.15 +DISTVERSION= 0.9.17 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/uv/Makefile.crates b/devel/uv/Makefile.crates index 9a285abc0f4b..e43b1236c6d2 100644 --- a/devel/uv/Makefile.crates +++ b/devel/uv/Makefile.crates @@ -3,7 +3,7 @@ CARGO_CRATES= addr2line-0.24.2 \ aes-0.8.4 \ aho-corasick-1.1.3 \ allocator-api2-0.2.21 \ - ambient-id-0.0.6 \ + ambient-id-0.0.7 \ anes-0.1.6 \ anstream-0.6.21 \ anstyle-1.0.11 \ @@ -22,7 +22,7 @@ CARGO_CRATES= addr2line-0.24.2 \ astral-pubgrub-0.3.3 \ astral-reqwest-middleware-0.4.2 \ astral-reqwest-retry-0.7.0 \ - astral-tl-0.7.9 \ + astral-tl-0.7.11 \ astral-tokio-tar-0.5.6 \ astral-version-ranges-0.1.3 \ astral_async_http_range_reader-0.9.1 \ diff --git a/devel/uv/distinfo b/devel/uv/distinfo index c81b4f7ef247..79f5d0bc1aaf 100644 --- a/devel/uv/distinfo +++ b/devel/uv/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1764758200 +TIMESTAMP = 1765783832 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -9,8 +9,8 @@ SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2d SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 SHA256 (rust/crates/allocator-api2-0.2.21.crate) = 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 SIZE (rust/crates/allocator-api2-0.2.21.crate) = 63622 -SHA256 (rust/crates/ambient-id-0.0.6.crate) = 36b48a3b1ad866e5034859be45edd1ebba2f097289c8a34b61623c76f10480f3 -SIZE (rust/crates/ambient-id-0.0.6.crate) = 24196 +SHA256 (rust/crates/ambient-id-0.0.7.crate) = b8cad022ed72ad2176498be1c097bb46e598193e92f3491ea0766980edeee168 +SIZE (rust/crates/ambient-id-0.0.7.crate) = 25369 SHA256 (rust/crates/anes-0.1.6.crate) = 4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299 SIZE (rust/crates/anes-0.1.6.crate) = 23857 SHA256 (rust/crates/anstream-0.6.21.crate) = 43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a @@ -47,8 +47,8 @@ SHA256 (rust/crates/astral-reqwest-middleware-0.4.2.crate) = 638d02e24aeb92f9537 SIZE (rust/crates/astral-reqwest-middleware-0.4.2.crate) = 27676 SHA256 (rust/crates/astral-reqwest-retry-0.7.0.crate) = cb7549bd00f62f73f2e7e76f3f77ccdabb31873f4f02f758ed88ad739d522867 SIZE (rust/crates/astral-reqwest-retry-0.7.0.crate) = 27224 -SHA256 (rust/crates/astral-tl-0.7.9.crate) = 915b5af1203c9c635c62edcbdaa36ee54b17f84809f7769912d356c35f9a6cd7 -SIZE (rust/crates/astral-tl-0.7.9.crate) = 39097 +SHA256 (rust/crates/astral-tl-0.7.11.crate) = d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3 +SIZE (rust/crates/astral-tl-0.7.11.crate) = 44281 SHA256 (rust/crates/astral-tokio-tar-0.5.6.crate) = ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5 SIZE (rust/crates/astral-tokio-tar-0.5.6.crate) = 64648 SHA256 (rust/crates/astral-version-ranges-0.1.3.crate) = e7adc2308a566fab9de02bc0e05d18c5a21cb0e793684e4f64c8eb956969b074 @@ -1293,5 +1293,5 @@ SHA256 (rust/crates/zvariant_derive-5.6.0.crate) = 3a8c68501be459a8dbfffbe5d792a SIZE (rust/crates/zvariant_derive-5.6.0.crate) = 14278 SHA256 (rust/crates/zvariant_utils-3.2.0.crate) = e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34 SIZE (rust/crates/zvariant_utils-3.2.0.crate) = 14779 -SHA256 (astral-sh-uv-0.9.15_GH0.tar.gz) = 4bd98152fbeb3cbe4a06fd0d49824d44db3023e24d17ba265df71fd52591bc09 -SIZE (astral-sh-uv-0.9.15_GH0.tar.gz) = 4887603 +SHA256 (astral-sh-uv-0.9.17_GH0.tar.gz) = ea948dc7141c56c798ff603f71793351917f9c777302d428840848515999fb29 +SIZE (astral-sh-uv-0.9.17_GH0.tar.gz) = 4774663 diff --git a/devel/uvwasi/Makefile b/devel/uvwasi/Makefile index 992ee45d26da..69410a01b07a 100644 --- a/devel/uvwasi/Makefile +++ b/devel/uvwasi/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuv.so:devel/libuv -USES= cmake:testing pathfix +USES= cmake:testing CMAKE_OFF= ASAN \ BUILD_TESTING \ diff --git a/devel/wasm-server-runner/Makefile b/devel/wasm-server-runner/Makefile index 2c0bea235b5c..52b39049421d 100644 --- a/devel/wasm-server-runner/Makefile +++ b/devel/wasm-server-runner/Makefile @@ -1,7 +1,7 @@ PORTNAME= wasm-server-runner DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/wasmer/Makefile b/devel/wasmer/Makefile index ba86ec5a425f..1227347ddc78 100644 --- a/devel/wasmer/Makefile +++ b/devel/wasmer/Makefile @@ -1,7 +1,7 @@ PORTNAME= wasmer DISTVERSIONPREFIX= v DISTVERSION= 6.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= kjozic@gmail.com diff --git a/devel/wizer/Makefile b/devel/wizer/Makefile index 763cef3056f5..b5810f7ae258 100644 --- a/devel/wizer/Makefile +++ b/devel/wizer/Makefile @@ -1,7 +1,7 @@ PORTNAME= wizer DISTVERSIONPREFIX= v DISTVERSION= 10.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel www MAINTAINER= yuri@FreeBSD.org diff --git a/devel/xtensa-esp-elf/Makefile b/devel/xtensa-esp-elf/Makefile index c8fde1adf154..d93e54f3db16 100644 --- a/devel/xtensa-esp-elf/Makefile +++ b/devel/xtensa-esp-elf/Makefile @@ -1,6 +1,6 @@ PORTNAME= xtensa-esp-elf DISTVERSION= 13.2.0_20240530 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MASTER_SITES= https://github.com/espressif/crosstool-NG/releases/download/esp-${DISTVERSION}/:source1 \ GNU/gmp:source2 \ diff --git a/devel/zziplib/Makefile b/devel/zziplib/Makefile index d4685a39f506..9c83c7910d0d 100644 --- a/devel/zziplib/Makefile +++ b/devel/zziplib/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE_MPL11= ${WRKSRC}/docs/COPYING.MPL BUILD_DEPENDS= bash:shells/bash -USES= cmake compiler:c11 cpe pathfix +USES= cmake compiler:c11 cpe CMAKE_OFF= FORTIFY \ MSVC_STATIC_RUNTIME \ |
