diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-05-07 19:26:58 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-05-28 12:13:45 +0200 |
| commit | 3ba4f6de9a9cd2e4e1b1a0dfcc9e873a9d56c648 (patch) | |
| tree | bfc0a6756edd35a40b48bc92e6a19f45ea308228 | |
| parent | 6c23765499f237be349c56eb20d254d51fa7ce36 (diff) | |
gnu: r-pizzarr: Update to 0.2.0.
* gnu/packages/bioinformatics.scm (r-pizzarr): Update to 0.2.0.
[build-system]: Use cargo-build-system.
[arguments]: Add phases from the r-build-system; enable most tests.
[inputs]: Add openssl, zlib, and zstd:lib; add cargo inputs.
[native-inputs]: Add pkg-config and r-minimal.
[propagated-inputs]: Remove r-qs; add r-qs2.
* gnu/packages/rust-crates.scm (lookup-cargo-inputs): Add entries for extendr
and r-pizzarr.
* gnu/packages/rust-sources.scm (rust-extendr-0.8.1.93d7244): New variable.
Change-Id: Ibce9ce84bedac56978729513756b8476769126bb
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 103 | ||||
| -rw-r--r-- | gnu/packages/rust-crates.scm | 685 | ||||
| -rw-r--r-- | gnu/packages/rust-sources.scm | 44 |
3 files changed, 806 insertions, 26 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b8c988e125b..9d8980d026d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm | |||
| @@ -1430,33 +1430,86 @@ within this package are the 3000 bone marrow cells used for vignettes.") | |||
| 1430 | (license license:gpl3)))) | 1430 | (license license:gpl3)))) |
| 1431 | 1431 | ||
| 1432 | (define-public r-pizzarr | 1432 | (define-public r-pizzarr |
| 1433 | (let ((commit "5f4705789ba29344dcb97023f290a26a7f7abd0c") | 1433 | (package |
| 1434 | (revision "2")) | 1434 | (name "r-pizzarr") |
| 1435 | (package | 1435 | (version "0.2.0") |
| 1436 | (name "r-pizzarr") | 1436 | (source |
| 1437 | (version (git-version "0.1.0" revision commit)) | 1437 | (origin |
| 1438 | (source | 1438 | (method git-fetch) |
| 1439 | (origin | 1439 | (uri (git-reference |
| 1440 | (method git-fetch) | 1440 | (url "https://github.com/keller-mark/pizzarr") |
| 1441 | (uri (git-reference | 1441 | (commit (string-append "v" version)))) |
| 1442 | (url "https://github.com/keller-mark/pizzarr") | 1442 | (file-name (git-file-name name version)) |
| 1443 | (commit commit))) | 1443 | (sha256 |
| 1444 | (file-name (git-file-name name version)) | 1444 | (base32 "1m38c57pfliycxkhb3mwgh01cl2q76r1jhd3vnk07dbfhqdbqai6")))) |
| 1445 | (sha256 | 1445 | (properties `((upstream-name . "pizzarr"))) |
| 1446 | (base32 "17pd6bk8kvnrvvyfqvm8q47kzghlfyfjdd9b7cwiazc5xr4vz6f0")))) | 1446 | (build-system cargo-build-system) |
| 1447 | (properties `((upstream-name . "pizzarr"))) | 1447 | (arguments |
| 1448 | (build-system r-build-system) | 1448 | (list |
| 1449 | ;; Some tests require Internet access. | 1449 | #:imported-modules |
| 1450 | (arguments (list #:tests? #false)) | 1450 | (append %cargo-build-system-modules |
| 1451 | (propagated-inputs (list r-jsonlite r-memoise r-qs r-r6 r-stringr)) | 1451 | %r-build-system-modules) |
| 1452 | (native-inputs (list r-pbapply r-testthat r-vcr)) | 1452 | #:modules |
| 1453 | (home-page "https://github.com/keller-mark/pizzarr") | 1453 | '((guix build cargo-build-system) |
| 1454 | (synopsis "Slice into Zarr arrays in R") | 1454 | ((guix build r-build-system) #:prefix r:) |
| 1455 | (description | 1455 | (guix build utils)) |
| 1456 | "This package provides an implementation of chunked, compressed, | 1456 | #:cargo-build-flags |
| 1457 | '(list "--target-dir=./target" "--release") | ||
| 1458 | #:phases | ||
| 1459 | #~(append (modify-phases %standard-phases | ||
| 1460 | (add-after 'unpack 'patch-Makevars | ||
| 1461 | (lambda _ | ||
| 1462 | ;; At this point we've already built the Rust parts. | ||
| 1463 | (substitute* "src/Makevars.in" | ||
| 1464 | (("^all:.*") "all:") | ||
| 1465 | (("^\\$\\(STATLIB\\):") "NOBODYCARES:") | ||
| 1466 | (("@PKG_LIBS_EXTRA@") "@PKG_LIBS_EXTRA@ -lzstd -lz")))) | ||
| 1467 | (add-after 'patch-Makevars 'chdir | ||
| 1468 | (lambda _ (chdir "src/rust"))) | ||
| 1469 | (add-after 'chdir 'patch-rust-dependency | ||
| 1470 | (lambda _ | ||
| 1471 | (setenv "RUSTFLAGS" "--print=native-static-libs") | ||
| 1472 | (substitute* "Cargo.toml" | ||
| 1473 | (("extendr-api = \\{ git.* \\}") "extendr-api = \"0.8.1\"")))) | ||
| 1474 | (add-after 'package 'chdir-back | ||
| 1475 | (lambda _ (chdir "../.."))) | ||
| 1476 | (delete 'install) | ||
| 1477 | (delete 'check)) | ||
| 1478 | (modify-phases (@ (guix build r-build-system) %standard-phases) | ||
| 1479 | (delete 'unpack) | ||
| 1480 | (replace 'patch-tests | ||
| 1481 | (lambda* (#:key inputs outputs tests? #:allow-other-keys) | ||
| 1482 | ((assoc-ref (@ (guix build r-build-system) %standard-phases) | ||
| 1483 | 'patch-tests) | ||
| 1484 | #:skipped-tests | ||
| 1485 | ;; These files contain tests that require Internet access. | ||
| 1486 | '("test-compat.R" "test-get.R" | ||
| 1487 | ;; HttpStore requires the crul package | ||
| 1488 | ("test-zarrs-dispatch.R" "can_use_zarrs_create returns FALSE for HttpStore") | ||
| 1489 | ("test-zarrs-store-cache.R" "HttpStore get_store_identifier returns URL"))))) | ||
| 1490 | (replace 'check | ||
| 1491 | (lambda* (#:key inputs outputs tests? #:allow-other-keys) | ||
| 1492 | ((assoc-ref (@ (guix build r-build-system) %standard-phases) | ||
| 1493 | 'check) | ||
| 1494 | #:test-target "tests" | ||
| 1495 | #:test-types #false | ||
| 1496 | #:inputs inputs | ||
| 1497 | #:outputs outputs | ||
| 1498 | #:tests? tests?))))))) | ||
| 1499 | (propagated-inputs (list r-jsonlite r-memoise r-qs2 r-r6 r-stringr)) | ||
| 1500 | (inputs | ||
| 1501 | (cons* openssl zlib `(,zstd "lib") | ||
| 1502 | (cargo-inputs 'r-pizzarr))) | ||
| 1503 | (native-inputs | ||
| 1504 | (list pkg-config | ||
| 1505 | r-minimal r-pbapply r-testthat r-vcr)) | ||
| 1506 | (home-page "https://github.com/keller-mark/pizzarr") | ||
| 1507 | (synopsis "Slice into Zarr arrays in R") | ||
| 1508 | (description | ||
| 1509 | "This package provides an implementation of chunked, compressed, | ||
| 1457 | N-dimensional arrays for R, Zarr specification version 2 (2024) | 1510 | N-dimensional arrays for R, Zarr specification version 2 (2024) |
| 1458 | <doi:10.5281/zenodo.11320255>.") | 1511 | <doi:10.5281/zenodo.11320255>.") |
| 1459 | (license license:expat)))) | 1512 | (license license:expat))) |
| 1460 | 1513 | ||
| 1461 | (define-public r-rhtslib12 | 1514 | (define-public r-rhtslib12 |
| 1462 | (let ((commit "ee186daf04876969c7f31c16a0e0fda8e7c16a30") | 1515 | (let ((commit "ee186daf04876969c7f31c16a0e0fda8e7c16a30") |
diff --git a/gnu/packages/rust-crates.scm b/gnu/packages/rust-crates.scm index 21b531a8323..e8afada4d71 100644 --- a/gnu/packages/rust-crates.scm +++ b/gnu/packages/rust-crates.scm | |||
| @@ -1526,6 +1526,10 @@ | |||
| 1526 | (crate-source "auto_impl" "0.5.0" | 1526 | (crate-source "auto_impl" "0.5.0" |
| 1527 | "195d6s9bfcchwizf3km1g69l74f6xvm5gl9505js2r9xi4ff4qkq")) | 1527 | "195d6s9bfcchwizf3km1g69l74f6xvm5gl9505js2r9xi4ff4qkq")) |
| 1528 | 1528 | ||
| 1529 | (define rust-auto-impl-1.3.0 | ||
| 1530 | (crate-source "auto_impl" "1.3.0" | ||
| 1531 | "1rzysfb0zpwsi2lg043fj596xj2a4xir2lc0fd17im64vc5vgp7z")) | ||
| 1532 | |||
| 1529 | (define rust-autocfg-0.1.8 | 1533 | (define rust-autocfg-0.1.8 |
| 1530 | (crate-source "autocfg" "0.1.8" | 1534 | (crate-source "autocfg" "0.1.8" |
| 1531 | "0y4vw4l4izdxq1v0rrhvmlbqvalrqrmk60v1z0dqlgnlbzkl7phd")) | 1535 | "0y4vw4l4izdxq1v0rrhvmlbqvalrqrmk60v1z0dqlgnlbzkl7phd")) |
| @@ -2627,6 +2631,11 @@ | |||
| 2627 | "1p9vxbv0kws99ilkk97kd8dhc4pr3rmaqww28y38mdsjg3sjm7a8" | 2631 | "1p9vxbv0kws99ilkk97kd8dhc4pr3rmaqww28y38mdsjg3sjm7a8" |
| 2628 | #:snippet '(delete-file-recursively "docs"))) | 2632 | #:snippet '(delete-file-recursively "docs"))) |
| 2629 | 2633 | ||
| 2634 | (define rust-blosc-src-0.3.8 | ||
| 2635 | ;; TODO REVIEW: Check bundled sources. | ||
| 2636 | (crate-source "blosc-src" "0.3.8" | ||
| 2637 | "0c868bmgr57as0h56nsk5yqnwsni8d0j3pkg6hk05nvii7ans159")) | ||
| 2638 | |||
| 2630 | (define rust-blosc2-rs-0.4.0+2.15.2 | 2639 | (define rust-blosc2-rs-0.4.0+2.15.2 |
| 2631 | (crate-source "blosc2-rs" "0.4.0+2.15.2" | 2640 | (crate-source "blosc2-rs" "0.4.0+2.15.2" |
| 2632 | "1crw6sc8d6pmah7y2jxmd94wldz6dvjlinmgkzagcsy67asvllm7")) | 2641 | "1crw6sc8d6pmah7y2jxmd94wldz6dvjlinmgkzagcsy67asvllm7")) |
| @@ -2655,6 +2664,10 @@ | |||
| 2655 | (crate-source "bluer" "0.17.4" | 2664 | (crate-source "bluer" "0.17.4" |
| 2656 | "00d9n6gx05kr8yr08nyzcpsmay41961sdvmhr2an86b0bhpi2s5g")) | 2665 | "00d9n6gx05kr8yr08nyzcpsmay41961sdvmhr2an86b0bhpi2s5g")) |
| 2657 | 2666 | ||
| 2667 | (define rust-blusc-0.0.6 | ||
| 2668 | (crate-source "blusc" "0.0.6" | ||
| 2669 | "0i9asd85kmimk3vxkws7xlq26v4l2z42zhjqzrrjcpbqm9zc3q5l")) | ||
| 2670 | |||
| 2658 | (define rust-bm25-2.3.2 | 2671 | (define rust-bm25-2.3.2 |
| 2659 | (crate-source "bm25" "2.3.2" | 2672 | (crate-source "bm25" "2.3.2" |
| 2660 | "0r4aq7c5v9zs1962dbfhbr990kx9h2kphqbj73q2yk3vzgyqzg8w")) | 2673 | "0r4aq7c5v9zs1962dbfhbr990kx9h2kphqbj73q2yk3vzgyqzg8w")) |
| @@ -3814,6 +3827,10 @@ | |||
| 3814 | (crate-source "cc" "1.2.58" | 3827 | (crate-source "cc" "1.2.58" |
| 3815 | "1qb0zyqhn8pqzdp7d3scm19zmvgvbyh3iabmj1q7fc4ynva2isg1")) | 3828 | "1qb0zyqhn8pqzdp7d3scm19zmvgvbyh3iabmj1q7fc4ynva2isg1")) |
| 3816 | 3829 | ||
| 3830 | (define rust-cc-1.2.59 | ||
| 3831 | (crate-source "cc" "1.2.59" | ||
| 3832 | "10sjxshjiyvglpqnap8z8fqdggf9mnxm8dn5kwr8mli4cpnd795p")) | ||
| 3833 | |||
| 3817 | (define rust-cc-1.2.60 | 3834 | (define rust-cc-1.2.60 |
| 3818 | (crate-source "cc" "1.2.60" | 3835 | (crate-source "cc" "1.2.60" |
| 3819 | "084a8ziprdlyrj865f3303qr0b7aaggilkl18slncss6m4yp1ia3")) | 3836 | "084a8ziprdlyrj865f3303qr0b7aaggilkl18slncss6m4yp1ia3")) |
| @@ -5237,6 +5254,10 @@ | |||
| 5237 | (crate-source "codspeed-divan-compat-walltime" "3.0.5" | 5254 | (crate-source "codspeed-divan-compat-walltime" "3.0.5" |
| 5238 | "07rzqj0r5x27l965ipzj8kr3lxl6320sagl2d0l9vvx4wdp8dya8")) | 5255 | "07rzqj0r5x27l965ipzj8kr3lxl6320sagl2d0l9vvx4wdp8dya8")) |
| 5239 | 5256 | ||
| 5257 | (define rust-coe-rs-0.1.2 | ||
| 5258 | (crate-source "coe-rs" "0.1.2" | ||
| 5259 | "16660pc135s339lxarggb0fkrbk99g00s7lb48qpdh222mj1x3vy")) | ||
| 5260 | |||
| 5240 | (define rust-cog-schemars-0.1.0 | 5261 | (define rust-cog-schemars-0.1.0 |
| 5241 | (crate-source "cog_schemars" "0.1.0" | 5262 | (crate-source "cog_schemars" "0.1.0" |
| 5242 | "0rlnfgj2n62prx3qqwk4yl30zpxnjip1g7r4h7f5gg1j1jwg0yx5")) | 5263 | "0rlnfgj2n62prx3qqwk4yl30zpxnjip1g7r4h7f5gg1j1jwg0yx5")) |
| @@ -6975,6 +6996,10 @@ | |||
| 6975 | (crate-source "dav1d-sys" "0.8.3" | 6996 | (crate-source "dav1d-sys" "0.8.3" |
| 6976 | "0jvhb1m72s4ysl97mn8c2r07y3nzimpyscqi6cam8r38cvm1mjf3")) | 6997 | "0jvhb1m72s4ysl97mn8c2r07y3nzimpyscqi6cam8r38cvm1mjf3")) |
| 6977 | 6998 | ||
| 6999 | (define rust-dbgf-0.1.2 | ||
| 7000 | (crate-source "dbgf" "0.1.2" | ||
| 7001 | "0scism6lr9ddaw9gpnz8pz1v7z09s8dijbs6w12q02x7bjs9djp6")) | ||
| 7002 | |||
| 6978 | (define rust-dbl-0.3.2 | 7003 | (define rust-dbl-0.3.2 |
| 6979 | (crate-source "dbl" "0.3.2" | 7004 | (crate-source "dbl" "0.3.2" |
| 6980 | "1ng33ncai537xlxfy9r4v24parm9mf7zwiwkixq7d0qmj6kka9xx")) | 7005 | "1ng33ncai537xlxfy9r4v24parm9mf7zwiwkixq7d0qmj6kka9xx")) |
| @@ -7862,6 +7887,10 @@ | |||
| 7862 | (crate-source "dyn-stack" "0.10.0" | 7887 | (crate-source "dyn-stack" "0.10.0" |
| 7863 | "12vz0bkj1z36w0dh3dsxwjgxn1fxi1s3iyzqckrk4mlgd2ckgran")) | 7888 | "12vz0bkj1z36w0dh3dsxwjgxn1fxi1s3iyzqckrk4mlgd2ckgran")) |
| 7864 | 7889 | ||
| 7890 | (define rust-dyn-stack-0.11.0 | ||
| 7891 | (crate-source "dyn-stack" "0.11.0" | ||
| 7892 | "0rh0kvml8nsn70lnii6492vi492h0pfzs0355xh9zjp3j8qacvxz")) | ||
| 7893 | |||
| 7865 | (define rust-dyn-stack-0.13.2 | 7894 | (define rust-dyn-stack-0.13.2 |
| 7866 | (crate-source "dyn-stack" "0.13.2" | 7895 | (crate-source "dyn-stack" "0.13.2" |
| 7867 | "1s4g722dxp0irrf5axbsrxm128npjdnac6i7p1rbm1i87vj16iqw")) | 7896 | "1s4g722dxp0irrf5axbsrxm128npjdnac6i7p1rbm1i87vj16iqw")) |
| @@ -8449,10 +8478,18 @@ | |||
| 8449 | (crate-source "epaint_default_fonts" "0.33.3" | 8478 | (crate-source "epaint_default_fonts" "0.33.3" |
| 8450 | "0qhq3wibn3vz7ixlfpx0kpj0ajhivxf1iyi8ckax6y355chbwksw")) | 8479 | "0qhq3wibn3vz7ixlfpx0kpj0ajhivxf1iyi8ckax6y355chbwksw")) |
| 8451 | 8480 | ||
| 8481 | (define rust-equator-0.2.2 | ||
| 8482 | (crate-source "equator" "0.2.2" | ||
| 8483 | "1sk1swwd76rn091gi1m26s10z11dgynb4jfcly228782b8xsapf3")) | ||
| 8484 | |||
| 8452 | (define rust-equator-0.4.2 | 8485 | (define rust-equator-0.4.2 |
| 8453 | (crate-source "equator" "0.4.2" | 8486 | (crate-source "equator" "0.4.2" |
| 8454 | "1z760z5r0haxjyakbqxvswrz9mq7c29arrivgq8y1zldhc9v44a7")) | 8487 | "1z760z5r0haxjyakbqxvswrz9mq7c29arrivgq8y1zldhc9v44a7")) |
| 8455 | 8488 | ||
| 8489 | (define rust-equator-macro-0.2.1 | ||
| 8490 | (crate-source "equator-macro" "0.2.1" | ||
| 8491 | "1k0n5q7d6wn9g3fva9z7hr4pr3z494dsb1zja5ima8h3diwpkxiv")) | ||
| 8492 | |||
| 8456 | (define rust-equator-macro-0.4.2 | 8493 | (define rust-equator-macro-0.4.2 |
| 8457 | (crate-source "equator-macro" "0.4.2" | 8494 | (crate-source "equator-macro" "0.4.2" |
| 8458 | "1cqzx3cqn9rxln3a607xr54wippzff56zs5chqdf3z2bnks3rwj4")) | 8495 | "1cqzx3cqn9rxln3a607xr54wippzff56zs5chqdf3z2bnks3rwj4")) |
| @@ -8695,6 +8732,18 @@ | |||
| 8695 | (crate-source "extended" "0.1.0" | 8732 | (crate-source "extended" "0.1.0" |
| 8696 | "0r830ak1a9775i9yl5lljm29zbnlncw7xlfz35mhgjrz43c775mg")) | 8733 | "0r830ak1a9775i9yl5lljm29zbnlncw7xlfz35mhgjrz43c775mg")) |
| 8697 | 8734 | ||
| 8735 | (define rust-extendr-api-0.8.1.93d7244 | ||
| 8736 | package:rust-extendr-0.8.1.93d7244) | ||
| 8737 | |||
| 8738 | (define rust-extendr-engine-0.8.1.93d7244 | ||
| 8739 | package:rust-extendr-0.8.1.93d7244) | ||
| 8740 | |||
| 8741 | (define rust-extendr-ffi-0.8.1.93d7244 | ||
| 8742 | package:rust-extendr-0.8.1.93d7244) | ||
| 8743 | |||
| 8744 | (define rust-extendr-macros-0.8.1.93d7244 | ||
| 8745 | package:rust-extendr-0.8.1.93d7244) | ||
| 8746 | |||
| 8698 | (define rust-eyra-0.22.0 | 8747 | (define rust-eyra-0.22.0 |
| 8699 | (crate-source "eyra" "0.22.0" | 8748 | (crate-source "eyra" "0.22.0" |
| 8700 | "15xsh4ff6g3vk4yq1jh643myhhiwszqx3vdbabj2z34jq9w8j1vd")) | 8749 | "15xsh4ff6g3vk4yq1jh643myhhiwszqx3vdbabj2z34jq9w8j1vd")) |
| @@ -8707,6 +8756,14 @@ | |||
| 8707 | (crate-source "faccess" "0.2.4" | 8756 | (crate-source "faccess" "0.2.4" |
| 8708 | "1m967rz9qknzbqh7l8hga91s32y3p041mbk8w81skmh2b116dbjr")) | 8757 | "1m967rz9qknzbqh7l8hga91s32y3p041mbk8w81skmh2b116dbjr")) |
| 8709 | 8758 | ||
| 8759 | (define rust-faer-0.20.2 | ||
| 8760 | (crate-source "faer" "0.20.2" | ||
| 8761 | "0pbv1zwvkvmdldgd7avncvqy1mx95apdpqvza1p25skh6n69pcf2")) | ||
| 8762 | |||
| 8763 | (define rust-faer-entity-0.20.1 | ||
| 8764 | (crate-source "faer-entity" "0.20.1" | ||
| 8765 | "11b60399z6w0453xh7lv044awfmnmnp6n23cqbgk0awbpkqrcbq7")) | ||
| 8766 | |||
| 8710 | (define rust-failure-0.1.8 | 8767 | (define rust-failure-0.1.8 |
| 8711 | (crate-source "failure" "0.1.8" | 8768 | (crate-source "failure" "0.1.8" |
| 8712 | "11jg1wmbkijrs6bk9fqnbrm9zf0850whnqpgnxyswbn0dk8rnbnk")) | 8769 | "11jg1wmbkijrs6bk9fqnbrm9zf0850whnqpgnxyswbn0dk8rnbnk")) |
| @@ -9948,6 +10005,10 @@ | |||
| 9948 | (crate-source "generational-arena" "0.2.9" | 10005 | (crate-source "generational-arena" "0.2.9" |
| 9949 | "1rwnfyprjwqafkwdz2irkds5a41jcjb3bsma3djknx4fy2pr8zl7")) | 10006 | "1rwnfyprjwqafkwdz2irkds5a41jcjb3bsma3djknx4fy2pr8zl7")) |
| 9950 | 10007 | ||
| 10008 | (define rust-generativity-1.2.1 | ||
| 10009 | (crate-source "generativity" "1.2.1" | ||
| 10010 | "0pm8hyy60mmjhiw452ajnxawbn4z621p3j6m156qadqf4ssizj6j")) | ||
| 10011 | |||
| 9951 | (define rust-generator-0.7.5 | 10012 | (define rust-generator-0.7.5 |
| 9952 | (crate-source "generator" "0.7.5" | 10013 | (crate-source "generator" "0.7.5" |
| 9953 | "0knp7cllkf90l4wmfbhmb3c0ha9xn9afrzmphain1d12zy26bhaw")) | 10014 | "0knp7cllkf90l4wmfbhmb3c0ha9xn9afrzmphain1d12zy26bhaw")) |
| @@ -17163,6 +17224,10 @@ | |||
| 17163 | (crate-source "lz4_flex" "0.12.0" | 17224 | (crate-source "lz4_flex" "0.12.0" |
| 17164 | "0pipvm45nlbyl990fgjkiq6xgpz9a28kgsbjzxqq46bi4hbp6r5b")) | 17225 | "0pipvm45nlbyl990fgjkiq6xgpz9a28kgsbjzxqq46bi4hbp6r5b")) |
| 17165 | 17226 | ||
| 17227 | (define rust-lz4-flex-0.12.1 | ||
| 17228 | (crate-source "lz4_flex" "0.12.1" | ||
| 17229 | "0ihpmypz4xs1kg6d4z8gsr8y5s3rn1lhm483qcb1pkvyvx2kbhlq")) | ||
| 17230 | |||
| 17166 | (define rust-lz4-flex-0.13.1 | 17231 | (define rust-lz4-flex-0.13.1 |
| 17167 | (crate-source "lz4_flex" "0.13.1" | 17232 | (crate-source "lz4_flex" "0.13.1" |
| 17168 | "0zmrvmrcwnwgypldakvca19z5a2a11wch3dhds1giy39hvnx9w3y")) | 17233 | "0zmrvmrcwnwgypldakvca19z5a2a11wch3dhds1giy39hvnx9w3y")) |
| @@ -17442,6 +17507,14 @@ | |||
| 17442 | (crate-source "material-colors" "0.4.2" | 17507 | (crate-source "material-colors" "0.4.2" |
| 17443 | "0hbrwk94i2wxih894pg30pxys7l5l0vxcc7pp1mw4nrd6vdgy9p2")) | 17508 | "0hbrwk94i2wxih894pg30pxys7l5l0vxcc7pp1mw4nrd6vdgy9p2")) |
| 17444 | 17509 | ||
| 17510 | (define rust-matrixcompare-0.3.0 | ||
| 17511 | (crate-source "matrixcompare" "0.3.0" | ||
| 17512 | "0i84m1jlxmgyw4farhxbfhyb815hrj6ijq23dgb96z7442l2p0rp")) | ||
| 17513 | |||
| 17514 | (define rust-matrixcompare-core-0.1.0 | ||
| 17515 | (crate-source "matrixcompare-core" "0.1.0" | ||
| 17516 | "0wqaj028ws2x2h16rf10arwvmpfbmk7afg8b57ahb25i1nrspgdh")) | ||
| 17517 | |||
| 17445 | (define rust-matrixmultiply-0.3.10 | 17518 | (define rust-matrixmultiply-0.3.10 |
| 17446 | (crate-source "matrixmultiply" "0.3.10" | 17519 | (crate-source "matrixmultiply" "0.3.10" |
| 17447 | "020sqwg3cvprfasbszqbnis9zx6c3w9vlkfidyimgblzdq0y6vd0")) | 17520 | "020sqwg3cvprfasbszqbnis9zx6c3w9vlkfidyimgblzdq0y6vd0")) |
| @@ -18044,10 +18117,18 @@ | |||
| 18044 | (crate-source "monostate" "0.1.14" | 18117 | (crate-source "monostate" "0.1.14" |
| 18045 | "1vpv8d9j8i7wachlcrpbwsy1rvzimpncgv8gwpil4mn7s3lipzma")) | 18118 | "1vpv8d9j8i7wachlcrpbwsy1rvzimpncgv8gwpil4mn7s3lipzma")) |
| 18046 | 18119 | ||
| 18120 | (define rust-monostate-1.0.2 | ||
| 18121 | (crate-source "monostate" "1.0.2" | ||
| 18122 | "1bdbbb3v5r4khvaipma3c53d4cvn5w0ghbw2krd63l4xr1jwjk5v")) | ||
| 18123 | |||
| 18047 | (define rust-monostate-impl-0.1.14 | 18124 | (define rust-monostate-impl-0.1.14 |
| 18048 | (crate-source "monostate-impl" "0.1.14" | 18125 | (crate-source "monostate-impl" "0.1.14" |
| 18049 | "1db3jrnbriivny6cahvhcc9af7w38q846mg1r4r4y82y5l4s80n4")) | 18126 | "1db3jrnbriivny6cahvhcc9af7w38q846mg1r4r4y82y5l4s80n4")) |
| 18050 | 18127 | ||
| 18128 | (define rust-monostate-impl-1.0.2 | ||
| 18129 | (crate-source "monostate-impl" "1.0.2" | ||
| 18130 | "1pnmzbpwg747rf5668k6zx0z5yndqabd6fa8j2spa20ii2abkx93")) | ||
| 18131 | |||
| 18051 | (define rust-more-asserts-0.2.2 | 18132 | (define rust-more-asserts-0.2.2 |
| 18052 | (crate-source "more-asserts" "0.2.2" | 18133 | (crate-source "more-asserts" "0.2.2" |
| 18053 | "12b3fypg2sr4qmxy6wiyx6k9sdg573f5ij98cdmbrg00whnyqhvq")) | 18134 | "12b3fypg2sr4qmxy6wiyx6k9sdg573f5ij98cdmbrg00whnyqhvq")) |
| @@ -18268,6 +18349,34 @@ | |||
| 18268 | (crate-source "names" "0.12.0" | 18349 | (crate-source "names" "0.12.0" |
| 18269 | "0xapf5qs9yrc6fg7mgf20ypwcynkqdkdd375a6c6bgwsy05nka0h")) | 18350 | "0xapf5qs9yrc6fg7mgf20ypwcynkqdkdd375a6c6bgwsy05nka0h")) |
| 18270 | 18351 | ||
| 18352 | (define rust-nano-gemm-0.1.3 | ||
| 18353 | (crate-source "nano-gemm" "0.1.3" | ||
| 18354 | "0xhk0v9x4wg4gv4b0qsx0k07va0vfv85pazn27g563n0l6za4nxv")) | ||
| 18355 | |||
| 18356 | (define rust-nano-gemm-c32-0.1.0 | ||
| 18357 | (crate-source "nano-gemm-c32" "0.1.0" | ||
| 18358 | "06x9fc9wjaq2rwi1hwa42gp2k38w631w820j7964c4spgbjlj154")) | ||
| 18359 | |||
| 18360 | (define rust-nano-gemm-c64-0.1.0 | ||
| 18361 | (crate-source "nano-gemm-c64" "0.1.0" | ||
| 18362 | "1gxk4mfg51ffhkk28ny9yj3dl1s13rsid5h0s62vm3rm25i6wfkl")) | ||
| 18363 | |||
| 18364 | (define rust-nano-gemm-codegen-0.1.0 | ||
| 18365 | (crate-source "nano-gemm-codegen" "0.1.0" | ||
| 18366 | "1yl1wxraql15hj2fzlhcb3nr2m1pjrqccx6wd40l6m8d273zffwn")) | ||
| 18367 | |||
| 18368 | (define rust-nano-gemm-core-0.1.0 | ||
| 18369 | (crate-source "nano-gemm-core" "0.1.0" | ||
| 18370 | "19jaqbpicb8isc3jwc6yz6jhs8mhsrmh2g6wg6nip1p87bwc8gzy")) | ||
| 18371 | |||
| 18372 | (define rust-nano-gemm-f32-0.1.0 | ||
| 18373 | (crate-source "nano-gemm-f32" "0.1.0" | ||
| 18374 | "1fx88r2zcfqf0zni2w9w6yff41d0c0ngddwlv9wqyr9mrsvq2djf")) | ||
| 18375 | |||
| 18376 | (define rust-nano-gemm-f64-0.1.0 | ||
| 18377 | (crate-source "nano-gemm-f64" "0.1.0" | ||
| 18378 | "1n26y08v3il4s5pds34bkq8w906kd6v62gpnw44ii02ds2g627mw")) | ||
| 18379 | |||
| 18271 | (define rust-nanoid-0.4.0 | 18380 | (define rust-nanoid-0.4.0 |
| 18272 | (crate-source "nanoid" "0.4.0" | 18381 | (crate-source "nanoid" "0.4.0" |
| 18273 | "1n5l5xig5zcinh41bb4p0rzam8gxic02qpngnylb3d8pq3g01yiz")) | 18382 | "1n5l5xig5zcinh41bb4p0rzam8gxic02qpngnylb3d8pq3g01yiz")) |
| @@ -18941,6 +19050,10 @@ | |||
| 18941 | (crate-source "now" "0.1.3" | 19050 | (crate-source "now" "0.1.3" |
| 18942 | "1l135786rb43rjfhwfdj7hi3b5zxxyl9gwf15yjz18cp8f3yk2bd")) | 19051 | "1l135786rb43rjfhwfdj7hi3b5zxxyl9gwf15yjz18cp8f3yk2bd")) |
| 18943 | 19052 | ||
| 19053 | (define rust-npyz-0.8.4 | ||
| 19054 | (crate-source "npyz" "0.8.4" | ||
| 19055 | "1ff1bvi6i4348vjq25jlvink0qgp2jv02lblmy80yqsf06g7a3lz")) | ||
| 19056 | |||
| 18944 | (define rust-nt-time-0.11.2 | 19057 | (define rust-nt-time-0.11.2 |
| 18945 | (crate-source "nt-time" "0.11.2" | 19058 | (crate-source "nt-time" "0.11.2" |
| 18946 | "0kswi03a8w0cn710hchwy3c8v16yf537x5yzi8rd77bg2s3a206w")) | 19059 | "0kswi03a8w0cn710hchwy3c8v16yf537x5yzi8rd77bg2s3a206w")) |
| @@ -19658,6 +19771,10 @@ | |||
| 19658 | (crate-source "object_store" "0.13.1" | 19771 | (crate-source "object_store" "0.13.1" |
| 19659 | "1yqd7i76ymllf0whi8a1vgd8wid91wxswflz98lqs52wwmjq11f2")) | 19772 | "1yqd7i76ymllf0whi8a1vgd8wid91wxswflz98lqs52wwmjq11f2")) |
| 19660 | 19773 | ||
| 19774 | (define rust-object-store-0.13.2 | ||
| 19775 | (crate-source "object_store" "0.13.2" | ||
| 19776 | "0jcajnvha22jrla3i9as7n9mrra0m864p00mxvi10g0d234wnak2")) | ||
| 19777 | |||
| 19661 | (define rust-oboe-0.6.1 | 19778 | (define rust-oboe-0.6.1 |
| 19662 | (crate-source "oboe" "0.6.1" | 19779 | (crate-source "oboe" "0.6.1" |
| 19663 | "1yv7x06mwk61nsy3ckcmqwgg9q0n3j4y4zncz3sl6pcyskmipdp8")) | 19780 | "1yv7x06mwk61nsy3ckcmqwgg9q0n3j4y4zncz3sl6pcyskmipdp8")) |
| @@ -21736,6 +21853,10 @@ | |||
| 21736 | (crate-source "portpicker" "0.1.1" | 21853 | (crate-source "portpicker" "0.1.1" |
| 21737 | "1acvi1m6g7d3j8xvdsbn0b7yqyfy7yr7fm1pw5kbdyhvmxpxg5xy")) | 21854 | "1acvi1m6g7d3j8xvdsbn0b7yqyfy7yr7fm1pw5kbdyhvmxpxg5xy")) |
| 21738 | 21855 | ||
| 21856 | (define rust-positioned-io-0.3.5 | ||
| 21857 | (crate-source "positioned-io" "0.3.5" | ||
| 21858 | "19xdrnzky9bfa56dvwmfhypx40wmbl178s4vp49360qg0s04pv6l")) | ||
| 21859 | |||
| 21739 | (define rust-posix-regex-0.1.4 | 21860 | (define rust-posix-regex-0.1.4 |
| 21740 | (crate-source "posix-regex" "0.1.4" | 21861 | (crate-source "posix-regex" "0.1.4" |
| 21741 | "1g7k5chhpaq8h29czmlj39ryrmwkakl1parr91s2zaya6h1mipv6")) | 21862 | "1g7k5chhpaq8h29czmlj39ryrmwkakl1parr91s2zaya6h1mipv6")) |
| @@ -23663,6 +23784,10 @@ | |||
| 23663 | (crate-source "rayon-core" "1.13.0" | 23784 | (crate-source "rayon-core" "1.13.0" |
| 23664 | "14dbr0sq83a6lf1rfjq5xdpk5r6zgzvmzs5j6110vlv2007qpq92")) | 23785 | "14dbr0sq83a6lf1rfjq5xdpk5r6zgzvmzs5j6110vlv2007qpq92")) |
| 23665 | 23786 | ||
| 23787 | (define rust-rayon-iter-concurrent-limit-0.2.0 | ||
| 23788 | (crate-source "rayon_iter_concurrent_limit" "0.2.0" | ||
| 23789 | "1mzyafalvl7n9b7jj2mnn339kq59w35kfk717h3zl1yy4c8f17nh")) | ||
| 23790 | |||
| 23666 | (define rust-rbase64-2.0.3 | 23791 | (define rust-rbase64-2.0.3 |
| 23667 | (crate-source "rbase64" "2.0.3" | 23792 | (crate-source "rbase64" "2.0.3" |
| 23668 | "04wb2fprnv5vdj7y00grc9j0avpa6j53rnc6kihvgjx7abfky4sv" | 23793 | "04wb2fprnv5vdj7y00grc9j0avpa6j53rnc6kihvgjx7abfky4sv" |
| @@ -24548,6 +24673,10 @@ | |||
| 24548 | (crate-source "rstest" "0.21.0" | 24673 | (crate-source "rstest" "0.21.0" |
| 24549 | "10inb7hv1p42i981bf6705dakbgfbdgl2qaim4sf9mk9f2k5bzcs")) | 24674 | "10inb7hv1p42i981bf6705dakbgfbdgl2qaim4sf9mk9f2k5bzcs")) |
| 24550 | 24675 | ||
| 24676 | (define rust-rstest-0.22.0 | ||
| 24677 | (crate-source "rstest" "0.22.0" | ||
| 24678 | "0dlrn6y4z5xgsvf6ky3lrjwsxpvi13sizlkwnqs1gmmxc873yhkv")) | ||
| 24679 | |||
| 24551 | (define rust-rstest-0.23.0 | 24680 | (define rust-rstest-0.23.0 |
| 24552 | (crate-source "rstest" "0.23.0" | 24681 | (crate-source "rstest" "0.23.0" |
| 24553 | "0d90hr3i2yajzgpzvsh6p2yjzmcb3nm8884xdbb5sswvwmdmhb0a")) | 24682 | "0d90hr3i2yajzgpzvsh6p2yjzmcb3nm8884xdbb5sswvwmdmhb0a")) |
| @@ -24572,6 +24701,10 @@ | |||
| 24572 | (crate-source "rstest_macros" "0.21.0" | 24701 | (crate-source "rstest_macros" "0.21.0" |
| 24573 | "13brqq64wp8gjaiq1d7g8jbzcwdwpwy0swpcilfx97d3b6pdyra1")) | 24702 | "13brqq64wp8gjaiq1d7g8jbzcwdwpwy0swpcilfx97d3b6pdyra1")) |
| 24574 | 24703 | ||
| 24704 | (define rust-rstest-macros-0.22.0 | ||
| 24705 | (crate-source "rstest_macros" "0.22.0" | ||
| 24706 | "0hiba8l3d20ajkifd3kz5rzzpxsy311ca4c4ll94pxqlglg73qf5")) | ||
| 24707 | |||
| 24575 | (define rust-rstest-macros-0.23.0 | 24708 | (define rust-rstest-macros-0.23.0 |
| 24576 | (crate-source "rstest_macros" "0.23.0" | 24709 | (crate-source "rstest_macros" "0.23.0" |
| 24577 | "0nmdm7a4ysihnh0zz6w6gqrmw205zfp7xqkb2id3858vg20afpl2")) | 24710 | "0nmdm7a4ysihnh0zz6w6gqrmw205zfp7xqkb2id3858vg20afpl2")) |
| @@ -27176,6 +27309,11 @@ | |||
| 27176 | (crate-source "snapbox-macros" "1.1.0" | 27309 | (crate-source "snapbox-macros" "1.1.0" |
| 27177 | "0malzn4k2rq592hwly7d0vv98gvyr82ifzbzgjyfp19m90p1fjpd")) | 27310 | "0malzn4k2rq592hwly7d0vv98gvyr82ifzbzgjyfp19m90p1fjpd")) |
| 27178 | 27311 | ||
| 27312 | (define rust-snappy-src-0.2.5+snappy.1.2.2 | ||
| 27313 | ;; TODO REVIEW: Check bundled sources. | ||
| 27314 | (crate-source "snappy_src" "0.2.5+snappy.1.2.2" | ||
| 27315 | "0lxdkd7x29hjja3fm1xs5fiwwkvsafkarli2slgzpg2mg833452f")) | ||
| 27316 | |||
| 27179 | (define rust-snapshot-testing-0.1.8 | 27317 | (define rust-snapshot-testing-0.1.8 |
| 27180 | (crate-source "snapshot-testing" "0.1.8" | 27318 | (crate-source "snapshot-testing" "0.1.8" |
| 27181 | "1rq6nqgfzbbvwk8pvkkr07376034ppv0q9i81g83j4v1p6a23gxy")) | 27319 | "1rq6nqgfzbbvwk8pvkkr07376034ppv0q9i81g83j4v1p6a23gxy")) |
| @@ -29259,6 +29397,10 @@ | |||
| 29259 | (crate-source "tokio" "1.51.1" | 29397 | (crate-source "tokio" "1.51.1" |
| 29260 | "131vl4p3hdn8kpvgv6qv06lspfxj7yvk9avq7r6p4jysbicgjszn")) | 29398 | "131vl4p3hdn8kpvgv6qv06lspfxj7yvk9avq7r6p4jysbicgjszn")) |
| 29261 | 29399 | ||
| 29400 | (define rust-tokio-1.52.0 | ||
| 29401 | (crate-source "tokio" "1.52.0" | ||
| 29402 | "0xnpygq9578c8rqjgkj5bj8pgfx9zj337kvk3v4kigqwkgska4d9")) | ||
| 29403 | |||
| 29262 | (define rust-tokio-1.52.1 | 29404 | (define rust-tokio-1.52.1 |
| 29263 | (crate-source "tokio" "1.52.1" | 29405 | (crate-source "tokio" "1.52.1" |
| 29264 | "1imw1dkkv38p66i33m5hsyk3d6prsbyrayjvqhndjvz89ybywzdn")) | 29406 | "1imw1dkkv38p66i33m5hsyk3d6prsbyrayjvqhndjvz89ybywzdn")) |
| @@ -31459,6 +31601,10 @@ | |||
| 31459 | (crate-source "unreachable" "1.0.0" | 31601 | (crate-source "unreachable" "1.0.0" |
| 31460 | "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q")) | 31602 | "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q")) |
| 31461 | 31603 | ||
| 31604 | (define rust-unsafe-cell-slice-0.2.2 | ||
| 31605 | (crate-source "unsafe_cell_slice" "0.2.2" | ||
| 31606 | "1wbcxc0bw1j3i8ycjgll0v6fqb5316a2mr6nggbsmk9df2granb6")) | ||
| 31607 | |||
| 31462 | (define rust-unsafe-libyaml-0.2.11 | 31608 | (define rust-unsafe-libyaml-0.2.11 |
| 31463 | (crate-source "unsafe-libyaml" "0.2.11" | 31609 | (crate-source "unsafe-libyaml" "0.2.11" |
| 31464 | "0qdq69ffl3v5pzx9kzxbghzn0fzn266i1xn70y88maybz9csqfk7")) | 31610 | "0qdq69ffl3v5pzx9kzxbghzn0fzn266i1xn70y88maybz9csqfk7")) |
| @@ -35135,6 +35281,54 @@ | |||
| 35135 | (crate-source "z32" "1.3.0" | 35281 | (crate-source "z32" "1.3.0" |
| 35136 | "03yykd2wdhl12z0zaqg34cxrl19q8vjsqf8ir7i4xn73v6cffr11")) | 35282 | "03yykd2wdhl12z0zaqg34cxrl19q8vjsqf8ir7i4xn73v6cffr11")) |
| 35137 | 35283 | ||
| 35284 | (define rust-zarrs-0.23.10 | ||
| 35285 | (crate-source "zarrs" "0.23.10" | ||
| 35286 | "02r4mhbhnv7ppx8hnvgvzy1bhd41fp7qakgz7rpfl7ps3lmf3912")) | ||
| 35287 | |||
| 35288 | (define rust-zarrs-chunk-grid-0.5.1 | ||
| 35289 | (crate-source "zarrs_chunk_grid" "0.5.1" | ||
| 35290 | "0rdvm1igag2dijparwc0xrdf1q0lrfk5raz5sdn3784nzn377xhw")) | ||
| 35291 | |||
| 35292 | (define rust-zarrs-chunk-key-encoding-0.2.0 | ||
| 35293 | (crate-source "zarrs_chunk_key_encoding" "0.2.0" | ||
| 35294 | "10m38m0wmch5dj777df5j4bly8cp3gchrk9a956r1lcjmbzffh4h")) | ||
| 35295 | |||
| 35296 | (define rust-zarrs-codec-0.2.1 | ||
| 35297 | (crate-source "zarrs_codec" "0.2.1" | ||
| 35298 | "1ni8q6as8s14247psjs6asbib1dbbjg808xsrn02rfqcdad14fiq")) | ||
| 35299 | |||
| 35300 | (define rust-zarrs-data-type-0.9.0 | ||
| 35301 | (crate-source "zarrs_data_type" "0.9.0" | ||
| 35302 | "0ccz0185zf20mnkkw2gb0r1982gh2iaj0k6vv7y7hcinr6acbiqv")) | ||
| 35303 | |||
| 35304 | (define rust-zarrs-filesystem-0.3.9 | ||
| 35305 | (crate-source "zarrs_filesystem" "0.3.9" | ||
| 35306 | "10dz797rm3qw3l07bznf8vb1psc3zkr34chb8vjswl8n32qgw3i7")) | ||
| 35307 | |||
| 35308 | (define rust-zarrs-http-0.3.1 | ||
| 35309 | (crate-source "zarrs_http" "0.3.1" | ||
| 35310 | "1vpncy8aqdcpzg98frg1ywlnjzw61xmhyzgwzms0f1hhp84i0pv1")) | ||
| 35311 | |||
| 35312 | (define rust-zarrs-metadata-0.7.4 | ||
| 35313 | (crate-source "zarrs_metadata" "0.7.4" | ||
| 35314 | "0fmhyfzkhpgqa86bggvkzhmq1q09fx718h74mmwgmycky0bbnj2h")) | ||
| 35315 | |||
| 35316 | (define rust-zarrs-metadata-ext-0.4.2 | ||
| 35317 | (crate-source "zarrs_metadata_ext" "0.4.2" | ||
| 35318 | "0vlcwi5njzbvpcx6c770dly5rndp061f512iw2dligagkbr1js59")) | ||
| 35319 | |||
| 35320 | (define rust-zarrs-object-store-0.6.2 | ||
| 35321 | (crate-source "zarrs_object_store" "0.6.2" | ||
| 35322 | "1bs6igc3z8wwlqb6apbpqpw9ml8lcdfyx64b7a9f2nsqvjy645ms")) | ||
| 35323 | |||
| 35324 | (define rust-zarrs-plugin-0.4.1 | ||
| 35325 | (crate-source "zarrs_plugin" "0.4.1" | ||
| 35326 | "0ijhx6hpq2i8v580fwxb46p0sjmgdvikp8qcyxb6is5f6ba0xgjw")) | ||
| 35327 | |||
| 35328 | (define rust-zarrs-storage-0.4.3 | ||
| 35329 | (crate-source "zarrs_storage" "0.4.3" | ||
| 35330 | "1hgpd3xh08y3bkd9clv6lxqfhch43q81b5jnjr4gjk7dsab8f2bx")) | ||
| 35331 | |||
| 35138 | (define rust-zbar-rust-0.0.24 | 35332 | (define rust-zbar-rust-0.0.24 |
| 35139 | (crate-source "zbar-rust" "0.0.24" | 35333 | (crate-source "zbar-rust" "0.0.24" |
| 35140 | "09j65i3ic19j5mcjvwdzxqqylhx2gg4aaxhscfdblzxk2k6bmxzq")) | 35334 | "09j65i3ic19j5mcjvwdzxqqylhx2gg4aaxhscfdblzxk2k6bmxzq")) |
| @@ -35881,7 +36075,6 @@ | |||
| 35881 | (define ssss-separator 'end-of-crates) | 36075 | (define ssss-separator 'end-of-crates) |
| 35882 | 36076 | ||
| 35883 | ;;; | 36077 | ;;; |
| 35884 | |||
| 35885 | ;;; Cargo inputs. | 36078 | ;;; Cargo inputs. |
| 35886 | ;;; | 36079 | ;;; |
| 35887 | 36080 | ||
| @@ -49437,6 +49630,169 @@ | |||
| 49437 | rust-zvariant-3.15.2 | 49630 | rust-zvariant-3.15.2 |
| 49438 | rust-zvariant-derive-3.15.2 | 49631 | rust-zvariant-derive-3.15.2 |
| 49439 | rust-zvariant-utils-1.0.1)) | 49632 | rust-zvariant-utils-1.0.1)) |
| 49633 | (extendr => | ||
| 49634 | (list rust-aho-corasick-1.1.4 | ||
| 49635 | rust-anstream-1.0.0 | ||
| 49636 | rust-anstyle-1.0.14 | ||
| 49637 | rust-anstyle-parse-1.0.0 | ||
| 49638 | rust-anstyle-query-1.1.5 | ||
| 49639 | rust-anstyle-wincon-3.0.11 | ||
| 49640 | rust-autocfg-1.5.0 | ||
| 49641 | rust-bitflags-2.11.1 | ||
| 49642 | rust-block-buffer-0.10.4 | ||
| 49643 | rust-bytemuck-1.25.0 | ||
| 49644 | rust-bytemuck-derive-1.10.2 | ||
| 49645 | rust-byteorder-1.5.0 | ||
| 49646 | rust-cfg-if-1.0.4 | ||
| 49647 | rust-clap-4.6.1 | ||
| 49648 | rust-clap-builder-4.6.0 | ||
| 49649 | rust-clap-derive-4.6.1 | ||
| 49650 | rust-clap-lex-1.1.0 | ||
| 49651 | rust-coe-rs-0.1.2 | ||
| 49652 | rust-colorchoice-1.0.5 | ||
| 49653 | rust-cpufeatures-0.2.17 | ||
| 49654 | rust-crossbeam-deque-0.8.6 | ||
| 49655 | rust-crossbeam-epoch-0.9.18 | ||
| 49656 | rust-crossbeam-utils-0.8.21 | ||
| 49657 | rust-crunchy-0.2.4 | ||
| 49658 | rust-crypto-common-0.1.7 | ||
| 49659 | rust-ctor-0.6.3 | ||
| 49660 | rust-ctor-proc-macro-0.0.7 | ||
| 49661 | rust-dbgf-0.1.2 | ||
| 49662 | rust-digest-0.10.7 | ||
| 49663 | rust-dtor-0.1.1 | ||
| 49664 | rust-dtor-proc-macro-0.0.6 | ||
| 49665 | rust-dyn-stack-0.11.0 | ||
| 49666 | rust-dyn-stack-0.13.2 | ||
| 49667 | rust-dyn-stack-macros-0.1.3 | ||
| 49668 | rust-either-1.15.0 | ||
| 49669 | rust-enum-as-inner-0.6.1 | ||
| 49670 | rust-equator-0.2.2 | ||
| 49671 | rust-equator-0.4.2 | ||
| 49672 | rust-equator-macro-0.2.1 | ||
| 49673 | rust-equator-macro-0.4.2 | ||
| 49674 | rust-equivalent-1.0.2 | ||
| 49675 | rust-faer-0.20.2 | ||
| 49676 | rust-faer-entity-0.20.1 | ||
| 49677 | rust-futures-0.3.32 | ||
| 49678 | rust-futures-channel-0.3.32 | ||
| 49679 | rust-futures-core-0.3.32 | ||
| 49680 | rust-futures-executor-0.3.32 | ||
| 49681 | rust-futures-io-0.3.32 | ||
| 49682 | rust-futures-macro-0.3.32 | ||
| 49683 | rust-futures-sink-0.3.32 | ||
| 49684 | rust-futures-task-0.3.32 | ||
| 49685 | rust-futures-timer-3.0.3 | ||
| 49686 | rust-futures-util-0.3.32 | ||
| 49687 | rust-gemm-0.18.2 | ||
| 49688 | rust-gemm-c32-0.18.2 | ||
| 49689 | rust-gemm-c64-0.18.2 | ||
| 49690 | rust-gemm-common-0.18.2 | ||
| 49691 | rust-gemm-f16-0.18.2 | ||
| 49692 | rust-gemm-f32-0.18.2 | ||
| 49693 | rust-gemm-f64-0.18.2 | ||
| 49694 | rust-generativity-1.2.1 | ||
| 49695 | rust-generic-array-0.14.7 | ||
| 49696 | rust-glob-0.3.3 | ||
| 49697 | rust-half-2.7.1 | ||
| 49698 | rust-hashbrown-0.17.0 | ||
| 49699 | rust-heck-0.5.0 | ||
| 49700 | rust-indexmap-2.14.0 | ||
| 49701 | rust-is-terminal-polyfill-1.70.2 | ||
| 49702 | rust-itoa-1.0.18 | ||
| 49703 | rust-lazy-static-1.5.0 | ||
| 49704 | rust-libc-0.2.186 | ||
| 49705 | rust-libm-0.2.16 | ||
| 49706 | rust-matrixcompare-0.3.0 | ||
| 49707 | rust-matrixcompare-core-0.1.0 | ||
| 49708 | rust-matrixmultiply-0.3.10 | ||
| 49709 | rust-memchr-2.8.0 | ||
| 49710 | rust-nano-gemm-0.1.3 | ||
| 49711 | rust-nano-gemm-c32-0.1.0 | ||
| 49712 | rust-nano-gemm-c64-0.1.0 | ||
| 49713 | rust-nano-gemm-codegen-0.1.0 | ||
| 49714 | rust-nano-gemm-core-0.1.0 | ||
| 49715 | rust-nano-gemm-f32-0.1.0 | ||
| 49716 | rust-nano-gemm-f64-0.1.0 | ||
| 49717 | rust-ndarray-0.16.1 | ||
| 49718 | rust-npyz-0.8.4 | ||
| 49719 | rust-num-bigint-0.4.6 | ||
| 49720 | rust-num-complex-0.4.6 | ||
| 49721 | rust-num-integer-0.1.46 | ||
| 49722 | rust-num-traits-0.2.19 | ||
| 49723 | rust-once-cell-1.21.4 | ||
| 49724 | rust-once-cell-polyfill-1.70.2 | ||
| 49725 | rust-paste-1.0.15 | ||
| 49726 | rust-pest-2.8.6 | ||
| 49727 | rust-pest-derive-2.8.6 | ||
| 49728 | rust-pest-generator-2.8.6 | ||
| 49729 | rust-pest-meta-2.8.6 | ||
| 49730 | rust-pin-project-lite-0.2.17 | ||
| 49731 | rust-portable-atomic-1.13.1 | ||
| 49732 | rust-portable-atomic-util-0.2.7 | ||
| 49733 | rust-proc-macro-crate-3.5.0 | ||
| 49734 | rust-proc-macro2-1.0.106 | ||
| 49735 | rust-pulp-0.18.22 | ||
| 49736 | rust-pulp-0.21.5 | ||
| 49737 | rust-py-literal-0.4.0 | ||
| 49738 | rust-quote-1.0.45 | ||
| 49739 | rust-rand-0.8.6 | ||
| 49740 | rust-rand-core-0.6.4 | ||
| 49741 | rust-rand-distr-0.4.3 | ||
| 49742 | rust-raw-cpuid-11.6.0 | ||
| 49743 | rust-rawpointer-0.2.1 | ||
| 49744 | rust-rayon-1.12.0 | ||
| 49745 | rust-rayon-core-1.13.0 | ||
| 49746 | rust-reborrow-0.5.5 | ||
| 49747 | rust-regex-1.12.3 | ||
| 49748 | rust-regex-automata-0.4.14 | ||
| 49749 | rust-regex-syntax-0.8.10 | ||
| 49750 | rust-relative-path-1.9.3 | ||
| 49751 | rust-rstest-0.22.0 | ||
| 49752 | rust-rstest-macros-0.22.0 | ||
| 49753 | rust-rustc-version-0.4.1 | ||
| 49754 | rust-same-file-1.0.6 | ||
| 49755 | rust-semver-1.0.28 | ||
| 49756 | rust-seq-macro-0.3.6 | ||
| 49757 | rust-serde-1.0.228 | ||
| 49758 | rust-serde-core-1.0.228 | ||
| 49759 | rust-serde-derive-1.0.228 | ||
| 49760 | rust-serde-json-1.0.149 | ||
| 49761 | rust-serde-spanned-1.1.1 | ||
| 49762 | rust-sha2-0.10.9 | ||
| 49763 | rust-slab-0.4.12 | ||
| 49764 | rust-strsim-0.11.1 | ||
| 49765 | rust-syn-2.0.117 | ||
| 49766 | rust-sysctl-0.6.0 | ||
| 49767 | rust-target-triple-1.0.0 | ||
| 49768 | rust-termcolor-1.4.1 | ||
| 49769 | rust-thiserror-1.0.69 | ||
| 49770 | rust-thiserror-impl-1.0.69 | ||
| 49771 | rust-toml-1.1.2+spec-1.1.0 | ||
| 49772 | rust-toml-datetime-0.6.11 | ||
| 49773 | rust-toml-datetime-1.1.1+spec-1.1.0 | ||
| 49774 | rust-toml-edit-0.22.27 | ||
| 49775 | rust-toml-edit-0.25.11+spec-1.1.0 | ||
| 49776 | rust-toml-parser-1.1.2+spec-1.1.0 | ||
| 49777 | rust-toml-write-0.1.2 | ||
| 49778 | rust-toml-writer-1.1.1+spec-1.1.0 | ||
| 49779 | rust-trybuild-1.0.116 | ||
| 49780 | rust-typenum-1.20.0 | ||
| 49781 | rust-ucd-trie-0.1.7 | ||
| 49782 | rust-unicode-ident-1.0.24 | ||
| 49783 | rust-utf8parse-0.2.2 | ||
| 49784 | rust-version-check-0.9.5 | ||
| 49785 | rust-walkdir-2.5.0 | ||
| 49786 | rust-winapi-util-0.1.11 | ||
| 49787 | rust-windows-link-0.2.1 | ||
| 49788 | rust-windows-sys-0.61.2 | ||
| 49789 | rust-winnow-0.7.15 | ||
| 49790 | rust-winnow-1.0.2 | ||
| 49791 | rust-xshell-0.2.7 | ||
| 49792 | rust-xshell-macros-0.2.7 | ||
| 49793 | rust-zerocopy-0.8.48 | ||
| 49794 | rust-zerocopy-derive-0.8.48 | ||
| 49795 | rust-zmij-1.0.21)) | ||
| 49440 | (eza => | 49796 | (eza => |
| 49441 | (list rust-addr2line-0.25.1 | 49797 | (list rust-addr2line-0.25.1 |
| 49442 | rust-adler2-2.0.1 | 49798 | rust-adler2-2.0.1 |
| @@ -73810,6 +74166,333 @@ | |||
| 73810 | rust-version-compare-0.2.0 | 74166 | rust-version-compare-0.2.0 |
| 73811 | rust-version-check-0.9.4 | 74167 | rust-version-check-0.9.4 |
| 73812 | rust-winnow-0.7.13)) | 74168 | rust-winnow-0.7.13)) |
| 74169 | (r-pizzarr => | ||
| 74170 | (list rust-adler2-2.0.1 | ||
| 74171 | rust-ahash-0.8.12 | ||
| 74172 | rust-aho-corasick-1.1.4 | ||
| 74173 | rust-allocator-api2-0.2.21 | ||
| 74174 | rust-android-system-properties-0.1.5 | ||
| 74175 | rust-anyhow-1.0.102 | ||
| 74176 | rust-async-lock-3.4.2 | ||
| 74177 | rust-async-trait-0.1.89 | ||
| 74178 | rust-atomic-waker-1.1.2 | ||
| 74179 | rust-auto-impl-1.3.0 | ||
| 74180 | rust-autocfg-1.5.0 | ||
| 74181 | rust-base64-0.22.1 | ||
| 74182 | rust-bitflags-2.11.0 | ||
| 74183 | rust-block-buffer-0.10.4 | ||
| 74184 | rust-blosc-src-0.3.8 | ||
| 74185 | rust-blusc-0.0.6 | ||
| 74186 | rust-bumpalo-3.20.2 | ||
| 74187 | rust-bytemuck-1.25.0 | ||
| 74188 | rust-bytemuck-derive-1.10.2 | ||
| 74189 | rust-byteorder-1.5.0 | ||
| 74190 | rust-bytes-1.11.1 | ||
| 74191 | rust-cc-1.2.59 | ||
| 74192 | rust-cfg-if-1.0.4 | ||
| 74193 | rust-cfg-aliases-0.2.1 | ||
| 74194 | rust-chacha20-0.10.0 | ||
| 74195 | rust-chrono-0.4.44 | ||
| 74196 | rust-concurrent-queue-2.5.0 | ||
| 74197 | rust-convert-case-0.10.0 | ||
| 74198 | rust-core-foundation-0.9.4 | ||
| 74199 | rust-core-foundation-0.10.1 | ||
| 74200 | rust-core-foundation-sys-0.8.7 | ||
| 74201 | rust-cpufeatures-0.3.0 | ||
| 74202 | rust-crc32c-0.6.8 | ||
| 74203 | rust-crc32fast-1.5.0 | ||
| 74204 | rust-crossbeam-channel-0.5.15 | ||
| 74205 | rust-crossbeam-deque-0.8.6 | ||
| 74206 | rust-crossbeam-epoch-0.9.18 | ||
| 74207 | rust-crossbeam-utils-0.8.21 | ||
| 74208 | rust-crunchy-0.2.4 | ||
| 74209 | rust-crypto-common-0.1.7 | ||
| 74210 | rust-derive-more-2.1.1 | ||
| 74211 | rust-derive-more-impl-2.1.1 | ||
| 74212 | rust-digest-0.10.7 | ||
| 74213 | rust-displaydoc-0.2.5 | ||
| 74214 | rust-either-1.15.0 | ||
| 74215 | rust-encoding-rs-0.8.35 | ||
| 74216 | rust-equivalent-1.0.2 | ||
| 74217 | rust-errno-0.3.14 | ||
| 74218 | rust-event-listener-5.4.1 | ||
| 74219 | rust-event-listener-strategy-0.5.4 | ||
| 74220 | rust-extendr-api-0.8.1.93d7244 | ||
| 74221 | rust-extendr-engine-0.8.1.93d7244 | ||
| 74222 | rust-extendr-ffi-0.8.1.93d7244 | ||
| 74223 | rust-extendr-macros-0.8.1.93d7244 | ||
| 74224 | rust-fastrand-2.4.1 | ||
| 74225 | rust-find-msvc-tools-0.1.9 | ||
| 74226 | rust-flate2-1.1.9 | ||
| 74227 | rust-fnv-1.0.7 | ||
| 74228 | rust-foldhash-0.1.5 | ||
| 74229 | rust-foldhash-0.2.0 | ||
| 74230 | rust-foreign-types-0.3.2 | ||
| 74231 | rust-foreign-types-shared-0.1.1 | ||
| 74232 | rust-form-urlencoded-1.2.2 | ||
| 74233 | rust-futures-0.3.32 | ||
| 74234 | rust-futures-channel-0.3.32 | ||
| 74235 | rust-futures-core-0.3.32 | ||
| 74236 | rust-futures-executor-0.3.32 | ||
| 74237 | rust-futures-io-0.3.32 | ||
| 74238 | rust-futures-macro-0.3.32 | ||
| 74239 | rust-futures-sink-0.3.32 | ||
| 74240 | rust-futures-task-0.3.32 | ||
| 74241 | rust-futures-util-0.3.32 | ||
| 74242 | rust-generic-array-0.14.7 | ||
| 74243 | rust-getrandom-0.2.17 | ||
| 74244 | rust-getrandom-0.3.4 | ||
| 74245 | rust-getrandom-0.4.2 | ||
| 74246 | rust-h2-0.4.13 | ||
| 74247 | rust-half-2.7.1 | ||
| 74248 | rust-hashbrown-0.15.5 | ||
| 74249 | rust-hashbrown-0.16.1 | ||
| 74250 | rust-hashbrown-0.17.0 | ||
| 74251 | rust-heck-0.5.0 | ||
| 74252 | rust-http-1.4.0 | ||
| 74253 | rust-http-body-1.0.1 | ||
| 74254 | rust-http-body-util-0.1.3 | ||
| 74255 | rust-httparse-1.10.1 | ||
| 74256 | rust-humantime-2.3.0 | ||
| 74257 | rust-hyper-1.9.0 | ||
| 74258 | rust-hyper-rustls-0.27.9 | ||
| 74259 | rust-hyper-tls-0.6.0 | ||
| 74260 | rust-hyper-util-0.1.20 | ||
| 74261 | rust-iana-time-zone-0.1.65 | ||
| 74262 | rust-iana-time-zone-haiku-0.1.2 | ||
| 74263 | rust-icu-collections-2.2.0 | ||
| 74264 | rust-icu-locale-core-2.2.0 | ||
| 74265 | rust-icu-normalizer-2.2.0 | ||
| 74266 | rust-icu-normalizer-data-2.2.0 | ||
| 74267 | rust-icu-properties-2.2.0 | ||
| 74268 | rust-icu-properties-data-2.2.0 | ||
| 74269 | rust-icu-provider-2.2.0 | ||
| 74270 | rust-id-arena-2.3.0 | ||
| 74271 | rust-idna-1.1.0 | ||
| 74272 | rust-idna-adapter-1.2.1 | ||
| 74273 | rust-indexmap-2.14.0 | ||
| 74274 | rust-inventory-0.3.24 | ||
| 74275 | rust-ipnet-2.12.0 | ||
| 74276 | rust-iri-string-0.7.12 | ||
| 74277 | rust-itertools-0.14.0 | ||
| 74278 | rust-itoa-1.0.18 | ||
| 74279 | rust-jobserver-0.1.34 | ||
| 74280 | rust-js-sys-0.3.94 | ||
| 74281 | rust-lazy-static-1.5.0 | ||
| 74282 | rust-leb128fmt-0.1.0 | ||
| 74283 | rust-libc-0.2.184 | ||
| 74284 | rust-libz-sys-1.1.28 | ||
| 74285 | rust-link-cplusplus-1.0.12 | ||
| 74286 | rust-linux-raw-sys-0.12.1 | ||
| 74287 | rust-litemap-0.8.2 | ||
| 74288 | rust-lock-api-0.4.14 | ||
| 74289 | rust-log-0.4.29 | ||
| 74290 | rust-lru-0.16.3 | ||
| 74291 | rust-lru-slab-0.1.2 | ||
| 74292 | rust-lz4-sys-1.11.1+lz4-1.10.0 | ||
| 74293 | rust-lz4-flex-0.12.1 | ||
| 74294 | rust-matrixmultiply-0.3.10 | ||
| 74295 | rust-md-5-0.10.6 | ||
| 74296 | rust-memchr-2.8.0 | ||
| 74297 | rust-mime-0.3.17 | ||
| 74298 | rust-miniz-oxide-0.8.9 | ||
| 74299 | rust-mio-1.2.0 | ||
| 74300 | rust-moka-0.12.15 | ||
| 74301 | rust-monostate-1.0.2 | ||
| 74302 | rust-monostate-impl-1.0.2 | ||
| 74303 | rust-native-tls-0.2.18 | ||
| 74304 | rust-ndarray-0.17.2 | ||
| 74305 | rust-num-0.4.3 | ||
| 74306 | rust-num-bigint-0.4.6 | ||
| 74307 | rust-num-complex-0.4.6 | ||
| 74308 | rust-num-integer-0.1.46 | ||
| 74309 | rust-num-iter-0.1.45 | ||
| 74310 | rust-num-rational-0.4.2 | ||
| 74311 | rust-num-traits-0.2.19 | ||
| 74312 | rust-object-store-0.13.2 | ||
| 74313 | rust-once-cell-1.21.4 | ||
| 74314 | rust-openssl-0.10.77 | ||
| 74315 | rust-openssl-macros-0.1.1 | ||
| 74316 | rust-openssl-probe-0.2.1 | ||
| 74317 | rust-openssl-sys-0.9.113 | ||
| 74318 | rust-page-size-0.6.0 | ||
| 74319 | rust-parking-2.2.1 | ||
| 74320 | rust-parking-lot-0.12.5 | ||
| 74321 | rust-parking-lot-core-0.9.12 | ||
| 74322 | rust-paste-1.0.15 | ||
| 74323 | rust-pathdiff-0.2.3 | ||
| 74324 | rust-percent-encoding-2.3.2 | ||
| 74325 | rust-pin-project-lite-0.2.17 | ||
| 74326 | rust-pkg-config-0.3.32 | ||
| 74327 | rust-portable-atomic-1.13.1 | ||
| 74328 | rust-portable-atomic-util-0.2.6 | ||
| 74329 | rust-positioned-io-0.3.5 | ||
| 74330 | rust-potential-utf-0.1.5 | ||
| 74331 | rust-ppv-lite86-0.2.21 | ||
| 74332 | rust-prettyplease-0.2.37 | ||
| 74333 | rust-proc-macro2-1.0.106 | ||
| 74334 | rust-quick-xml-0.39.2 | ||
| 74335 | rust-quick-cache-0.6.21 | ||
| 74336 | rust-quinn-0.11.9 | ||
| 74337 | rust-quinn-proto-0.11.14 | ||
| 74338 | rust-quinn-udp-0.5.14 | ||
| 74339 | rust-quote-1.0.45 | ||
| 74340 | rust-r-efi-5.3.0 | ||
| 74341 | rust-r-efi-6.0.0 | ||
| 74342 | rust-rand-0.9.4 | ||
| 74343 | rust-rand-0.10.1 | ||
| 74344 | rust-rand-chacha-0.9.0 | ||
| 74345 | rust-rand-core-0.9.5 | ||
| 74346 | rust-rand-core-0.10.1 | ||
| 74347 | rust-rawpointer-0.2.1 | ||
| 74348 | rust-rayon-1.11.0 | ||
| 74349 | rust-rayon-core-1.13.0 | ||
| 74350 | rust-rayon-iter-concurrent-limit-0.2.0 | ||
| 74351 | rust-redox-syscall-0.5.18 | ||
| 74352 | rust-regex-1.12.3 | ||
| 74353 | rust-regex-automata-0.4.14 | ||
| 74354 | rust-regex-syntax-0.8.10 | ||
| 74355 | rust-reqwest-0.12.28 | ||
| 74356 | rust-ring-0.17.14 | ||
| 74357 | rust-rustc-hash-2.1.2 | ||
| 74358 | rust-rustc-version-0.4.1 | ||
| 74359 | rust-rustix-1.1.4 | ||
| 74360 | rust-rustls-0.23.38 | ||
| 74361 | rust-rustls-native-certs-0.8.3 | ||
| 74362 | rust-rustls-pki-types-1.14.0 | ||
| 74363 | rust-rustls-webpki-0.103.12 | ||
| 74364 | rust-rustversion-1.0.22 | ||
| 74365 | rust-ryu-1.0.23 | ||
| 74366 | rust-same-file-1.0.6 | ||
| 74367 | rust-schannel-0.1.29 | ||
| 74368 | rust-scopeguard-1.2.0 | ||
| 74369 | rust-security-framework-3.7.0 | ||
| 74370 | rust-security-framework-sys-2.17.0 | ||
| 74371 | rust-semver-1.0.28 | ||
| 74372 | rust-serde-1.0.228 | ||
| 74373 | rust-serde-core-1.0.228 | ||
| 74374 | rust-serde-derive-1.0.228 | ||
| 74375 | rust-serde-json-1.0.149 | ||
| 74376 | rust-serde-repr-0.1.20 | ||
| 74377 | rust-serde-urlencoded-0.7.1 | ||
| 74378 | rust-shlex-1.3.0 | ||
| 74379 | rust-simd-adler32-0.3.9 | ||
| 74380 | rust-slab-0.4.12 | ||
| 74381 | rust-smallvec-1.15.1 | ||
| 74382 | rust-snap-1.1.1 | ||
| 74383 | rust-snappy-src-0.2.5+snappy.1.2.2 | ||
| 74384 | rust-socket2-0.6.3 | ||
| 74385 | rust-stable-deref-trait-1.2.1 | ||
| 74386 | rust-subtle-2.6.1 | ||
| 74387 | rust-syn-2.0.117 | ||
| 74388 | rust-sync-wrapper-1.0.2 | ||
| 74389 | rust-synstructure-0.13.2 | ||
| 74390 | rust-system-configuration-0.7.0 | ||
| 74391 | rust-system-configuration-sys-0.6.0 | ||
| 74392 | rust-tagptr-0.2.0 | ||
| 74393 | rust-tempfile-3.27.0 | ||
| 74394 | rust-thiserror-2.0.18 | ||
| 74395 | rust-thiserror-impl-2.0.18 | ||
| 74396 | rust-thread-local-1.1.9 | ||
| 74397 | rust-tinystr-0.8.3 | ||
| 74398 | rust-tinyvec-1.11.0 | ||
| 74399 | rust-tinyvec-macros-0.1.1 | ||
| 74400 | rust-tokio-1.52.0 | ||
| 74401 | rust-tokio-macros-2.7.0 | ||
| 74402 | rust-tokio-native-tls-0.3.1 | ||
| 74403 | rust-tokio-rustls-0.26.4 | ||
| 74404 | rust-tokio-util-0.7.18 | ||
| 74405 | rust-tower-0.5.3 | ||
| 74406 | rust-tower-http-0.6.8 | ||
| 74407 | rust-tower-layer-0.3.3 | ||
| 74408 | rust-tower-service-0.3.3 | ||
| 74409 | rust-tracing-0.1.44 | ||
| 74410 | rust-tracing-attributes-0.1.31 | ||
| 74411 | rust-tracing-core-0.1.36 | ||
| 74412 | rust-try-lock-0.2.5 | ||
| 74413 | rust-twox-hash-2.1.2 | ||
| 74414 | rust-typenum-1.19.0 | ||
| 74415 | rust-unicode-ident-1.0.24 | ||
| 74416 | rust-unicode-segmentation-1.13.2 | ||
| 74417 | rust-unicode-xid-0.2.6 | ||
| 74418 | rust-unsafe-cell-slice-0.2.2 | ||
| 74419 | rust-untrusted-0.9.0 | ||
| 74420 | rust-url-2.5.8 | ||
| 74421 | rust-utf8-iter-1.0.4 | ||
| 74422 | rust-uuid-1.23.0 | ||
| 74423 | rust-vcpkg-0.2.15 | ||
| 74424 | rust-version-check-0.9.5 | ||
| 74425 | rust-walkdir-2.5.0 | ||
| 74426 | rust-want-0.3.1 | ||
| 74427 | rust-wasi-0.11.1+wasi-snapshot-preview1 | ||
| 74428 | rust-wasip2-1.0.2+wasi-0.2.9 | ||
| 74429 | rust-wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06 | ||
| 74430 | rust-wasm-bindgen-0.2.117 | ||
| 74431 | rust-wasm-bindgen-futures-0.4.67 | ||
| 74432 | rust-wasm-bindgen-macro-0.2.117 | ||
| 74433 | rust-wasm-bindgen-macro-support-0.2.117 | ||
| 74434 | rust-wasm-bindgen-shared-0.2.117 | ||
| 74435 | rust-wasm-encoder-0.244.0 | ||
| 74436 | rust-wasm-metadata-0.244.0 | ||
| 74437 | rust-wasm-streams-0.4.2 | ||
| 74438 | rust-wasmparser-0.244.0 | ||
| 74439 | rust-web-sys-0.3.94 | ||
| 74440 | rust-web-time-1.1.0 | ||
| 74441 | rust-winapi-0.3.9 | ||
| 74442 | rust-winapi-i686-pc-windows-gnu-0.4.0 | ||
| 74443 | rust-winapi-util-0.1.11 | ||
| 74444 | rust-winapi-x86-64-pc-windows-gnu-0.4.0 | ||
| 74445 | rust-windows-core-0.62.2 | ||
| 74446 | rust-windows-implement-0.60.2 | ||
| 74447 | rust-windows-interface-0.59.3 | ||
| 74448 | rust-windows-link-0.2.1 | ||
| 74449 | rust-windows-registry-0.6.1 | ||
| 74450 | rust-windows-result-0.4.1 | ||
| 74451 | rust-windows-strings-0.5.1 | ||
| 74452 | rust-windows-sys-0.52.0 | ||
| 74453 | rust-windows-sys-0.61.2 | ||
| 74454 | rust-windows-targets-0.52.6 | ||
| 74455 | rust-windows-aarch64-gnullvm-0.52.6 | ||
| 74456 | rust-windows-aarch64-msvc-0.52.6 | ||
| 74457 | rust-windows-i686-gnu-0.52.6 | ||
| 74458 | rust-windows-i686-gnullvm-0.52.6 | ||
| 74459 | rust-windows-i686-msvc-0.52.6 | ||
| 74460 | rust-windows-x86-64-gnu-0.52.6 | ||
| 74461 | rust-windows-x86-64-gnullvm-0.52.6 | ||
| 74462 | rust-windows-x86-64-msvc-0.52.6 | ||
| 74463 | rust-wit-bindgen-0.51.0 | ||
| 74464 | rust-wit-bindgen-core-0.51.0 | ||
| 74465 | rust-wit-bindgen-rust-0.51.0 | ||
| 74466 | rust-wit-bindgen-rust-macro-0.51.0 | ||
| 74467 | rust-wit-component-0.244.0 | ||
| 74468 | rust-wit-parser-0.244.0 | ||
| 74469 | rust-writeable-0.6.3 | ||
| 74470 | rust-yoke-0.8.2 | ||
| 74471 | rust-yoke-derive-0.8.2 | ||
| 74472 | rust-zarrs-0.23.10 | ||
| 74473 | rust-zarrs-chunk-grid-0.5.1 | ||
| 74474 | rust-zarrs-chunk-key-encoding-0.2.0 | ||
| 74475 | rust-zarrs-codec-0.2.1 | ||
| 74476 | rust-zarrs-data-type-0.9.0 | ||
| 74477 | rust-zarrs-filesystem-0.3.9 | ||
| 74478 | rust-zarrs-http-0.3.1 | ||
| 74479 | rust-zarrs-metadata-0.7.4 | ||
| 74480 | rust-zarrs-metadata-ext-0.4.2 | ||
| 74481 | rust-zarrs-object-store-0.6.2 | ||
| 74482 | rust-zarrs-plugin-0.4.1 | ||
| 74483 | rust-zarrs-storage-0.4.3 | ||
| 74484 | rust-zerocopy-0.8.48 | ||
| 74485 | rust-zerocopy-derive-0.8.48 | ||
| 74486 | rust-zerofrom-0.1.7 | ||
| 74487 | rust-zerofrom-derive-0.1.7 | ||
| 74488 | rust-zeroize-1.8.2 | ||
| 74489 | rust-zerotrie-0.2.4 | ||
| 74490 | rust-zerovec-0.11.6 | ||
| 74491 | rust-zerovec-derive-0.11.3 | ||
| 74492 | rust-zmij-1.0.21 | ||
| 74493 | rust-zstd-0.13.3 | ||
| 74494 | rust-zstd-safe-7.2.4 | ||
| 74495 | rust-zstd-sys-2.0.16+zstd.1.5.7)) | ||
| 73813 | (rabbitmqadmin => | 74496 | (rabbitmqadmin => |
| 73814 | (list rust-addr2line-0.25.1 | 74497 | (list rust-addr2line-0.25.1 |
| 73815 | rust-adler2-2.0.1 | 74498 | rust-adler2-2.0.1 |
diff --git a/gnu/packages/rust-sources.scm b/gnu/packages/rust-sources.scm index a26cf17347b..737fbcbb697 100644 --- a/gnu/packages/rust-sources.scm +++ b/gnu/packages/rust-sources.scm | |||
| @@ -37,6 +37,8 @@ | |||
| 37 | #:use-module (gnu packages perl) | 37 | #:use-module (gnu packages perl) |
| 38 | #:use-module (gnu packages pkg-config) | 38 | #:use-module (gnu packages pkg-config) |
| 39 | #:use-module (gnu packages python) | 39 | #:use-module (gnu packages python) |
| 40 | #:use-module (gnu packages rust) | ||
| 41 | #:use-module (gnu packages statistics) | ||
| 40 | #:use-module (gnu packages textutils) | 42 | #:use-module (gnu packages textutils) |
| 41 | #:use-module (gnu packages virtualization)) | 43 | #:use-module (gnu packages virtualization)) |
| 42 | 44 | ||
| @@ -246,6 +248,48 @@ transliterating them. It supports Emoji and Chinese.") | |||
| 246 | ;; checkout and does not need a cargo input. | 248 | ;; checkout and does not need a cargo input. |
| 247 | (inputs (cargo-inputs 'rust-deunicode-1.6.2.cfb8552)))))) | 249 | (inputs (cargo-inputs 'rust-deunicode-1.6.2.cfb8552)))))) |
| 248 | 250 | ||
| 251 | ;; Workspace dependency of r-pizzarr. | ||
| 252 | (define-public rust-extendr-0.8.1.93d7244 | ||
| 253 | (let ((commit "93d7244e3145d94186bc2f35258ad0ef25a28908") | ||
| 254 | (revision "1")) | ||
| 255 | (hidden-package | ||
| 256 | (package | ||
| 257 | (name "rust-extendr") | ||
| 258 | (version (git-version "0.8.1" revision commit)) | ||
| 259 | (source (origin | ||
| 260 | (method git-fetch) | ||
| 261 | (uri (git-reference | ||
| 262 | (url "https://github.com/extendr/extendr") | ||
| 263 | (commit commit))) | ||
| 264 | (file-name (git-file-name name version)) | ||
| 265 | (sha256 | ||
| 266 | (base32 | ||
| 267 | "03d16y7f1r0y1s8gwzw7wzn5yhcqr1wn0vga9dvdjxpbga372vx7")))) | ||
| 268 | (build-system cargo-build-system) | ||
| 269 | (arguments | ||
| 270 | (list | ||
| 271 | #:cargo-package-crates | ||
| 272 | ;; Note that the order matters! | ||
| 273 | '(list "extendr-ffi" | ||
| 274 | "extendr-macros" | ||
| 275 | "extendr-api" | ||
| 276 | "extendr-engine") | ||
| 277 | #:phases | ||
| 278 | #~(modify-phases %standard-phases | ||
| 279 | (add-after 'unpack 'set-R_HOME | ||
| 280 | (lambda _ | ||
| 281 | (delete-file-recursively ".cargo") | ||
| 282 | (setenv "R_HOME" | ||
| 283 | (string-append | ||
| 284 | #$(this-package-input "r-minimal") | ||
| 285 | "/lib/R"))))))) | ||
| 286 | (inputs (cons r-minimal (cargo-inputs 'extendr))) | ||
| 287 | (home-page "https://extendr.rs/") | ||
| 288 | (synopsis "R extension library for Rust") | ||
| 289 | (description "This library allows you to extend R with Rust. It can be | ||
| 290 | used to write R packages that link with Rust libraries.") | ||
| 291 | (license license:expat))))) | ||
| 292 | |||
| 249 | ;; Workspace dependency of zed. | 293 | ;; Workspace dependency of zed. |
| 250 | ;; | 294 | ;; |
| 251 | ;; Cargo side: Cargo unifies dependency versions across zed's | 295 | ;; Cargo side: Cargo unifies dependency versions across zed's |
