guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 98ce23a1365f1ecb436dd4bd9ea18b098f2a1199
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Mar 22 11:44:10 2026 +0900
gnu: librsvg: Update to 2.61.4.
* gnu/packages/gnome.scm (librsvg): Update to 2.61.4.
[build-system]: Switch to meson.
[#:configure-flags]: Port to Meson. Add -Dpixbuf-loader=enabled.
[#:make-flags]: Delete.
[#:imported-modules, modules]: Adjust for build system switch.
[#:phases] {pre-build}: Set RUSTFLAGS environment variable.
{loosen-test-boundaries}: Rename to...
{prepare-for-tests}: ... this. Set HOME.
{pre-configure}: Port to Meson.
{sanitize-pkg-config-files}: New.
* gnu/packages/rust-crates.scm: Re-import crates.
[native-inputs]: Add gi-docgen, python, python-docutils and rust-cargo-c.
rust:cargo.
[inputs]: Add dav1d. Delete harfbuzz.
Change-Id: I4272ccdbfbcf2b40a347eac2c7c91446ea2f08c7
Signed-off-by: NoƩ Lopez <[email protected]>
---
gnu/packages/gnome.scm | 90 +++---
gnu/packages/rust-crates.scm | 680 ++++++++++++++++++++++++-------------------
2 files changed, 417 insertions(+), 353 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 0a32c60c50..90683ce296 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -214,6 +214,7 @@
#:use-module (gnu packages readline)
#:use-module (gnu packages ruby-xyz)
#:use-module (gnu packages rust)
+ #:use-module (gnu packages rust-apps)
#:use-module (gnu packages samba)
#:use-module (gnu packages scanner)
#:use-module (gnu packages sdl)
@@ -3545,7 +3546,7 @@ for dealing with different structured file formats.")
(define-public librsvg
(package
(name "librsvg")
- (version "2.58.5")
+ (version "2.61.4")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/librsvg/"
@@ -3553,45 +3554,31 @@ for dealing with different structured file formats.")
"librsvg-" version ".tar.xz"))
(sha256
(base32
- "0ym2yg94sc7ralh1kwqqrhz3wcc51079z90mbx0qrls7wfh36hi2"))))
- (build-system gnu-build-system)
+ "036afbhd2h4brbd491kmgig0ib1df3s7j9bx8349b3zjs4lfm87w"))))
+ (build-system meson-build-system)
(outputs '("out" "doc" "debug"))
(arguments
(list
#:configure-flags
- #~(list "--disable-static"
- #$@(if (%current-target-system)
- #~(;; g-ir-scanner can't import its modules
+ #~(list #$@(if (%current-target-system)
+ #~( ;; g-ir-scanner can't import its modules
;; and vala currently can't be cross-compiled.
- "--enable-introspection=no"
- "--enable-vala=no"
- ;; These two are necessary for cross-compiling.
- (string-append
- "--build=" #$(nix-system->gnu-triplet
- (%current-system)))
- (string-append
- "--host=" #$(%current-target-system))
+ "-Dintrospection=false"
+ "-Dvala=false"
;; This is needed when cross-compiling for some
;; architectures as autoconf and rust disagree about
;; the target triplet.
- (string-append "RUST_TARGET="
+ (string-append "-Dtriplet="
#$(platform-rust-target
(lookup-platform-by-target
(%current-target-system)))))
- #~("--enable-vala")))
- #:make-flags
- #~(list (string-append "CC=" #$(cc-for-target))
- (string-append "PKG_CONFIG=" #$(pkg-config-for-target))
- #$@(if (%current-target-system)
- #~((string-append "RUST_TARGET="
- #$(platform-rust-target
- (lookup-platform-by-target
- (%current-target-system)))))
- #~()))
- #:imported-modules %cargo-build-system-modules
+ #~())
+ "-Dpixbuf-loader=enabled") ;disabled since 2.61.2
+ #:imported-modules (append %cargo-build-system-modules
+ %meson-build-system-modules)
#:modules
'(((guix build cargo-build-system) #:prefix cargo:)
- (guix build gnu-build-system)
+ (guix build meson-build-system)
(guix build utils))
#:phases
#~(modify-phases %standard-phases
@@ -3608,12 +3595,19 @@ for dealing with different structured file formats.")
(lambda _
;; Something about the build environment resists building
;; successfully with the '--locked' flag.
- (substitute* '("Makefile.am" "Makefile.in")
- (("--locked") ""))))
- (add-after 'unpack 'loosen-test-boundaries
+ (substitute* "meson/cargo_wrapper.py"
+ (("\"--locked\",?") ""))
+ ;; This is needed so Cargo embeds the correct RUNPATH
+ ;; information to the binaries it produces,
+ ;; e.g. libpixbufloader_svg.so.
+ (setenv "RUSTFLAGS"
+ (string-append "-C link-arg=-Wl,-rpath,"
+ #$output "/lib"))))
+ (add-after 'unpack 'prepare-for-tests
(lambda _
+ (setenv "HOME" "/tmp") ;placate fontconfig errors
;; Increase reftest tolerance a bit to account for different
- ;; harfbuzz, pango, etc.
+ ;; libraries like pango, etc.
(setenv "RSVG_TEST_TOLERANCE" "20")
;; These tests fail even after loosening the tolerance.
(substitute* "rsvg/tests/reference.rs"
@@ -3621,19 +3615,16 @@ for dealing with different structured file formats.")
((".*rtl_tspan_svg.*") ""))))
(add-before 'configure 'pre-configure
(lambda* (#:key outputs #:allow-other-keys)
- (substitute* "gdk-pixbuf-loader/Makefile.in"
+ (substitute* "gdk-pixbuf-loader/meson.build"
;; By default the gdk-pixbuf loader is installed under
;; gdk-pixbuf's prefix. Work around that.
- (("gdk_pixbuf_moduledir = .*$")
- (string-append "gdk_pixbuf_moduledir = "
- "$(prefix)/"
- #$(dirname %gdk-pixbuf-loaders-cache-file) "/"
- "loaders\n")))
- (substitute* "configure"
- (("gdk_pixbuf_cache_file=.*")
- (string-append "gdk_pixbuf_cache_file="
- #$output "/"
- #$%gdk-pixbuf-loaders-cache-file "\n")))))
+ (("pixbuf_dep.get_variable.*'gdk_pixbuf_moduledir'.*),")
+ (format #f "get_option('prefix') / '~a',"
+ #$(dirname %gdk-pixbuf-loaders-cache-file)))
+ (("pixbuf_dep.get_variable.*'gdk_pixbuf_query_loaders'.*),")
+ (format #f "'~a'," (which "gdk-pixbuf-query-loaders")))
+ (("pixbuf_dep.get_variable.*'gdk_pixbuf_cache_file'.*)")
+ (format #f "prefix / '~a'"
#$%gdk-pixbuf-loaders-cache-file)))))
(add-after 'unpack 'prepare-cargo-build-system
(lambda args
(for-each
@@ -3645,23 +3636,30 @@ for dealing with different structured file formats.")
'(unpack-rust-crates
configure
check-for-pregenerated-files
- patch-cargo-checksums)))))))
+ patch-cargo-checksums))))
+ (add-after 'install 'sanitize-pkg-config-files
+ (lambda _
+ (substitute* (find-files #$output "\\.pc$")
+ (("^Requires.private:.*") "")))))))
(native-inputs
(append
(list gdk-pixbuf
+ gi-docgen
`(,glib "bin")
gobject-introspection
pkg-config
+ python
+ python-docutils ;for rst2man
rust
- `(,rust "cargo")
+ rust-cargo-c
vala)
(or (and=> (%current-target-system)
(compose list make-rust-sysroot))
'())))
(inputs
- (cons* freetype
+ (cons* dav1d
+ freetype
gobject-introspection
- harfbuzz
libxml2
pango
(cargo-inputs 'librsvg)))
diff --git a/gnu/packages/rust-crates.scm b/gnu/packages/rust-crates.scm
index 6b9794902c..1c4658eb35 100644
--- a/gnu/packages/rust-crates.scm
+++ b/gnu/packages/rust-crates.scm
@@ -6771,6 +6771,10 @@ fn main() {
(crate-source "cssparser-color" "0.1.0"
"17qcjsrph1ywcdsx1ipqgmzaas4dbbir5djjmzbqjnfqc6d0jv2m"))
+(define rust-cssparser-color-0.3.0
+ (crate-source "cssparser-color" "0.3.0"
+ "09636n6ibx5x3ppvmcrpw33rkykg2nrhcr7bi7fjw48fijpgkvkf"))
+
(define rust-cssparser-macros-0.6.1
(crate-source "cssparser-macros" "0.6.1"
"0cfkzj60avrnskdmaf7f8zw6pp3di4ylplk455zrzaf19ax8id8k"))
@@ -18758,6 +18762,10 @@ fn main() {
"1zxbm617hr4fv865ca88qxkzzrw5qp67b7s5q20ij1bjdkyfrj65"
#:snippet '(delete-file-recursively "assets")))
+(define rust-lopdf-0.38.0
+ (crate-source "lopdf" "0.38.0"
+ "12f2zlrn0brzln93yyw7bs3zka11qcq41v5cl5rd4g5wlbg4y667"))
+
(define rust-loupe-0.1.3
(crate-source "loupe" "0.1.3"
"0kb3bc62xh20i405afr8bf65m6gznbp0fhxrfrg5pqaglkgp4slv"))
@@ -28138,6 +28146,10 @@ fn main() {
(crate-source "selectors" "0.26.0"
"1s3zv30rqgdvil7mnfr4xq5nb9m8yp0sai42l28y565mkd68lmpx"))
+(define rust-selectors-0.31.0
+ (crate-source "selectors" "0.31.0"
+ "1dhgxvq8p6iald0iwlq2r5169d31iy75vyzwglp7vkxz8fpbd1an"))
+
(define rust-self-cell-0.10.3
(crate-source "self_cell" "0.10.3"
"0pci3zh23b7dg6jmlxbn8k4plb7hcg5jprd1qiz0rp04p1ilskp1"))
@@ -28887,6 +28899,10 @@ fn main() {
(crate-source "servo_arc" "0.4.0"
"06ljch4isnnbv1xpwhjajz4a4mpc7ki47ys9n9yn98kqjhjc8rdf"))
+(define rust-servo-arc-0.4.3
+ (crate-source "servo_arc" "0.4.3"
+ "0c2rl0r9x4kbppwlcrd5bnwds612na179im7kb37vqadncxbh3qp"))
+
(define rust-sevenz-rust-0.6.1
(crate-source "sevenz-rust" "0.6.1"
"1vzgznv5sjsjxjspwwdkhx6zr7x8xcch1irgg3f40iffxkqjqj16"
@@ -38159,6 +38175,10 @@ fn main() {
(crate-source "xml5ever" "0.19.0"
"0v07jvayvvs6g3148sx8isag99xaf2a0xyvr5mmj2zc69p9hdffp"))
+(define rust-xml5ever-0.35.0
+ (crate-source "xml5ever" "0.35.0"
+ "155lfvmn89i26aqp4aniv5dlzhpcsc53nmkny2p7a6mkmx0iwgzf"))
+
(define rust-xml5ever-0.36.1
(crate-source "xml5ever" "0.36.1"
"1rvbwr8pwmkzp3fig0f4c6fn4432p2mkdcamkfgzkfd4i0dxazgm"))
@@ -38289,6 +38309,10 @@ fn main() {
(crate-source "yeslogic-fontconfig-sys" "6.0.0"
"1gcx4brx8xvdpvryixk32b3xn9v80ilvi5frd40l8z039imhcfjh"))
+(define rust-yeslogic-fontconfig-sys-6.0.1
+ (crate-source "yeslogic-fontconfig-sys" "6.0.1"
+ "0xjgmw2nh3hr6wh72s9ss41njqrkgk4p25if27zjk6ibj6zqm2qx"))
+
(define rust-yoke-0.7.4
(crate-source "yoke" "0.7.4"
"198c4jkh6i3hxijia7mfa4cpnxg1iqym9bz364697c3rn0a16nvc"))
@@ -65461,313 +65485,355 @@ fn main() {
rust-zeroize-1.8.2
rust-zmij-1.0.21))
(librsvg =>
- (list rust-adler2-2.0.0
- rust-aho-corasick-1.1.3
- rust-android-tzdata-0.1.1
- rust-android-system-properties-0.1.5
- rust-anes-0.1.6
- rust-anstream-0.6.18
- rust-anstyle-1.0.10
- rust-anstyle-parse-0.2.6
- rust-anstyle-query-1.1.2
- rust-anstyle-wincon-3.0.7
- rust-anyhow-1.0.97
- rust-approx-0.5.1
- rust-assert-cmd-2.0.16
- rust-autocfg-1.4.0
- rust-bit-set-0.8.0
- rust-bit-vec-0.8.0
- rust-bit-field-0.10.2
- rust-bitflags-1.3.2
- rust-bitflags-2.9.0
- rust-block-0.1.6
- rust-bstr-1.11.3
- rust-bumpalo-3.17.0
- rust-bytemuck-1.22.0
- rust-byteorder-1.5.0
- rust-cairo-rs-0.19.4
- rust-cairo-sys-rs-0.19.2
- rust-cast-0.3.0
- rust-cc-1.2.18
- rust-cfg-expr-0.15.8
- rust-cfg-if-1.0.0
- rust-chrono-0.4.40
- rust-ciborium-0.2.2
- rust-ciborium-io-0.2.2
- rust-ciborium-ll-0.2.2
- rust-clap-4.5.35
- rust-clap-builder-4.5.35
- rust-clap-complete-4.5.47
- rust-clap-derive-4.5.32
- rust-clap-lex-0.7.4
- rust-color-quant-1.1.0
- rust-colorchoice-1.0.3
- rust-core-foundation-sys-0.8.7
- rust-crc32fast-1.4.2
- rust-criterion-0.5.1
- rust-criterion-plot-0.5.0
- rust-crossbeam-deque-0.8.6
- rust-crossbeam-epoch-0.9.18
- rust-crossbeam-utils-0.8.21
- rust-crunchy-0.2.3
- rust-cssparser-0.31.2
- rust-cssparser-macros-0.6.1
- rust-cstr-0.2.12
- rust-data-url-0.3.1
- rust-deranged-0.4.1
- rust-derive-more-0.99.19
- rust-difflib-0.4.0
- rust-displaydoc-0.2.5
- rust-dlib-0.5.2
- rust-doc-comment-0.3.3
- rust-dtoa-1.0.10
- rust-dtoa-short-0.3.5
- rust-either-1.15.0
- rust-encoding-rs-0.8.35
- rust-equivalent-1.0.2
- rust-errno-0.3.11
- rust-exr-1.73.0
- rust-fastrand-2.3.0
- rust-fdeflate-0.3.7
- rust-flate2-1.1.1
- rust-float-cmp-0.9.0
- rust-float-cmp-0.10.0
- rust-fnv-1.0.7
- rust-form-urlencoded-1.2.1
- rust-futf-0.1.5
- rust-futures-channel-0.3.31
- rust-futures-core-0.3.31
- rust-futures-executor-0.3.31
- rust-futures-io-0.3.31
- rust-futures-macro-0.3.31
- rust-futures-task-0.3.31
- rust-futures-util-0.3.31
- rust-fxhash-0.2.1
- rust-gdk-pixbuf-0.19.8
- rust-gdk-pixbuf-sys-0.19.8
- rust-getrandom-0.2.15
- rust-getrandom-0.3.2
- rust-gif-0.13.1
- rust-gio-0.19.8
- rust-gio-sys-0.19.8
- rust-glib-0.19.9
- rust-glib-macros-0.19.9
- rust-glib-sys-0.19.8
- rust-gobject-sys-0.19.8
- rust-half-2.5.0
- rust-hashbrown-0.15.2
- rust-heck-0.5.0
- rust-hermit-abi-0.5.0
- rust-iana-time-zone-0.1.63
- rust-iana-time-zone-haiku-0.1.2
- rust-icu-collections-1.5.0
- rust-icu-locid-1.5.0
- rust-icu-locid-transform-1.5.0
- rust-icu-locid-transform-data-1.5.1
- rust-icu-normalizer-1.5.0
- rust-icu-normalizer-data-1.5.1
- rust-icu-properties-1.5.1
- rust-icu-properties-data-1.5.1
- rust-icu-provider-1.5.0
- rust-icu-provider-macros-1.5.0
- rust-idna-1.0.3
- rust-idna-adapter-1.2.0
- rust-image-0.24.9
- rust-indexmap-2.9.0
- rust-is-terminal-0.4.16
- rust-is-terminal-polyfill-1.70.1
- rust-itertools-0.10.5
- rust-itertools-0.12.1
- rust-itoa-1.0.15
- rust-jpeg-decoder-0.3.1
- rust-js-sys-0.3.77
- rust-language-tags-0.3.2
- rust-lazy-static-1.5.0
- rust-lebe-0.5.2
- rust-libc-0.2.171
- rust-libloading-0.8.6
- rust-linked-hash-map-0.5.6
- rust-linux-raw-sys-0.9.3
- rust-litemap-0.7.5
- rust-locale-config-0.3.0
- rust-lock-api-0.4.12
- rust-log-0.4.27
- rust-lopdf-0.32.0
- rust-mac-0.1.1
- rust-malloc-buf-0.0.6
- rust-markup5ever-0.11.0
- rust-matches-0.1.10
- rust-matrixmultiply-0.3.9
- rust-md5-0.7.0
- rust-memchr-2.7.4
- rust-minimal-lexical-0.2.1
- rust-miniz-oxide-0.8.7
- rust-nalgebra-0.32.6
- rust-nalgebra-macros-0.2.2
- rust-new-debug-unreachable-1.0.6
- rust-nom-7.1.3
- rust-normalize-line-endings-0.3.0
- rust-num-complex-0.4.6
- rust-num-conv-0.1.0
- rust-num-integer-0.1.46
- rust-num-rational-0.4.2
- rust-num-traits-0.2.19
- rust-objc-0.2.7
- rust-objc-foundation-0.1.1
- rust-objc-id-0.1.1
- rust-once-cell-1.21.3
- rust-oorandom-11.1.5
- rust-pango-0.19.8
- rust-pango-sys-0.19.8
- rust-pangocairo-0.19.8
- rust-pangocairo-sys-0.19.8
- rust-parking-lot-0.12.3
- rust-parking-lot-core-0.9.10
- rust-paste-1.0.15
- rust-percent-encoding-2.3.1
- rust-phf-0.10.1
- rust-phf-0.11.3
- rust-phf-codegen-0.10.0
- rust-phf-generator-0.10.0
- rust-phf-generator-0.11.3
- rust-phf-macros-0.11.3
- rust-phf-shared-0.10.0
- rust-phf-shared-0.11.3
- rust-pin-project-lite-0.2.16
- rust-pin-utils-0.1.0
- rust-pkg-config-0.3.32
- rust-plotters-0.3.7
- rust-plotters-backend-0.3.7
- rust-plotters-svg-0.3.7
- rust-png-0.17.16
- rust-powerfmt-0.2.0
- rust-ppv-lite86-0.2.21
- rust-precomputed-hash-0.1.1
- rust-predicates-3.1.3
- rust-predicates-core-1.0.9
- rust-predicates-tree-1.0.12
- rust-proc-macro-crate-3.3.0
- rust-proc-macro2-1.0.94
- rust-proptest-1.6.0
- rust-qoi-0.4.1
- rust-quick-error-1.2.3
- rust-quick-error-2.0.1
- rust-quote-1.0.40
- rust-r-efi-5.2.0
- rust-rand-0.8.5
- rust-rand-chacha-0.3.1
- rust-rand-core-0.6.4
- rust-rand-xorshift-0.3.0
- rust-rawpointer-0.2.1
- rust-rayon-1.10.0
- rust-rayon-core-1.12.1
- rust-rctree-0.6.0
- rust-redox-syscall-0.5.10
- rust-regex-1.11.1
- rust-regex-automata-0.4.9
- rust-regex-syntax-0.8.5
- rust-rgb-0.8.50
- rust-rustix-1.0.5
- rust-rustversion-1.0.20
- rust-rusty-fork-0.3.0
- rust-ryu-1.0.20
- rust-safe-arch-0.7.4
- rust-same-file-1.0.6
- rust-scopeguard-1.2.0
- rust-selectors-0.25.0
- rust-serde-1.0.219
- rust-serde-derive-1.0.219
- rust-serde-json-1.0.140
- rust-serde-spanned-0.6.8
- rust-servo-arc-0.3.0
- rust-shlex-1.3.0
- rust-simba-0.8.1
- rust-simd-adler32-0.3.7
- rust-siphasher-0.3.11
- rust-siphasher-1.0.1
- rust-slab-0.4.9
- rust-smallvec-1.15.0
- rust-stable-deref-trait-1.2.0
- rust-string-cache-0.8.9
- rust-string-cache-codegen-0.5.4
- rust-strsim-0.11.1
- rust-syn-2.0.100
- rust-synstructure-0.13.1
- rust-system-deps-6.2.2
- rust-target-lexicon-0.12.16
- rust-tempfile-3.19.1
- rust-tendril-0.4.3
- rust-termtree-0.5.1
- rust-thiserror-1.0.69
- rust-thiserror-impl-1.0.69
- rust-tiff-0.9.1
- rust-time-0.3.41
- rust-time-core-0.1.4
- rust-time-macros-0.2.22
- rust-tinystr-0.7.6
- rust-tinytemplate-1.2.1
- rust-tinyvec-1.9.0
- rust-tinyvec-macros-0.1.1
- rust-toml-0.8.20
- rust-toml-datetime-0.6.8
- rust-toml-edit-0.22.24
- rust-typenum-1.18.0
- rust-unarray-0.1.4
- rust-unicode-ident-1.0.18
- rust-url-2.5.4
- rust-utf-8-0.7.6
- rust-utf16-iter-1.0.5
- rust-utf8-iter-1.0.4
- rust-utf8parse-0.2.2
- rust-version-compare-0.2.0
- rust-wait-timeout-0.2.1
- rust-walkdir-2.5.0
- rust-wasi-0.11.0+wasi-snapshot-preview1
- rust-wasi-0.14.2+wasi-0.2.4
- rust-wasm-bindgen-0.2.100
- rust-wasm-bindgen-backend-0.2.100
- rust-wasm-bindgen-macro-0.2.100
- rust-wasm-bindgen-macro-support-0.2.100
- rust-wasm-bindgen-shared-0.2.100
- rust-web-sys-0.3.77
- rust-weezl-0.1.8
- rust-wide-0.7.32
- rust-winapi-0.3.9
- rust-winapi-i686-pc-windows-gnu-0.4.0
- rust-winapi-util-0.1.9
- rust-winapi-x86-64-pc-windows-gnu-0.4.0
- rust-windows-core-0.61.0
- rust-windows-implement-0.60.0
- rust-windows-interface-0.59.1
- rust-windows-link-0.1.1
- rust-windows-result-0.3.2
- rust-windows-strings-0.4.0
- rust-windows-sys-0.52.0
- rust-windows-sys-0.59.0
- rust-windows-targets-0.52.6
- rust-windows-aarch64-gnullvm-0.52.6
- rust-windows-aarch64-msvc-0.52.6
- rust-windows-i686-gnu-0.52.6
- rust-windows-i686-gnullvm-0.52.6
- rust-windows-i686-msvc-0.52.6
- rust-windows-x86-64-gnu-0.52.6
- rust-windows-x86-64-gnullvm-0.52.6
- rust-windows-x86-64-msvc-0.52.6
- rust-winnow-0.7.4
- rust-wit-bindgen-rt-0.39.0
- rust-write16-1.0.0
- rust-writeable-0.5.5
- rust-xml5ever-0.17.0
- rust-yeslogic-fontconfig-sys-5.0.0
- rust-yoke-0.7.5
- rust-yoke-derive-0.7.5
- rust-zerocopy-0.8.24
- rust-zerocopy-derive-0.8.24
- rust-zerofrom-0.1.6
- rust-zerofrom-derive-0.1.6
- rust-zerovec-0.10.4
- rust-zerovec-derive-0.10.3
- rust-zune-inflate-0.2.54))
+ (list rust-adler2-2.0.1
+ rust-aes-0.8.4
+ rust-ahash-0.8.12
+ rust-aho-corasick-1.1.4
+ rust-android-system-properties-0.1.5
+ rust-anes-0.1.6
+ rust-anstream-1.0.0
+ rust-anstyle-1.0.14
+ rust-anstyle-parse-1.0.0
+ rust-anstyle-query-1.1.5
+ rust-anstyle-wincon-3.0.11
+ rust-anyhow-1.0.102
+ rust-approx-0.5.1
+ rust-assert-cmd-2.2.2
+ rust-autocfg-1.5.1
+ rust-av-data-0.4.4
+ rust-bit-set-0.8.0
+ rust-bit-vec-0.8.0
+ rust-bitflags-2.13.0
+ rust-bitreader-0.3.11
+ rust-block-0.1.6
+ rust-block-buffer-0.10.4
+ rust-block-padding-0.3.3
+ rust-bstr-1.12.1
+ rust-bumpalo-3.20.3
+ rust-byte-slice-cast-1.2.3
+ rust-bytecount-0.6.9
+ rust-bytemuck-1.25.0
+ rust-byteorder-1.5.0
+ rust-byteorder-lite-0.1.0
+ rust-bytes-1.11.1
+ rust-cairo-rs-0.21.5
+ rust-cairo-sys-rs-0.21.5
+ rust-cast-0.3.0
+ rust-cbc-0.1.2
+ rust-cc-1.2.63
+ rust-cfg-expr-0.20.8
+ rust-cfg-if-1.0.4
+ rust-chrono-0.4.45
+ rust-ciborium-0.2.2
+ rust-ciborium-io-0.2.2
+ rust-ciborium-ll-0.2.2
+ rust-cipher-0.4.4
+ rust-clap-4.6.1
+ rust-clap-builder-4.6.0
+ rust-clap-complete-4.6.5
+ rust-clap-derive-4.6.1
+ rust-clap-lex-1.1.0
+ rust-color-quant-1.1.0
+ rust-colorchoice-1.0.5
+ rust-core-foundation-sys-0.8.7
+ rust-cpufeatures-0.2.17
+ rust-crc32fast-1.5.0
+ rust-criterion-0.7.0
+ rust-criterion-plot-0.6.0
+ rust-crossbeam-deque-0.8.6
+ rust-crossbeam-epoch-0.9.18
+ rust-crossbeam-utils-0.8.21
+ rust-crunchy-0.2.4
+ rust-crypto-common-0.1.7
+ rust-cssparser-0.35.0
+ rust-cssparser-color-0.3.0
+ rust-cssparser-macros-0.6.1
+ rust-data-url-0.3.2
+ rust-dav1d-0.11.1
+ rust-dav1d-sys-0.8.3
+ rust-deranged-0.5.8
+ rust-derive-more-2.1.1
+ rust-derive-more-impl-2.1.1
+ rust-difflib-0.4.0
+ rust-digest-0.10.7
+ rust-displaydoc-0.2.6
+ rust-dlib-0.5.3
+ rust-dtoa-1.0.11
+ rust-dtoa-short-0.3.5
+ rust-ecb-0.1.2
+ rust-either-1.16.0
+ rust-encoding-rs-0.8.35
+ rust-equivalent-1.0.2
+ rust-errno-0.3.14
+ rust-fallible-collections-0.4.9
+ rust-fastrand-2.4.1
+ rust-fdeflate-0.3.7
+ rust-find-msvc-tools-0.1.9
+ rust-flate2-1.1.9
+ rust-float-cmp-0.10.0
+ rust-fnv-1.0.7
+ rust-foldhash-0.1.5
+ rust-form-urlencoded-1.2.2
+ rust-futf-0.1.5
+ rust-futures-channel-0.3.32
+ rust-futures-core-0.3.32
+ rust-futures-executor-0.3.32
+ rust-futures-io-0.3.32
+ rust-futures-macro-0.3.32
+ rust-futures-task-0.3.32
+ rust-futures-util-0.3.32
+ rust-fxhash-0.2.1
+ rust-gdk-pixbuf-0.21.5
+ rust-gdk-pixbuf-sys-0.21.5
+ rust-generic-array-0.14.7
+ rust-getrandom-0.3.4
+ rust-getrandom-0.4.2
+ rust-gif-0.14.2
+ rust-gio-0.21.5
+ rust-gio-sys-0.21.5
+ rust-glib-0.21.5
+ rust-glib-macros-0.21.5
+ rust-glib-sys-0.21.5
+ rust-gobject-sys-0.21.5
+ rust-half-2.7.1
+ rust-hashbrown-0.13.2
+ rust-hashbrown-0.15.5
+ rust-hashbrown-0.17.1
+ rust-heck-0.5.0
+ rust-iana-time-zone-0.1.65
+ rust-iana-time-zone-haiku-0.1.2
+ rust-icu-collections-2.2.0
+ rust-icu-locale-core-2.2.0
+ rust-icu-normalizer-2.2.0
+ rust-icu-normalizer-data-2.2.0
+ rust-icu-properties-2.2.0
+ rust-icu-properties-data-2.2.0
+ rust-icu-provider-2.2.0
+ rust-id-arena-2.3.0
+ rust-idna-1.1.0
+ rust-idna-adapter-1.2.2
+ rust-image-0.25.10
+ rust-image-webp-0.2.4
+ rust-indexmap-2.14.0
+ rust-inout-0.1.4
+ rust-is-terminal-polyfill-1.70.2
+ rust-itertools-0.13.0
+ rust-itertools-0.14.0
+ rust-itoa-1.0.18
+ rust-jiff-0.2.28
+ rust-jiff-static-0.2.28
+ rust-jiff-tzdb-0.1.6
+ rust-jiff-tzdb-platform-0.1.3
+ rust-js-sys-0.3.99
+ rust-language-tags-0.3.2
+ rust-lazy-static-1.5.0
+ rust-leb128fmt-0.1.0
+ rust-libc-0.2.186
+ rust-libloading-0.8.9
+ rust-linux-raw-sys-0.12.1
+ rust-litemap-0.8.2
+ rust-locale-config-0.3.0
+ rust-lock-api-0.4.14
+ rust-log-0.4.32
+ rust-lopdf-0.38.0
+ rust-mac-0.1.1
+ rust-malloc-buf-0.0.6
+ rust-markup5ever-0.35.0
+ rust-matches-0.1.10
+ rust-matrixmultiply-0.3.10
+ rust-md-5-0.10.6
+ rust-memchr-2.8.1
+ rust-miniz-oxide-0.8.9
+ rust-moxcms-0.8.1
+ rust-mp4parse-0.17.0
+ rust-nalgebra-0.33.3
+ rust-nalgebra-macros-0.2.2
+ rust-new-debug-unreachable-1.0.6
+ rust-nom-8.0.0
+ rust-nom-locate-5.0.0
+ rust-normalize-line-endings-0.3.0
+ rust-num-bigint-0.4.6
+ rust-num-complex-0.4.6
+ rust-num-conv-0.2.2
+ rust-num-derive-0.4.2
+ rust-num-integer-0.1.46
+ rust-num-rational-0.4.2
+ rust-num-traits-0.2.19
+ rust-objc-0.2.7
+ rust-objc-foundation-0.1.1
+ rust-objc-id-0.1.1
+ rust-once-cell-1.21.4
+ rust-once-cell-polyfill-1.70.2
+ rust-oorandom-11.1.5
+ rust-pango-0.21.5
+ rust-pango-sys-0.21.5
+ rust-pangocairo-0.21.5
+ rust-pangocairo-sys-0.21.5
+ rust-parking-lot-0.12.5
+ rust-parking-lot-core-0.9.12
+ rust-paste-1.0.15
+ rust-percent-encoding-2.3.2
+ rust-phf-0.11.3
+ rust-phf-codegen-0.11.3
+ rust-phf-generator-0.11.3
+ rust-phf-macros-0.11.3
+ rust-phf-shared-0.11.3
+ rust-phf-shared-0.13.1
+ rust-pin-project-lite-0.2.17
+ rust-pkg-config-0.3.33
+ rust-plotters-0.3.7
+ rust-plotters-backend-0.3.7
+ rust-plotters-svg-0.3.7
+ rust-png-0.18.1
+ rust-portable-atomic-1.13.1
+ rust-portable-atomic-util-0.2.7
+ rust-potential-utf-0.1.5
+ rust-powerfmt-0.2.0
+ rust-ppv-lite86-0.2.21
+ rust-precomputed-hash-0.1.1
+ rust-predicates-3.1.4
+ rust-predicates-core-1.0.10
+ rust-predicates-tree-1.0.13
+ rust-prettyplease-0.2.37
+ rust-proc-macro-crate-3.5.0
+ rust-proc-macro2-1.0.106
+ rust-proptest-1.11.0
+ rust-pxfm-0.1.29
+ rust-quick-error-1.2.3
+ rust-quick-error-2.0.1
+ rust-quote-1.0.45
+ rust-r-efi-5.3.0
+ rust-r-efi-6.0.0
+ rust-rand-0.8.6
+ rust-rand-0.9.4
+ rust-rand-chacha-0.9.0
+ rust-rand-core-0.6.4
+ rust-rand-core-0.9.5
+ rust-rand-xorshift-0.4.0
+ rust-rangemap-1.7.1
+ rust-rawpointer-0.2.1
+ rust-rayon-1.12.0
+ rust-rayon-core-1.13.0
+ rust-rctree-0.6.0
+ rust-redox-syscall-0.5.18
+ rust-regex-1.12.3
+ rust-regex-automata-0.4.14
+ rust-regex-syntax-0.8.10
+ rust-rgb-0.8.53
+ rust-rustc-version-0.4.1
+ rust-rustix-1.1.4
+ rust-rustversion-1.0.22
+ rust-rusty-fork-0.3.1
+ rust-safe-arch-0.7.4
+ rust-same-file-1.0.6
+ rust-scopeguard-1.2.0
+ rust-selectors-0.31.0
+ rust-semver-1.0.28
+ rust-serde-1.0.228
+ rust-serde-core-1.0.228
+ rust-serde-derive-1.0.228
+ rust-serde-json-1.0.150
+ rust-serde-spanned-1.1.1
+ rust-servo-arc-0.4.3
+ rust-sha2-0.10.9
+ rust-shell-words-1.1.1
+ rust-shlex-2.0.1
+ rust-simba-0.9.1
+ rust-simd-adler32-0.3.9
+ rust-siphasher-1.0.3
+ rust-slab-0.4.12
+ rust-smallvec-1.15.1
+ rust-stable-deref-trait-1.2.1
+ rust-static-assertions-1.1.0
+ rust-string-cache-0.8.9
+ rust-string-cache-0.9.0
+ rust-string-cache-codegen-0.5.4
+ rust-stringprep-0.1.5
+ rust-strsim-0.11.1
+ rust-syn-2.0.117
+ rust-synstructure-0.13.2
+ rust-system-deps-7.0.8
+ rust-target-lexicon-0.13.5
+ rust-tempfile-3.27.0
+ rust-tendril-0.4.3
+ rust-termtree-0.5.1
+ rust-thiserror-2.0.18
+ rust-thiserror-impl-2.0.18
+ rust-time-0.3.47
+ rust-time-core-0.1.8
+ rust-time-macros-0.2.27
+ rust-tinystr-0.8.3
+ rust-tinytemplate-1.2.1
+ rust-tinyvec-1.11.0
+ rust-tinyvec-macros-0.1.1
+ rust-toml-1.1.2+spec-1.1.0
+ rust-toml-datetime-1.1.1+spec-1.1.0
+ rust-toml-edit-0.25.12+spec-1.1.0
+ rust-toml-parser-1.1.2+spec-1.1.0
+ rust-toml-writer-1.1.1+spec-1.1.0
+ rust-ttf-parser-0.25.1
+ rust-typenum-1.20.1
+ rust-unarray-0.1.4
+ rust-unicode-bidi-0.3.18
+ rust-unicode-ident-1.0.24
+ rust-unicode-normalization-0.1.25
+ rust-unicode-properties-0.1.4
+ rust-unicode-xid-0.2.6
+ rust-url-2.5.8
+ rust-utf-8-0.7.6
+ rust-utf8-iter-1.0.4
+ rust-utf8parse-0.2.2
+ rust-version-compare-0.2.1
+ rust-version-check-0.9.5
+ rust-wait-timeout-0.2.1
+ rust-walkdir-2.5.0
+ rust-wasip2-1.0.3+wasi-0.2.9
+ rust-wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06
+ rust-wasm-bindgen-0.2.122
+ rust-wasm-bindgen-macro-0.2.122
+ rust-wasm-bindgen-macro-support-0.2.122
+ rust-wasm-bindgen-shared-0.2.122
+ rust-wasm-encoder-0.244.0
+ rust-wasm-metadata-0.244.0
+ rust-wasmparser-0.244.0
+ rust-web-sys-0.3.99
+ rust-web-atoms-0.1.3
+ rust-weezl-0.1.12
+ rust-wide-0.7.33
+ rust-winapi-0.3.9
+ rust-winapi-i686-pc-windows-gnu-0.4.0
+ rust-winapi-util-0.1.11
+ rust-winapi-x86-64-pc-windows-gnu-0.4.0
+ rust-windows-core-0.62.2
+ rust-windows-implement-0.60.2
+ rust-windows-interface-0.59.3
+ rust-windows-link-0.2.1
+ rust-windows-result-0.4.1
+ rust-windows-strings-0.5.1
+ rust-windows-sys-0.61.2
+ rust-winnow-1.0.3
+ rust-wit-bindgen-0.51.0
+ rust-wit-bindgen-0.57.1
+ rust-wit-bindgen-core-0.51.0
+ rust-wit-bindgen-rust-0.51.0
+ rust-wit-bindgen-rust-macro-0.51.0
+ rust-wit-component-0.244.0
+ rust-wit-parser-0.244.0
+ rust-writeable-0.6.3
+ rust-xml5ever-0.35.0
+ rust-yeslogic-fontconfig-sys-6.0.1
+ rust-yoke-0.8.3
+ rust-yoke-derive-0.8.2
+ rust-zerocopy-0.8.50
+ rust-zerocopy-derive-0.8.50
+ rust-zerofrom-0.1.8
+ rust-zerofrom-derive-0.1.7
+ rust-zerotrie-0.2.4
+ rust-zerovec-0.11.6
+ rust-zerovec-derive-0.11.3
+ rust-zmij-1.0.21
+ rust-zune-core-0.5.1
+ rust-zune-jpeg-0.5.15))
(lix =>
(list rust-countme-3.0.1
rust-dissimilar-1.0.9