Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 May 2026 22:58:16 +0000
From:      Yusuf Yaman <nxjoseph@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Cc:        Goran=?utf-8?Q? Meki=C4=87?= <meka@tilda.center>
Subject:   git: 5b7cabf1da39 - main - audio/maolan: Update 0.0.3 => 0.1.0
Message-ID:  <6a07a508.46844.337cbae0@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by nxjoseph:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5b7cabf1da39bcb5ec398c4c57ea1577828200b6

commit 5b7cabf1da39bcb5ec398c4c57ea1577828200b6
Author:     Goran Mekić <meka@tilda.center>
AuthorDate: 2026-05-09 14:05:45 +0000
Commit:     Yusuf Yaman <nxjoseph@FreeBSD.org>
CommitDate: 2026-05-15 22:57:51 +0000

    audio/maolan: Update 0.0.3 => 0.1.0
    
    Changelogs:
    - https://github.com/maolan/maolan/releases/tag/0.0.4
    - https://github.com/maolan/maolan/releases/tag/0.0.5
    - https://github.com/maolan/maolan/releases/tag/0.0.6
    - https://github.com/maolan/maolan/releases/tag/0.0.7
    - https://github.com/maolan/maolan/releases/tag/0.1.0
    
    PR:             293997
    Reported by:    Goran Mekić <meka@tilda.center> (maintainer)
    Approved by:    osa, vvd (Mentors, implicit)
---
 audio/maolan/Makefile        |  24 +-
 audio/maolan/Makefile.crates | 433 +++++++++++++++++++--
 audio/maolan/distinfo        | 868 ++++++++++++++++++++++++++++++++++++++++---
 audio/maolan/pkg-plist       |   5 +
 4 files changed, 1232 insertions(+), 98 deletions(-)

diff --git a/audio/maolan/Makefile b/audio/maolan/Makefile
index 8a8ec8b44237..13e8f054398f 100644
--- a/audio/maolan/Makefile
+++ b/audio/maolan/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	maolan
-DISTVERSION=	0.0.3
-PORTREVISION=	2
+DISTVERSION=	0.1.0
 CATEGORIES=	audio
 
 MAINTAINER=	meka@tilda.center
@@ -12,12 +11,15 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 ONLY_FOR_ARCHS=	amd64
 
-LIB_DEPENDS=	libjack.so:audio/jack \
+LIB_DEPENDS=	libavutil.so:multimedia/ffmpeg \
+		libjack.so:audio/jack \
 		liblilv-0.so:audio/lilv \
+		libonig.so:devel/oniguruma \
 		librubberband.so:audio/rubberband \
+		libsentencepiece.so:textproc/sentencepiece \
 		libsuil-0.so:audio/suil
 
-USES=		cargo gnome pkgconfig xorg
+USES=		cargo gnome llvm:build pkgconfig xorg
 USE_GITHUB=	yes
 GH_ACCOUNT=	maolan
 GH_TAGNAME=	${DISTVERSION}
@@ -25,12 +27,14 @@ GH_TAGNAME=	${DISTVERSION}
 USE_GNOME=	glib20 gtk20
 USE_XORG=	x11
 
-PLIST_FILES=	bin/${PORTNAME}
+MAKE_ENV=	LIBCLANG_PATH="${LOCALBASE}/llvm${LLVM_VERSION}/lib"
 
