git: abc8c4e9ae33 - main - games/anki: Update to 25.07.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 11 Jul 2025 18:08:24 UTC
The branch main has been updated by kai:
URL: https://cgit.FreeBSD.org/ports/commit/?id=abc8c4e9ae339c6f34f8b816dd62465ca225e47e
commit abc8c4e9ae339c6f34f8b816dd62465ca225e47e
Author: Kai Knoblich <kai@FreeBSD.org>
AuthorDate: 2025-07-11 18:06:09 +0000
Commit: Kai Knoblich <kai@FreeBSD.org>
CommitDate: 2025-07-11 18:08:05 +0000
games/anki: Update to 25.07.2
* Since version 25.07, "uv" is required in conjunction with py-hatchling
for creating the Python wheels. This replaces the previous Python
packaging process, which was mainly managed via the supplied "runner"
build framework.
* Also complete the fix from 3c83809b8fe3 by replacing the remaining
errorneous SET_ENV with SETENV.
Changelogs since 25.2.7:
https://github.com/ankitects/anki/releases/tag/25.07.2
https://github.com/ankitects/anki/releases/tag/25.07.1
https://github.com/ankitects/anki/releases/tag/25.07
MFH: No (feature release)
---
games/anki/Makefile | 23 +-
games/anki/Makefile.crates | 789 +++++-----
games/anki/distinfo | 1596 +++++++++++---------
.../anki/files/patch-build_configure_src_python.rs | 43 +
.../files/patch-build_ninja__gen_src_archives.rs | 25 +-
games/anki/files/patch-package.json | 8 +-
games/anki/files/patch-pylib_tools_hookslib.py | 36 +
games/anki/files/patch-qt_pyproject.toml | 21 +
games/anki/pkg-plist | 47 -
9 files changed, 1394 insertions(+), 1194 deletions(-)
diff --git a/games/anki/Makefile b/games/anki/Makefile
index 13b6a3f81cb3..2315dfac950f 100644
--- a/games/anki/Makefile
+++ b/games/anki/Makefile
@@ -1,6 +1,5 @@
PORTNAME= anki
-DISTVERSION= 25.02.7
-PORTREVISION= 1
+DISTVERSION= 25.07.2
# Don't forget to update ${_MY_BUILDHASH} if DISTVERSION changes
CATEGORIES= games education python
MASTER_SITES= LOCAL/kai/:yarncache
@@ -18,9 +17,12 @@ NOT_FOR_ARCHS_REASON= the provided build system written in Rust (= runner) accep
BUILD_DEPENDS= protoc:devel/protobuf \
rsync:net/rsync \
+ uv:devel/uv \
yarn:www/yarn \
${PYTHON_PKGNAMEPREFIX}black>0:devel/py-black@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}mypy-protobuf>=1.21:devel/py-mypy-protobuf@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}ruff>0:devel/py-ruff@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
LIB_DEPENDS= libzstd.so:archivers/zstd
RUN_DEPENDS= lame:audio/lame \
@@ -37,6 +39,7 @@ RUN_DEPENDS= lame:audio/lame \
${PYTHON_PKGNAMEPREFIX}flask>0:www/py-flask@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}Flask-Cors>0:www/py-flask-cors@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}protobuf>=4.21:devel/py-protobuf@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}typing-extensions>0:devel/py-typing-extensions@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}waitress>=2.0.0:www/py-waitress@${PY_FLAVOR}
# USES=ssl is required for the compilation of the Rust code
@@ -45,8 +48,8 @@ USES= cargo desktop-file-utils ninja nodejs:build pyqt:6 python \
USE_GITHUB= yes
GH_ACCOUNT= ankitects
# Translation files
-GH_TUPLE= ankitects:anki-core-i18n:62d3e1e:ftlrslib \
- ankitects:anki-desktop-ftl:e5dc0c3:ftlextra
+GH_TUPLE= ankitects:anki-core-i18n:a921649:ftlrslib \
+ ankitects:anki-desktop-ftl:a1134ab:ftlextra
USE_PYQT= pyqt6 sip:build webengine
@@ -63,6 +66,10 @@ CARGO_TARGET_DIR= ${WRKSRC}/out/rust
MAKE_ENV+= NODE_BINARY=${LOCALBASE}/bin/node \
OFFLINE_BUILD=1 \
PROTOC_BINARY=${LOCALBASE}/bin/protoc \
+ PYTHON_BINARY=${PYTHON_CMD} \
+ UV_BINARY=${LOCALBASE}/bin/uv \
+ UV_NO_BUILD_ISOLATION=1 \
+ UV_OFFLINE=1 \
YARN_BINARY=${LOCALBASE}/bin/yarn \
YARN_CACHE_FOLDER=${_MY_YARNCACHE} \
out=${WRKSRC}/out
@@ -85,7 +92,7 @@ MPV_RUN_DEPENDS= mpv:multimedia/mpv
# Should contain the most recent commit that reflects ${DISTVERSION} and must
# be exactly 8 digits otherwise the check for newer versions won't work as
# expected.
-_MY_BUILDHASH= 98253c81
+_MY_BUILDHASH= 3adcf05c
# Remove ${CARGO_BUILD_TARGET} from ${CARGO_ENV} to avoid problems with
# hardcoded paths as the "runner" build system expects its components
# in ${WRKSRC}/out/rust/debug
@@ -120,7 +127,7 @@ pre-configure:
# which then processes the following steps:
# * build remaining components of "runner" (= ninja_gen, configure, etc.)
# * generate the ninja file and run ninja afterwards
-# * create the Python wheel files in ${WRKSRC}/out/wheels
+# * create the Python wheel files (via "uv") in ${WRKSRC}/out/wheels
pre-build:
${ECHO_CMD} -e "${_MY_BUILDHASH}" >> ${WRKSRC}/out/buildhash
${ECHO_MSG} "===> Building runner build framework"
@@ -128,7 +135,7 @@ pre-build:
${CARGO} build --package runner --release --verbose --verbose
do-build:
${ECHO_MSG} "===> Executing runner build framework"
- cd ${WRKSRC} && ${SET_ENV} ${MAKE_ENV} ${_MY_CARGO_ENV} \
+ cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${_MY_CARGO_ENV} \
${WRKSRC}/out/rust/release/runner build wheels
post-build:
@@ -150,7 +157,7 @@ do-install:
&& ${COPYTREE_SHARE} _aqt ${STAGEDIR}${DATADIR} "! -name .gitignore" \
&& ${COPYTREE_SHARE} anki ${STAGEDIR}${DATADIR} "! -name .gitignore" \
&& ${COPYTREE_SHARE} aqt ${STAGEDIR}${DATADIR} "! -name .gitignore"
- cd ${WRKSRC}/qt/bundle/lin \
+ cd ${WRKSRC}/qt/launcher/lin \
&& ${INSTALL_DATA} anki.xpm anki.png ${STAGEDIR}${PREFIX}/share/pixmaps \
&& ${INSTALL_DATA} anki.desktop ${STAGEDIR}${PREFIX}/share/applications \
&& ${INSTALL_MAN} anki.1 ${STAGEDIR}${PREFIX}/share/man/man1
diff --git a/games/anki/Makefile.crates b/games/anki/Makefile.crates
index f9523e4444b2..9de566e72386 100644
--- a/games/anki/Makefile.crates
+++ b/games/anki/Makefile.crates
@@ -1,186 +1,193 @@
CARGO_CRATES= addr2line-0.24.2 \
- adler2-2.0.0 \
- ahash-0.8.11 \
+ adler2-2.0.1 \
+ ahash-0.8.12 \
aho-corasick-1.1.3 \
- allocator-api2-0.2.18 \
- ammonia-4.0.0 \
+ allocator-api2-0.2.21 \
+ ammonia-4.1.0 \
android-tzdata-0.1.1 \
android_system_properties-0.1.5 \
anes-0.1.6 \
- anstream-0.6.15 \
- anstyle-1.0.8 \
- anstyle-parse-0.2.5 \
- anstyle-query-1.1.1 \
- anstyle-wincon-3.0.4 \
- anyhow-1.0.90 \
- apple-bundles-0.17.0 \
+ anstream-0.6.19 \
+ anstyle-1.0.11 \
+ anstyle-parse-0.2.7 \
+ anstyle-query-1.1.3 \
+ anstyle-wincon-3.0.9 \
+ anyhow-1.0.98 \
arbitrary-1.4.1 \
arrayref-0.3.9 \
arrayvec-0.7.6 \
ash-0.38.0+1.3.281 \
assert-json-diff-2.0.2 \
async-channel-2.3.1 \
- async-compression-0.4.17 \
- async-lock-3.4.0 \
+ async-compression-0.4.24 \
async-stream-0.3.6 \
async-stream-impl-0.3.6 \
- async-trait-0.1.83 \
+ async-trait-0.1.88 \
atomic-waker-1.1.2 \
atomic_float-1.1.0 \
autocfg-1.4.0 \
- axum-0.7.7 \
- axum-client-ip-0.6.1 \
- axum-core-0.4.5 \
- axum-extra-0.9.4 \
- axum-macros-0.4.2 \
- backtrace-0.3.74 \
- base64-0.13.1 \
+ axum-0.8.4 \
+ axum-client-ip-1.1.3 \
+ axum-core-0.5.2 \
+ axum-extra-0.10.1 \
+ axum-macros-0.5.0 \
+ backtrace-0.3.75 \
base64-0.21.7 \
base64-0.22.1 \
- base64ct-1.6.0 \
- bincode-2.0.0-rc.3 \
+ base64ct-1.8.0 \
+ bincode-2.0.1 \
bit-set-0.8.0 \
bit-vec-0.8.0 \
bitflags-1.3.2 \
- bitflags-2.6.0 \
- blake3-1.5.4 \
+ bitflags-2.9.1 \
+ blake3-1.8.2 \
block-0.1.6 \
block-buffer-0.10.4 \
- block-padding-0.3.3 \
- bstr-1.10.0 \
- bumpalo-3.16.0 \
- burn-0.16.0 \
- burn-autodiff-0.16.0 \
- burn-candle-0.16.0 \
- burn-common-0.16.0 \
- burn-core-0.16.0 \
- burn-cuda-0.16.0 \
- burn-dataset-0.16.0 \
- burn-derive-0.16.0 \
- burn-hip-0.16.0 \
- burn-jit-0.16.0 \
- burn-ndarray-0.16.0 \
- burn-router-0.16.0 \
- burn-tensor-0.16.0 \
- burn-train-0.16.0 \
- burn-wgpu-0.16.0 \
- bytemuck-1.21.0 \
- bytemuck_derive-1.8.0 \
+ bstr-1.12.0 \
+ bumpalo-3.18.1 \
+ burn-0.17.1 \
+ burn-autodiff-0.17.1 \
+ burn-candle-0.17.1 \
+ burn-common-0.17.1 \
+ burn-core-0.17.1 \
+ burn-cubecl-0.17.1 \
+ burn-cuda-0.17.1 \
+ burn-dataset-0.17.1 \
+ burn-derive-0.17.1 \
+ burn-ir-0.17.1 \
+ burn-ndarray-0.17.1 \
+ burn-rocm-0.17.1 \
+ burn-router-0.17.1 \
+ burn-tensor-0.17.1 \
+ burn-train-0.17.1 \
+ burn-wgpu-0.17.1 \
+ bytemuck-1.23.1 \
+ bytemuck_derive-1.9.3 \
byteorder-1.5.0 \
- bytes-1.7.2 \
- bytesize-1.3.0 \
- camino-1.1.9 \
- candle-core-0.8.2 \
+ bytes-1.10.1 \
+ bytesize-1.3.3 \
+ camino-1.1.10 \
+ candle-core-0.8.4 \
cast-0.3.0 \
- cbc-0.1.2 \
- cc-1.1.31 \
- cfg-if-1.0.0 \
- cfg_aliases-0.1.1 \
+ cc-1.2.27 \
+ cfg-if-1.0.1 \
cfg_aliases-0.2.1 \
- chrono-0.4.38 \
+ chrono-0.4.41 \
ciborium-0.2.2 \
ciborium-io-0.2.2 \
ciborium-ll-0.2.2 \
- cipher-0.4.4 \
- clap-4.5.20 \
- clap_builder-4.5.20 \
- clap_complete-4.5.33 \
- clap_derive-4.5.18 \
- clap_lex-0.7.2 \
- coarsetime-0.1.34 \
+ clap-4.5.40 \
+ clap_builder-4.5.40 \
+ clap_complete-4.5.54 \
+ clap_derive-4.5.40 \
+ clap_lex-0.7.5 \
+ client-ip-0.1.1 \
+ coarsetime-0.1.36 \
codespan-0.11.1 \
codespan-reporting-0.11.1 \
- colorchoice-1.0.2 \
- colored-2.2.0 \
+ codespan-reporting-0.12.0 \
+ colorchoice-1.0.4 \
+ colored-3.0.0 \
concurrent-queue-2.5.0 \
constant_time_eq-0.3.1 \
- convert_case-0.6.0 \
+ convert_case-0.8.0 \
core-foundation-0.9.4 \
+ core-foundation-0.10.1 \
core-foundation-sys-0.8.7 \
core-graphics-types-0.1.3 \
- cpufeatures-0.2.14 \
+ cpufeatures-0.2.17 \
crc32fast-1.4.2 \
- criterion-0.5.1 \
+ criterion-0.6.0 \
criterion-plot-0.5.0 \
crossbeam-channel-0.5.15 \
- crossbeam-deque-0.8.5 \
+ crossbeam-deque-0.8.6 \
crossbeam-epoch-0.9.18 \
- crossbeam-utils-0.8.20 \
- crunchy-0.2.2 \
+ crossbeam-utils-0.8.21 \
+ crunchy-0.2.3 \
crypto-common-0.1.6 \
+ cssparser-0.35.0 \
+ cssparser-macros-0.6.1 \
csv-1.3.1 \
- csv-core-0.1.11 \
- cubecl-0.4.0 \
- cubecl-common-0.4.0 \
- cubecl-core-0.4.0 \
- cubecl-cpp-0.4.0 \
- cubecl-cuda-0.4.0 \
- cubecl-hip-0.4.0 \
- cubecl-hip-sys-6.3.1001 \
- cubecl-linalg-0.4.0 \
- cubecl-macros-0.4.0 \
- cubecl-reduce-0.4.0 \
- cubecl-runtime-0.4.0 \
- cubecl-wgpu-0.4.0 \
- cudarc-0.12.1 \
- darling-0.20.10 \
- darling_core-0.20.10 \
- darling_macro-0.20.10 \
- data-encoding-2.6.0 \
- dbus-0.9.7 \
+ csv-core-0.1.12 \
+ cubecl-0.5.0 \
+ cubecl-common-0.5.0 \
+ cubecl-core-0.5.0 \
+ cubecl-cpp-0.5.0 \
+ cubecl-cuda-0.5.0 \
+ cubecl-hip-0.5.0 \
+ cubecl-hip-sys-6.4.4348200 \
+ cubecl-ir-0.5.0 \
+ cubecl-linalg-0.5.0 \
+ cubecl-macros-0.5.0 \
+ cubecl-macros-internal-0.5.0 \
+ cubecl-reduce-0.5.0 \
+ cubecl-runtime-0.5.0 \
+ cubecl-std-0.5.0 \
+ cubecl-wgpu-0.5.0 \
+ cudarc-0.13.9 \
+ darling-0.20.11 \
+ darling_core-0.20.11 \
+ darling_macro-0.20.11 \
+ data-encoding-2.9.0 \
deadpool-0.10.0 \
deadpool-runtime-0.1.4 \
- deranged-0.3.11 \
+ deranged-0.4.0 \
derive-new-0.6.0 \
derive-new-0.7.0 \
derive_arbitrary-1.4.1 \
+ derive_builder-0.20.2 \
+ derive_builder_core-0.20.2 \
+ derive_builder_macro-0.20.2 \
derive_more-1.0.0 \
derive_more-impl-1.0.0 \
- des-0.8.1 \
difflib-0.4.0 \
digest-0.10.7 \
dirs-5.0.1 \
+ dirs-6.0.0 \
dirs-sys-0.4.1 \
+ dirs-sys-0.5.0 \
displaydoc-0.2.5 \
- document-features-0.2.10 \
- duct-0.13.7 \
+ document-features-0.2.11 \
+ dtoa-1.0.10 \
+ dtoa-short-0.3.5 \
dunce-1.0.5 \
dyn-stack-0.10.0 \
- either-1.13.0 \
+ dyn-stack-0.13.0 \
+ either-1.15.0 \
elasticlunr-rs-3.0.2 \
embassy-futures-0.1.1 \
- encoding_rs-0.8.34 \
+ embed-resource-3.0.4 \
+ encoding_rs-0.8.35 \
enum-as-inner-0.6.1 \
- env_filter-0.1.2 \
- env_logger-0.11.5 \
+ env_filter-0.1.3 \
+ env_home-0.1.0 \
+ env_logger-0.11.8 \
envy-0.4.2 \
- equivalent-1.0.1 \
- errno-0.3.10 \
+ equivalent-1.0.2 \
+ errno-0.3.12 \
event-listener-5.4.0 \
- event-listener-strategy-0.5.3 \
+ event-listener-strategy-0.5.4 \
fallible-iterator-0.3.0 \
fallible-streaming-iterator-0.1.9 \
- fastrand-2.1.1 \
+ fastrand-2.3.0 \
filetime-0.2.25 \
- find-winsdk-0.2.0 \
- fixedbitset-0.4.2 \
- flate2-1.0.35 \
- fluent-0.16.1 \
- fluent-bundle-0.15.3 \
+ fixedbitset-0.5.7 \
+ flate2-1.1.2 \
+ float-ord-0.3.2 \
+ fluent-0.17.0 \
+ fluent-bundle-0.16.0 \
fluent-langneg-0.13.0 \
- fluent-syntax-0.11.1 \
+ fluent-syntax-0.12.0 \
fnv-1.0.7 \
- foldhash-0.1.4 \
+ foldhash-0.1.5 \
foreign-types-0.3.2 \
foreign-types-0.5.0 \
foreign-types-macros-0.2.3 \
foreign-types-shared-0.1.1 \
foreign-types-shared-0.3.1 \
form_urlencoded-1.2.1 \
- forwarded-header-value-0.1.1 \
- fs2-0.4.3 \
fsevent-sys-4.1.0 \
- fsrs-2.0.3 \
+ fsrs-4.1.1 \
futf-0.1.5 \
futures-0.3.31 \
futures-channel-0.3.31 \
@@ -194,154 +201,159 @@ CARGO_CRATES= addr2line-0.24.2 \
futures-timer-3.0.3 \
futures-util-0.3.31 \
gemm-0.17.1 \
+ gemm-0.18.2 \
gemm-c32-0.17.1 \
+ gemm-c32-0.18.2 \
gemm-c64-0.17.1 \
+ gemm-c64-0.18.2 \
gemm-common-0.17.1 \
+ gemm-common-0.18.2 \
gemm-f16-0.17.1 \
+ gemm-f16-0.18.2 \
gemm-f32-0.17.1 \
+ gemm-f32-0.18.2 \
gemm-f64-0.17.1 \
+ gemm-f64-0.18.2 \
generic-array-0.14.7 \
- getopts-0.2.21 \
- getrandom-0.2.15 \
- getrandom-0.3.1 \
+ getopts-0.2.23 \
+ getrandom-0.2.16 \
+ getrandom-0.3.3 \
gimli-0.31.1 \
gl_generator-0.14.0 \
- glob-0.3.1 \
- globset-0.4.15 \
- glow-0.14.2 \
+ glob-0.3.2 \
+ globset-0.4.16 \
+ glow-0.16.0 \
glutin_wgl_sys-0.6.1 \
gpu-alloc-0.6.0 \
gpu-alloc-types-0.3.0 \
gpu-allocator-0.27.0 \
- gpu-descriptor-0.3.1 \
+ gpu-descriptor-0.3.2 \
gpu-descriptor-types-0.2.0 \
h2-0.3.26 \
- h2-0.4.6 \
- half-2.4.1 \
- handlebars-5.1.2 \
+ h2-0.4.10 \
+ half-2.6.0 \
+ handlebars-6.3.2 \
hashbrown-0.13.2 \
hashbrown-0.14.5 \
- hashbrown-0.15.2 \
- hashlink-0.8.4 \
+ hashbrown-0.15.4 \
+ hashlink-0.10.0 \
headers-0.3.9 \
- headers-0.4.0 \
+ headers-0.4.1 \
headers-core-0.2.0 \
headers-core-0.3.0 \
heck-0.5.0 \
- hermit-abi-0.3.9 \
- hermit-abi-0.4.0 \
+ hermit-abi-0.5.2 \
hex-0.4.3 \
hexf-parse-0.2.1 \
hmac-0.12.1 \
- home-0.5.9 \
html5ever-0.26.0 \
- html5ever-0.27.0 \
+ html5ever-0.31.0 \
htmlescape-0.3.1 \
http-0.2.12 \
- http-1.1.0 \
+ http-1.3.1 \
http-body-0.4.6 \
http-body-1.0.1 \
- http-body-util-0.1.2 \
- httparse-1.9.5 \
+ http-body-util-0.1.3 \
+ httparse-1.10.1 \
httpdate-1.0.3 \
- humantime-2.1.0 \
- hyper-0.14.31 \
- hyper-1.5.0 \
- hyper-rustls-0.24.2 \
- hyper-rustls-0.27.3 \
+ hyper-0.14.32 \
+ hyper-1.6.0 \
+ hyper-rustls-0.27.7 \
hyper-tls-0.5.0 \
hyper-tls-0.6.0 \
- hyper-util-0.1.9 \
- iana-time-zone-0.1.61 \
+ hyper-util-0.1.14 \
+ iana-time-zone-0.1.63 \
iana-time-zone-haiku-0.1.2 \
- icu_collections-1.5.0 \
- icu_locid-1.5.0 \
- icu_locid_transform-1.5.0 \
- icu_locid_transform_data-1.5.0 \
- icu_normalizer-1.5.0 \
- icu_normalizer_data-1.5.0 \
- icu_properties-1.5.1 \
- icu_properties_data-1.5.0 \
- icu_provider-1.5.0 \
- icu_provider_macros-1.5.0 \
+ 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 \
id_tree-1.8.0 \
ident_case-1.0.1 \
idna-1.0.3 \
- idna_adapter-1.2.0 \
+ idna_adapter-1.2.1 \
ignore-0.4.23 \
- indexmap-2.6.0 \
- indoc-2.0.5 \
+ indexmap-2.9.0 \
+ indoc-2.0.6 \
inflections-1.1.1 \
- inotify-0.9.6 \
+ inotify-0.11.0 \
inotify-sys-0.1.5 \
- inout-0.1.3 \
- intl-memoizer-0.5.2 \
+ intl-memoizer-0.5.3 \
intl_pluralrules-7.0.2 \
- ipnet-2.10.1 \
- is-terminal-0.4.13 \
+ ipnet-2.11.0 \
+ iri-string-0.7.8 \
is_terminal_polyfill-1.70.1 \
itertools-0.10.5 \
- itertools-0.12.1 \
itertools-0.13.0 \
- itoa-1.0.11 \
+ itertools-0.14.0 \
+ itoa-1.0.15 \
+ jiff-0.2.15 \
+ jiff-static-0.2.15 \
jni-sys-0.3.0 \
- jobserver-0.1.32 \
- js-sys-0.3.72 \
+ jobserver-0.1.33 \
+ js-sys-0.3.77 \
junction-1.2.0 \
khronos-egl-6.0.0 \
khronos_api-3.1.0 \
- kqueue-1.0.8 \
+ kqueue-1.1.1 \
kqueue-sys-1.0.4 \
lazy_static-1.5.0 \
- libc-0.2.169 \
- libdbus-sys-0.2.5 \
- libloading-0.8.5 \
- libm-0.2.11 \
+ libc-0.2.173 \
+ libc-stdhandle-0.1.0 \
+ libloading-0.8.8 \
+ libm-0.2.15 \
libredox-0.1.3 \
- libsqlite3-sys-0.27.0 \
+ libsqlite3-sys-0.34.0 \
+ libz-rs-sys-0.5.1 \
linkify-0.7.0 \
- linux-raw-sys-0.4.14 \
- litemap-0.7.4 \
+ linux-raw-sys-0.9.4 \
+ litemap-0.8.0 \
litrs-0.4.1 \
- lock_api-0.4.12 \
- log-0.4.22 \
+ lock_api-0.4.13 \
+ log-0.4.27 \
+ lru-slab-0.1.2 \
lzma-sys-0.1.20 \
mac-0.1.1 \
+ macerator-0.2.8 \
+ macerator-macros-0.1.2 \
malloc_buf-0.0.6 \
maplit-1.0.2 \
markup5ever-0.11.0 \
- markup5ever-0.12.1 \
+ markup5ever-0.16.1 \
markup5ever_rcdom-0.2.0 \
+ match_token-0.1.0 \
matchers-0.1.0 \
matches-0.1.10 \
- matchit-0.7.3 \
- matrixmultiply-0.3.9 \
+ matchit-0.8.4 \
+ matrixmultiply-0.3.10 \
md5-0.7.0 \
- mdbook-0.4.40 \
- memchr-2.7.4 \
+ mdbook-0.4.51 \
+ memchr-2.7.5 \
memmap2-0.9.5 \
memoffset-0.9.1 \
- metal-0.29.0 \
+ metal-0.31.0 \
mime-0.3.17 \
mime_guess-2.0.5 \
minimal-lexical-0.2.1 \
- miniz_oxide-0.8.0 \
- mio-0.8.11 \
- mio-1.0.2 \
+ miniz_oxide-0.8.9 \
+ mio-1.0.4 \
+ moddef-0.2.6 \
multer-3.1.0 \
- multimap-0.10.0 \
- naga-23.1.0 \
- native-tls-0.2.12 \
- ndarray-0.15.6 \
+ multimap-0.10.1 \
+ naga-25.0.1 \
+ native-tls-0.2.14 \
ndarray-0.16.1 \
- ndarray-rand-0.14.0 \
ndk-sys-0.5.0+25.2.9519653 \
new_debug_unreachable-1.0.6 \
nom-7.1.3 \
- nonempty-0.7.0 \
+ nom-8.0.0 \
normpath-1.3.0 \
- notify-6.1.1 \
- notify-debouncer-mini-0.4.1 \
+ notify-8.0.0 \
+ notify-debouncer-mini-0.6.0 \
+ notify-types-2.0.0 \
ntapi-0.4.1 \
nu-ansi-term-0.46.0 \
num-0.4.3 \
@@ -351,359 +363,394 @@ CARGO_CRATES= addr2line-0.24.2 \
num-format-0.4.4 \
num-integer-0.1.46 \
num-iter-0.1.45 \
+ num-modular-0.6.1 \
+ num-order-1.2.0 \
num-rational-0.4.2 \
num-traits-0.2.19 \
- num_cpus-1.16.0 \
+ num_cpus-1.17.0 \
num_enum-0.7.3 \
num_enum_derive-0.7.3 \
nvml-wrapper-0.10.0 \
nvml-wrapper-sys-0.8.0 \
objc-0.2.7 \
- object-0.36.5 \
- once_cell-1.20.2 \
- oorandom-11.1.4 \
- opener-0.7.2 \
- openssl-0.10.72 \
+ object-0.36.7 \
+ once_cell-1.21.3 \
+ once_cell_polyfill-1.70.1 \
+ oorandom-11.1.5 \
+ opener-0.8.2 \
+ openssl-0.10.73 \
openssl-macros-0.1.1 \
- openssl-probe-0.1.5 \
- openssl-sys-0.9.107 \
+ openssl-probe-0.1.6 \
+ openssl-sys-0.9.109 \
option-ext-0.2.0 \
- os_pipe-1.2.1 \
+ ordered-float-2.10.1 \
+ ordered-float-4.6.0 \
overload-0.1.1 \
- p12-0.6.3 \
parking-2.2.1 \
- parking_lot-0.12.3 \
- parking_lot_core-0.9.10 \
+ parking_lot-0.12.4 \
+ parking_lot_core-0.9.11 \
password-hash-0.5.0 \
paste-1.0.15 \
- pathdiff-0.2.2 \
+ pathdiff-0.2.3 \
pbkdf2-0.12.2 \
- pem-1.1.1 \
percent-encoding-2.3.1 \
- pest-2.7.14 \
- pest_derive-2.7.14 \
- pest_generator-2.7.14 \
- pest_meta-2.7.14 \
- petgraph-0.6.5 \
+ pest-2.8.1 \
+ pest_derive-2.8.1 \
+ pest_generator-2.8.1 \
+ pest_meta-2.8.1 \
+ petgraph-0.7.1 \
phf-0.10.1 \
- phf-0.11.2 \
+ phf-0.11.3 \
phf_codegen-0.10.0 \
- phf_codegen-0.11.2 \
+ phf_codegen-0.11.3 \
phf_generator-0.10.0 \
- phf_generator-0.11.2 \
- phf_macros-0.11.2 \
+ phf_generator-0.11.3 \
+ phf_macros-0.11.3 \
phf_shared-0.10.0 \
- phf_shared-0.11.2 \
- pin-project-1.1.6 \
- pin-project-internal-1.1.6 \
- pin-project-lite-0.2.14 \
+ phf_shared-0.11.3 \
+ pin-project-1.1.10 \
+ pin-project-internal-1.1.10 \
+ pin-project-lite-0.2.16 \
pin-utils-0.1.0 \
- pkg-config-0.3.31 \
- plist-1.7.0 \
+ pkg-config-0.3.32 \
plotters-0.3.7 \
plotters-backend-0.3.7 \
plotters-svg-0.3.7 \
- portable-atomic-1.9.0 \
+ portable-atomic-1.11.1 \
portable-atomic-util-0.2.4 \
+ potential_utf-0.1.2 \
powerfmt-0.2.0 \
- ppv-lite86-0.2.20 \
+ ppv-lite86-0.2.21 \
precomputed-hash-0.1.1 \
presser-0.3.1 \
- prettyplease-0.2.24 \
- priority-queue-2.1.1 \
- proc-macro-crate-3.2.0 \
+ prettyplease-0.2.34 \
+ priority-queue-2.5.0 \
+ proc-macro-crate-3.3.0 \
proc-macro-hack-0.5.20+deprecated \
- proc-macro2-1.0.93 \
+ proc-macro2-1.0.95 \
profiling-1.0.16 \
- prost-0.13.3 \
- prost-build-0.13.3 \
- prost-derive-0.13.3 \
- prost-reflect-0.14.2 \
- prost-types-0.13.3 \
+ prost-0.13.5 \
+ prost-build-0.13.5 \
+ prost-derive-0.13.5 \
+ prost-reflect-0.14.7 \
+ prost-types-0.13.5 \
pulldown-cmark-0.8.0 \
- pulldown-cmark-0.9.6 \
pulldown-cmark-0.10.3 \
+ pulldown-cmark-0.13.0 \
pulldown-cmark-escape-0.10.1 \
+ pulldown-cmark-escape-0.11.0 \
pulp-0.18.22 \
- pyo3-0.24.1 \
- pyo3-build-config-0.24.1 \
- pyo3-ffi-0.24.1 \
- pyo3-macros-0.24.1 \
- pyo3-macros-backend-0.24.1 \
- quick-xml-0.32.0 \
- quinn-0.11.5 \
- quinn-proto-0.11.8 \
- quinn-udp-0.5.5 \
- quote-1.0.38 \
+ pulp-0.21.5 \
+ pyo3-0.25.1 \
+ pyo3-build-config-0.25.1 \
+ pyo3-ffi-0.25.1 \
+ pyo3-macros-0.25.1 \
+ pyo3-macros-backend-0.25.1 \
+ quinn-0.11.8 \
+ quinn-proto-0.11.12 \
+ quinn-udp-0.5.12 \
+ quote-1.0.40 \
+ r-efi-5.2.0 \
rand-0.8.5 \
+ rand-0.9.1 \
rand_chacha-0.3.1 \
+ rand_chacha-0.9.0 \
rand_core-0.6.4 \
- rand_distr-0.4.3 \
- range-alloc-0.1.3 \
+ rand_core-0.9.3 \
+ rand_distr-0.5.1 \
+ range-alloc-0.1.4 \
raw-cpuid-10.7.0 \
+ raw-cpuid-11.5.0 \
raw-window-handle-0.6.2 \
rawpointer-0.2.1 \
rayon-1.10.0 \
rayon-core-1.12.1 \
- rc2-0.8.1 \
- rcgen-0.10.0 \
reborrow-0.5.5 \
- redox_syscall-0.5.7 \
+ redox_syscall-0.5.13 \
redox_users-0.4.6 \
- regex-1.11.0 \
+ redox_users-0.5.0 \
+ regex-1.11.1 \
regex-automata-0.1.10 \
- regex-automata-0.4.8 \
+ regex-automata-0.4.9 \
regex-syntax-0.6.29 \
regex-syntax-0.8.5 \
relative-path-1.9.3 \
renderdoc-sys-1.1.0 \
reqwest-0.11.27 \
- reqwest-0.12.8 \
- ring-0.16.20 \
- ring-0.17.8 \
+ reqwest-0.12.20 \
+ ring-0.17.14 \
rmp-0.8.14 \
rmp-serde-1.3.0 \
- rstest-0.23.0 \
- rstest_macros-0.23.0 \
- rusqlite-0.30.0 \
- rustc-demangle-0.1.24 \
+ rstest-0.25.0 \
+ rstest_macros-0.25.0 \
+ rusqlite-0.36.0 \
+ rustc-demangle-0.1.25 \
rustc-hash-1.1.0 \
- rustc-hash-2.0.0 \
+ rustc-hash-2.1.1 \
rustc_version-0.4.1 \
- rustix-0.38.44 \
- rustls-0.21.12 \
- rustls-0.23.18 \
- rustls-native-certs-0.8.0 \
+ rustix-1.0.7 \
+ rustls-0.23.28 \
+ rustls-native-certs-0.8.1 \
rustls-pemfile-1.0.4 \
rustls-pemfile-2.2.0 \
- rustls-pki-types-1.10.0 \
- rustls-webpki-0.101.7 \
- rustls-webpki-0.102.8 \
- rustversion-1.0.18 \
- ryu-1.0.18 \
+ rustls-pki-types-1.12.0 \
+ rustls-webpki-0.103.3 \
+ rustversion-1.0.21 \
+ ryu-1.0.20 \
safetensors-0.4.5 \
same-file-1.0.6 \
sanitize-filename-0.5.0 \
sanitize-filename-0.6.0 \
- schannel-0.1.26 \
+ schannel-0.1.27 \
scoped-tls-1.0.1 \
scopeguard-1.2.0 \
- sct-0.7.1 \
security-framework-2.11.1 \
- security-framework-sys-2.12.0 \
- self_cell-0.10.3 \
- self_cell-1.0.4 \
- semver-1.0.23 \
- seq-macro-0.3.5 \
- serde-1.0.217 \
- serde-aux-4.5.0 \
- serde_bytes-0.11.15 \
- serde_derive-1.0.217 \
- serde_json-1.0.138 \
- serde_path_to_error-0.1.16 \
- serde_repr-0.1.19 \
- serde_tuple-0.5.0 \
- serde_tuple_macros-0.5.0 \
+ security-framework-3.2.0 \
+ security-framework-sys-2.14.0 \
+ self_cell-1.2.0 \
+ semver-1.0.26 \
+ seq-macro-0.3.6 \
+ serde-1.0.219 \
+ serde-aux-4.7.0 \
+ serde-value-0.7.0 \
+ serde_bytes-0.11.17 \
+ serde_derive-1.0.219 \
+ serde_json-1.0.140 \
+ serde_path_to_error-0.1.17 \
+ serde_repr-0.1.20 \
+ serde_spanned-0.6.9 \
+ serde_tuple-1.1.0 \
+ serde_tuple_macros-1.0.1 \
serde_urlencoded-0.7.1 \
sha1-0.10.6 \
- sha2-0.10.8 \
+ sha2-0.10.9 \
sharded-slab-0.1.7 \
- shared_child-1.0.1 \
shlex-1.3.0 \
- signal-hook-registry-1.4.2 \
- simple-file-manifest-0.11.0 \
+ signal-hook-registry-1.4.5 \
+ simd-adler32-0.3.7 \
siphasher-0.3.11 \
- slab-0.4.9 \
+ siphasher-1.0.1 \
+ slab-0.4.10 \
slotmap-1.0.7 \
- smallvec-1.13.2 \
- snafu-0.8.5 \
- snafu-derive-0.8.5 \
+ smallvec-1.15.1 \
+ snafu-0.8.6 \
+ snafu-derive-0.8.6 \
snowflake-1.3.0 \
- socket2-0.5.7 \
- spin-0.5.2 \
+ socket2-0.5.10 \
spin-0.9.8 \
+ spin-0.10.0 \
spirv-0.3.0+sdk-1.3.268.0 \
stable_deref_trait-1.2.0 \
static_assertions-1.1.0 \
- string_cache-0.8.7 \
- string_cache_codegen-0.5.2 \
+ string_cache-0.8.9 \
+ string_cache_codegen-0.5.4 \
strsim-0.11.1 \
strum-0.26.3 \
+ strum-0.27.1 \
strum_macros-0.26.4 \
+ strum_macros-0.27.1 \
subtle-2.6.1 \
syn-1.0.109 \
- syn-2.0.96 \
+ syn-2.0.103 \
sync_wrapper-0.1.2 \
- sync_wrapper-1.0.1 \
- synstructure-0.13.1 \
+ sync_wrapper-1.0.2 \
+ synstructure-0.13.2 \
sysctl-0.5.5 \
- sysinfo-0.32.1 \
+ sysctl-0.6.0 \
+ sysinfo-0.33.1 \
system-configuration-0.5.1 \
system-configuration-sys-0.5.0 \
systemstat-0.2.4 \
- tar-0.4.42 \
+ tar-0.4.44 \
target-lexicon-0.13.2 \
- tempfile-3.16.0 \
*** 2777 LINES SKIPPED ***