diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2025-11-25 21:58:07 -0500 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2026-03-10 17:49:30 +0200 |
| commit | 5c33e5e8d0a11a8ef3b1fb60cdea6897d0f7bfb7 (patch) | |
| tree | 97f29ce9854e5fb17248c3fb9c5c17d220801017 | |
| parent | 20a11045701d588dc8534d57fda60e9a134e0868 (diff) | |
gnu: Add gitlogue.
* gnu/packages/rust-apps.scm (gitlogue): New variable.
* gnu/packages/rust-crates.scm (gitlogue): Add dependencies.
Closes: guix/guix#4492
Change-Id: I7074ab72df5cc14ea2f6cafb3d1f0ac42f566aa6
Signed-off-by: Steve George <steve@futurile.net>
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
| -rw-r--r-- | gnu/packages/rust-apps.scm | 40 | ||||
| -rw-r--r-- | gnu/packages/rust-crates.scm | 407 |
2 files changed, 447 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index e17bed19eba..e0fcc924412 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm | |||
| @@ -1300,6 +1300,46 @@ defaults for 80% of the use cases.") | |||
| 1300 | (description "This package provides a CLI tool for Forgejo.") | 1300 | (description "This package provides a CLI tool for Forgejo.") |
| 1301 | (license (list license:asl2.0 license:expat)))) | 1301 | (license (list license:asl2.0 license:expat)))) |
| 1302 | 1302 | ||
| 1303 | (define-public gitlogue | ||
| 1304 | (package | ||
| 1305 | (name "gitlogue") | ||
| 1306 | (version "0.8.0") | ||
| 1307 | (source | ||
| 1308 | (origin | ||
| 1309 | (method git-fetch) | ||
| 1310 | (uri (git-reference | ||
| 1311 | (url "https://github.com/unhappychoice/gitlogue") | ||
| 1312 | (commit (string-append "v" version)))) | ||
| 1313 | (file-name (git-file-name name version)) | ||
| 1314 | (sha256 | ||
| 1315 | (base32 | ||
| 1316 | "007sf2b605jkjk4qyxar1bq7fh71yvv9ixsxfqrs3hzschyj3m2g")) | ||
| 1317 | (modules '((guix build utils))) | ||
| 1318 | (snippet | ||
| 1319 | '(begin | ||
| 1320 | (substitute* "Cargo.toml" | ||
| 1321 | ;; Remove the features from git2. | ||
| 1322 | (("git2 = (\\{ version = )(\".*\"), features.*" _ _ version) | ||
| 1323 | (string-append "git2 = " version "\n"))) | ||
| 1324 | (delete-file-recursively "docs"))))) | ||
| 1325 | (build-system cargo-build-system) | ||
| 1326 | (arguments | ||
| 1327 | (list | ||
| 1328 | #:install-source? #f | ||
| 1329 | #:phases | ||
| 1330 | #~(modify-phases %standard-phases | ||
| 1331 | (add-after 'unpack 'setenv | ||
| 1332 | (lambda _ | ||
| 1333 | (setenv "LIBGIT2_NO_VENDOR" "1")))))) | ||
| 1334 | (native-inputs (list pkg-config)) | ||
| 1335 | (inputs (cons* libgit2-1.9 libssh2 openssl zlib | ||
| 1336 | (cargo-inputs 'gitlogue))) | ||
| 1337 | (home-page "https://github.com/unhappychoice/gitlogue") | ||
| 1338 | (synopsis "Git history screensaver") | ||
| 1339 | (description | ||
| 1340 | "Gitlogue is a Git history screensaver - watch your code rewrite itself.") | ||
| 1341 | (license license:isc))) | ||
| 1342 | |||
| 1303 | (define-public gitoxide | 1343 | (define-public gitoxide |
| 1304 | (package | 1344 | (package |
| 1305 | (name "gitoxide") | 1345 | (name "gitoxide") |
diff --git a/gnu/packages/rust-crates.scm b/gnu/packages/rust-crates.scm index 0ba6973c062..1be71bdefcf 100644 --- a/gnu/packages/rust-crates.scm +++ b/gnu/packages/rust-crates.scm | |||
| @@ -3377,6 +3377,11 @@ | |||
| 3377 | (crate-source "cgmath" "0.18.0" | 3377 | (crate-source "cgmath" "0.18.0" |
| 3378 | "05sk7c1c1jg5ygqvc3y77kxddp177gwazfibhd864ag3800x760s")) | 3378 | "05sk7c1c1jg5ygqvc3y77kxddp177gwazfibhd864ag3800x760s")) |
| 3379 | 3379 | ||
| 3380 | (define rust-chacha20-0.10.0 | ||
| 3381 | (crate-source "chacha20" "0.10.0" | ||
| 3382 | "00bn2rn8l68qvlq93mhq7b4ns4zy9qbjsyjbb9kljgl4hqr9i3bg" | ||
| 3383 | #:snippet '(delete-file-recursively "tests"))) | ||
| 3384 | |||
| 3380 | (define rust-chacha20-0.10.0-rc.2 | 3385 | (define rust-chacha20-0.10.0-rc.2 |
| 3381 | (crate-source "chacha20" "0.10.0-rc.2" | 3386 | (crate-source "chacha20" "0.10.0-rc.2" |
| 3382 | "1sf9slisakdzm6jxn225lyvmfmp5whvsca1zv0whcgmgp3r65lcv" | 3387 | "1sf9slisakdzm6jxn225lyvmfmp5whvsca1zv0whcgmgp3r65lcv" |
| @@ -3456,6 +3461,10 @@ | |||
| 3456 | (crate-source "chrono" "0.4.44" | 3461 | (crate-source "chrono" "0.4.44" |
| 3457 | "1c64mk9a235271j5g3v4zrzqqmd43vp9vki7vqfllpqf5rd0fwy6")) | 3462 | "1c64mk9a235271j5g3v4zrzqqmd43vp9vki7vqfllpqf5rd0fwy6")) |
| 3458 | 3463 | ||
| 3464 | (define rust-chrono-english-0.1.8 | ||
| 3465 | (crate-source "chrono-english" "0.1.8" | ||
| 3466 | "189l23zy42c0fdmppcnc9a0lj2f74y6snxj67xklk4hc849nd99q")) | ||
| 3467 | |||
| 3459 | (define rust-chrono-humanize-0.2.3 | 3468 | (define rust-chrono-humanize-0.2.3 |
| 3460 | (crate-source "chrono-humanize" "0.2.3" | 3469 | (crate-source "chrono-humanize" "0.2.3" |
| 3461 | "0fq25fcdqd7s39dx81hq123210q4lpcbjdz82jl2fy6jnkk2g5kr")) | 3470 | "0fq25fcdqd7s39dx81hq123210q4lpcbjdz82jl2fy6jnkk2g5kr")) |
| @@ -4739,6 +4748,10 @@ | |||
| 4739 | (crate-source "cpufeatures" "0.2.17" | 4748 | (crate-source "cpufeatures" "0.2.17" |
| 4740 | "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar")) | 4749 | "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar")) |
| 4741 | 4750 | ||
| 4751 | (define rust-cpufeatures-0.3.0 | ||
| 4752 | (crate-source "cpufeatures" "0.3.0" | ||
| 4753 | "00fjhygsqmh4kbxxlb99mcsbspxcai6hjydv4c46pwb67wwl2alb")) | ||
| 4754 | |||
| 4742 | (define rust-cranelift-bforest-0.116.1 | 4755 | (define rust-cranelift-bforest-0.116.1 |
| 4743 | (crate-source "cranelift-bforest" "0.116.1" | 4756 | (crate-source "cranelift-bforest" "0.116.1" |
| 4744 | "1i13rpcpzi2b26nf1fajf2jcvmpzjgv8rmlav3m3djw6rsh08pg1")) | 4757 | "1i13rpcpzi2b26nf1fajf2jcvmpzjgv8rmlav3m3djw6rsh08pg1")) |
| @@ -14474,6 +14487,11 @@ | |||
| 14474 | "0f8879301wxgljw8snkcix90p6qbm4inp3sqrsjq9b2svv5yjda7" | 14487 | "0f8879301wxgljw8snkcix90p6qbm4inp3sqrsjq9b2svv5yjda7" |
| 14475 | #:snippet '(for-each delete-file-recursively '("src/zlib" "src/zlib-ng")))) | 14488 | #:snippet '(for-each delete-file-recursively '("src/zlib" "src/zlib-ng")))) |
| 14476 | 14489 | ||
| 14490 | (define rust-libz-sys-1.1.25 | ||
| 14491 | (crate-source "libz-sys" "1.1.25" | ||
| 14492 | "1hdg7nqfjaygcqidyknldsva4i4zvirbgqc7j06c72m6w8llqbym" | ||
| 14493 | #:snippet '(for-each delete-file-recursively '("src/zlib" "src/zlib-ng")))) | ||
| 14494 | |||
| 14477 | (define rust-lifeguard-0.6.1 | 14495 | (define rust-lifeguard-0.6.1 |
| 14478 | (crate-source "lifeguard" "0.6.1" | 14496 | (crate-source "lifeguard" "0.6.1" |
| 14479 | "09iwwy7888i1kfvbrgwpl4xv3pwsz1fbzx54djs3gnvmszdr9gl9")) | 14497 | "09iwwy7888i1kfvbrgwpl4xv3pwsz1fbzx54djs3gnvmszdr9gl9")) |
| @@ -22112,6 +22130,10 @@ | |||
| 22112 | (crate-source "scan_fmt" "0.2.6" | 22130 | (crate-source "scan_fmt" "0.2.6" |
| 22113 | "0j0jb1dsa8zjpnc875wy72190zlyngvl62mfv8pqwal8vfjv0lqb")) | 22131 | "0j0jb1dsa8zjpnc875wy72190zlyngvl62mfv8pqwal8vfjv0lqb")) |
| 22114 | 22132 | ||
| 22133 | (define rust-scanlex-0.1.4 | ||
| 22134 | (crate-source "scanlex" "0.1.4" | ||
| 22135 | "1nrkq1kjwf3v084pndiq18yx6vqsivlqr6jllyg94911axqmv308")) | ||
| 22136 | |||
| 22115 | (define rust-scc-2.3.3 | 22137 | (define rust-scc-2.3.3 |
| 22116 | (crate-source "scc" "2.3.3" | 22138 | (crate-source "scc" "2.3.3" |
| 22117 | "1cc5ccsjhs0b31yfcdjw0dbkgm1fd7pg811zk4wam595min1y2ga")) | 22139 | "1cc5ccsjhs0b31yfcdjw0dbkgm1fd7pg811zk4wam595min1y2ga")) |
| @@ -25854,6 +25876,10 @@ | |||
| 25854 | (crate-source "toml" "1.0.3+spec-1.1.0" | 25876 | (crate-source "toml" "1.0.3+spec-1.1.0" |
| 25855 | "033cc36cl3w7mfq9xzgxnslz573j06idzb94vd3q70dd36plwqf7")) | 25877 | "033cc36cl3w7mfq9xzgxnslz573j06idzb94vd3q70dd36plwqf7")) |
| 25856 | 25878 | ||
| 25879 | (define rust-toml-1.0.6+spec-1.1.0 | ||
| 25880 | (crate-source "toml" "1.0.6+spec-1.1.0" | ||
| 25881 | "1z3gd04jal7r2jhnww4qvln5g4h1wlhvlsqwhdk6gqf9lcj136rr")) | ||
| 25882 | |||
| 25857 | (define rust-toml-datetime-0.6.11 | 25883 | (define rust-toml-datetime-0.6.11 |
| 25858 | (crate-source "toml_datetime" "0.6.11" | 25884 | (crate-source "toml_datetime" "0.6.11" |
| 25859 | "077ix2hb1dcya49hmi1avalwbixmrs75zgzb3b2i7g2gizwdmk92")) | 25885 | "077ix2hb1dcya49hmi1avalwbixmrs75zgzb3b2i7g2gizwdmk92")) |
| @@ -26304,10 +26330,18 @@ | |||
| 26304 | (crate-source "tree-sitter-c" "0.23.4" | 26330 | (crate-source "tree-sitter-c" "0.23.4" |
| 26305 | "0wcwdvp8k9qsyfb5zpa9cq05kc5dp0fx11wysvv2xp452nzv3lmg")) | 26331 | "0wcwdvp8k9qsyfb5zpa9cq05kc5dp0fx11wysvv2xp452nzv3lmg")) |
| 26306 | 26332 | ||
| 26333 | (define rust-tree-sitter-c-0.24.1 | ||
| 26334 | (crate-source "tree-sitter-c" "0.24.1" | ||
| 26335 | "01r7f8fcls4dalhlrm4jqi473fyja9sib5l5zrckl219067ssfhs")) | ||
| 26336 | |||
| 26307 | (define rust-tree-sitter-c-sharp-0.23.1 | 26337 | (define rust-tree-sitter-c-sharp-0.23.1 |
| 26308 | (crate-source "tree-sitter-c-sharp" "0.23.1" | 26338 | (crate-source "tree-sitter-c-sharp" "0.23.1" |
| 26309 | "1c7w6wvjc54k6kh0qrlspm9ksr4y10aq4fv6b0bkaibvrb66mw37")) | 26339 | "1c7w6wvjc54k6kh0qrlspm9ksr4y10aq4fv6b0bkaibvrb66mw37")) |
| 26310 | 26340 | ||
| 26341 | (define rust-tree-sitter-clojure-0.1.0 | ||
| 26342 | (crate-source "tree-sitter-clojure" "0.1.0" | ||
| 26343 | "131khpl74pkr0i9l912r0sld0lz9nh11ygpsg0frli09qm68h120")) | ||
| 26344 | |||
| 26311 | (define rust-tree-sitter-cpp-0.23.4 | 26345 | (define rust-tree-sitter-cpp-0.23.4 |
| 26312 | (crate-source "tree-sitter-cpp" "0.23.4" | 26346 | (crate-source "tree-sitter-cpp" "0.23.4" |
| 26313 | "0hs7p45av437iw8rzsyw46qs06axbam7wadr655apd27kpm9c8fz")) | 26347 | "0hs7p45av437iw8rzsyw46qs06axbam7wadr655apd27kpm9c8fz")) |
| @@ -26316,14 +26350,34 @@ | |||
| 26316 | (crate-source "tree-sitter-css" "0.23.2" | 26350 | (crate-source "tree-sitter-css" "0.23.2" |
| 26317 | "17mjy7f1s3cq8dacxaj3ixhqixlra4755gkz5b8m04yljjblimjs")) | 26351 | "17mjy7f1s3cq8dacxaj3ixhqixlra4755gkz5b8m04yljjblimjs")) |
| 26318 | 26352 | ||
| 26353 | (define rust-tree-sitter-css-0.25.0 | ||
| 26354 | (crate-source "tree-sitter-css" "0.25.0" | ||
| 26355 | "0vv8g3hwvas734pirq536magjp2jd4jz94aq8gbcd8i9izhwbjx5")) | ||
| 26356 | |||
| 26357 | (define rust-tree-sitter-dart-0.0.4 | ||
| 26358 | (crate-source "tree-sitter-dart" "0.0.4" | ||
| 26359 | "12p3yhv81fxsmd55nlw7jpl9sbmsnmkyzz5a2hz38hffh05zgw8r")) | ||
| 26360 | |||
| 26319 | (define rust-tree-sitter-elixir-0.3.4 | 26361 | (define rust-tree-sitter-elixir-0.3.4 |
| 26320 | (crate-source "tree-sitter-elixir" "0.3.4" | 26362 | (crate-source "tree-sitter-elixir" "0.3.4" |
| 26321 | "0grdkbx6bqw3s1w3mkk94sibmhgdicdlqirjzpc57zdl8x348pg4")) | 26363 | "0grdkbx6bqw3s1w3mkk94sibmhgdicdlqirjzpc57zdl8x348pg4")) |
| 26322 | 26364 | ||
| 26365 | (define rust-tree-sitter-elixir-0.3.5 | ||
| 26366 | (crate-source "tree-sitter-elixir" "0.3.5" | ||
| 26367 | "0h5shirf9ds1cc7xw4l1p1f1xfq3fk5s6zw557y5pn9ffr50dpb6")) | ||
| 26368 | |||
| 26369 | (define rust-tree-sitter-erlang-0.15.0 | ||
| 26370 | (crate-source "tree-sitter-erlang" "0.15.0" | ||
| 26371 | "1gm6cwj11h1sx7hxv4anlak4ax31qs56134jfwyw06fs9v71q2gj")) | ||
| 26372 | |||
| 26323 | (define rust-tree-sitter-go-0.23.4 | 26373 | (define rust-tree-sitter-go-0.23.4 |
| 26324 | (crate-source "tree-sitter-go" "0.23.4" | 26374 | (crate-source "tree-sitter-go" "0.23.4" |
| 26325 | "0cc4w4p12inxpsn2hgpmbvw1nyf5cm0l9pa705hbw3928milfgdi")) | 26375 | "0cc4w4p12inxpsn2hgpmbvw1nyf5cm0l9pa705hbw3928milfgdi")) |
| 26326 | 26376 | ||
| 26377 | (define rust-tree-sitter-go-0.25.0 | ||
| 26378 | (crate-source "tree-sitter-go" "0.25.0" | ||
| 26379 | "1shnigi37lrq88b93i1vnha62byy1nykrq62sbac0p435x6hlmn8")) | ||
| 26380 | |||
| 26327 | (define rust-tree-sitter-haskell-0.23.1 | 26381 | (define rust-tree-sitter-haskell-0.23.1 |
| 26328 | (crate-source "tree-sitter-haskell" "0.23.1" | 26382 | (crate-source "tree-sitter-haskell" "0.23.1" |
| 26329 | "19057d99kaq7bn8k86baf7v4q4mjv8p5mjr7zh9vm32l0kjm2z4p")) | 26383 | "19057d99kaq7bn8k86baf7v4q4mjv8p5mjr7zh9vm32l0kjm2z4p")) |
| @@ -26348,6 +26402,10 @@ | |||
| 26348 | (crate-source "tree-sitter-javascript" "0.23.1" | 26402 | (crate-source "tree-sitter-javascript" "0.23.1" |
| 26349 | "1cf19p9rl96yqjjhzimhp0dpvp2xxq8fqg2w29nc25h4krcvyh5z")) | 26403 | "1cf19p9rl96yqjjhzimhp0dpvp2xxq8fqg2w29nc25h4krcvyh5z")) |
| 26350 | 26404 | ||
| 26405 | (define rust-tree-sitter-javascript-0.25.0 | ||
| 26406 | (crate-source "tree-sitter-javascript" "0.25.0" | ||
| 26407 | "1xckcrssvg8479aym090rgyjdakhqkshbrh6vw5sj9q6phm4y838")) | ||
| 26408 | |||
| 26351 | (define rust-tree-sitter-json-0.24.8 | 26409 | (define rust-tree-sitter-json-0.24.8 |
| 26352 | (crate-source "tree-sitter-json" "0.24.8" | 26410 | (crate-source "tree-sitter-json" "0.24.8" |
| 26353 | "0wf4gsa5mcrcprg8wh647n76rwv4cx8kbky6zw605h06lk67lwjd")) | 26411 | "0wf4gsa5mcrcprg8wh647n76rwv4cx8kbky6zw605h06lk67lwjd")) |
| @@ -26356,6 +26414,10 @@ | |||
| 26356 | (crate-source "tree-sitter-julia" "0.23.1" | 26414 | (crate-source "tree-sitter-julia" "0.23.1" |
| 26357 | "08z33mq5n5z3xgjjcjrha8b4rrci7f5ykc8rfs3fw4l82wd76i21")) | 26415 | "08z33mq5n5z3xgjjcjrha8b4rrci7f5ykc8rfs3fw4l82wd76i21")) |
| 26358 | 26416 | ||
| 26417 | (define rust-tree-sitter-kotlin-ng-1.1.0 | ||
| 26418 | (crate-source "tree-sitter-kotlin-ng" "1.1.0" | ||
| 26419 | "0l243fswf9jjnqcyirjy56qr86d38x4w7lpl4krgpb1qm6yyn078")) | ||
| 26420 | |||
| 26359 | (define rust-tree-sitter-language-0.1.5 | 26421 | (define rust-tree-sitter-language-0.1.5 |
| 26360 | (crate-source "tree-sitter-language" "0.1.5" | 26422 | (crate-source "tree-sitter-language" "0.1.5" |
| 26361 | "1f14p8i09yrfsf9708jmayy0km78n9pqzxmf31xzd0vk45q3j0f4")) | 26423 | "1f14p8i09yrfsf9708jmayy0km78n9pqzxmf31xzd0vk45q3j0f4")) |
| @@ -26368,6 +26430,10 @@ | |||
| 26368 | (crate-source "tree-sitter-lua" "0.2.0" | 26430 | (crate-source "tree-sitter-lua" "0.2.0" |
| 26369 | "07k4753h1nz3pbffcnclxjz2xcfvb6hb7jv0fs7cbzk517grmnsw")) | 26431 | "07k4753h1nz3pbffcnclxjz2xcfvb6hb7jv0fs7cbzk517grmnsw")) |
| 26370 | 26432 | ||
| 26433 | (define rust-tree-sitter-lua-0.4.1 | ||
| 26434 | (crate-source "tree-sitter-lua" "0.4.1" | ||
| 26435 | "1bq30iva40mv92d5w189dhlnqnflqiwf36i3y4g3fgyqci0jz6ga")) | ||
| 26436 | |||
| 26371 | (define rust-tree-sitter-make-1.1.1 | 26437 | (define rust-tree-sitter-make-1.1.1 |
| 26372 | (crate-source "tree-sitter-make" "1.1.1" | 26438 | (crate-source "tree-sitter-make" "1.1.1" |
| 26373 | "0101h5ilrv2aqjffdlnq2d2m9mpj5fcfzvwamsgv3nnbrg3qv6f5")) | 26439 | "0101h5ilrv2aqjffdlnq2d2m9mpj5fcfzvwamsgv3nnbrg3qv6f5")) |
| @@ -26376,6 +26442,10 @@ | |||
| 26376 | (crate-source "tree-sitter-md" "0.3.2" | 26442 | (crate-source "tree-sitter-md" "0.3.2" |
| 26377 | "0c5h0j9cp5rq27cig1iqnsz8vc4xfap5a14nzj1hn0815b16iy8p")) | 26443 | "0c5h0j9cp5rq27cig1iqnsz8vc4xfap5a14nzj1hn0815b16iy8p")) |
| 26378 | 26444 | ||
| 26445 | (define rust-tree-sitter-md-0.5.3 | ||
| 26446 | (crate-source "tree-sitter-md" "0.5.3" | ||
| 26447 | "10m8mwhd25bq0xc4l6si85rafs8pyp05dvlq8n0nqia6wn5kkz9f")) | ||
| 26448 | |||
| 26379 | (define rust-tree-sitter-nix-0.0.2 | 26449 | (define rust-tree-sitter-nix-0.0.2 |
| 26380 | (crate-source "tree-sitter-nix" "0.0.2" | 26450 | (crate-source "tree-sitter-nix" "0.0.2" |
| 26381 | "0160v6rqal8lsw9slx7x52ccq7cc5lfk6xd088rdcxyk0n3lz39s")) | 26451 | "0160v6rqal8lsw9slx7x52ccq7cc5lfk6xd088rdcxyk0n3lz39s")) |
| @@ -26392,10 +26462,18 @@ | |||
| 26392 | (crate-source "tree-sitter-php" "0.23.11" | 26462 | (crate-source "tree-sitter-php" "0.23.11" |
| 26393 | "030kiknyk2lw54yj7mzj92kfr5v0qr81qymhvkqy9kvjj97fjrph")) | 26463 | "030kiknyk2lw54yj7mzj92kfr5v0qr81qymhvkqy9kvjj97fjrph")) |
| 26394 | 26464 | ||
| 26465 | (define rust-tree-sitter-php-0.24.2 | ||
| 26466 | (crate-source "tree-sitter-php" "0.24.2" | ||
| 26467 | "14jmvysx66irxjgpgvlp3dfw46yxfbcmrzx7x9g2q1b9mg1ig30d")) | ||
| 26468 | |||
| 26395 | (define rust-tree-sitter-python-0.23.6 | 26469 | (define rust-tree-sitter-python-0.23.6 |
| 26396 | (crate-source "tree-sitter-python" "0.23.6" | 26470 | (crate-source "tree-sitter-python" "0.23.6" |
| 26397 | "012bgzycya91lpdbrrr8xnw9xjz116nf1w61c2pwxapk4ym5l1ix")) | 26471 | "012bgzycya91lpdbrrr8xnw9xjz116nf1w61c2pwxapk4ym5l1ix")) |
| 26398 | 26472 | ||
| 26473 | (define rust-tree-sitter-python-0.25.0 | ||
| 26474 | (crate-source "tree-sitter-python" "0.25.0" | ||
| 26475 | "072anxf7f3wn2jzpa1c8fnnskhwjjkd4qvzlc2zl1rsjjv9mzy3b")) | ||
| 26476 | |||
| 26399 | (define rust-tree-sitter-ruby-0.23.1 | 26477 | (define rust-tree-sitter-ruby-0.23.1 |
| 26400 | (crate-source "tree-sitter-ruby" "0.23.1" | 26478 | (crate-source "tree-sitter-ruby" "0.23.1" |
| 26401 | "15cz4h1sfgf838r2pmf7vg9ahh0kwgkvvnjgbdbrrfzn9vm8815y")) | 26479 | "15cz4h1sfgf838r2pmf7vg9ahh0kwgkvvnjgbdbrrfzn9vm8815y")) |
| @@ -26412,6 +26490,18 @@ | |||
| 26412 | (crate-source "tree-sitter-scala" "0.23.4" | 26490 | (crate-source "tree-sitter-scala" "0.23.4" |
| 26413 | "0bsxq5ihmi4qp1g3cfrnmgznp8h4y739d8mz2yn9wvkknil5xppg")) | 26491 | "0bsxq5ihmi4qp1g3cfrnmgznp8h4y739d8mz2yn9wvkknil5xppg")) |
| 26414 | 26492 | ||
| 26493 | (define rust-tree-sitter-scala-0.24.0 | ||
| 26494 | (crate-source "tree-sitter-scala" "0.24.0" | ||
| 26495 | "0ldjl3cq5rvm1d6c61nx2i2l7cwkd7l67ca5627dw3pls6rsw5km")) | ||
| 26496 | |||
| 26497 | (define rust-tree-sitter-svelte-ng-1.0.2 | ||
| 26498 | (crate-source "tree-sitter-svelte-ng" "1.0.2" | ||
| 26499 | "0dzsclhsy24d4r4a541kbnr9p8n860v8jr3cr0y3g52yrzwp22pg")) | ||
| 26500 | |||
| 26501 | (define rust-tree-sitter-swift-0.7.1 | ||
| 26502 | (crate-source "tree-sitter-swift" "0.7.1" | ||
| 26503 | "0n9fhg4imn0zzd4qa36gcq89nl4drd3z6dj7hvxg8g9y3h0idwjf")) | ||
| 26504 | |||
| 26415 | (define rust-tree-sitter-toml-ng-0.6.0 | 26505 | (define rust-tree-sitter-toml-ng-0.6.0 |
| 26416 | (crate-source "tree-sitter-toml-ng" "0.6.0" | 26506 | (crate-source "tree-sitter-toml-ng" "0.6.0" |
| 26417 | "0mblvbhba1lg59jy6b2f7n41jfxlsxv3xw3kqw16rwdchg6j0pb9")) | 26507 | "0mblvbhba1lg59jy6b2f7n41jfxlsxv3xw3kqw16rwdchg6j0pb9")) |
| @@ -26432,6 +26522,14 @@ | |||
| 26432 | (crate-source "tree-sitter-yaml" "0.7.0" | 26522 | (crate-source "tree-sitter-yaml" "0.7.0" |
| 26433 | "0phdym735blwnb8aff4225c5gyws6aljy8vbifhz2xxnj8mrzjfh")) | 26523 | "0phdym735blwnb8aff4225c5gyws6aljy8vbifhz2xxnj8mrzjfh")) |
| 26434 | 26524 | ||
| 26525 | (define rust-tree-sitter-yaml-0.7.2 | ||
| 26526 | (crate-source "tree-sitter-yaml" "0.7.2" | ||
| 26527 | "15vwrr1rz4xmw9ixl2i4bp0yns067f258m069xwk8pphhpdj7hjk")) | ||
| 26528 | |||
| 26529 | (define rust-tree-sitter-zig-1.1.2 | ||
| 26530 | (crate-source "tree-sitter-zig" "1.1.2" | ||
| 26531 | "0a1yspjia5sj8k6rsf1q6blr44b3v6xq6ng5sm6xpc2i909gq4db")) | ||
| 26532 | |||
| 26435 | (define rust-trim-in-place-0.1.7 | 26533 | (define rust-trim-in-place-0.1.7 |
| 26436 | (crate-source "trim-in-place" "0.1.7" | 26534 | (crate-source "trim-in-place" "0.1.7" |
| 26437 | "1z04g79xkrpf3h4g3cc8wax72dn6h6v9l4m39zg8rg39qrpr4gil")) | 26535 | "1z04g79xkrpf3h4g3cc8wax72dn6h6v9l4m39zg8rg39qrpr4gil")) |
| @@ -27488,6 +27586,10 @@ | |||
| 27488 | (crate-source "uuid" "0.1.18" | 27586 | (crate-source "uuid" "0.1.18" |
| 27489 | "0gy107y2fcm5qiakwx3cmx2v93cxlmwg0xgvv2m11vbrpnsr1ibq")) | 27587 | "0gy107y2fcm5qiakwx3cmx2v93cxlmwg0xgvv2m11vbrpnsr1ibq")) |
| 27490 | 27588 | ||
| 27589 | (define rust-uuid-1.22.0 | ||
| 27590 | (crate-source "uuid" "1.22.0" | ||
| 27591 | "0dvsfn44sddhyhlhk7m3i559wyb125h86799fm5abky0067kr3d6")) | ||
| 27592 | |||
| 27491 | (define rust-uuid-1.8.0 | 27593 | (define rust-uuid-1.8.0 |
| 27492 | (crate-source "uuid" "1.8.0" | 27594 | (crate-source "uuid" "1.8.0" |
| 27493 | "1h7wks153j08xmdk06wnza3is8pn6j37hihd3kfv95xsxrzwz0x1")) | 27595 | "1h7wks153j08xmdk06wnza3is8pn6j37hihd3kfv95xsxrzwz0x1")) |
| @@ -42363,6 +42465,311 @@ | |||
| 42363 | rust-syn-1.0.109 | 42465 | rust-syn-1.0.109 |
| 42364 | rust-unicode-ident-1.0.22 | 42466 | rust-unicode-ident-1.0.22 |
| 42365 | rust-unindent-0.1.11)) | 42467 | rust-unindent-0.1.11)) |
| 42468 | (gitlogue => | ||
| 42469 | (list rust-aho-corasick-1.1.4 | ||
| 42470 | rust-allocator-api2-0.2.21 | ||
| 42471 | rust-android-system-properties-0.1.5 | ||
| 42472 | rust-anstream-0.6.21 | ||
| 42473 | rust-anstyle-1.0.13 | ||
| 42474 | rust-anstyle-parse-0.2.7 | ||
| 42475 | rust-anstyle-query-1.1.5 | ||
| 42476 | rust-anstyle-wincon-3.0.11 | ||
| 42477 | rust-anyhow-1.0.102 | ||
| 42478 | rust-atomic-0.6.1 | ||
| 42479 | rust-autocfg-1.5.0 | ||
| 42480 | rust-base64-0.22.1 | ||
| 42481 | rust-bit-set-0.5.3 | ||
| 42482 | rust-bit-vec-0.6.3 | ||
| 42483 | rust-bitflags-1.3.2 | ||
| 42484 | rust-bitflags-2.11.0 | ||
| 42485 | rust-block-buffer-0.10.4 | ||
| 42486 | rust-block2-0.6.2 | ||
| 42487 | rust-bstr-1.12.1 | ||
| 42488 | rust-bumpalo-3.20.2 | ||
| 42489 | rust-bytemuck-1.25.0 | ||
| 42490 | rust-castaway-0.2.4 | ||
| 42491 | rust-cc-1.2.56 | ||
| 42492 | rust-cfg-if-1.0.4 | ||
| 42493 | rust-cfg-aliases-0.2.1 | ||
| 42494 | rust-chacha20-0.10.0 | ||
| 42495 | rust-chrono-0.4.44 | ||
| 42496 | rust-chrono-english-0.1.8 | ||
| 42497 | rust-clap-4.5.60 | ||
| 42498 | rust-clap-builder-4.5.60 | ||
| 42499 | rust-clap-derive-4.5.55 | ||
| 42500 | rust-clap-lex-1.0.0 | ||
| 42501 | rust-colorchoice-1.0.4 | ||
| 42502 | rust-compact-str-0.9.0 | ||
| 42503 | rust-convert-case-0.10.0 | ||
| 42504 | rust-core-foundation-sys-0.8.7 | ||
| 42505 | rust-cpufeatures-0.2.17 | ||
| 42506 | rust-cpufeatures-0.3.0 | ||
| 42507 | rust-crossterm-0.29.0 | ||
| 42508 | rust-crossterm-winapi-0.9.1 | ||
| 42509 | rust-crypto-common-0.1.7 | ||
| 42510 | rust-csscolorparser-0.6.2 | ||
| 42511 | rust-ctrlc-3.5.2 | ||
| 42512 | rust-darling-0.23.0 | ||
| 42513 | rust-darling-core-0.23.0 | ||
| 42514 | rust-darling-macro-0.23.0 | ||
| 42515 | rust-deltae-0.3.2 | ||
| 42516 | rust-deranged-0.5.8 | ||
| 42517 | rust-derive-more-2.1.1 | ||
| 42518 | rust-derive-more-impl-2.1.1 | ||
| 42519 | rust-digest-0.10.7 | ||
| 42520 | rust-dirs-6.0.0 | ||
| 42521 | rust-dirs-sys-0.5.0 | ||
| 42522 | rust-dispatch2-0.3.1 | ||
| 42523 | rust-displaydoc-0.2.5 | ||
| 42524 | rust-document-features-0.2.12 | ||
| 42525 | rust-either-1.15.0 | ||
| 42526 | rust-equivalent-1.0.2 | ||
| 42527 | rust-errno-0.3.14 | ||
| 42528 | rust-euclid-0.22.13 | ||
| 42529 | rust-fancy-regex-0.11.0 | ||
| 42530 | rust-filedescriptor-0.8.3 | ||
| 42531 | rust-find-msvc-tools-0.1.9 | ||
| 42532 | rust-finl-unicode-1.4.0 | ||
| 42533 | rust-fixedbitset-0.4.2 | ||
| 42534 | rust-fnv-1.0.7 | ||
| 42535 | rust-foldhash-0.1.5 | ||
| 42536 | rust-foldhash-0.2.0 | ||
| 42537 | rust-form-urlencoded-1.2.2 | ||
| 42538 | rust-generic-array-0.14.7 | ||
| 42539 | rust-getrandom-0.2.17 | ||
| 42540 | rust-getrandom-0.3.4 | ||
| 42541 | rust-getrandom-0.4.2 | ||
| 42542 | rust-git2-0.20.4 | ||
| 42543 | rust-globset-0.4.18 | ||
| 42544 | rust-hashbrown-0.15.5 | ||
| 42545 | rust-hashbrown-0.16.1 | ||
| 42546 | rust-heck-0.5.0 | ||
| 42547 | rust-hex-0.4.3 | ||
| 42548 | rust-iana-time-zone-0.1.65 | ||
| 42549 | rust-iana-time-zone-haiku-0.1.2 | ||
| 42550 | rust-icu-collections-2.1.1 | ||
| 42551 | rust-icu-locale-core-2.1.1 | ||
| 42552 | rust-icu-normalizer-2.1.1 | ||
| 42553 | rust-icu-normalizer-data-2.1.1 | ||
| 42554 | rust-icu-properties-2.1.2 | ||
| 42555 | rust-icu-properties-data-2.1.2 | ||
| 42556 | rust-icu-provider-2.1.1 | ||
| 42557 | rust-id-arena-2.3.0 | ||
| 42558 | rust-ident-case-1.0.1 | ||
| 42559 | rust-idna-1.1.0 | ||
| 42560 | rust-idna-adapter-1.2.1 | ||
| 42561 | rust-indexmap-2.13.0 | ||
| 42562 | rust-indoc-2.0.7 | ||
| 42563 | rust-instability-0.3.11 | ||
| 42564 | rust-is-terminal-polyfill-1.70.2 | ||
| 42565 | rust-itertools-0.14.0 | ||
| 42566 | rust-itoa-1.0.17 | ||
| 42567 | rust-jobserver-0.1.34 | ||
| 42568 | rust-js-sys-0.3.91 | ||
| 42569 | rust-kasuari-0.4.11 | ||
| 42570 | rust-lab-0.11.0 | ||
| 42571 | rust-lazy-static-1.5.0 | ||
| 42572 | rust-leb128fmt-0.1.0 | ||
| 42573 | rust-libc-0.2.183 | ||
| 42574 | rust-libgit2-sys-0.18.3+1.9.2 | ||
| 42575 | rust-libredox-0.1.14 | ||
| 42576 | rust-libssh2-sys-0.3.1 | ||
| 42577 | rust-libz-sys-1.1.25 | ||
| 42578 | rust-line-clipping-0.3.5 | ||
| 42579 | rust-linux-raw-sys-0.12.1 | ||
| 42580 | rust-litemap-0.8.1 | ||
| 42581 | rust-litrs-1.0.0 | ||
| 42582 | rust-lock-api-0.4.14 | ||
| 42583 | rust-log-0.4.29 | ||
| 42584 | rust-lru-0.16.3 | ||
| 42585 | rust-mac-address-1.1.8 | ||
| 42586 | rust-memchr-2.8.0 | ||
| 42587 | rust-memmem-0.1.1 | ||
| 42588 | rust-memoffset-0.9.1 | ||
| 42589 | rust-minimal-lexical-0.2.1 | ||
| 42590 | rust-mio-1.1.1 | ||
| 42591 | rust-nix-0.29.0 | ||
| 42592 | rust-nix-0.31.2 | ||
| 42593 | rust-nom-7.1.3 | ||
| 42594 | rust-num-conv-0.2.0 | ||
| 42595 | rust-num-derive-0.4.2 | ||
| 42596 | rust-num-traits-0.2.19 | ||
| 42597 | rust-num-threads-0.1.7 | ||
| 42598 | rust-objc2-0.6.4 | ||
| 42599 | rust-objc2-encode-4.1.0 | ||
| 42600 | rust-once-cell-1.21.3 | ||
| 42601 | rust-once-cell-polyfill-1.70.2 | ||
| 42602 | rust-openssl-probe-0.1.6 | ||
| 42603 | rust-openssl-src-300.5.5+3.5.5 | ||
| 42604 | rust-openssl-sys-0.9.111 | ||
| 42605 | rust-option-ext-0.2.0 | ||
| 42606 | rust-ordered-float-4.6.0 | ||
| 42607 | rust-parking-lot-0.12.5 | ||
| 42608 | rust-parking-lot-core-0.9.12 | ||
| 42609 | rust-percent-encoding-2.3.2 | ||
| 42610 | rust-pest-2.8.6 | ||
| 42611 | rust-pest-derive-2.8.6 | ||
| 42612 | rust-pest-generator-2.8.6 | ||
| 42613 | rust-pest-meta-2.8.6 | ||
| 42614 | rust-phf-0.11.3 | ||
| 42615 | rust-phf-codegen-0.11.3 | ||
| 42616 | rust-phf-generator-0.11.3 | ||
| 42617 | rust-phf-macros-0.11.3 | ||
| 42618 | rust-phf-shared-0.11.3 | ||
| 42619 | rust-pkg-config-0.3.32 | ||
| 42620 | rust-portable-atomic-1.13.1 | ||
| 42621 | rust-potential-utf-0.1.4 | ||
| 42622 | rust-powerfmt-0.2.0 | ||
| 42623 | rust-prettyplease-0.2.37 | ||
| 42624 | rust-proc-macro2-1.0.106 | ||
| 42625 | rust-quote-1.0.45 | ||
| 42626 | rust-r-efi-5.3.0 | ||
| 42627 | rust-r-efi-6.0.0 | ||
| 42628 | rust-rand-0.8.5 | ||
| 42629 | rust-rand-0.10.0 | ||
| 42630 | rust-rand-core-0.6.4 | ||
| 42631 | rust-rand-core-0.10.0 | ||
| 42632 | rust-ratatui-0.30.0 | ||
| 42633 | rust-ratatui-core-0.1.0 | ||
| 42634 | rust-ratatui-crossterm-0.1.0 | ||
| 42635 | rust-ratatui-macros-0.7.0 | ||
| 42636 | rust-ratatui-termwiz-0.1.0 | ||
| 42637 | rust-ratatui-widgets-0.3.0 | ||
| 42638 | rust-redox-syscall-0.5.18 | ||
| 42639 | rust-redox-users-0.5.2 | ||
| 42640 | rust-regex-1.12.3 | ||
| 42641 | rust-regex-automata-0.4.14 | ||
| 42642 | rust-regex-syntax-0.8.10 | ||
| 42643 | rust-rustc-version-0.4.1 | ||
| 42644 | rust-rustix-1.1.4 | ||
| 42645 | rust-rustversion-1.0.22 | ||
| 42646 | rust-ryu-1.0.23 | ||
| 42647 | rust-scanlex-0.1.4 | ||
| 42648 | rust-scopeguard-1.2.0 | ||
| 42649 | rust-semver-1.0.27 | ||
| 42650 | rust-serde-1.0.228 | ||
| 42651 | rust-serde-core-1.0.228 | ||
| 42652 | rust-serde-derive-1.0.228 | ||
| 42653 | rust-serde-json-1.0.149 | ||
| 42654 | rust-serde-spanned-1.0.4 | ||
| 42655 | rust-sha2-0.10.9 | ||
| 42656 | rust-shlex-1.3.0 | ||
| 42657 | rust-signal-hook-0.3.18 | ||
| 42658 | rust-signal-hook-mio-0.2.5 | ||
| 42659 | rust-signal-hook-registry-1.4.8 | ||
| 42660 | rust-siphasher-1.0.2 | ||
| 42661 | rust-smallvec-1.15.1 | ||
| 42662 | rust-stable-deref-trait-1.2.1 | ||
| 42663 | rust-static-assertions-1.1.0 | ||
| 42664 | rust-streaming-iterator-0.1.9 | ||
| 42665 | rust-strsim-0.11.1 | ||
| 42666 | rust-strum-0.27.2 | ||
| 42667 | rust-strum-macros-0.27.2 | ||
| 42668 | rust-syn-1.0.109 | ||
| 42669 | rust-syn-2.0.117 | ||
| 42670 | rust-synstructure-0.13.2 | ||
| 42671 | rust-terminfo-0.9.0 | ||
| 42672 | rust-termios-0.3.3 | ||
| 42673 | rust-termwiz-0.23.3 | ||
| 42674 | rust-thiserror-1.0.69 | ||
| 42675 | rust-thiserror-2.0.18 | ||
| 42676 | rust-thiserror-impl-1.0.69 | ||
| 42677 | rust-thiserror-impl-2.0.18 | ||
| 42678 | rust-time-0.3.47 | ||
| 42679 | rust-time-core-0.1.8 | ||
| 42680 | rust-tinystr-0.8.2 | ||
| 42681 | rust-toml-1.0.6+spec-1.1.0 | ||
| 42682 | rust-toml-datetime-1.0.0+spec-1.1.0 | ||
| 42683 | rust-toml-edit-0.25.4+spec-1.1.0 | ||
| 42684 | rust-toml-parser-1.0.9+spec-1.1.0 | ||
| 42685 | rust-toml-writer-1.0.6+spec-1.1.0 | ||
| 42686 | rust-tree-sitter-0.25.10 | ||
| 42687 | rust-tree-sitter-bash-0.25.1 | ||
| 42688 | rust-tree-sitter-c-0.24.1 | ||
| 42689 | rust-tree-sitter-c-sharp-0.23.1 | ||
| 42690 | rust-tree-sitter-clojure-0.1.0 | ||
| 42691 | rust-tree-sitter-cpp-0.23.4 | ||
| 42692 | rust-tree-sitter-css-0.25.0 | ||
| 42693 | rust-tree-sitter-dart-0.0.4 | ||
| 42694 | rust-tree-sitter-elixir-0.3.5 | ||
| 42695 | rust-tree-sitter-erlang-0.15.0 | ||
| 42696 | rust-tree-sitter-go-0.25.0 | ||
| 42697 | rust-tree-sitter-haskell-0.23.1 | ||
| 42698 | rust-tree-sitter-html-0.23.2 | ||
| 42699 | rust-tree-sitter-java-0.23.5 | ||
| 42700 | rust-tree-sitter-javascript-0.25.0 | ||
| 42701 | rust-tree-sitter-json-0.24.8 | ||
| 42702 | rust-tree-sitter-kotlin-ng-1.1.0 | ||
| 42703 | rust-tree-sitter-language-0.1.7 | ||
| 42704 | rust-tree-sitter-lua-0.4.1 | ||
| 42705 | rust-tree-sitter-md-0.5.3 | ||
| 42706 | rust-tree-sitter-php-0.24.2 | ||
| 42707 | rust-tree-sitter-python-0.25.0 | ||
| 42708 | rust-tree-sitter-ruby-0.23.1 | ||
| 42709 | rust-tree-sitter-rust-0.24.0 | ||
| 42710 | rust-tree-sitter-scala-0.24.0 | ||
| 42711 | rust-tree-sitter-svelte-ng-1.0.2 | ||
| 42712 | rust-tree-sitter-swift-0.7.1 | ||
| 42713 | rust-tree-sitter-typescript-0.23.2 | ||
| 42714 | rust-tree-sitter-xml-0.7.0 | ||
| 42715 | rust-tree-sitter-yaml-0.7.2 | ||
| 42716 | rust-tree-sitter-zig-1.1.2 | ||
| 42717 | rust-typenum-1.19.0 | ||
| 42718 | rust-ucd-trie-0.1.7 | ||
| 42719 | rust-unicode-ident-1.0.24 | ||
| 42720 | rust-unicode-segmentation-1.12.0 | ||
| 42721 | rust-unicode-truncate-2.0.1 | ||
| 42722 | rust-unicode-width-0.2.2 | ||
| 42723 | rust-unicode-xid-0.2.6 | ||
| 42724 | rust-url-2.5.8 | ||
| 42725 | rust-utf8-iter-1.0.4 | ||
| 42726 | rust-utf8parse-0.2.2 | ||
| 42727 | rust-uuid-1.22.0 | ||
| 42728 | rust-vcpkg-0.2.15 | ||
| 42729 | rust-version-check-0.9.5 | ||
| 42730 | rust-vtparse-0.6.2 | ||
| 42731 | rust-wasi-0.11.1+wasi-snapshot-preview1 | ||
| 42732 | rust-wasip2-1.0.2+wasi-0.2.9 | ||
| 42733 | rust-wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06 | ||
| 42734 | rust-wasm-bindgen-0.2.114 | ||
| 42735 | rust-wasm-bindgen-macro-0.2.114 | ||
| 42736 | rust-wasm-bindgen-macro-support-0.2.114 | ||
| 42737 | rust-wasm-bindgen-shared-0.2.114 | ||
| 42738 | rust-wasm-encoder-0.244.0 | ||
| 42739 | rust-wasm-metadata-0.244.0 | ||
| 42740 | rust-wasmparser-0.244.0 | ||
| 42741 | rust-wezterm-bidi-0.2.3 | ||
| 42742 | rust-wezterm-blob-leases-0.1.1 | ||
| 42743 | rust-wezterm-color-types-0.3.0 | ||
| 42744 | rust-wezterm-dynamic-0.2.1 | ||
| 42745 | rust-wezterm-dynamic-derive-0.1.1 | ||
| 42746 | rust-wezterm-input-types-0.1.0 | ||
| 42747 | rust-winapi-0.3.9 | ||
| 42748 | rust-winapi-i686-pc-windows-gnu-0.4.0 | ||
| 42749 | rust-winapi-x86-64-pc-windows-gnu-0.4.0 | ||
| 42750 | rust-windows-core-0.62.2 | ||
| 42751 | rust-windows-implement-0.60.2 | ||
| 42752 | rust-windows-interface-0.59.3 | ||
| 42753 | rust-windows-link-0.2.1 | ||
| 42754 | rust-windows-result-0.4.1 | ||
| 42755 | rust-windows-strings-0.5.1 | ||
| 42756 | rust-windows-sys-0.61.2 | ||
| 42757 | rust-winnow-0.7.15 | ||
| 42758 | rust-wit-bindgen-0.51.0 | ||
| 42759 | rust-wit-bindgen-core-0.51.0 | ||
| 42760 | rust-wit-bindgen-rust-0.51.0 | ||
| 42761 | rust-wit-bindgen-rust-macro-0.51.0 | ||
| 42762 | rust-wit-component-0.244.0 | ||
| 42763 | rust-wit-parser-0.244.0 | ||
| 42764 | rust-writeable-0.6.2 | ||
| 42765 | rust-yoke-0.8.1 | ||
| 42766 | rust-yoke-derive-0.8.1 | ||
| 42767 | rust-zerofrom-0.1.6 | ||
| 42768 | rust-zerofrom-derive-0.1.6 | ||
| 42769 | rust-zerotrie-0.2.3 | ||
| 42770 | rust-zerovec-0.11.5 | ||
| 42771 | rust-zerovec-derive-0.11.2 | ||
| 42772 | rust-zmij-1.0.21)) | ||
| 42366 | (gitoxide => | 42773 | (gitoxide => |
| 42367 | (list rust-adler2-2.0.1 | 42774 | (list rust-adler2-2.0.1 |
| 42368 | rust-aho-corasick-1.1.4 | 42775 | rust-aho-corasick-1.1.4 |