-do-test:
-	@${CARGO_CARGO_RUN} test --manifest-path ${CARGO_CARGOTOML} --verbose \
-		${CARGO_TEST_ARGS}
-	@${CARGO_CARGO_RUN} test --manifest-path ${CARGO_WRKSRC}/engine/Cargo.toml \
-		--verbose ${CARGO_TEST_ARGS}
+post-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/applications
+	${INSTALL_DATA} ${WRKSRC}/desktop/maolan-bsd.desktop \
+		${STAGEDIR}${PREFIX}/share/applications/maolan.desktop
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
+	${INSTALL_DATA} ${WRKSRC}/images/maolan.svg \
+		${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
 
 .include <bsd.port.mk>
diff --git a/audio/maolan/Makefile.crates b/audio/maolan/Makefile.crates
index b3f84d6f0337..746448b8ce88 100644
--- a/audio/maolan/Makefile.crates
+++ b/audio/maolan/Makefile.crates
@@ -1,11 +1,13 @@
 CARGO_CRATES=	ab_glyph-0.2.32 \
 		ab_glyph_rasterizer-0.1.10 \
+		addr2line-0.25.1 \
 		adler2-2.0.1 \
 		ahash-0.8.12 \
 		aho-corasick-1.1.4 \
 		aliasable-0.1.3 \
 		aligned-0.4.3 \
 		aligned-vec-0.6.4 \
+		allocator-api2-0.2.21 \
 		alsa-0.9.1 \
 		alsa-sys-0.3.1 \
 		android-activity-0.6.0 \
@@ -13,7 +15,6 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		android-properties-0.2.2 \
 		android_system_properties-0.1.5 \
 		anyhow-1.0.102 \
-		aotuv_lancer_vorbis_sys-0.1.5 \
 		arbitrary-1.4.2 \
 		arg_enum_proc_macro-0.3.4 \
 		arrayref-0.3.9 \
@@ -31,14 +32,22 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		async-signal-0.2.13 \
 		async-task-4.7.1 \
 		async-trait-0.1.89 \
+		atomic-0.6.1 \
 		atomic-waker-1.1.2 \
+		atomic_float-1.1.0 \
 		autocfg-1.5.0 \
-		autotools-0.2.7 \
 		av-scenechange-0.14.1 \
 		av1-grain-0.2.5 \
 		avif-serialize-0.8.8 \
+		backtrace-0.3.76 \
+		base64-0.13.1 \
+		base64-0.22.1 \
+		bincode-2.0.1 \
+		bindgen-0.71.1 \
 		bindgen-0.72.1 \
+		bit-set-0.5.3 \
 		bit-set-0.8.0 \
+		bit-vec-0.6.3 \
 		bit-vec-0.8.0 \
 		bit_field-0.10.3 \
 		bitflags-1.3.2 \
@@ -52,6 +61,27 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		built-0.7.7 \
 		built-0.8.0 \
 		bumpalo-3.20.2 \
+		burn-0.21.0-pre.1 \
+		burn-autodiff-0.21.0-pre.1 \
+		burn-backend-0.21.0-pre.1 \
+		burn-candle-0.21.0-pre.1 \
+		burn-core-0.21.0-pre.1 \
+		burn-cpu-0.21.0-pre.1 \
+		burn-cubecl-0.21.0-pre.1 \
+		burn-cubecl-fusion-0.21.0-pre.1 \
+		burn-cuda-0.21.0-pre.1 \
+		burn-derive-0.21.0-pre.1 \
+		burn-fusion-0.21.0-pre.1 \
+		burn-ir-0.21.0-pre.1 \
+		burn-ndarray-0.21.0-pre.1 \
+		burn-nn-0.21.0-pre.1 \
+		burn-optim-0.21.0-pre.1 \
+		burn-rocm-0.21.0-pre.1 \
+		burn-router-0.21.0-pre.1 \
+		burn-std-0.21.0-pre.1 \
+		burn-store-0.21.0-pre.1 \
+		burn-tensor-0.21.0-pre.1 \
+		burn-wgpu-0.21.0-pre.1 \
 		bytemuck-1.25.0 \
 		bytemuck_derive-1.10.2 \
 		byteorder-1.5.0 \
@@ -61,22 +91,41 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		calloop-0.14.4 \
 		calloop-wayland-source-0.3.0 \
 		calloop-wayland-source-0.4.1 \
-		cc-1.2.56 \
+		candle-core-0.9.2 \
+		caseless-0.2.2 \
+		castaway-0.2.4 \
+		cc-1.2.57 \
 		cesu8-1.1.0 \
 		cexpr-0.6.0 \
 		cfg-if-1.0.4 \
 		cfg_aliases-0.2.1 \
 		chrono-0.4.44 \
+		ciborium-0.2.2 \
+		ciborium-io-0.2.2 \
+		ciborium-ll-0.2.2 \
 		clang-sys-1.8.1 \
 		clipboard-win-5.4.1 \
 		clipboard_macos-0.1.1 \
 		clipboard_wayland-0.2.2 \
 		clipboard_x11-0.4.3 \
+		cmake-0.1.58 \
 		codespan-reporting-0.12.0 \
 		color_quant-1.1.0 \
+		colored-3.1.1 \
 		com-scrape-types-0.1.1 \
 		combine-4.6.7 \
+		compact_str-0.9.0 \
+		comrak-0.39.1 \
 		concurrent-queue-2.5.0 \
+		console-0.15.11 \
+		console-0.16.3 \
+		const-random-0.1.18 \
+		const-random-macro-0.1.16 \
+		constcat-0.6.1 \
+		convert_case-0.8.0 \
+		convert_case-0.10.0 \
+		cookie-0.18.1 \
+		cookie_store-0.22.1 \
 		core-foundation-0.9.4 \
 		core-foundation-0.10.1 \
 		core-foundation-sys-0.8.7 \
@@ -85,56 +134,136 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		core-graphics-types-0.2.0 \
 		core2-0.4.0 \
 		core_maths-0.1.1 \
+		coreaudio-rs-0.11.3 \
 		coreaudio-sys-0.2.17 \
 		coremidi-0.7.0 \
+		coremidi-0.9.0 \
 		coremidi-sys-3.2.0 \
 		cosmic-text-0.15.0 \
+		cpal-0.15.3 \
+		cpufeatures-0.2.17 \
 		crc-3.4.0 \
 		crc-catalog-2.4.0 \
 		crc32fast-1.5.0 \
+		critical-section-1.2.0 \
 		crossbeam-channel-0.5.15 \
 		crossbeam-deque-0.8.6 \
 		crossbeam-epoch-0.9.18 \
 		crossbeam-utils-0.8.21 \
+		crossterm-0.29.0 \
+		crossterm_winapi-0.9.1 \
 		crunchy-0.2.4 \
 		cryoglyph-0.1.0 \
 		crypto-common-0.1.7 \
+		csscolorparser-0.6.2 \
 		ctor-lite-0.1.2 \
+		cubecl-0.10.0-pre.1 \
+		cubecl-common-0.10.0-pre.1 \
+		cubecl-core-0.10.0-pre.1 \
+		cubecl-cpp-0.10.0-pre.1 \
+		cubecl-cpu-0.10.0-pre.1 \
+		cubecl-cuda-0.10.0-pre.1 \
+		cubecl-hip-0.10.0-pre.1 \
+		cubecl-hip-sys-7.1.5280200 \
+		cubecl-ir-0.10.0-pre.1 \
+		cubecl-macros-0.10.0-pre.1 \
+		cubecl-macros-internal-0.10.0-pre.1 \
+		cubecl-opt-0.10.0-pre.1 \
+		cubecl-runtime-0.10.0-pre.1 \
+		cubecl-std-0.10.0-pre.1 \
+		cubecl-wgpu-0.10.0-pre.1 \
+		cubecl-zspace-0.10.0-pre.1 \
+		cubek-0.2.0-pre.1 \
+		cubek-attention-0.2.0-pre.1 \
+		cubek-convolution-0.2.0-pre.1 \
+		cubek-matmul-0.2.0-pre.1 \
+		cubek-quant-0.2.0-pre.1 \
+		cubek-random-0.2.0-pre.1 \
+		cubek-reduce-0.2.0-pre.1 \
+		cudarc-0.19.4 \
 		cursor-icon-1.2.0 \
+		darling-0.20.11 \
+		darling-0.21.3 \
+		darling-0.23.0 \
+		darling_core-0.20.11 \
+		darling_core-0.21.3 \
+		darling_core-0.23.0 \
+		darling_macro-0.20.11 \
+		darling_macro-0.21.3 \
+		darling_macro-0.23.0 \
 		dasp_frame-0.11.0 \
 		dasp_sample-0.11.0 \
+		data-encoding-2.10.0 \
+		deltae-0.3.2 \
+		deranged-0.5.8 \
+		derive-new-0.7.0 \
+		derive_builder-0.20.2 \
+		derive_builder_core-0.20.2 \
+		derive_builder_macro-0.20.2 \
+		derive_more-2.1.1 \
+		derive_more-impl-2.1.1 \
+		deunicode-1.6.2 \
 		digest-0.10.7 \
+		dirs-6.0.0 \
+		dirs-sys-0.5.0 \
 		dispatch-0.2.0 \
 		dispatch2-0.3.1 \
+		displaydoc-0.2.5 \
 		dlib-0.5.3 \
 		document-features-0.2.12 \
 		downcast-rs-1.2.1 \
 		dpi-0.1.2 \
+		dyn-stack-0.13.2 \
+		dyn-stack-macros-0.1.3 \
 		ebur128-0.1.10 \
 		either-1.15.0 \
+		embassy-futures-0.1.2 \
+		embassy-time-0.5.1 \
+		embassy-time-driver-0.2.2 \
+		embedded-hal-0.2.7 \
+		embedded-hal-1.0.0 \
+		embedded-hal-async-1.0.0 \
+		encode_unicode-1.0.0 \
 		encoding_rs-0.8.35 \
 		endi-1.1.1 \
+		entities-1.0.1 \
+		enum-as-inner-0.6.1 \
 		enumflags2-0.7.12 \
 		enumflags2_derive-0.7.12 \
+		enumset-1.1.10 \
+		enumset_derive-0.14.0 \
 		equator-0.4.2 \
 		equator-macro-0.4.2 \
 		equivalent-1.0.2 \
 		errno-0.3.14 \
 		error-code-3.3.2 \
 		etagere-0.2.15 \
-		euclid-0.22.13 \
+		euclid-0.22.14 \
 		event-listener-5.4.1 \
 		event-listener-strategy-0.5.4 \
 		exr-1.74.0 \
 		extended-0.1.0 \
+		fancy-regex-0.11.0 \
 		fastrand-2.3.0 \
 		fax-0.2.6 \
 		fax_derive-0.2.0 \
 		fdeflate-0.3.7 \
+		ffmpeg-next-8.1.0 \
+		ffmpeg-sys-next-8.1.0 \
+		filedescriptor-0.8.3 \
+		filetime-0.2.27 \
 		find-msvc-tools-0.1.9 \
+		finl_unicode-1.4.0 \
+		fixedbitset-0.4.2 \
+		fixedbitset-0.5.7 \
 		flacenc-0.5.1 \
 		flate2-1.1.9 \
+		float-ord-0.3.2 \
+		float4-0.1.0 \
+		float8-0.6.1 \
+		float8-0.7.0 \
 		float_next_after-1.0.0 \
+		fnv-1.0.7 \
 		foldhash-0.1.5 \
 		foldhash-0.2.0 \
 		font-types-0.10.1 \
@@ -143,6 +272,7 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		foreign-types-0.5.0 \
 		foreign-types-macros-0.2.3 \
 		foreign-types-shared-0.3.1 \
+		form_urlencoded-1.2.2 \
 		futures-0.3.32 \
 		futures-channel-0.3.32 \
 		futures-core-0.3.32 \
@@ -153,12 +283,20 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		futures-sink-0.3.32 \
 		futures-task-0.3.32 \
 		futures-util-0.3.32 \
+		gemm-0.19.0 \
+		gemm-c32-0.19.0 \
+		gemm-c64-0.19.0 \
+		gemm-common-0.19.0 \
+		gemm-f16-0.19.0 \
+		gemm-f32-0.19.0 \
+		gemm-f64-0.19.0 \
 		generic-array-0.14.7 \
 		gethostname-1.1.0 \
 		getrandom-0.2.17 \
 		getrandom-0.3.4 \
 		getrandom-0.4.2 \
 		gif-0.14.1 \
+		gimli-0.32.3 \
 		gl_generator-0.14.0 \
 		glam-0.25.0 \
 		glob-0.3.3 \
@@ -167,12 +305,15 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		gpu-alloc-0.6.0 \
 		gpu-alloc-types-0.3.0 \
 		gpu-allocator-0.27.0 \
+		gpu-allocator-0.28.0 \
 		gpu-descriptor-0.3.2 \
 		gpu-descriptor-types-0.2.0 \
 		guillotiere-0.6.2 \
+		h2-0.4.13 \
 		half-2.7.1 \
 		harfrust-0.3.2 \
 		hash32-0.3.1 \
+		hashbrown-0.13.2 \
 		hashbrown-0.15.5 \
 		hashbrown-0.16.1 \
 		heapless-0.8.0 \
@@ -181,6 +322,15 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		hermit-abi-0.5.2 \
 		hex-0.4.3 \
 		hexf-parse-0.2.1 \
+		hf-hub-0.5.0 \
+		hound-3.5.1 \
+		http-1.4.0 \
+		http-body-1.0.1 \
+		http-body-util-0.1.3 \
+		httparse-1.10.1 \
+		hyper-1.8.1 \
+		hyper-rustls-0.27.7 \
+		hyper-util-0.1.20 \
 		i24-1.0.1 \
 		iana-time-zone-0.1.65 \
 		iana-time-zone-haiku-0.1.2 \
@@ -188,7 +338,7 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		iced_aw-0.13.1 \
 		iced_core-0.14.0 \
 		iced_debug-0.14.0 \
-		iced_drop-0.2.16 \
+		iced_drop-0.2.19 \
 		iced_fonts-0.3.0 \
 		iced_fonts_macros-0.3.0 \
 		iced_futures-0.14.0 \
@@ -200,26 +350,48 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		iced_wgpu-0.14.0 \
 		iced_widget-0.14.2 \
 		iced_winit-0.14.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 \
 		id-arena-2.3.0 \
+		ident_case-1.0.1 \
+		idna-1.1.0 \
+		idna_adapter-1.2.1 \
 		image-0.25.10 \
 		image-webp-0.2.4 \
 		imgref-1.12.0 \
 		indexmap-2.13.0 \
+		indicatif-0.17.11 \
+		indicatif-0.18.4 \
+		indoc-2.0.7 \
+		instability-0.3.12 \
 		instant-0.1.13 \
 		interpolate_name-0.2.4 \
+		ipnet-2.12.0 \
+		iri-string-0.7.11 \
+		itertools-0.11.0 \
+		itertools-0.12.1 \
 		itertools-0.13.0 \
 		itertools-0.14.0 \
-		itoa-1.0.17 \
+		itoa-1.0.18 \
 		jack-0.13.5 \
 		jack-sys-0.5.1 \
 		jni-0.21.1 \
-		jni-sys-0.3.0 \
+		jni-sys-0.3.1 \
+		jni-sys-0.4.1 \
+		jni-sys-macros-0.4.1 \
 		jobserver-0.1.34 \
 		js-sys-0.3.91 \
 		kamadak-exif-0.6.1 \
+		kasuari-0.4.12 \
 		khronos-egl-6.0.0 \
 		khronos_api-3.1.0 \
 		kurbo-0.10.4 \
+		lab-0.11.0 \
 		lazy_static-1.5.0 \
 		leb128fmt-0.1.0 \
 		lebe-0.5.3 \
@@ -227,61 +399,98 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		libfuzzer-sys-0.4.12 \
 		libloading-0.7.4 \
 		libloading-0.8.9 \
+		libloading-0.9.0 \
+		liblzma-0.4.6 \
+		liblzma-sys-0.4.5 \
 		libm-0.2.16 \
 		libredox-0.1.14 \
 		lilt-0.8.1 \
 		lilv-0.2.4 \
 		lilv-sys-0.2.1 \
+		line-clipping-0.3.5 \
 		linebender_resource_handle-0.1.1 \
 		linux-raw-sys-0.4.15 \
 		linux-raw-sys-0.12.1 \
+		litemap-0.8.1 \
 		litrs-1.0.0 \
 		lock_api-0.4.14 \
 		log-0.4.29 \
 		loop9-0.1.5 \
 		lru-0.16.3 \
+		lru-slab-0.1.2 \
 		lv2_raw-0.2.0 \
 		lyon-1.0.19 \
 		lyon_algorithms-1.0.19 \
 		lyon_geom-1.0.19 \
 		lyon_path-1.0.19 \
-		lyon_tessellation-1.0.19 \
+		lyon_tessellation-1.0.20 \
+		mac_address-1.1.8 \
+		macerator-0.3.1 \
+		macerator-macros-0.1.4 \
+		mach2-0.4.3 \
+		macro_rules_attribute-0.2.2 \
+		macro_rules_attribute-proc_macro-0.2.2 \
 		malloc_buf-0.0.6 \
+		maolan-engine-0.0.20 \
+		maolan-generate-0.0.5 \
+		maolan-widgets-0.0.8 \
+		maolan-widgets-0.0.13 \
+		matrixmultiply-0.3.10 \
 		maybe-rayon-0.1.1 \
 		md-5-0.10.6 \
+		md5-0.8.0 \
 		memchr-2.8.0 \
 		memmap2-0.9.10 \
+		memmem-0.1.1 \
 		memoffset-0.9.1 \
 		metal-0.32.0 \
+		metal-0.33.0 \
+		midir-0.10.4 \
 		midly-0.5.3 \
+		mime-0.3.17 \
 		minimal-lexical-0.2.1 \
 		miniz_oxide-0.8.9 \
 		mio-1.1.1 \
+		mixosc-0.0.3 \
+		moddef-0.3.0 \
+		monostate-0.1.18 \
+		monostate-impl-0.1.18 \
 		moxcms-0.8.1 \
-		mp3lame-encoder-0.2.2 \
-		mp3lame-sys-0.1.11 \
 		mundy-0.2.2 \
 		mutate_once-0.1.2 \
 		naga-27.0.3 \
+		naga-28.0.0 \
+		nb-0.1.3 \
+		nb-1.1.0 \
+		ndarray-0.17.2 \
+		ndk-0.8.0 \
 		ndk-0.9.0 \
 		ndk-context-0.1.1 \
+		ndk-sys-0.5.0+25.2.9519653 \
 		ndk-sys-0.6.0+11769913 \
 		new_debug_unreachable-1.0.6 \
+		nix-0.29.0 \
 		nix-0.31.2 \
 		nom-7.1.3 \
 		nom-8.0.0 \
 		noop_proc_macro-0.3.0 \
+		ntapi-0.4.3 \
 		nu-ansi-term-0.50.3 \
+		num-0.4.3 \
 		num-bigint-0.4.6 \
 		num-complex-0.4.6 \
+		num-conv-0.2.0 \
 		num-derive-0.4.2 \
 		num-format-0.4.4 \
 		num-integer-0.1.46 \
+		num-iter-0.1.45 \
 		num-rational-0.4.2 \
 		num-traits-0.2.19 \
 		num_cpus-1.17.0 \
-		num_enum-0.7.5 \
-		num_enum_derive-0.7.5 \
+		num_enum-0.7.6 \
+		num_enum_derive-0.7.6 \
+		num_threads-0.1.7 \
+		number_prefix-0.4.0 \
 		nvtree-0.0.2 \
 		objc-0.2.7 \
 		objc-sys-0.3.5 \
@@ -304,6 +513,7 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		objc2-encode-4.1.0 \
 		objc2-foundation-0.2.2 \
 		objc2-foundation-0.3.2 \
+		objc2-io-kit-0.3.2 \
 		objc2-io-surface-0.3.2 \
 		objc2-link-presentation-0.2.2 \
 		objc2-metal-0.2.2 \
@@ -313,10 +523,15 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		objc2-ui-kit-0.2.2 \
 		objc2-uniform-type-identifiers-0.2.2 \
 		objc2-user-notifications-0.2.2 \
-		ogg_next_sys-0.1.4 \
-		once_cell-1.21.3 \
-		orbclient-0.3.50 \
-		ordered-float-5.1.0 \
+		object-0.37.3 \
+		oboe-0.6.1 \
+		oboe-sys-0.6.1 \
+		once_cell-1.21.4 \
+		onig-6.5.1 \
+		onig_sys-69.9.1 \
+		option-ext-0.2.0 \
+		orbclient-0.3.51 \
+		ordered-float-4.6.0 \
 		ordered-stream-0.2.0 \
 		ouroboros-0.18.5 \
 		ouroboros_macro-0.18.5 \
@@ -329,6 +544,16 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		paste-1.0.15 \
 		pastey-0.1.1 \
 		percent-encoding-2.3.2 \
+		pest-2.8.6 \
+		pest_derive-2.8.6 \
+		pest_generator-2.8.6 \
+		pest_meta-2.8.6 \
+		petgraph-0.8.3 \
+		phf-0.11.3 \
+		phf_codegen-0.11.3 \
+		phf_generator-0.11.3 \
+		phf_macros-0.11.3 \
+		phf_shared-0.11.3 \
 		pin-project-1.1.11 \
 		pin-project-internal-1.1.11 \
 		pin-project-lite-0.2.17 \
@@ -341,7 +566,9 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		polling-3.11.0 \
 		pollster-0.4.0 \
 		portable-atomic-1.13.1 \
-		portable-atomic-util-0.2.5 \
+		portable-atomic-util-0.2.6 \
+		potential_utf-0.1.4 \
+		powerfmt-0.2.0 \
 		ppv-lite86-0.2.21 \
 		presser-0.3.1 \
 		prettyplease-0.2.37 \
@@ -351,76 +578,129 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		proc-macro2-diagnostics-0.10.1 \
 		profiling-1.0.17 \
 		profiling-procmacros-1.0.17 \
+		prost-0.14.3 \
+		prost-derive-0.14.3 \
+		pulp-0.22.2 \
+		pulp-wasm-simd-flag-0.1.0 \
 		pxfm-0.1.28 \
 		qoi-0.4.1 \
 		quick-error-2.0.1 \
 		quick-xml-0.39.2 \
+		quinn-0.11.9 \
+		quinn-proto-0.11.14 \
+		quinn-udp-0.5.14 \
 		quote-1.0.45 \
 		r-efi-5.3.0 \
 		r-efi-6.0.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.5 \
+		rand_distr-0.5.1 \
 		range-alloc-0.1.5 \
 		rangemap-1.7.1 \
+		ratatui-0.30.0 \
+		ratatui-core-0.1.0 \
+		ratatui-crossterm-0.1.0 \
+		ratatui-macros-0.7.0 \
+		ratatui-termwiz-0.1.0 \
+		ratatui-widgets-0.3.0 \
 		rav1e-0.8.1 \
 		ravif-0.13.0 \
+		raw-cpuid-11.6.0 \
 		raw-window-handle-0.6.2 \
+		rawpointer-0.2.1 \
 		rayon-1.11.0 \
+		rayon-cond-0.3.0 \
 		rayon-core-1.13.0 \
 		read-fonts-0.35.0 \
 		realfft-3.5.0 \
+		reborrow-0.5.5 \
 		redox_syscall-0.2.16 \
 		redox_syscall-0.4.1 \
 		redox_syscall-0.5.18 \
 		redox_syscall-0.7.3 \
+		redox_users-0.5.2 \
 		regex-1.12.3 \
 		regex-automata-0.4.14 \
 		regex-syntax-0.8.10 \
 		renderdoc-sys-1.1.0 \
+		reqwest-0.12.28 \
 		rfd-0.17.2 \
 		rgb-0.8.53 \
+		ring-0.17.14 \
+		rmp-0.8.15 \
+		rmp-serde-1.3.1 \
 		roxmltree-0.20.0 \
 		rubato-0.16.2 \
+		rustc-demangle-0.1.27 \
 		rustc-hash-1.1.0 \
 		rustc-hash-2.1.1 \
+		rustc_version-0.4.1 \
 		rustfft-6.4.1 \
 		rustix-0.38.44 \
 		rustix-1.1.4 \
+		rustls-0.23.37 \
+		rustls-pki-types-1.14.0 \
+		rustls-webpki-0.103.10 \
 		rustversion-1.0.22 \
+		ryu-1.0.23 \
+		safetensors-0.4.5 \
+		safetensors-0.7.0 \
 		same-file-1.0.6 \
+		sanitize-filename-0.6.0 \
 		scoped-tls-1.0.1 \
 		scopeguard-1.2.0 \
 		sctk-adwaita-0.10.1 \
 		self_cell-1.2.2 \
 		semver-1.0.27 \
+		sentencepiece-0.13.1 \
+		sentencepiece-sys-0.13.1 \
 		seq-macro-0.3.6 \
 		serde-1.0.228 \
+		serde_bytes-0.11.19 \
 		serde_core-1.0.228 \
 		serde_derive-1.0.228 \
 		serde_json-1.0.149 \
 		serde_repr-0.1.20 \
 		serde_spanned-0.6.9 \
+		serde_spanned-1.1.0 \
+		serde_urlencoded-0.7.1 \
+		sha2-0.10.9 \
 		sharded-slab-0.1.7 \
 		shlex-1.3.0 \
+		signal-hook-0.3.18 \
+		signal-hook-mio-0.2.5 \
 		signal-hook-registry-1.4.8 \
 		simd-adler32-0.3.8 \
 		simd_helpers-0.1.0 \
+		siphasher-1.0.2 \
 		skrifa-0.37.0 \
 		slab-0.4.12 \
 		slotmap-1.1.1 \
+		slug-0.1.6 \
 		smallvec-1.15.1 \
 		smithay-client-toolkit-0.19.2 \
 		smithay-client-toolkit-0.20.0 \
 		smithay-clipboard-0.7.3 \
 		smol_str-0.2.2 \
 		socket2-0.6.3 \
+		socks-0.3.4 \
 		softbuffer-0.4.8 \
+		spin-0.10.0 \
 		spirv-0.3.0+sdk-1.3.268.0 \
+		spm_precompiled-0.1.4 \
+		stable-vec-0.4.2 \
 		stable_deref_trait-1.2.1 \
 		static_assertions-1.1.0 \
 		strength_reduce-0.2.4 \
 		strict-num-0.1.1 \
+		strsim-0.11.1 \
+		strum-0.27.2 \
+		strum_macros-0.27.2 \
+		subtle-2.6.1 \
 		svg_fmt-0.4.5 \
 		swash-0.2.6 \
 		symphonia-0.5.5 \
@@ -439,53 +719,111 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		symphonia-format-riff-0.5.5 \
 		symphonia-metadata-0.5.5 \
 		symphonia-utils-xiph-0.5.5 \
+		syn-1.0.109 \
 		syn-2.0.117 \
+		sync_wrapper-1.0.2 \
+		synstructure-0.13.2 \
 		sys-locale-0.3.2 \
+		sysctl-0.6.0 \
+		sysinfo-0.38.4 \
+		system-configuration-0.7.0 \
+		system-configuration-sys-0.6.0 \
+		tar-0.4.45 \
 		tempfile-3.27.0 \
 		termcolor-1.4.1 \
+		terminfo-0.9.0 \
+		termios-0.3.3 \
+		termwiz-0.23.3 \
+		text_placeholder-0.5.1 \
+		textdistance-1.1.1 \
 		thiserror-1.0.69 \
 		thiserror-2.0.18 \
 		thiserror-impl-1.0.69 \
 		thiserror-impl-2.0.18 \
+		thread-tree-0.3.3 \
 		thread_local-1.1.9 \
 		tiff-0.11.3 \
+		time-0.3.47 \
+		time-core-0.1.8 \
+		time-macros-0.2.27 \
+		tiny-keccak-2.0.2 \
 		tiny-skia-0.11.4 \
 		tiny-skia-path-0.11.4 \
 		tiny-xlib-0.2.4 \
-		tinyvec-1.10.0 \
+		tinystr-0.8.2 \
+		tinyvec-1.11.0 \
 		tinyvec_macros-0.1.1 \
+		tokenizers-0.20.4 \
 		tokio-1.50.0 \
 		tokio-macros-2.6.1 \
+		tokio-rustls-0.26.4 \
+		tokio-util-0.7.18 \
 		toml-0.8.23 \
+		toml-0.9.12+spec-1.1.0 \
 		toml_datetime-0.6.11 \
-		toml_datetime-1.0.0+spec-1.1.0 \
+		toml_datetime-0.7.5+spec-1.1.0 \
+		toml_datetime-1.0.1+spec-1.1.0 \
 		toml_edit-0.22.27 \
-		toml_edit-0.25.4+spec-1.1.0 \
-		toml_parser-1.0.9+spec-1.1.0 \
+		toml_edit-0.25.5+spec-1.1.0 \
+		toml_parser-1.0.10+spec-1.1.0 \
 		toml_write-0.1.2 \
+		toml_writer-1.1.0+spec-1.1.0 \
+		tower-0.5.3 \
+		tower-http-0.6.8 \
+		tower-layer-0.3.3 \
+		tower-service-0.3.3 \
+		tracel-llvm-20.1.4-7 \
+		tracel-llvm-bundler-20.1.4-7 \
+		tracel-mlir-rs-20.1.4-7 \
+		tracel-mlir-rs-macros-20.1.4-7 \
+		tracel-mlir-sys-20.1.4-7 \
+		tracel-tblgen-rs-20.1.4-7 \
 		tracing-0.1.44 \
 		tracing-attributes-0.1.31 \
 		tracing-core-0.1.36 \
 		tracing-log-0.2.0 \
-		tracing-subscriber-0.3.22 \
+		tracing-subscriber-0.3.23 \
 		transpose-0.2.3 \
+		try-lock-0.2.5 \
 		ttf-parser-0.25.1 \
+		type-map-0.5.1 \
+		typed-arena-2.0.2 \
+		typed-path-0.12.3 \
 		typenum-1.19.0 \
-		uds_windows-1.2.0 \
+		ucd-trie-0.1.7 \
+		uds_windows-1.2.1 \
 		unicode-bidi-0.3.18 \
 		unicode-ident-1.0.24 \
 		unicode-linebreak-0.1.5 \
+		unicode-normalization-0.1.25 \
+		unicode-normalization-alignments-0.1.12 \
 		unicode-script-0.5.8 \
 		unicode-segmentation-1.12.0 \
-		unicode-width-0.2.2 \
+		unicode-truncate-2.0.1 \
+		unicode-width-0.2.0 \
 		unicode-xid-0.2.6 \
+		unicode_categories-0.1.1 \
+		unindent-0.2.4 \
+		unit-prefix-0.5.2 \
+		untrusted-0.9.0 \
+		unty-0.0.4 \
+		ureq-3.3.0 \
+		ureq-proto-0.6.0 \
+		url-2.5.8 \
+		utf8-zero-0.8.1 \
+		utf8_iter-1.0.4 \
+		utf8parse-0.2.2 \
 		uuid-1.22.0 \
 		v_frame-0.3.9 \
 		valuable-0.1.1 \
+		variadics_please-1.1.0 \
+		vcpkg-0.2.15 \
 		version_check-0.9.5 \
-		vorbis_rs-0.5.5 \
+		void-1.0.2 \
 		vst3-0.3.0 \
+		vtparse-0.6.2 \
 		walkdir-2.5.0 \
+		want-0.3.1 \
 		wasi-0.11.1+wasi-snapshot-preview1 \
 		wasip2-1.0.2+wasi-0.2.9 \
 		wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06 \
@@ -496,6 +834,7 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		wasm-bindgen-shared-0.2.114 \
 		wasm-encoder-0.244.0 \
 		wasm-metadata-0.244.0 \
+		wasm-streams-0.4.2 \
 		wasmparser-0.244.0 \
 		wasmtimer-0.4.3 \
 		wavers-1.5.1 \
@@ -512,31 +851,53 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		wayland-sys-0.31.10 \
 		web-sys-0.3.91 \
 		web-time-1.1.0 \
+		webpki-roots-1.0.6 \
 		weezl-0.1.12 \
+		wezterm-bidi-0.2.3 \
+		wezterm-blob-leases-0.1.1 \
+		wezterm-color-types-0.3.0 \
+		wezterm-dynamic-0.2.1 \
+		wezterm-dynamic-derive-0.1.1 \
+		wezterm-input-types-0.1.0 \
 		wgpu-27.0.1 \
+		wgpu-28.0.0 \
 		wgpu-core-27.0.3 \
+		wgpu-core-28.0.1 \
 		wgpu-core-deps-apple-27.0.0 \
+		wgpu-core-deps-apple-28.0.0 \
 		wgpu-core-deps-emscripten-27.0.0 \
+		wgpu-core-deps-emscripten-28.0.0 \
 		wgpu-core-deps-windows-linux-android-27.0.0 \
+		wgpu-core-deps-windows-linux-android-28.0.0 \
 		wgpu-hal-27.0.4 \
+		wgpu-hal-28.0.1 \
 		wgpu-types-27.0.1 \
+		wgpu-types-28.0.0 \
 		winapi-0.3.9 \
 		winapi-i686-pc-windows-gnu-0.4.0 \
 		winapi-util-0.1.11 \
 		winapi-x86_64-pc-windows-gnu-0.4.0 \
 		window_clipboard-0.5.1 \
+		windows-0.54.0 \
+		windows-0.56.0 \
 		windows-0.58.0 \
 		windows-0.62.2 \
 		windows-collections-0.3.2 \
+		windows-core-0.54.0 \
+		windows-core-0.56.0 \
 		windows-core-0.58.0 \
 		windows-core-0.62.2 \
 		windows-future-0.3.2 \
+		windows-implement-0.56.0 \
 		windows-implement-0.58.0 \
 		windows-implement-0.60.2 \
+		windows-interface-0.56.0 \
 		windows-interface-0.58.0 \
 		windows-interface-0.59.3 \
 		windows-link-0.2.1 \
 		windows-numerics-0.3.1 \
+		windows-registry-0.6.1 \
+		windows-result-0.1.2 \
 		windows-result-0.2.0 \
 		windows-result-0.4.1 \
 		windows-strings-0.1.0 \
@@ -565,32 +926,46 @@ CARGO_CRATES=	ab_glyph-0.2.32 \
 		windows_x86_64_msvc-0.52.6 \
 		winit-0.30.13 \
 		winnow-0.7.15 \
+		winnow-1.0.0 \
 		wit-bindgen-0.51.0 \
 		wit-bindgen-core-0.51.0 \
 		wit-bindgen-rust-0.51.0 \
 		wit-bindgen-rust-macro-0.51.0 \
 		wit-component-0.244.0 \
 		wit-parser-0.244.0 \
+		writeable-0.6.2 \
 		x11-dl-2.21.0 \
 		x11rb-0.13.2 \
 		x11rb-protocol-0.13.2 \
+		xattr-1.6.1 \
 		xcursor-0.3.10 \
 		xkbcommon-dl-0.4.2 \
 		xkeysym-0.2.1 \
 		xml-rs-0.8.28 \
+		xxhash-rust-0.8.15 \
 		y4m-0.8.0 \
 		yansi-1.0.1 \
 		yazi-0.2.1 \
+		yoke-0.8.1 \
+		yoke-derive-0.8.1 \
 		zbus-5.14.0 \
 		zbus_macros-5.14.0 \
 		zbus_names-4.3.1 \
 		zeno-0.3.3 \
-		zerocopy-0.8.42 \
-		zerocopy-derive-0.8.42 \
+		zerocopy-0.8.47 \
+		zerocopy-derive-0.8.47 \
+		zerofrom-0.1.6 \
+		zerofrom-derive-0.1.6 \
+		zeroize-1.8.2 \
+		zerotrie-0.2.3 \
+		zerovec-0.11.5 \
+		zerovec-derive-0.11.2 \
+		zip-7.2.0 \
 		zmij-1.0.21 \
 		zune-core-0.5.1 \
 		zune-inflate-0.2.54 \
-		zune-jpeg-0.5.13 \
+		zune-jpeg-0.5.14 \
 		zvariant-5.10.0 \
 		zvariant_derive-5.10.0 \
-		zvariant_utils-3.3.0
+		zvariant_utils-3.3.0 \
+		esaxx-rs@git+https://github.com/maolan/esaxx\#327e012df843ad91d1b0ca11bdb5e78e806fc9b2
diff --git a/audio/maolan/distinfo b/audio/maolan/distinfo
index bfe324548504..e2cd6bdfe1b4 100644
--- a/audio/maolan/distinfo
*** 1602 LINES SKIPPED ***


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a07a508.46844.337cbae0>