diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-04-26 17:47:37 +0200 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-04-26 22:47:11 +0200 |
| commit | a1a82d252573dde7694078006f93cec12d7acb37 (patch) | |
| tree | 25e562596dc110d0da625f0c20ca8235231c736d | |
| parent | ecda809fd454fa1574616ecfcd695678238e3aca (diff) | |
gnu: codex: Update to 0.124.0.
* gnu/packages/patches/rust-codex-0.124.0-code-mode-stub-toolname.patch: New file.
* gnu/packages/patches/rust-codex-0.124.0-remove-patch-sections.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add references to them.
* gnu/packages/codex.scm (codex): Update to 0.124.0.
* gnu/packages/rust-crates.scm: Update.
* gnu/packages/rust-sources.scm (rust-codex-0.124.0): New variable.
Change-Id: I90570206d39c533edfc6d70e229ee3f7eda9dcf2
| -rw-r--r-- | gnu/local.mk | 2 | ||||
| -rw-r--r-- | gnu/packages/codex.scm | 252 | ||||
| -rw-r--r-- | gnu/packages/patches/rust-codex-0.124.0-code-mode-stub-toolname.patch | 25 | ||||
| -rw-r--r-- | gnu/packages/patches/rust-codex-0.124.0-remove-patch-sections.patch | 29 | ||||
| -rw-r--r-- | gnu/packages/rust-crates.scm | 1842 | ||||
| -rw-r--r-- | gnu/packages/rust-sources.scm | 162 |
6 files changed, 2249 insertions, 63 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index 361ced31d6f..da0e3f7ab6c 100644 --- a/gnu/local.mk +++ b/gnu/local.mk | |||
| @@ -2400,6 +2400,8 @@ dist_patch_DATA = \ | |||
| 2400 | %D%/packages/patches/rust-codex-0.120.0-connectors-cache-test-race.patch \ | 2400 | %D%/packages/patches/rust-codex-0.120.0-connectors-cache-test-race.patch \ |
| 2401 | %D%/packages/patches/rust-codex-0.120.0-remove-libwebrtc.patch \ | 2401 | %D%/packages/patches/rust-codex-0.120.0-remove-libwebrtc.patch \ |
| 2402 | %D%/packages/patches/rust-codex-0.120.0-test-timeout.patch \ | 2402 | %D%/packages/patches/rust-codex-0.120.0-test-timeout.patch \ |
| 2403 | %D%/packages/patches/rust-codex-0.124.0-code-mode-stub-toolname.patch \ | ||
| 2404 | %D%/packages/patches/rust-codex-0.124.0-remove-patch-sections.patch \ | ||
| 2403 | %D%/packages/patches/rust-ring-0.17-ring-core.patch \ | 2405 | %D%/packages/patches/rust-ring-0.17-ring-core.patch \ |
| 2404 | %D%/packages/patches/rw-igraph-0.10.patch \ | 2406 | %D%/packages/patches/rw-igraph-0.10.patch \ |
| 2405 | %D%/packages/patches/rxvt-unicode-fix-cursor-position.patch \ | 2407 | %D%/packages/patches/rxvt-unicode-fix-cursor-position.patch \ |
diff --git a/gnu/packages/codex.scm b/gnu/packages/codex.scm index 3be606801d3..45ce360fd02 100644 --- a/gnu/packages/codex.scm +++ b/gnu/packages/codex.scm | |||
| @@ -18,10 +18,10 @@ | |||
| 18 | 18 | ||
| 19 | ;;; This module is separate from (gnu packages rust-apps) to avoid a | 19 | ;;; This module is separate from (gnu packages rust-apps) to avoid a |
| 20 | ;;; circular module dependency: (gnu packages rust-sources), which | 20 | ;;; circular module dependency: (gnu packages rust-sources), which |
| 21 | ;;; defines rust-codex-0.120.0, transitively loads (gnu packages | 21 | ;;; defines rust-codex-0.124.0, transitively loads (gnu packages |
| 22 | ;;; rust-apps) through its #:use-module chain. If the codex package | 22 | ;;; rust-apps) through its #:use-module chain. If the codex package |
| 23 | ;;; lived in rust-apps.scm, loading rust-sources would trigger loading | 23 | ;;; lived in rust-apps.scm, loading rust-sources would trigger loading |
| 24 | ;;; rust-apps before rust-codex-0.120.0 is defined, causing an unbound | 24 | ;;; rust-apps before rust-codex-0.124.0 is defined, causing an unbound |
| 25 | ;;; variable error. | 25 | ;;; variable error. |
| 26 | 26 | ||
| 27 | (define-module (gnu packages codex) | 27 | (define-module (gnu packages codex) |
| @@ -54,14 +54,14 @@ | |||
| 54 | (define-public codex | 54 | (define-public codex |
| 55 | (package | 55 | (package |
| 56 | (name "codex") | 56 | (name "codex") |
| 57 | (version (package-version rust-codex-0.120.0)) | 57 | (version (package-version rust-codex-0.124.0)) |
| 58 | (source | 58 | (source |
| 59 | (origin | 59 | (origin |
| 60 | (inherit (package-source rust-codex-0.120.0)) | 60 | (inherit (package-source rust-codex-0.124.0)) |
| 61 | (patches (search-patches | 61 | (patches (search-patches |
| 62 | "codex-acp-0.11.1-disable-code-mode.patch" | 62 | "codex-acp-0.11.1-disable-code-mode.patch" |
| 63 | "rust-codex-0.117.0-remove-patch-sections.patch" | 63 | "rust-codex-0.124.0-code-mode-stub-toolname.patch" |
| 64 | "rust-codex-0.120.0-connectors-cache-test-race.patch" | 64 | "rust-codex-0.124.0-remove-patch-sections.patch" |
| 65 | "rust-codex-0.120.0-remove-libwebrtc.patch" | 65 | "rust-codex-0.120.0-remove-libwebrtc.patch" |
| 66 | "rust-codex-0.98.0-test-shebangs.patch" | 66 | "rust-codex-0.98.0-test-shebangs.patch" |
| 67 | "rust-codex-0.120.0-test-timeout.patch")))) | 67 | "rust-codex-0.120.0-test-timeout.patch")))) |
| @@ -69,7 +69,12 @@ | |||
| 69 | (arguments | 69 | (arguments |
| 70 | (list | 70 | (list |
| 71 | #:install-source? #f | 71 | #:install-source? #f |
| 72 | #:cargo-install-paths '(list "cli" "exec" "exec-server" | 72 | ;; exec-server is library-only in 0.124 (no [[bin]] in |
| 73 | ;; exec-server/Cargo.toml); cargo install --path exec-server fails | ||
| 74 | ;; with "no packages found with binaries or examples". Drop it | ||
| 75 | ;; from the install paths -- the library is consumed via the | ||
| 76 | ;; workspace by other binaries here, not installed standalone. | ||
| 77 | #:cargo-install-paths '(list "cli" "exec" | ||
| 73 | "linux-sandbox" "mcp-server" | 78 | "linux-sandbox" "mcp-server" |
| 74 | "app-server" "tui") | 79 | "app-server" "tui") |
| 75 | ;; schema_fixtures_match_generated (upstream fixture is stale: | 80 | ;; schema_fixtures_match_generated (upstream fixture is stale: |
| @@ -317,7 +322,164 @@ | |||
| 317 | ;; (chatgpt.com, api.github.com) wait | 322 | ;; (chatgpt.com, api.github.com) wait |
| 318 | ;; for TCP timeout instead of failing | 323 | ;; for TCP timeout instead of failing |
| 319 | ;; instantly at TLS, eating the budget. | 324 | ;; instantly at TLS, eating the budget. |
| 320 | "--skip" "mcp_server_status_list_tools_and_auth_only_skips_slow_inventory_calls") | 325 | "--skip" "mcp_server_status_list_tools_and_auth_only_skips_slow_inventory_calls" |
| 326 | ;;; BEGIN Stack overflow in 'current_thread' | ||
| 327 | ;;; tokio runtime. The sibling tests in | ||
| 328 | ;;; tracing_tests.rs use the local helper | ||
| 329 | ;;; run_current_thread_test_with_stack | ||
| 330 | ;;; (4 MiB) but this one uses bare | ||
| 331 | ;;; #[tokio::test] on the 2 MiB default | ||
| 332 | ;;; test-thread stack, and TurnStart's | ||
| 333 | ;;; future graph exceeds it. With | ||
| 334 | ;;; RUST_MIN_STACK raised the overflow is | ||
| 335 | ;;; gone but the test then deterministically | ||
| 336 | ;;; times out waiting for a span tagged | ||
| 337 | ;;; codex.op = "user_input" on the remote | ||
| 338 | ;;; trace that upstream never emits on that | ||
| 339 | ;;; trace in our environment. | ||
| 340 | "--skip" "turn_start_jsonrpc_span_parents_core_turn_spans" | ||
| 341 | ;;; END tracing test stack/timeout | ||
| 342 | ;;; BEGIN The upstream loader resolves the | ||
| 343 | ;;; MCP OAuth credentials store mode by | ||
| 344 | ;;; calling | ||
| 345 | ;;; resolve_mcp_oauth_credentials_store_mode | ||
| 346 | ;;; with env!("CARGO_PKG_VERSION") -- which | ||
| 347 | ;;; in the released 0.124.0 tarball is | ||
| 348 | ;;; "0.124.0". These fixture tests | ||
| 349 | ;;; construct the expected Config by | ||
| 350 | ;;; passing the LOCAL_DEV_BUILD_VERSION | ||
| 351 | ;;; constant ("0.0.0") to the same | ||
| 352 | ;;; resolver, and the resolver only returns | ||
| 353 | ;;; File for "0.0.0" -- Auto otherwise. | ||
| 354 | ;;; Upstream CI builds from a checkout | ||
| 355 | ;;; still carrying version = "0.0.0" so the | ||
| 356 | ;;; tests pass there; they cannot pass | ||
| 357 | ;;; against a released tag. | ||
| 358 | "--skip" "test_precedence_fixture_with_gpt3_profile" | ||
| 359 | "--skip" "test_precedence_fixture_with_gpt5_profile" | ||
| 360 | "--skip" "test_precedence_fixture_with_o3_profile" | ||
| 361 | "--skip" "test_precedence_fixture_with_zdr_profile" | ||
| 362 | ;;; END LOCAL_DEV_BUILD_VERSION fixture mismatch | ||
| 363 | ;;; BEGIN Verifies that Codex's user-shell | ||
| 364 | ;;; spawn produces a child where | ||
| 365 | ;;; CODEX_SANDBOX_NETWORK_DISABLED is unset | ||
| 366 | ;;; (asserts stdout == "not-set"). We | ||
| 367 | ;;; deliberately set that env var at the | ||
| 368 | ;;; check phase to trigger upstream's | ||
| 369 | ;;; skip_if_no_network! guards; the var then | ||
| 370 | ;;; leaks into the spawned shell and the | ||
| 371 | ;;; assertion fails. The guix skip is a | ||
| 372 | ;;; direct cost of the network-gate fix -- | ||
| 373 | ;;; trading one broken test for two that | ||
| 374 | ;;; now skip cleanly. | ||
| 375 | "--skip" "user_shell_command_does_not_set_network_sandbox_env_var" | ||
| 376 | ;;; END CODEX_SANDBOX_NETWORK_DISABLED leak | ||
| 377 | ;;; BEGIN The exec-server/tests/file_system | ||
| 378 | ;;; integration tests invoke the real | ||
| 379 | ;;; system bwrap, which tries to execvp the | ||
| 380 | ;;; test binary at the cargo target path | ||
| 381 | ;;; under the build dir. Same root cause | ||
| 382 | ;;; as the existing | ||
| 383 | ;;; sandbox_reenables_writable_subpaths_under_unreadable_parents | ||
| 384 | ;;; skip: guix builds live under /tmp but | ||
| 385 | ;;; bwrap's mount namespace excludes /tmp, | ||
| 386 | ;;; making the binary invisible inside the | ||
| 387 | ;;; namespace. | ||
| 388 | "--skip" "file_system_copy_preserves_symlink_source" | ||
| 389 | "--skip" "file_system_copy_rejects_symlink_escape_destination" | ||
| 390 | "--skip" "file_system_copy_rejects_symlink_escape_source" | ||
| 391 | "--skip" "file_system_create_directory_rejects_symlink_escape" | ||
| 392 | "--skip" "file_system_read_directory_rejects_symlink_escape" | ||
| 393 | "--skip" "file_system_remove_rejects_symlink_escape" | ||
| 394 | "--skip" "file_system_remove_removes_symlink_not_target" | ||
| 395 | "--skip" "file_system_sandboxed_read_allows_readable_root" | ||
| 396 | "--skip" "file_system_sandboxed_read_rejects_symlink_escape" | ||
| 397 | "--skip" "file_system_sandboxed_read_rejects_symlink_parent_dotdot_escape" | ||
| 398 | "--skip" "file_system_sandboxed_write_allows_additional_write_root" | ||
| 399 | "--skip" "file_system_sandboxed_write_rejects_symlink_escape" | ||
| 400 | "--skip" "file_system_sandboxed_write_rejects_unwritable_path" | ||
| 401 | ;;; END bwrap-cant-see-/tmp file_system tests | ||
| 402 | ;;; BEGIN Landlock is unavailable on Guix, | ||
| 403 | ;;; so the sandbox cannot deny network | ||
| 404 | ;;; syscalls. These tests expect | ||
| 405 | ;;; SandboxErr::Denied for the nc, ping, | ||
| 406 | ;;; ssh, getent, and dev_tcp_redirection | ||
| 407 | ;;; commands but those commands instead | ||
| 408 | ;;; block on connect() until the test's 2s | ||
| 409 | ;;; timeout fires (Timeout, exit 124). | ||
| 410 | ;;; Same root cause as the Landlock skips | ||
| 411 | ;;; at the top of this list; new test names | ||
| 412 | ;;; in 0.124. | ||
| 413 | "--skip" "sandbox_blocks_nc" | ||
| 414 | "--skip" "sandbox_blocks_ping" | ||
| 415 | "--skip" "sandbox_blocks_dev_tcp_redirection" | ||
| 416 | "--skip" "sandbox_blocks_getent" | ||
| 417 | "--skip" "sandbox_blocks_ssh" | ||
| 418 | ;;; END Landlock network block | ||
| 419 | ;;; BEGIN Requires github.com network access. | ||
| 420 | ;;; With no "extraKnownMarketplaces" entry | ||
| 421 | ;;; in settings.json, | ||
| 422 | ;;; collect_marketplace_import_sources | ||
| 423 | ;;; inserts a fallback entry for the | ||
| 424 | ;;; "claude-plugins-official" marketplace | ||
| 425 | ;;; pointing at the github shorthand | ||
| 426 | ;;; "anthropics/claude-plugins-official". | ||
| 427 | ;;; add_marketplace -> parse_marketplace_source | ||
| 428 | ;;; expands that to a github.com/.git URL | ||
| 429 | ;;; and clone_git_source runs 'git clone'. | ||
| 430 | ;;; The Guix build sandbox has no network, | ||
| 431 | ;;; so the clone fails and the marketplace | ||
| 432 | ;;; lands in failed_marketplaces. No mock | ||
| 433 | ;;; cloner is injected via | ||
| 434 | ;;; ExternalAgentConfigService::new_for_test, | ||
| 435 | ;;; so there is no in-tree way to satisfy | ||
| 436 | ;;; the test offline. | ||
| 437 | "--skip" "import_plugins_infers_claude_official_marketplace_when_missing_from_settings" | ||
| 438 | ;;; END github.com network access | ||
| 439 | ;;; BEGIN Async race between the rollout | ||
| 440 | ;;; writer task and a direct SQLite read. | ||
| 441 | ;;; The test calls | ||
| 442 | ;;; update_memory_settings_with_app_server, | ||
| 443 | ;;; which routes through the in-memory | ||
| 444 | ;;; thread path on the app-server's | ||
| 445 | ;;; ThreadMemoryModeSet handler -> | ||
| 446 | ;;; Session::set_thread_memory_mode -> | ||
| 447 | ;;; persist_thread_memory_mode_update, | ||
| 448 | ;;; which writes a RolloutItem::SessionMeta | ||
| 449 | ;;; with the new mode to the rollout file | ||
| 450 | ;;; via recorder.record_items + flush. The | ||
| 451 | ;;; rollout writer task then asynchronously | ||
| 452 | ;;; calls sync_thread_state_after_write, | ||
| 453 | ;;; which calls state_db::apply_rollout_items | ||
| 454 | ;;; to mirror the SessionMeta into SQLite. | ||
| 455 | ;;; flush() only awaits the rollout-file | ||
| 456 | ;;; write, not the subsequent SQLite sync. | ||
| 457 | ;;; The test opens a fresh StateRuntime and | ||
| 458 | ;;; reads get_thread_memory_mode | ||
| 459 | ;;; immediately, so it observes the creation | ||
| 460 | ;;; default of "enabled" written by | ||
| 461 | ;;; upsert_thread_with_creation_memory_mode | ||
| 462 | ;;; instead of the new "disabled". Upstream | ||
| 463 | ;;; CI wins this race; we lose. | ||
| 464 | "--skip" "update_memory_settings_updates_current_thread_memory_mode" | ||
| 465 | ;;; END memory-mode rollout/sqlite race | ||
| 466 | ;;; BEGIN The Stopwatch::new constructor in | ||
| 467 | ;;; codex_shell_escalation anchors | ||
| 468 | ;;; T0 = Instant::now() at construction; | ||
| 469 | ;;; the spawned cancellation task fires at | ||
| 470 | ;;; T0 + limit. The test captures | ||
| 471 | ;;; start = Instant::now() at T1 > T0 (after | ||
| 472 | ;;; cancellation_token() returns) and | ||
| 473 | ;;; asserts start.elapsed() >= limit, | ||
| 474 | ;;; i.e. (T0 + limit) - T1 >= limit, which | ||
| 475 | ;;; is always false by the offset T1 - T0. | ||
| 476 | ;;; The test only passes when scheduler | ||
| 477 | ;;; jitter on the sleep wakeup happens to | ||
| 478 | ;;; exceed that offset. Upstream wins the | ||
| 479 | ;;; race; we don't always. | ||
| 480 | "--skip" "cancellation_receiver_fires_after_limit" | ||
| 481 | ;;; END Stopwatch construction/start offset race | ||
| 482 | ) | ||
| 321 | #:cargo-package-crates | 483 | #:cargo-package-crates |
| 322 | ''(;;; Tier 0: No internal deps. | 484 | ''(;;; Tier 0: No internal deps. |
| 323 | "codex-ansi-escape" | 485 | "codex-ansi-escape" |
| @@ -358,22 +520,31 @@ | |||
| 358 | "codex-debug-client" | 520 | "codex-debug-client" |
| 359 | "codex-analytics" | 521 | "codex-analytics" |
| 360 | "codex-rollout" | 522 | "codex-rollout" |
| 523 | "codex-rollout-trace" | ||
| 361 | "codex-terminal-detection" | 524 | "codex-terminal-detection" |
| 362 | "codex-utils-approval-presets" | 525 | "codex-utils-approval-presets" |
| 363 | "codex-utils-cli" | 526 | "codex-utils-cli" |
| 527 | "codex-uds" | ||
| 528 | "codex-install-context" | ||
| 529 | "codex-device-key" | ||
| 364 | ;;; Tier 2. | 530 | ;;; Tier 2. |
| 365 | "codex-app-server-protocol" | 531 | "codex-app-server-protocol" |
| 366 | "codex-rmcp-client" | 532 | "codex-rmcp-client" |
| 367 | "codex-otel" | 533 | "codex-otel" |
| 534 | "codex-thread-store" | ||
| 368 | "codex-state" | 535 | "codex-state" |
| 369 | "codex-features" | 536 | "codex-features" |
| 537 | "codex-model-provider" | ||
| 370 | "codex-config" | 538 | "codex-config" |
| 539 | "codex-agent-identity" | ||
| 540 | "codex-aws-auth" | ||
| 371 | "codex-hooks" | 541 | "codex-hooks" |
| 372 | "codex-instructions" | ||
| 373 | "codex-code-mode" | 542 | "codex-code-mode" |
| 374 | "codex-feedback" | 543 | "codex-feedback" |
| 375 | "codex-skills" | 544 | "codex-skills" |
| 545 | "codex-test-binary-support" | ||
| 376 | "codex-core" | 546 | "codex-core" |
| 547 | "codex-core-plugins" | ||
| 377 | "codex-utils-sandbox-summary" | 548 | "codex-utils-sandbox-summary" |
| 378 | "codex-linux-sandbox" | 549 | "codex-linux-sandbox" |
| 379 | "codex-sandboxing" | 550 | "codex-sandboxing" |
| @@ -425,7 +596,7 @@ | |||
| 425 | ;; Update them to match the actual package version. | 596 | ;; Update them to match the actual package version. |
| 426 | (let ((snap-files (find-files "." "\\.snap$"))) | 597 | (let ((snap-files (find-files "." "\\.snap$"))) |
| 427 | (substitute* snap-files | 598 | (substitute* snap-files |
| 428 | (("\\(v0\\.0\\.0\\) ") "(v0.120.0) "))))) | 599 | (("\\(v0\\.0\\.0\\) ") "(v0.124.0) "))))) |
| 429 | (add-after 'chdir-to-workspace 'patch-git-deps-to-vendor | 600 | (add-after 'chdir-to-workspace 'patch-git-deps-to-vendor |
| 430 | (lambda _ | 601 | (lambda _ |
| 431 | ;; Replace git dependencies with version references so cargo | 602 | ;; Replace git dependencies with version references so cargo |
| @@ -436,32 +607,55 @@ | |||
| 436 | (("runfiles = \\{ git = [^}]+\\}") | 607 | (("runfiles = \\{ git = [^}]+\\}") |
| 437 | "runfiles = \"0.1.0\"")) | 608 | "runfiles = \"0.1.0\"")) |
| 438 | ;; Remove workspace members that have unbuildable deps | 609 | ;; Remove workspace members that have unbuildable deps |
| 439 | ;; (libwebrtc requires git fetch, v8-poc requires V8). | 610 | ;; (v8-poc requires V8). code-mode stays a workspace member |
| 611 | ;; so its codex-protocol resolves to the same local copy as | ||
| 612 | ;; the rest of the build; disabling its default features | ||
| 613 | ;; (below) avoids pulling in V8. | ||
| 440 | (substitute* "Cargo.toml" | 614 | (substitute* "Cargo.toml" |
| 441 | (("\"v8-poc\",") "") | 615 | (("\"v8-poc\",") "")) |
| 442 | (("\"code-mode\",") "")) | 616 | ;; Disable V8 runtime in codex-code-mode by turning off |
| 443 | ;; Disable V8 runtime in codex-code-mode: remove path | 617 | ;; default features. Keep path= so code-mode is resolved |
| 444 | ;; so cargo resolves it from the vendor (where it has | 618 | ;; from the local source tree and shares codex-protocol |
| 445 | ;; optional = true on v8) and disable default features. | 619 | ;; (and other workspace crates) with the rest of the build; |
| 620 | ;; resolving it from the vendor instead introduces a | ||
| 621 | ;; duplicate codex-protocol and causes E0308 type | ||
| 622 | ;; mismatches in codex-tools. | ||
| 446 | (substitute* "Cargo.toml" | 623 | (substitute* "Cargo.toml" |
| 447 | (("codex-code-mode = \\{ path = \"code-mode\" \\}") | 624 | (("codex-code-mode = \\{ path = \"code-mode\" \\}") |
| 448 | "codex-code-mode = { version = \"0.120.0\", default-features = false }")))) | 625 | "codex-code-mode = { path = \"code-mode\", default-features = false }")) |
| 626 | ;; cargo build at workspace root ignores per-dep | ||
| 627 | ;; default-features=false and builds code-mode with its | ||
| 628 | ;; own default features, which include v8-runtime and | ||
| 629 | ;; would pull in V8. Make the default feature empty. | ||
| 630 | (substitute* "code-mode/Cargo.toml" | ||
| 631 | (("^default = \\[\"v8-runtime\"\\]") "default = []")))) | ||
| 449 | (add-after 'patch-git-deps-to-vendor 'add-version-to-workspace-deps | 632 | (add-after 'patch-git-deps-to-vendor 'add-version-to-workspace-deps |
| 450 | (lambda _ | 633 | (lambda _ |
| 451 | ;; cargo package requires all dependencies to have versions. | 634 | ;; cargo package requires all dependencies to have versions. |
| 452 | ;; cargo package requires all dependencies to have versions. | 635 | ;; Add version = "0.124.0" to internal path dependencies. |
| 453 | ;; Add version = "0.120.0" to internal path dependencies. | ||
| 454 | (let ((cargo-files (find-files "." "^Cargo\\.toml$"))) | 636 | (let ((cargo-files (find-files "." "^Cargo\\.toml$"))) |
| 455 | (substitute* cargo-files | 637 | (substitute* cargo-files |
| 456 | ;; Handle inline deps: name = { path = "..." } | 638 | ;; Handle inline deps: name = { path = "..." } |
| 457 | (("(codex-[a-z0-9-]+) = \\{ path = " all name) | 639 | (("(codex-[a-z0-9-]+) = \\{ path = " all name) |
| 458 | (string-append name " = { version = \"0.120.0\", path = ")) | 640 | (string-append name " = { version = \"0.124.0\", path = ")) |
| 459 | ;; Handle inline deps with package: name = { package = "...", path = "..." } | 641 | ;; Handle inline deps with package: name = { package = "...", path = "..." } |
| 460 | (("(codex-[a-z0-9-]+) = \\{ package = " all name) | 642 | (("(codex-[a-z0-9-]+) = \\{ package = " all name) |
| 461 | (string-append name " = { version = \"0.120.0\", package = ")) | 643 | (string-append name " = { version = \"0.124.0\", package = ")) |
| 462 | ;; Handle section deps: [dependencies.X] with path = "..." | 644 | ;; Handle section deps: [dependencies.X] with path = "..." |
| 463 | (("^(path = \"\\.\\./[^\"]*\")" all path-line) | 645 | (("^(path = \"\\.\\./[^\"]*\")" all path-line) |
| 464 | (string-append path-line "\nversion = \"0.120.0\"")))))) | 646 | (string-append path-line "\nversion = \"0.124.0\"")))))) |
| 647 | (add-after 'chdir-to-workspace 'use-gnu-store-in-sandbox | ||
| 648 | (lambda _ | ||
| 649 | ;; LINUX_PLATFORM_DEFAULT_READ_ROOTS in linux-sandbox/src/ | ||
| 650 | ;; bwrap.rs is the read-only baseline that codex's bwrap | ||
| 651 | ;; sandbox bind-mounts so commands can read /usr/bin/ls, | ||
| 652 | ;; libc, etc. Upstream lists "/nix/store" for NixOS; | ||
| 653 | ;; Guix's equivalent is "/gnu/store". Without this swap, | ||
| 654 | ;; the codex sandbox cannot locate any binaries on a Guix | ||
| 655 | ;; system because every "system" path resolves into | ||
| 656 | ;; /gnu/store/<hash>-pkg/bin/... | ||
| 657 | (substitute* "linux-sandbox/src/bwrap.rs" | ||
| 658 | (("\"/nix/store\"") "\"/gnu/store\"")))) | ||
| 465 | (add-after 'chdir-to-workspace 'patch-hardcoded-paths | 659 | (add-after 'chdir-to-workspace 'patch-hardcoded-paths |
| 466 | (lambda* (#:key inputs #:allow-other-keys) | 660 | (lambda* (#:key inputs #:allow-other-keys) |
| 467 | (let ((bash-bin (string-append | 661 | (let ((bash-bin (string-append |
| @@ -561,10 +755,12 @@ | |||
| 561 | ;; double quotes. | 755 | ;; double quotes. |
| 562 | (substitute* | 756 | (substitute* |
| 563 | (list "core/src/plugins/startup_sync_tests.rs" | 757 | (list "core/src/plugins/startup_sync_tests.rs" |
| 758 | "core/src/tools/runtimes/shell/unix_escalation_tests.rs" | ||
| 564 | "core/tests/suite/client.rs" | 759 | "core/tests/suite/client.rs" |
| 565 | "core/tests/suite/js_repl.rs" | 760 | "core/tests/suite/js_repl.rs" |
| 566 | "core/tests/suite/skill_approval.rs" | 761 | "core/tests/suite/skill_approval.rs" |
| 567 | "core/tests/suite/user_notification.rs" | 762 | "core/tests/suite/user_notification.rs" |
| 763 | "exec-server/tests/file_system.rs" | ||
| 568 | "login/src/auth/auth_tests.rs" | 764 | "login/src/auth/auth_tests.rs" |
| 569 | "models-manager/src/manager_tests.rs" | 765 | "models-manager/src/manager_tests.rs" |
| 570 | "sandboxing/src/bwrap_tests.rs") | 766 | "sandboxing/src/bwrap_tests.rs") |
| @@ -613,7 +809,17 @@ | |||
| 613 | ;; ~/... and 30 snapshot tests fail. | 809 | ;; ~/... and 30 snapshot tests fail. |
| 614 | (setenv "HOME" "/tmp/guix-home") | 810 | (setenv "HOME" "/tmp/guix-home") |
| 615 | (mkdir-p "/tmp/guix-home") | 811 | (mkdir-p "/tmp/guix-home") |
| 616 | (setenv "USER" "nixbld")))))) | 812 | (setenv "USER" "nixbld") |
| 813 | ;; Default libtest thread stack is 2 MiB, which is not | ||
| 814 | ;; enough for tokio current_thread tests that drive | ||
| 815 | ;; codex-core's full turn pipeline. Upstream gates such | ||
| 816 | ;; tests through run_current_thread_test_with_stack (4 MiB) | ||
| 817 | ;; in app-server/src/message_processor/tracing_tests.rs; | ||
| 818 | ;; raise the global default so future additions that | ||
| 819 | ;; forget the wrapper still pass. | ||
| 820 | (setenv "RUST_MIN_STACK" "8388608") | ||
| 821 | ;; Disable network access. | ||
| 822 | (setenv "CODEX_SANDBOX_NETWORK_DISABLED" "1")))))) | ||
| 617 | (native-inputs `(("bubblewrap" ,bubblewrap) ;tests need bwrap on PATH | 823 | (native-inputs `(("bubblewrap" ,bubblewrap) ;tests need bwrap on PATH |
| 618 | ("clang" ,clang) | 824 | ("clang" ,clang) |
| 619 | ("cmake-minimal" ,cmake-minimal) | 825 | ("cmake-minimal" ,cmake-minimal) |
diff --git a/gnu/packages/patches/rust-codex-0.124.0-code-mode-stub-toolname.patch b/gnu/packages/patches/rust-codex-0.124.0-code-mode-stub-toolname.patch new file mode 100644 index 00000000000..4188ceaaca2 --- /dev/null +++ b/gnu/packages/patches/rust-codex-0.124.0-code-mode-stub-toolname.patch | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | Author: Danny Milosavljevic <dannym@friendly-machines.com> | ||
| 2 | Date: 2026-04-26 | ||
| 3 | License: ASL2.0 | ||
| 4 | Subject: Stub CodeModeTurnHost::invoke_tool signature uses ToolName. | ||
| 5 | |||
| 6 | In codex 0.117 the upstream trait took `tool_name: String`, so the | ||
| 7 | disable-code-mode patch's `cfg(not(feature = "v8-runtime"))` stub used | ||
| 8 | String to match. In codex 0.124 the upstream trait takes | ||
| 9 | `codex_protocol::ToolName`, and core/src/tools/code_mode/mod.rs's impl | ||
| 10 | of CodeModeTurnHost passes `ToolName`, so the stub must match the new | ||
| 11 | signature here too. This patch is applied only to codex 0.124+ on top | ||
| 12 | of the shared disable-code-mode patch; codex-acp (which still pins | ||
| 13 | rust-v0.117.0 where code-mode has no codex-protocol dep) keeps the | ||
| 14 | String-based stub. | ||
| 15 | |||
| 16 | --- a/codex-rs/code-mode/src/lib.rs | ||
| 17 | +++ b/codex-rs/code-mode/src/lib.rs | ||
| 18 | @@ -77,7 +77,7 @@ | ||
| 19 | #[cfg(not(feature = "v8-runtime"))] | ||
| 20 | #[async_trait::async_trait] | ||
| 21 | pub trait CodeModeTurnHost: Send + Sync { | ||
| 22 | - async fn invoke_tool(&self, tool_name: String, input: Option<serde_json::Value>, cancellation_token: tokio_util::sync::CancellationToken) -> Result<serde_json::Value, String>; | ||
| 23 | + async fn invoke_tool(&self, tool_name: codex_protocol::ToolName, input: Option<serde_json::Value>, cancellation_token: tokio_util::sync::CancellationToken) -> Result<serde_json::Value, String>; | ||
| 24 | async fn notify(&self, call_id: String, cell_id: String, text: String) -> Result<(), String>; | ||
| 25 | } | ||
diff --git a/gnu/packages/patches/rust-codex-0.124.0-remove-patch-sections.patch b/gnu/packages/patches/rust-codex-0.124.0-remove-patch-sections.patch new file mode 100644 index 00000000000..f889a2081c9 --- /dev/null +++ b/gnu/packages/patches/rust-codex-0.124.0-remove-patch-sections.patch | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | Author: Danny Milosavljevic <dannym@friendly-machines.com> | ||
| 2 | Date: 2026-04-23 | ||
| 3 | License: ASL2.0 | ||
| 4 | Subject: Remove [patch.crates-io] and [patch.'ssh://...'] sections. | ||
| 5 | |||
| 6 | The [patch] sections point to git repositories which are unavailable | ||
| 7 | in an offline build. The vendored crossterm, ratatui, | ||
| 8 | tokio-tungstenite and tungstenite forks are provided as cargo-inputs | ||
| 9 | instead. | ||
| 10 | |||
| 11 | --- a/codex-rs/Cargo.toml 2026-04-23 22:49:56.599115735 +0000 | ||
| 12 | +++ b/codex-rs/Cargo.toml 2026-04-23 22:49:56.601899894 +0000 | ||
| 13 | @@ -470,16 +470,3 @@ | ||
| 14 | inherits = "test" | ||
| 15 | opt-level = 0 | ||
| 16 | |||
| 17 | -[patch.crates-io] | ||
| 18 | -# Uncomment to debug local changes. | ||
| 19 | -# ratatui = { path = "../../ratatui" } | ||
| 20 | -crossterm = { git = "https://github.com/nornagon/crossterm", rev = "87db8bfa6dc99427fd3b071681b07fc31c6ce995" } | ||
| 21 | -ratatui = { git = "https://github.com/nornagon/ratatui", rev = "9b2ad1298408c45918ee9f8241a6f95498cdbed2" } | ||
| 22 | -tokio-tungstenite = { git = "https://github.com/openai-oss-forks/tokio-tungstenite", rev = "132f5b39c862e3a970f731d709608b3e6276d5f6" } | ||
| 23 | -tungstenite = { git = "https://github.com/openai-oss-forks/tungstenite-rs", rev = "9200079d3b54a1ff51072e24d81fd354f085156f" } | ||
| 24 | - | ||
| 25 | -# Uncomment to debug local changes. | ||
| 26 | -# rmcp = { path = "../../rust-sdk/crates/rmcp" } | ||
| 27 | - | ||
| 28 | -[patch."ssh://git@github.com/openai-oss-forks/tungstenite-rs.git"] | ||
| 29 | -tungstenite = { git = "https://github.com/openai-oss-forks/tungstenite-rs", rev = "9200079d3b54a1ff51072e24d81fd354f085156f" } | ||
diff --git a/gnu/packages/rust-crates.scm b/gnu/packages/rust-crates.scm index 7f4606b0e99..90b8a34f65f 100644 --- a/gnu/packages/rust-crates.scm +++ b/gnu/packages/rust-crates.scm | |||
| @@ -1782,6 +1782,10 @@ | |||
| 1782 | (rename-file (string-append "aw-models/" file) file))) | 1782 | (rename-file (string-append "aw-models/" file) file))) |
| 1783 | (scandir "aw-models")))))) | 1783 | (scandir "aw-models")))))) |
| 1784 | 1784 | ||
| 1785 | (define rust-aws-config-1.8.12 | ||
| 1786 | (crate-source "aws-config" "1.8.12" | ||
| 1787 | "1r9mfnw9pkmj0znlwhppz7yd5sfjkx5rwmkbizaz6yw1jrliwmwn")) | ||
| 1788 | |||
| 1785 | (define rust-aws-config-1.8.15 | 1789 | (define rust-aws-config-1.8.15 |
| 1786 | (crate-source "aws-config" "1.8.15" | 1790 | (crate-source "aws-config" "1.8.15" |
| 1787 | "1g3x0jzw2v45mkg9lh654hcsk6sjvnba116jibxp0chlml5knj8i")) | 1791 | "1g3x0jzw2v45mkg9lh654hcsk6sjvnba116jibxp0chlml5knj8i")) |
| @@ -1794,6 +1798,10 @@ | |||
| 1794 | (crate-source "aws-credential-types" "1.2.10" | 1798 | (crate-source "aws-credential-types" "1.2.10" |
| 1795 | "01jas2vd2sy3hizvm94ks6wma08vr1l8qg0q1msqym81z8hra75h")) | 1799 | "01jas2vd2sy3hizvm94ks6wma08vr1l8qg0q1msqym81z8hra75h")) |
| 1796 | 1800 | ||
| 1801 | (define rust-aws-credential-types-1.2.11 | ||
| 1802 | (crate-source "aws-credential-types" "1.2.11" | ||
| 1803 | "1qzycy6hgl6z2hg882niwbcfr0ly15d5bbc0ch9mvcc16rw65lrw")) | ||
| 1804 | |||
| 1797 | (define rust-aws-credential-types-1.2.14 | 1805 | (define rust-aws-credential-types-1.2.14 |
| 1798 | (crate-source "aws-credential-types" "1.2.14" | 1806 | (crate-source "aws-credential-types" "1.2.14" |
| 1799 | "1xyagxr44jzl9li8z1vk2m0zj2h9qahgn19hzqhy26rs6ydpj84g")) | 1807 | "1xyagxr44jzl9li8z1vk2m0zj2h9qahgn19hzqhy26rs6ydpj84g")) |
| @@ -1880,6 +1888,10 @@ | |||
| 1880 | (crate-source "aws-runtime" "1.5.16" | 1888 | (crate-source "aws-runtime" "1.5.16" |
| 1881 | "0cnn761a6anrgp9833qdqib0a9anw8jlz0j7zhk9dfjkgvxjgrbw")) | 1889 | "0cnn761a6anrgp9833qdqib0a9anw8jlz0j7zhk9dfjkgvxjgrbw")) |
| 1882 | 1890 | ||
| 1891 | (define rust-aws-runtime-1.5.17 | ||
| 1892 | (crate-source "aws-runtime" "1.5.17" | ||
| 1893 | "06wgx0zi3wg09b1782fyv4y7x0faidv5cj28izaqlygnk0l5n6yq")) | ||
| 1894 | |||
| 1883 | (define rust-aws-runtime-1.5.6 | 1895 | (define rust-aws-runtime-1.5.6 |
| 1884 | (crate-source "aws-runtime" "1.5.6" | 1896 | (crate-source "aws-runtime" "1.5.6" |
| 1885 | "1bf614fld7j5pj847zssm7fy4l8f69dxd79vxa9yb5jiwgzlbzqa")) | 1897 | "1bf614fld7j5pj847zssm7fy4l8f69dxd79vxa9yb5jiwgzlbzqa")) |
| @@ -1948,6 +1960,10 @@ | |||
| 1948 | (crate-source "aws-sdk-sso" "1.88.0" | 1960 | (crate-source "aws-sdk-sso" "1.88.0" |
| 1949 | "1i1kv4kp4c8czskkpsvy7mnh1n54mlx2xfnvjshsj2jnfxkjfnyh")) | 1961 | "1i1kv4kp4c8czskkpsvy7mnh1n54mlx2xfnvjshsj2jnfxkjfnyh")) |
| 1950 | 1962 | ||
| 1963 | (define rust-aws-sdk-sso-1.91.0 | ||
| 1964 | (crate-source "aws-sdk-sso" "1.91.0" | ||
| 1965 | "0p8ik57j1ddzmcmslxmna98n7cl4sqr6f736czz54yzj6qm41rlf")) | ||
| 1966 | |||
| 1951 | (define rust-aws-sdk-sso-1.96.0 | 1967 | (define rust-aws-sdk-sso-1.96.0 |
| 1952 | (crate-source "aws-sdk-sso" "1.96.0" | 1968 | (crate-source "aws-sdk-sso" "1.96.0" |
| 1953 | "1cgmprph5svl4xl34yfi7ak8xd6xmqr5v4bfjr9v9ij8sbg6wjpn")) | 1969 | "1cgmprph5svl4xl34yfi7ak8xd6xmqr5v4bfjr9v9ij8sbg6wjpn")) |
| @@ -1956,6 +1972,10 @@ | |||
| 1956 | (crate-source "aws-sdk-ssooidc" "1.90.0" | 1972 | (crate-source "aws-sdk-ssooidc" "1.90.0" |
| 1957 | "16w7693hwx8jf3mhwg6qcbgw1mkygzsa0d6j7yn1yxndv7b19gpr")) | 1973 | "16w7693hwx8jf3mhwg6qcbgw1mkygzsa0d6j7yn1yxndv7b19gpr")) |
| 1958 | 1974 | ||
| 1975 | (define rust-aws-sdk-ssooidc-1.93.0 | ||
| 1976 | (crate-source "aws-sdk-ssooidc" "1.93.0" | ||
| 1977 | "0gnbwnfyqmrc61lf2jjfixa99f4h5mwaswbnczihw5xx1dspynm4")) | ||
| 1978 | |||
| 1959 | (define rust-aws-sdk-ssooidc-1.98.0 | 1979 | (define rust-aws-sdk-ssooidc-1.98.0 |
| 1960 | (crate-source "aws-sdk-ssooidc" "1.98.0" | 1980 | (crate-source "aws-sdk-ssooidc" "1.98.0" |
| 1961 | "0krl1bi0m84d86slqn5hv1bn5kkj9aqc9qds12zgq8n6schdg5nv")) | 1981 | "0krl1bi0m84d86slqn5hv1bn5kkj9aqc9qds12zgq8n6schdg5nv")) |
| @@ -1964,6 +1984,10 @@ | |||
| 1964 | (crate-source "aws-sdk-sts" "1.100.0" | 1984 | (crate-source "aws-sdk-sts" "1.100.0" |
| 1965 | "1jn7zifkb1v6vp6162l2i9xrc2srvcl87zjxkilpzxck7fjdvyzs")) | 1985 | "1jn7zifkb1v6vp6162l2i9xrc2srvcl87zjxkilpzxck7fjdvyzs")) |
| 1966 | 1986 | ||
| 1987 | (define rust-aws-sdk-sts-1.95.0 | ||
| 1988 | (crate-source "aws-sdk-sts" "1.95.0" | ||
| 1989 | "0r11gcpiyi09xca9zbbrgq3qh80bvc5ag31r3xmqwm8rwiw26m2m")) | ||
| 1990 | |||
| 1967 | (define rust-aws-sdk-transcribestreaming-1.101.0 | 1991 | (define rust-aws-sdk-transcribestreaming-1.101.0 |
| 1968 | (crate-source "aws-sdk-transcribestreaming" "1.101.0" | 1992 | (crate-source "aws-sdk-transcribestreaming" "1.101.0" |
| 1969 | "1g2n0hajqmgphwxkfvhmnk8km5hnj0brnq0z3jgv5xydzfxmf7zv")) | 1993 | "1g2n0hajqmgphwxkfvhmnk8km5hnj0brnq0z3jgv5xydzfxmf7zv")) |
| @@ -1983,6 +2007,10 @@ | |||
| 1983 | (crate-source "aws-sigv4" "1.3.6" | 2007 | (crate-source "aws-sigv4" "1.3.6" |
| 1984 | "04dg6anpvw4izb4wb8ivqrgg0j0z7wvvc1xidlpiy7h07zn54m63")) | 2008 | "04dg6anpvw4izb4wb8ivqrgg0j0z7wvvc1xidlpiy7h07zn54m63")) |
| 1985 | 2009 | ||
| 2010 | (define rust-aws-sigv4-1.3.7 | ||
| 2011 | (crate-source "aws-sigv4" "1.3.7" | ||
| 2012 | "0z5yh2h6ym51xkcydnxg3j5axzibwa42jwwx47zyirz8qkhj7rb9")) | ||
| 2013 | |||
| 1986 | (define rust-aws-sigv4-1.4.2 | 2014 | (define rust-aws-sigv4-1.4.2 |
| 1987 | (crate-source "aws-sigv4" "1.4.2" | 2015 | (crate-source "aws-sigv4" "1.4.2" |
| 1988 | "1x6inl28qk6a9i5j0s2zy3yl8iw53wgy4y3pg4isp0v6780n1dmh")) | 2016 | "1x6inl28qk6a9i5j0s2zy3yl8iw53wgy4y3pg4isp0v6780n1dmh")) |
| @@ -2082,6 +2110,10 @@ | |||
| 2082 | (crate-source "aws-smithy-observability" "0.1.4" | 2110 | (crate-source "aws-smithy-observability" "0.1.4" |
| 2083 | "1k7lp9bw7j61figq5sliijq6zaxxb30na3bij2c3ycbdxaqq261d")) | 2111 | "1k7lp9bw7j61figq5sliijq6zaxxb30na3bij2c3ycbdxaqq261d")) |
| 2084 | 2112 | ||
| 2113 | (define rust-aws-smithy-observability-0.1.5 | ||
| 2114 | (crate-source "aws-smithy-observability" "0.1.5" | ||
| 2115 | "12i2k8mcy6255hz3jklw8zk773m1my5jgpnf8kz141i6yb1idxhp")) | ||
| 2116 | |||
| 2085 | (define rust-aws-smithy-observability-0.2.6 | 2117 | (define rust-aws-smithy-observability-0.2.6 |
| 2086 | (crate-source "aws-smithy-observability" "0.2.6" | 2118 | (crate-source "aws-smithy-observability" "0.2.6" |
| 2087 | "176amda1ravk36bgrh7409q855cn32ks72ys40cvzvbks4aj6v50")) | 2119 | "176amda1ravk36bgrh7409q855cn32ks72ys40cvzvbks4aj6v50")) |
| @@ -2094,6 +2126,10 @@ | |||
| 2094 | (crate-source "aws-smithy-query" "0.60.8" | 2126 | (crate-source "aws-smithy-query" "0.60.8" |
| 2095 | "1janf4n2mp5p0pk85y9qlrf0fkcw7fnapiw0bx37gi302d2672nj")) | 2127 | "1janf4n2mp5p0pk85y9qlrf0fkcw7fnapiw0bx37gi302d2672nj")) |
| 2096 | 2128 | ||
| 2129 | (define rust-aws-smithy-query-0.60.9 | ||
| 2130 | (crate-source "aws-smithy-query" "0.60.9" | ||
| 2131 | "0z85drajlbwxws4mgy2g7d1hslv8as5sai79c02fksipyjf6hpdf")) | ||
| 2132 | |||
| 2097 | (define rust-aws-smithy-runtime-1.10.3 | 2133 | (define rust-aws-smithy-runtime-1.10.3 |
| 2098 | (crate-source "aws-smithy-runtime" "1.10.3" | 2134 | (crate-source "aws-smithy-runtime" "1.10.3" |
| 2099 | "0411mz9d3nky19ljgwqwlxrwyhx6qkpgjckjd65dabrddl2rk282")) | 2135 | "0411mz9d3nky19ljgwqwlxrwyhx6qkpgjckjd65dabrddl2rk282")) |
| @@ -2110,6 +2146,10 @@ | |||
| 2110 | (crate-source "aws-smithy-runtime" "1.9.4" | 2146 | (crate-source "aws-smithy-runtime" "1.9.4" |
| 2111 | "1w0ydjzd34vxmn57fz6hwsq65644hxwx0g86pv3rcsv4il0rvghb")) | 2147 | "1w0ydjzd34vxmn57fz6hwsq65644hxwx0g86pv3rcsv4il0rvghb")) |
| 2112 | 2148 | ||
| 2149 | (define rust-aws-smithy-runtime-1.9.5 | ||
| 2150 | (crate-source "aws-smithy-runtime" "1.9.5" | ||
| 2151 | "1xd5nkhjw9jwnl7ga10nv63qhpbwpsvqdywaac9ak91yb1ndp4m3")) | ||
| 2152 | |||
| 2113 | (define rust-aws-smithy-runtime-api-1.11.6 | 2153 | (define rust-aws-smithy-runtime-api-1.11.6 |
| 2114 | (crate-source "aws-smithy-runtime-api" "1.11.6" | 2154 | (crate-source "aws-smithy-runtime-api" "1.11.6" |
| 2115 | "1rkr79rw6wjj2y5jc2fsmcywc7p294q0ly1bl15vm4cpqb4v6sl7")) | 2155 | "1rkr79rw6wjj2y5jc2fsmcywc7p294q0ly1bl15vm4cpqb4v6sl7")) |
| @@ -2150,6 +2190,10 @@ | |||
| 2150 | (crate-source "aws-smithy-xml" "0.60.12" | 2190 | (crate-source "aws-smithy-xml" "0.60.12" |
| 2151 | "0mmfa9vwkil4730sq5pj9c1gp2apfxxsz9rh59nha4bb0gfprdza")) | 2191 | "0mmfa9vwkil4730sq5pj9c1gp2apfxxsz9rh59nha4bb0gfprdza")) |
| 2152 | 2192 | ||
| 2193 | (define rust-aws-smithy-xml-0.60.13 | ||
| 2194 | (crate-source "aws-smithy-xml" "0.60.13" | ||
| 2195 | "0mzansi1qwwhx91zg2fhid8a6lmw8lmyfcah0vvjpx1g89qgdchi")) | ||
| 2196 | |||
| 2153 | (define rust-aws-smithy-xml-0.60.15 | 2197 | (define rust-aws-smithy-xml-0.60.15 |
| 2154 | (crate-source "aws-smithy-xml" "0.60.15" | 2198 | (crate-source "aws-smithy-xml" "0.60.15" |
| 2155 | "1cr27lfx4p0lkjbyicd12xgsjiihpvf83pwa5w17srx33bfjmq0c")) | 2199 | "1cr27lfx4p0lkjbyicd12xgsjiihpvf83pwa5w17srx33bfjmq0c")) |
| @@ -2162,6 +2206,10 @@ | |||
| 2162 | (crate-source "aws-types" "1.3.10" | 2206 | (crate-source "aws-types" "1.3.10" |
| 2163 | "1dl0hvcpc7vbpdhacgfbhqq6vllp5rywhkd37s1x9rbz7n7bd7yp")) | 2207 | "1dl0hvcpc7vbpdhacgfbhqq6vllp5rywhkd37s1x9rbz7n7bd7yp")) |
| 2164 | 2208 | ||
| 2209 | (define rust-aws-types-1.3.11 | ||
| 2210 | (crate-source "aws-types" "1.3.11" | ||
| 2211 | "0r418a7ip7gm3rihr16ccp9visiy0dd6h9f0lcrgqyyxs8khd60x")) | ||
| 2212 | |||
| 2165 | (define rust-aws-types-1.3.14 | 2213 | (define rust-aws-types-1.3.14 |
| 2166 | (crate-source "aws-types" "1.3.14" | 2214 | (crate-source "aws-types" "1.3.14" |
| 2167 | "1nb2b5rdhk9pz21chmwr2zymivydx4d0a4rwbf6kr6yxk4v35j27")) | 2215 | "1nb2b5rdhk9pz21chmwr2zymivydx4d0a4rwbf6kr6yxk4v35j27")) |
| @@ -5455,6 +5503,304 @@ | |||
| 5455 | (define rust-codex-windows-sandbox-0.120.0 | 5503 | (define rust-codex-windows-sandbox-0.120.0 |
| 5456 | package:rust-codex-0.120.0) | 5504 | package:rust-codex-0.120.0) |
| 5457 | 5505 | ||
| 5506 | ;;; Aliases for codex 0.124.0 workspace crates (see rust-sources.scm) | ||
| 5507 | (define rust-codex-agent-identity-0.124.0 | ||
| 5508 | package:rust-codex-0.124.0) | ||
| 5509 | |||
| 5510 | (define rust-codex-analytics-0.124.0 | ||
| 5511 | package:rust-codex-0.124.0) | ||
| 5512 | |||
| 5513 | (define rust-codex-ansi-escape-0.124.0 | ||
| 5514 | package:rust-codex-0.124.0) | ||
| 5515 | |||
| 5516 | (define rust-codex-api-0.124.0 | ||
| 5517 | package:rust-codex-0.124.0) | ||
| 5518 | |||
| 5519 | (define rust-codex-app-server-0.124.0 | ||
| 5520 | package:rust-codex-0.124.0) | ||
| 5521 | |||
| 5522 | (define rust-codex-app-server-client-0.124.0 | ||
| 5523 | package:rust-codex-0.124.0) | ||
| 5524 | |||
| 5525 | (define rust-codex-app-server-protocol-0.124.0 | ||
| 5526 | package:rust-codex-0.124.0) | ||
| 5527 | |||
| 5528 | (define rust-codex-app-server-test-client-0.124.0 | ||
| 5529 | package:rust-codex-0.124.0) | ||
| 5530 | |||
| 5531 | (define rust-codex-apply-patch-0.124.0 | ||
| 5532 | package:rust-codex-0.124.0) | ||
| 5533 | |||
| 5534 | (define rust-codex-arg0-0.124.0 | ||
| 5535 | package:rust-codex-0.124.0) | ||
| 5536 | |||
| 5537 | (define rust-codex-async-utils-0.124.0 | ||
| 5538 | package:rust-codex-0.124.0) | ||
| 5539 | |||
| 5540 | (define rust-codex-aws-auth-0.124.0 | ||
| 5541 | package:rust-codex-0.124.0) | ||
| 5542 | |||
| 5543 | (define rust-codex-backend-client-0.124.0 | ||
| 5544 | package:rust-codex-0.124.0) | ||
| 5545 | |||
| 5546 | (define rust-codex-backend-openapi-models-0.124.0 | ||
| 5547 | package:rust-codex-0.124.0) | ||
| 5548 | |||
| 5549 | (define rust-codex-chatgpt-0.124.0 | ||
| 5550 | package:rust-codex-0.124.0) | ||
| 5551 | |||
| 5552 | (define rust-codex-cli-0.124.0 | ||
| 5553 | package:rust-codex-0.124.0) | ||
| 5554 | |||
| 5555 | (define rust-codex-client-0.124.0 | ||
| 5556 | package:rust-codex-0.124.0) | ||
| 5557 | |||
| 5558 | (define rust-codex-cloud-requirements-0.124.0 | ||
| 5559 | package:rust-codex-0.124.0) | ||
| 5560 | |||
| 5561 | (define rust-codex-cloud-tasks-0.124.0 | ||
| 5562 | package:rust-codex-0.124.0) | ||
| 5563 | |||
| 5564 | (define rust-codex-cloud-tasks-client-0.124.0 | ||
| 5565 | package:rust-codex-0.124.0) | ||
| 5566 | |||
| 5567 | (define rust-codex-cloud-tasks-mock-client-0.124.0 | ||
| 5568 | package:rust-codex-0.124.0) | ||
| 5569 | |||
| 5570 | (define rust-codex-code-mode-0.124.0 | ||
| 5571 | package:rust-codex-0.124.0) | ||
| 5572 | |||
| 5573 | (define rust-codex-collaboration-mode-templates-0.124.0 | ||
| 5574 | package:rust-codex-0.124.0) | ||
| 5575 | |||
| 5576 | (define rust-codex-config-0.124.0 | ||
| 5577 | package:rust-codex-0.124.0) | ||
| 5578 | |||
| 5579 | (define rust-codex-connectors-0.124.0 | ||
| 5580 | package:rust-codex-0.124.0) | ||
| 5581 | |||
| 5582 | (define rust-codex-core-0.124.0 | ||
| 5583 | package:rust-codex-0.124.0) | ||
| 5584 | |||
| 5585 | (define rust-codex-core-plugins-0.124.0 | ||
| 5586 | package:rust-codex-0.124.0) | ||
| 5587 | |||
| 5588 | (define rust-codex-core-skills-0.124.0 | ||
| 5589 | package:rust-codex-0.124.0) | ||
| 5590 | |||
| 5591 | (define rust-codex-debug-client-0.124.0 | ||
| 5592 | package:rust-codex-0.124.0) | ||
| 5593 | |||
| 5594 | (define rust-codex-device-key-0.124.0 | ||
| 5595 | package:rust-codex-0.124.0) | ||
| 5596 | |||
| 5597 | (define rust-codex-exec-0.124.0 | ||
| 5598 | package:rust-codex-0.124.0) | ||
| 5599 | |||
| 5600 | (define rust-codex-exec-server-0.124.0 | ||
| 5601 | package:rust-codex-0.124.0) | ||
| 5602 | |||
| 5603 | (define rust-codex-execpolicy-0.124.0 | ||
| 5604 | package:rust-codex-0.124.0) | ||
| 5605 | |||
| 5606 | (define rust-codex-execpolicy-legacy-0.124.0 | ||
| 5607 | package:rust-codex-0.124.0) | ||
| 5608 | |||
| 5609 | (define rust-codex-experimental-api-macros-0.124.0 | ||
| 5610 | package:rust-codex-0.124.0) | ||
| 5611 | |||
| 5612 | (define rust-codex-features-0.124.0 | ||
| 5613 | package:rust-codex-0.124.0) | ||
| 5614 | |||
| 5615 | (define rust-codex-feedback-0.124.0 | ||
| 5616 | package:rust-codex-0.124.0) | ||
| 5617 | |||
| 5618 | (define rust-codex-file-search-0.124.0 | ||
| 5619 | package:rust-codex-0.124.0) | ||
| 5620 | |||
| 5621 | (define rust-codex-git-utils-0.124.0 | ||
| 5622 | package:rust-codex-0.124.0) | ||
| 5623 | |||
| 5624 | (define rust-codex-hooks-0.124.0 | ||
| 5625 | package:rust-codex-0.124.0) | ||
| 5626 | |||
| 5627 | (define rust-codex-install-context-0.124.0 | ||
| 5628 | package:rust-codex-0.124.0) | ||
| 5629 | |||
| 5630 | (define rust-codex-keyring-store-0.124.0 | ||
| 5631 | package:rust-codex-0.124.0) | ||
| 5632 | |||
| 5633 | (define rust-codex-linux-sandbox-0.124.0 | ||
| 5634 | package:rust-codex-0.124.0) | ||
| 5635 | |||
| 5636 | (define rust-codex-lmstudio-0.124.0 | ||
| 5637 | package:rust-codex-0.124.0) | ||
| 5638 | |||
| 5639 | (define rust-codex-login-0.124.0 | ||
| 5640 | package:rust-codex-0.124.0) | ||
| 5641 | |||
| 5642 | (define rust-codex-mcp-0.124.0 | ||
| 5643 | package:rust-codex-0.124.0) | ||
| 5644 | |||
| 5645 | (define rust-codex-mcp-server-0.124.0 | ||
| 5646 | package:rust-codex-0.124.0) | ||
| 5647 | |||
| 5648 | (define rust-codex-model-provider-0.124.0 | ||
| 5649 | package:rust-codex-0.124.0) | ||
| 5650 | |||
| 5651 | (define rust-codex-model-provider-info-0.124.0 | ||
| 5652 | package:rust-codex-0.124.0) | ||
| 5653 | |||
| 5654 | (define rust-codex-models-manager-0.124.0 | ||
| 5655 | package:rust-codex-0.124.0) | ||
| 5656 | |||
| 5657 | (define rust-codex-network-proxy-0.124.0 | ||
| 5658 | package:rust-codex-0.124.0) | ||
| 5659 | |||
| 5660 | (define rust-codex-ollama-0.124.0 | ||
| 5661 | package:rust-codex-0.124.0) | ||
| 5662 | |||
| 5663 | (define rust-codex-otel-0.124.0 | ||
| 5664 | package:rust-codex-0.124.0) | ||
| 5665 | |||
| 5666 | (define rust-codex-plugin-0.124.0 | ||
| 5667 | package:rust-codex-0.124.0) | ||
| 5668 | |||
| 5669 | (define rust-codex-process-hardening-0.124.0 | ||
| 5670 | package:rust-codex-0.124.0) | ||
| 5671 | |||
| 5672 | (define rust-codex-protocol-0.124.0 | ||
| 5673 | package:rust-codex-0.124.0) | ||
| 5674 | |||
| 5675 | (define rust-codex-realtime-webrtc-0.124.0 | ||
| 5676 | package:rust-codex-0.124.0) | ||
| 5677 | |||
| 5678 | (define rust-codex-response-debug-context-0.124.0 | ||
| 5679 | package:rust-codex-0.124.0) | ||
| 5680 | |||
| 5681 | (define rust-codex-responses-api-proxy-0.124.0 | ||
| 5682 | package:rust-codex-0.124.0) | ||
| 5683 | |||
| 5684 | (define rust-codex-rmcp-client-0.124.0 | ||
| 5685 | package:rust-codex-0.124.0) | ||
| 5686 | |||
| 5687 | (define rust-codex-rollout-0.124.0 | ||
| 5688 | package:rust-codex-0.124.0) | ||
| 5689 | |||
| 5690 | (define rust-codex-rollout-trace-0.124.0 | ||
| 5691 | package:rust-codex-0.124.0) | ||
| 5692 | |||
| 5693 | (define rust-codex-sandboxing-0.124.0 | ||
| 5694 | package:rust-codex-0.124.0) | ||
| 5695 | |||
| 5696 | (define rust-codex-secrets-0.124.0 | ||
| 5697 | package:rust-codex-0.124.0) | ||
| 5698 | |||
| 5699 | (define rust-codex-shell-command-0.124.0 | ||
| 5700 | package:rust-codex-0.124.0) | ||
| 5701 | |||
| 5702 | (define rust-codex-shell-escalation-0.124.0 | ||
| 5703 | package:rust-codex-0.124.0) | ||
| 5704 | |||
| 5705 | (define rust-codex-skills-0.124.0 | ||
| 5706 | package:rust-codex-0.124.0) | ||
| 5707 | |||
| 5708 | (define rust-codex-state-0.124.0 | ||
| 5709 | package:rust-codex-0.124.0) | ||
| 5710 | |||
| 5711 | (define rust-codex-stdio-to-uds-0.124.0 | ||
| 5712 | package:rust-codex-0.124.0) | ||
| 5713 | |||
| 5714 | (define rust-codex-terminal-detection-0.124.0 | ||
| 5715 | package:rust-codex-0.124.0) | ||
| 5716 | |||
| 5717 | (define rust-codex-test-binary-support-0.124.0 | ||
| 5718 | package:rust-codex-0.124.0) | ||
| 5719 | |||
| 5720 | (define rust-codex-thread-store-0.124.0 | ||
| 5721 | package:rust-codex-0.124.0) | ||
| 5722 | |||
| 5723 | (define rust-codex-tools-0.124.0 | ||
| 5724 | package:rust-codex-0.124.0) | ||
| 5725 | |||
| 5726 | (define rust-codex-tui-0.124.0 | ||
| 5727 | package:rust-codex-0.124.0) | ||
| 5728 | |||
| 5729 | (define rust-codex-uds-0.124.0 | ||
| 5730 | package:rust-codex-0.124.0) | ||
| 5731 | |||
| 5732 | (define rust-codex-utils-absolute-path-0.124.0 | ||
| 5733 | package:rust-codex-0.124.0) | ||
| 5734 | |||
| 5735 | (define rust-codex-utils-approval-presets-0.124.0 | ||
| 5736 | package:rust-codex-0.124.0) | ||
| 5737 | |||
| 5738 | (define rust-codex-utils-cache-0.124.0 | ||
| 5739 | package:rust-codex-0.124.0) | ||
| 5740 | |||
| 5741 | (define rust-codex-utils-cargo-bin-0.124.0 | ||
| 5742 | package:rust-codex-0.124.0) | ||
| 5743 | |||
| 5744 | (define rust-codex-utils-cli-0.124.0 | ||
| 5745 | package:rust-codex-0.124.0) | ||
| 5746 | |||
| 5747 | (define rust-codex-utils-elapsed-0.124.0 | ||
| 5748 | package:rust-codex-0.124.0) | ||
| 5749 | |||
| 5750 | (define rust-codex-utils-fuzzy-match-0.124.0 | ||
| 5751 | package:rust-codex-0.124.0) | ||
| 5752 | |||
| 5753 | (define rust-codex-utils-home-dir-0.124.0 | ||
| 5754 | package:rust-codex-0.124.0) | ||
| 5755 | |||
| 5756 | (define rust-codex-utils-image-0.124.0 | ||
| 5757 | package:rust-codex-0.124.0) | ||
| 5758 | |||
| 5759 | (define rust-codex-utils-json-to-toml-0.124.0 | ||
| 5760 | package:rust-codex-0.124.0) | ||
| 5761 | |||
| 5762 | (define rust-codex-utils-oss-0.124.0 | ||
| 5763 | package:rust-codex-0.124.0) | ||
| 5764 | |||
| 5765 | (define rust-codex-utils-output-truncation-0.124.0 | ||
| 5766 | package:rust-codex-0.124.0) | ||
| 5767 | |||
| 5768 | (define rust-codex-utils-path-0.124.0 | ||
| 5769 | package:rust-codex-0.124.0) | ||
| 5770 | |||
| 5771 | (define rust-codex-utils-plugins-0.124.0 | ||
| 5772 | package:rust-codex-0.124.0) | ||
| 5773 | |||
| 5774 | (define rust-codex-utils-pty-0.124.0 | ||
| 5775 | package:rust-codex-0.124.0) | ||
| 5776 | |||
| 5777 | (define rust-codex-utils-readiness-0.124.0 | ||
| 5778 | package:rust-codex-0.124.0) | ||
| 5779 | |||
| 5780 | (define rust-codex-utils-rustls-provider-0.124.0 | ||
| 5781 | package:rust-codex-0.124.0) | ||
| 5782 | |||
| 5783 | (define rust-codex-utils-sandbox-summary-0.124.0 | ||
| 5784 | package:rust-codex-0.124.0) | ||
| 5785 | |||
| 5786 | (define rust-codex-utils-sleep-inhibitor-0.124.0 | ||
| 5787 | package:rust-codex-0.124.0) | ||
| 5788 | |||
| 5789 | (define rust-codex-utils-stream-parser-0.124.0 | ||
| 5790 | package:rust-codex-0.124.0) | ||
| 5791 | |||
| 5792 | (define rust-codex-utils-string-0.124.0 | ||
| 5793 | package:rust-codex-0.124.0) | ||
| 5794 | |||
| 5795 | (define rust-codex-utils-template-0.124.0 | ||
| 5796 | package:rust-codex-0.124.0) | ||
| 5797 | |||
| 5798 | (define rust-codex-v8-poc-0.124.0 | ||
| 5799 | package:rust-codex-0.124.0) | ||
| 5800 | |||
| 5801 | (define rust-codex-windows-sandbox-0.124.0 | ||
| 5802 | package:rust-codex-0.124.0) | ||
| 5803 | |||
| 5458 | (define rust-codspeed-2.10.0 | 5804 | (define rust-codspeed-2.10.0 |
| 5459 | (crate-source "codspeed" "2.10.0" | 5805 | (crate-source "codspeed" "2.10.0" |
| 5460 | "1x9anwlfzlfby794d5fcvp214bj8bp29br8pkksxwb7834djja6j")) | 5806 | "1x9anwlfzlfby794d5fcvp214bj8bp29br8pkksxwb7834djja6j")) |
| @@ -6545,6 +6891,16 @@ | |||
| 6545 | "1im9vs6fvkql0sr378dfr4wdm1rrkrvr22v4i8byz05k1dd9b7c2" | 6891 | "1im9vs6fvkql0sr378dfr4wdm1rrkrvr22v4i8byz05k1dd9b7c2" |
| 6546 | #:snippet '(delete-file-recursively "docs"))) | 6892 | #:snippet '(delete-file-recursively "docs"))) |
| 6547 | 6893 | ||
| 6894 | (define rust-crossterm-0.28.1.87db8bf | ||
| 6895 | ;; TODO REVIEW: Define standalone package if this is a workspace. | ||
| 6896 | (origin | ||
| 6897 | (method git-fetch) | ||
| 6898 | (uri (git-reference | ||
| 6899 | (url "https://github.com/nornagon/crossterm") | ||
| 6900 | (commit "87db8bfa6dc99427fd3b071681b07fc31c6ce995"))) | ||
| 6901 | (file-name (git-file-name "rust-crossterm" "0.28.1.87db8bf")) | ||
| 6902 | (sha256 (base32 "0vzgpvbri4m4qydkj50ch468az7myy04qh5z2n500p1f4dysv87a")))) | ||
| 6903 | |||
| 6548 | (define rust-crossterm-0.28.1.87db8bfa | 6904 | (define rust-crossterm-0.28.1.87db8bfa |
| 6549 | (origin | 6905 | (origin |
| 6550 | (method git-fetch) | 6906 | (method git-fetch) |
| @@ -6602,6 +6958,10 @@ | |||
| 6602 | (crate-source "crypto_box" "0.10.0-pre.0" | 6958 | (crate-source "crypto_box" "0.10.0-pre.0" |
| 6603 | "1nbf98jp34h25xpy3lalrkprlw5n6phlsfbslbrhr0vhw3ilvnib")) | 6959 | "1nbf98jp34h25xpy3lalrkprlw5n6phlsfbslbrhr0vhw3ilvnib")) |
| 6604 | 6960 | ||
| 6961 | (define rust-crypto-box-0.9.1 | ||
| 6962 | (crate-source "crypto_box" "0.9.1" | ||
| 6963 | "02ghw0frbq99d9r52dmk3nxnac6s1i6cqm8ihnkchbm8757jn60n")) | ||
| 6964 | |||
| 6605 | (define rust-crypto-common-0.1.6 | 6965 | (define rust-crypto-common-0.1.6 |
| 6606 | (crate-source "crypto-common" "0.1.6" | 6966 | (crate-source "crypto-common" "0.1.6" |
| 6607 | "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv")) | 6967 | "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv")) |
| @@ -6626,6 +6986,10 @@ | |||
| 6626 | (crate-source "crypto-mac" "0.8.0" | 6986 | (crate-source "crypto-mac" "0.8.0" |
| 6627 | "1axfs4zmy74rn9666p92j7nmcv11zdp2d51yrppc2dv26cqa715m")) | 6987 | "1axfs4zmy74rn9666p92j7nmcv11zdp2d51yrppc2dv26cqa715m")) |
| 6628 | 6988 | ||
| 6989 | (define rust-crypto-secretbox-0.1.1 | ||
| 6990 | (crate-source "crypto_secretbox" "0.1.1" | ||
| 6991 | "1qa1w5s8dbyb88269zrmvbnillqahz394pl07bsds6gpmn3wzmmr")) | ||
| 6992 | |||
| 6629 | (define rust-crypto-secretbox-0.2.0-pre.0 | 6993 | (define rust-crypto-secretbox-0.2.0-pre.0 |
| 6630 | (crate-source "crypto_secretbox" "0.2.0-pre.0" | 6994 | (crate-source "crypto_secretbox" "0.2.0-pre.0" |
| 6631 | "0gl7akwdxq2h86bskvgf35br8mcmmwymjmgqrr94l226cnp2llsl")) | 6995 | "0gl7akwdxq2h86bskvgf35br8mcmmwymjmgqrr94l226cnp2llsl")) |
| @@ -7557,6 +7921,10 @@ | |||
| 7557 | "1d3hw9hpvicl9x0x34jr2ybjk5g5ym1lhbyz6zj31110gq8zaaap" | 7921 | "1d3hw9hpvicl9x0x34jr2ybjk5g5ym1lhbyz6zj31110gq8zaaap" |
| 7558 | #:snippet '(delete-file-recursively "docs"))) | 7922 | #:snippet '(delete-file-recursively "docs"))) |
| 7559 | 7923 | ||
| 7924 | (define rust-deno-core-icudata-0.77.0 | ||
| 7925 | (crate-source "deno_core_icudata" "0.77.0" | ||
| 7926 | "1ik4pka1zjypkkgqr28j4gfrsx66lphhf999ckk1lb58j24zzvx9")) | ||
| 7927 | |||
| 7560 | (define rust-der-0.6.1 | 7928 | (define rust-der-0.6.1 |
| 7561 | (crate-source "der" "0.6.1" | 7929 | (crate-source "der" "0.6.1" |
| 7562 | "1pnl3y52m1s6srxpfrfbazf6qilzq8fgksk5dv79nxaybjk6g97i" | 7930 | "1pnl3y52m1s6srxpfrfbazf6qilzq8fgksk5dv79nxaybjk6g97i" |
| @@ -8047,6 +8415,10 @@ | |||
| 8047 | (crate-source "dns-lookup" "2.1.1" | 8415 | (crate-source "dns-lookup" "2.1.1" |
| 8048 | "1kwkfxqmyk1dflrhy4yhhz5y9j3b68kcx26gkpy7alpynyj9fmfg")) | 8416 | "1kwkfxqmyk1dflrhy4yhhz5y9j3b68kcx26gkpy7alpynyj9fmfg")) |
| 8049 | 8417 | ||
| 8418 | (define rust-dns-lookup-3.0.1 | ||
| 8419 | (crate-source "dns-lookup" "3.0.1" | ||
| 8420 | "07f4lvzsf0p80qh2haiq01fvpi0rk1lf783bnsxzb8i1xr606fbf")) | ||
| 8421 | |||
| 8050 | (define rust-dns-parser-0.8.0 | 8422 | (define rust-dns-parser-0.8.0 |
| 8051 | (crate-source "dns-parser" "0.8.0" | 8423 | (crate-source "dns-parser" "0.8.0" |
| 8052 | "1spv0psvxc31qg9xnqf0gmjclyiim7vp23r2b1gzf1ix8zlkply4")) | 8424 | "1spv0psvxc31qg9xnqf0gmjclyiim7vp23r2b1gzf1ix8zlkply4")) |
| @@ -18290,6 +18662,16 @@ | |||
| 18290 | (define rust-libwebrtc-0.3.10.5f04705 | 18662 | (define rust-libwebrtc-0.3.10.5f04705 |
| 18291 | package:rust-livekit-0.7.8.5f04705) | 18663 | package:rust-livekit-0.7.8.5f04705) |
| 18292 | 18664 | ||
| 18665 | (define rust-libwebrtc-0.3.26.e2d1d1d | ||
| 18666 | ;; TODO REVIEW: Define standalone package if this is a workspace. | ||
| 18667 | (origin | ||
| 18668 | (method git-fetch) | ||
| 18669 | (uri (git-reference | ||
| 18670 | (url "https://github.com/juberti-oai/rust-sdks.git") | ||
| 18671 | (commit "e2d1d1d230c6fc9df171ccb181423f957bb3c1f0"))) | ||
| 18672 | (file-name (git-file-name "rust-libwebrtc" "0.3.26.e2d1d1d")) | ||
| 18673 | (sha256 (base32 "00xwa6w00kdv9nd4a2206wyz3aw61al914xd1g8kj4gx9bmdhic2")))) | ||
| 18674 | |||
| 18293 | (define rust-libz-ng-sys-1.1.22 | 18675 | (define rust-libz-ng-sys-1.1.22 |
| 18294 | ;; TODO: Find a way to unbundle libz-ng. | 18676 | ;; TODO: Find a way to unbundle libz-ng. |
| 18295 | (crate-source "libz-ng-sys" "1.1.22" | 18677 | (crate-source "libz-ng-sys" "1.1.22" |
| @@ -32174,6 +32556,10 @@ | |||
| 32174 | (crate-source "tonic-build" "0.12.3" | 32556 | (crate-source "tonic-build" "0.12.3" |
| 32175 | "04baqblgrlc0g8scnhpky5s0n4cljaixrrdrr6cv6wx7kq8cwmwm")) | 32557 | "04baqblgrlc0g8scnhpky5s0n4cljaixrrdrr6cv6wx7kq8cwmwm")) |
| 32176 | 32558 | ||
| 32559 | (define rust-tonic-build-0.14.3 | ||
| 32560 | (crate-source "tonic-build" "0.14.3" | ||
| 32561 | "1z5njzxk1wsgx63h1zsvi9mqay6h2ir3ddkx5lg782znxl4wiai7")) | ||
| 32562 | |||
| 32177 | (define rust-tonic-build-0.6.2 | 32563 | (define rust-tonic-build-0.6.2 |
| 32178 | (crate-source "tonic-build" "0.6.2" | 32564 | (crate-source "tonic-build" "0.6.2" |
| 32179 | "0mx7bxsf8jsi6bfw3gp8hi2m3kdm71pxqc5jhik1hiz2znxg20wl")) | 32565 | "0mx7bxsf8jsi6bfw3gp8hi2m3kdm71pxqc5jhik1hiz2znxg20wl")) |
| @@ -32186,6 +32572,10 @@ | |||
| 32186 | (crate-source "tonic-prost" "0.14.5" | 32572 | (crate-source "tonic-prost" "0.14.5" |
| 32187 | "02fkg2bv87q0yds2wz3w0s7i1x6qcgbrl00dy6ipajdapfh7clx5")) | 32573 | "02fkg2bv87q0yds2wz3w0s7i1x6qcgbrl00dy6ipajdapfh7clx5")) |
| 32188 | 32574 | ||
| 32575 | (define rust-tonic-prost-build-0.14.3 | ||
| 32576 | (crate-source "tonic-prost-build" "0.14.3" | ||
| 32577 | "13wqmsmh3n786gpl65gpmky5ra311dksld6i9vpwz49pc636fmd4")) | ||
| 32578 | |||
| 32189 | (define rust-topological-sort-0.2.2 | 32579 | (define rust-topological-sort-0.2.2 |
| 32190 | (crate-source "topological-sort" "0.2.2" | 32580 | (crate-source "topological-sort" "0.2.2" |
| 32191 | "0gcxahg24c058izagz642vs0kfb2zja48my3qrd0kkaf2d730s7a")) | 32581 | "0gcxahg24c058izagz642vs0kfb2zja48my3qrd0kkaf2d730s7a")) |
| @@ -36308,9 +36698,29 @@ | |||
| 36308 | "17gblaqmp51znxd2c18c04k8yfnf7s77c04n6hdmzxbcr52fxxaj" | 36698 | "17gblaqmp51znxd2c18c04k8yfnf7s77c04n6hdmzxbcr52fxxaj" |
| 36309 | #:snippet '(delete-file-recursively "tests"))) | 36699 | #:snippet '(delete-file-recursively "tests"))) |
| 36310 | 36700 | ||
| 36701 | (define rust-webrtc-sys-0.3.24.e2d1d1d | ||
| 36702 | ;; TODO REVIEW: Define standalone package if this is a workspace. | ||
| 36703 | (origin | ||
| 36704 | (method git-fetch) | ||
| 36705 | (uri (git-reference | ||
| 36706 | (url "https://github.com/juberti-oai/rust-sdks.git") | ||
| 36707 | (commit "e2d1d1d230c6fc9df171ccb181423f957bb3c1f0"))) | ||
| 36708 | (file-name (git-file-name "rust-webrtc-sys" "0.3.24.e2d1d1d")) | ||
| 36709 | (sha256 (base32 "00xwa6w00kdv9nd4a2206wyz3aw61al914xd1g8kj4gx9bmdhic2")))) | ||
| 36710 | |||
| 36311 | (define rust-webrtc-sys-0.3.7.5f04705 | 36711 | (define rust-webrtc-sys-0.3.7.5f04705 |
| 36312 | package:rust-livekit-0.7.8.5f04705) | 36712 | package:rust-livekit-0.7.8.5f04705) |
| 36313 | 36713 | ||
| 36714 | (define rust-webrtc-sys-build-0.3.13.e2d1d1d | ||
| 36715 | ;; TODO REVIEW: Define standalone package if this is a workspace. | ||
| 36716 | (origin | ||
| 36717 | (method git-fetch) | ||
| 36718 | (uri (git-reference | ||
| 36719 | (url "https://github.com/juberti-oai/rust-sdks.git") | ||
| 36720 | (commit "e2d1d1d230c6fc9df171ccb181423f957bb3c1f0"))) | ||
| 36721 | (file-name (git-file-name "rust-webrtc-sys-build" "0.3.13.e2d1d1d")) | ||
| 36722 | (sha256 (base32 "00xwa6w00kdv9nd4a2206wyz3aw61al914xd1g8kj4gx9bmdhic2")))) | ||
| 36723 | |||
| 36314 | (define rust-webrtc-sys-build-0.3.6.5f04705 | 36724 | (define rust-webrtc-sys-build-0.3.6.5f04705 |
| 36315 | package:rust-livekit-0.7.8.5f04705) | 36725 | package:rust-livekit-0.7.8.5f04705) |
| 36316 | 36726 | ||
| @@ -46493,13 +46903,1288 @@ | |||
| 46493 | rust-atoi-2.0.0 | 46903 | rust-atoi-2.0.0 |
| 46494 | rust-atomic-waker-1.1.2 | 46904 | rust-atomic-waker-1.1.2 |
| 46495 | rust-autocfg-1.5.0 | 46905 | rust-autocfg-1.5.0 |
| 46906 | rust-aws-config-1.8.12 | ||
| 46907 | rust-aws-credential-types-1.2.11 | ||
| 46908 | rust-aws-lc-rs-1.16.2 | ||
| 46909 | rust-aws-lc-sys-0.39.0 | ||
| 46910 | rust-aws-runtime-1.5.17 | ||
| 46911 | rust-aws-sdk-sso-1.91.0 | ||
| 46912 | rust-aws-sdk-ssooidc-1.93.0 | ||
| 46913 | rust-aws-sdk-sts-1.95.0 | ||
| 46914 | rust-aws-sigv4-1.3.7 | ||
| 46915 | rust-aws-smithy-async-1.2.14 | ||
| 46916 | rust-aws-smithy-http-0.62.6 | ||
| 46917 | rust-aws-smithy-http-client-1.1.12 | ||
| 46918 | rust-aws-smithy-json-0.61.9 | ||
| 46919 | rust-aws-smithy-observability-0.1.5 | ||
| 46920 | rust-aws-smithy-query-0.60.9 | ||
| 46921 | rust-aws-smithy-runtime-1.9.5 | ||
| 46922 | rust-aws-smithy-runtime-api-1.12.0 | ||
| 46923 | rust-aws-smithy-runtime-api-macros-1.0.0 | ||
| 46924 | rust-aws-smithy-types-1.4.7 | ||
| 46925 | rust-aws-smithy-xml-0.60.13 | ||
| 46926 | rust-aws-types-1.3.11 | ||
| 46927 | rust-axum-0.8.8 | ||
| 46928 | rust-axum-core-0.5.6 | ||
| 46929 | rust-backtrace-0.3.76 | ||
| 46930 | rust-base16ct-0.2.0 | ||
| 46931 | rust-base64-0.21.7 | ||
| 46932 | rust-base64-0.22.1 | ||
| 46933 | rust-base64-simd-0.8.0 | ||
| 46934 | rust-base64ct-1.8.3 | ||
| 46935 | rust-basic-toml-0.1.10 | ||
| 46936 | rust-bech32-0.9.1 | ||
| 46937 | rust-beef-0.5.2 | ||
| 46938 | rust-bincode-1.3.3 | ||
| 46939 | rust-bindgen-0.72.1 | ||
| 46940 | rust-bit-set-0.5.3 | ||
| 46941 | rust-bit-vec-0.6.3 | ||
| 46942 | rust-bitflags-1.3.2 | ||
| 46943 | rust-bitflags-2.10.0 | ||
| 46944 | rust-blake2-0.10.6 | ||
| 46945 | rust-block-buffer-0.10.4 | ||
| 46946 | rust-block-padding-0.3.3 | ||
| 46947 | rust-block2-0.6.2 | ||
| 46948 | rust-blocking-1.6.2 | ||
| 46949 | rust-bm25-2.3.2 | ||
| 46950 | rust-borsh-1.6.0 | ||
| 46951 | rust-bstr-1.12.1 | ||
| 46952 | rust-bumpalo-3.19.1 | ||
| 46953 | rust-bytemuck-1.25.0 | ||
| 46954 | rust-byteorder-1.5.0 | ||
| 46955 | rust-byteorder-lite-0.1.0 | ||
| 46956 | rust-bytes-1.11.1 | ||
| 46957 | rust-bytes-utils-0.1.4 | ||
| 46958 | rust-bytestring-1.5.0 | ||
| 46959 | rust-bzip2-0.4.4 | ||
| 46960 | rust-bzip2-0.5.2 | ||
| 46961 | rust-bzip2-sys-0.1.13+1.0.8 | ||
| 46962 | rust-cached-0.56.0 | ||
| 46963 | rust-cached-proc-macro-0.25.0 | ||
| 46964 | rust-cached-proc-macro-types-0.1.1 | ||
| 46965 | rust-calendrical-calculations-0.2.3 | ||
| 46966 | rust-cassowary-0.3.0 | ||
| 46967 | rust-castaway-0.2.4 | ||
| 46968 | rust-cbc-0.1.2 | ||
| 46969 | rust-cc-1.2.55 | ||
| 46970 | rust-cesu8-1.1.0 | ||
| 46971 | rust-cexpr-0.6.0 | ||
| 46972 | rust-cfg-expr-0.20.7 | ||
| 46973 | rust-cfg-if-1.0.4 | ||
| 46974 | rust-cfg-aliases-0.1.1 | ||
| 46975 | rust-cfg-aliases-0.2.1 | ||
| 46976 | rust-chacha20-0.9.1 | ||
| 46977 | rust-chacha20poly1305-0.10.1 | ||
| 46978 | rust-chardetng-0.1.17 | ||
| 46979 | rust-chrono-0.4.43 | ||
| 46980 | rust-chunked-transfer-1.5.0 | ||
| 46981 | rust-cipher-0.4.4 | ||
| 46982 | rust-clang-sys-1.8.1 | ||
| 46983 | rust-clap-4.5.58 | ||
| 46984 | rust-clap-builder-4.5.58 | ||
| 46985 | rust-clap-complete-4.5.65 | ||
| 46986 | rust-clap-derive-4.5.55 | ||
| 46987 | rust-clap-lex-1.0.0 | ||
| 46988 | rust-clipboard-win-5.4.1 | ||
| 46989 | rust-clru-0.6.3 | ||
| 46990 | rust-cmake-0.1.57 | ||
| 46991 | rust-cmp-any-0.8.1 | ||
| 46992 | rust-codespan-reporting-0.13.1 | ||
| 46993 | rust-codex-agent-identity-0.124.0 | ||
| 46994 | rust-codex-analytics-0.124.0 | ||
| 46995 | rust-codex-ansi-escape-0.124.0 | ||
| 46996 | rust-codex-api-0.124.0 | ||
| 46997 | rust-codex-app-server-0.124.0 | ||
| 46998 | rust-codex-app-server-client-0.124.0 | ||
| 46999 | rust-codex-app-server-protocol-0.124.0 | ||
| 47000 | rust-codex-app-server-test-client-0.124.0 | ||
| 47001 | rust-codex-apply-patch-0.124.0 | ||
| 47002 | rust-codex-arg0-0.124.0 | ||
| 47003 | rust-codex-async-utils-0.124.0 | ||
| 47004 | rust-codex-aws-auth-0.124.0 | ||
| 47005 | rust-codex-backend-client-0.124.0 | ||
| 47006 | rust-codex-backend-openapi-models-0.124.0 | ||
| 47007 | rust-codex-chatgpt-0.124.0 | ||
| 47008 | rust-codex-cli-0.124.0 | ||
| 47009 | rust-codex-client-0.124.0 | ||
| 47010 | rust-codex-cloud-requirements-0.124.0 | ||
| 47011 | rust-codex-cloud-tasks-0.124.0 | ||
| 47012 | rust-codex-cloud-tasks-client-0.124.0 | ||
| 47013 | rust-codex-cloud-tasks-mock-client-0.124.0 | ||
| 47014 | rust-codex-code-mode-0.124.0 | ||
| 47015 | rust-codex-collaboration-mode-templates-0.124.0 | ||
| 47016 | rust-codex-config-0.124.0 | ||
| 47017 | rust-codex-connectors-0.124.0 | ||
| 47018 | rust-codex-core-0.124.0 | ||
| 47019 | rust-codex-core-plugins-0.124.0 | ||
| 47020 | rust-codex-core-skills-0.124.0 | ||
| 47021 | rust-codex-debug-client-0.124.0 | ||
| 47022 | rust-codex-device-key-0.124.0 | ||
| 47023 | rust-codex-exec-0.124.0 | ||
| 47024 | rust-codex-exec-server-0.124.0 | ||
| 47025 | rust-codex-execpolicy-0.124.0 | ||
| 47026 | rust-codex-execpolicy-legacy-0.124.0 | ||
| 47027 | rust-codex-experimental-api-macros-0.124.0 | ||
| 47028 | rust-codex-features-0.124.0 | ||
| 47029 | rust-codex-feedback-0.124.0 | ||
| 47030 | rust-codex-file-search-0.124.0 | ||
| 47031 | rust-codex-git-utils-0.124.0 | ||
| 47032 | rust-codex-hooks-0.124.0 | ||
| 47033 | rust-codex-install-context-0.124.0 | ||
| 47034 | rust-codex-keyring-store-0.124.0 | ||
| 47035 | rust-codex-linux-sandbox-0.124.0 | ||
| 47036 | rust-codex-lmstudio-0.124.0 | ||
| 47037 | rust-codex-login-0.124.0 | ||
| 47038 | rust-codex-mcp-0.124.0 | ||
| 47039 | rust-codex-mcp-server-0.124.0 | ||
| 47040 | rust-codex-model-provider-0.124.0 | ||
| 47041 | rust-codex-model-provider-info-0.124.0 | ||
| 47042 | rust-codex-models-manager-0.124.0 | ||
| 47043 | rust-codex-network-proxy-0.124.0 | ||
| 47044 | rust-codex-ollama-0.124.0 | ||
| 47045 | rust-codex-otel-0.124.0 | ||
| 47046 | rust-codex-plugin-0.124.0 | ||
| 47047 | rust-codex-process-hardening-0.124.0 | ||
| 47048 | rust-codex-protocol-0.124.0 | ||
| 47049 | rust-codex-realtime-webrtc-0.124.0 | ||
| 47050 | rust-codex-response-debug-context-0.124.0 | ||
| 47051 | rust-codex-responses-api-proxy-0.124.0 | ||
| 47052 | rust-codex-rmcp-client-0.124.0 | ||
| 47053 | rust-codex-rollout-0.124.0 | ||
| 47054 | rust-codex-rollout-trace-0.124.0 | ||
| 47055 | rust-codex-sandboxing-0.124.0 | ||
| 47056 | rust-codex-secrets-0.124.0 | ||
| 47057 | rust-codex-shell-command-0.124.0 | ||
| 47058 | rust-codex-shell-escalation-0.124.0 | ||
| 47059 | rust-codex-skills-0.124.0 | ||
| 47060 | rust-codex-state-0.124.0 | ||
| 47061 | rust-codex-stdio-to-uds-0.124.0 | ||
| 47062 | rust-codex-terminal-detection-0.124.0 | ||
| 47063 | rust-codex-test-binary-support-0.124.0 | ||
| 47064 | rust-codex-thread-store-0.124.0 | ||
| 47065 | rust-codex-tools-0.124.0 | ||
| 47066 | rust-codex-tui-0.124.0 | ||
| 47067 | rust-codex-uds-0.124.0 | ||
| 47068 | rust-codex-utils-absolute-path-0.124.0 | ||
| 47069 | rust-codex-utils-approval-presets-0.124.0 | ||
| 47070 | rust-codex-utils-cache-0.124.0 | ||
| 47071 | rust-codex-utils-cargo-bin-0.124.0 | ||
| 47072 | rust-codex-utils-cli-0.124.0 | ||
| 47073 | rust-codex-utils-elapsed-0.124.0 | ||
| 47074 | rust-codex-utils-fuzzy-match-0.124.0 | ||
| 47075 | rust-codex-utils-home-dir-0.124.0 | ||
| 47076 | rust-codex-utils-image-0.124.0 | ||
| 47077 | rust-codex-utils-json-to-toml-0.124.0 | ||
| 47078 | rust-codex-utils-oss-0.124.0 | ||
| 47079 | rust-codex-utils-output-truncation-0.124.0 | ||
| 47080 | rust-codex-utils-path-0.124.0 | ||
| 47081 | rust-codex-utils-plugins-0.124.0 | ||
| 47082 | rust-codex-utils-pty-0.124.0 | ||
| 47083 | rust-codex-utils-readiness-0.124.0 | ||
| 47084 | rust-codex-utils-rustls-provider-0.124.0 | ||
| 47085 | rust-codex-utils-sandbox-summary-0.124.0 | ||
| 47086 | rust-codex-utils-sleep-inhibitor-0.124.0 | ||
| 47087 | rust-codex-utils-stream-parser-0.124.0 | ||
| 47088 | rust-codex-utils-string-0.124.0 | ||
| 47089 | rust-codex-utils-template-0.124.0 | ||
| 47090 | rust-codex-v8-poc-0.124.0 | ||
| 47091 | rust-codex-windows-sandbox-0.124.0 | ||
| 47092 | rust-color-eyre-0.6.5 | ||
| 47093 | rust-color-spantrace-0.3.0 | ||
| 47094 | rust-color-quant-1.1.0 | ||
| 47095 | rust-colorchoice-1.0.4 | ||
| 47096 | rust-combine-4.6.7 | ||
| 47097 | rust-compact-str-0.8.1 | ||
| 47098 | rust-concurrent-queue-2.5.0 | ||
| 47099 | rust-console-0.15.11 | ||
| 47100 | rust-const-hex-1.17.0 | ||
| 47101 | rust-const-oid-0.9.6 | ||
| 47102 | rust-const-format-0.2.35 | ||
| 47103 | rust-const-format-proc-macros-0.2.34 | ||
| 47104 | rust-constant-time-eq-0.1.5 | ||
| 47105 | rust-constant-time-eq-0.3.1 | ||
| 47106 | rust-convert-case-0.6.0 | ||
| 47107 | rust-convert-case-0.10.0 | ||
| 47108 | rust-cookie-0.18.1 | ||
| 47109 | rust-cookie-factory-0.3.3 | ||
| 47110 | rust-cookie-store-0.22.1 | ||
| 47111 | rust-core-foundation-0.9.4 | ||
| 47112 | rust-core-foundation-0.10.1 | ||
| 47113 | rust-core-foundation-sys-0.8.7 | ||
| 47114 | rust-core-maths-0.1.1 | ||
| 47115 | rust-coreaudio-rs-0.11.3 | ||
| 47116 | rust-coreaudio-sys-0.2.17 | ||
| 47117 | rust-cpal-0.15.3 | ||
| 47118 | rust-cpufeatures-0.2.17 | ||
| 47119 | rust-crc-3.4.0 | ||
| 47120 | rust-crc-catalog-2.4.0 | ||
| 47121 | rust-crc32fast-1.5.0 | ||
| 47122 | rust-critical-section-1.2.0 | ||
| 47123 | rust-crossbeam-channel-0.5.15 | ||
| 47124 | rust-crossbeam-deque-0.8.6 | ||
| 47125 | rust-crossbeam-epoch-0.9.18 | ||
| 47126 | rust-crossbeam-queue-0.3.12 | ||
| 47127 | rust-crossbeam-utils-0.8.21 | ||
| 47128 | rust-crossterm-0.28.1.87db8bf | ||
| 47129 | rust-crossterm-winapi-0.9.1 | ||
| 47130 | rust-crunchy-0.2.4 | ||
| 47131 | rust-crypto-bigint-0.5.5 | ||
| 47132 | rust-crypto-common-0.1.7 | ||
| 47133 | rust-crypto-box-0.9.1 | ||
| 47134 | rust-crypto-secretbox-0.1.1 | ||
| 47135 | rust-csv-1.4.0 | ||
| 47136 | rust-csv-core-0.1.13 | ||
| 47137 | rust-ctor-0.1.26 | ||
| 47138 | rust-ctor-0.6.3 | ||
| 47139 | rust-ctor-proc-macro-0.0.7 | ||
| 47140 | rust-curve25519-dalek-4.1.3 | ||
| 47141 | rust-curve25519-dalek-derive-0.1.1 | ||
| 47142 | rust-cxx-1.0.194 | ||
| 47143 | rust-cxx-build-1.0.194 | ||
| 47144 | rust-cxxbridge-cmd-1.0.194 | ||
| 47145 | rust-cxxbridge-flags-1.0.194 | ||
| 47146 | rust-cxxbridge-macro-1.0.194 | ||
| 47147 | rust-darling-0.20.11 | ||
| 47148 | rust-darling-0.21.3 | ||
| 47149 | rust-darling-0.23.0 | ||
| 47150 | rust-darling-core-0.20.11 | ||
| 47151 | rust-darling-core-0.21.3 | ||
| 47152 | rust-darling-core-0.23.0 | ||
| 47153 | rust-darling-macro-0.20.11 | ||
| 47154 | rust-darling-macro-0.21.3 | ||
| 47155 | rust-darling-macro-0.23.0 | ||
| 47156 | rust-dashmap-6.1.0 | ||
| 47157 | rust-dasp-sample-0.11.0 | ||
| 47158 | rust-data-encoding-2.10.0 | ||
| 47159 | rust-dbus-0.9.10 | ||
| 47160 | rust-dbus-secret-service-4.1.0 | ||
| 47161 | rust-deadpool-0.12.3 | ||
| 47162 | rust-deadpool-runtime-0.1.4 | ||
| 47163 | rust-debugid-0.8.0 | ||
| 47164 | rust-debugserver-types-0.5.0 | ||
| 47165 | rust-deflate64-0.1.10 | ||
| 47166 | rust-deno-core-icudata-0.77.0 | ||
| 47167 | rust-der-0.7.10 | ||
| 47168 | rust-der-parser-10.0.0 | ||
| 47169 | rust-deranged-0.5.5 | ||
| 47170 | rust-derivative-2.2.0 | ||
| 47171 | rust-derive-arbitrary-1.4.2 | ||
| 47172 | rust-derive-more-1.0.0 | ||
| 47173 | rust-derive-more-2.1.1 | ||
| 47174 | rust-derive-more-impl-1.0.0 | ||
| 47175 | rust-derive-more-impl-2.1.1 | ||
| 47176 | rust-deunicode-1.6.2 | ||
| 47177 | rust-diff-0.1.13 | ||
| 47178 | rust-difflib-0.4.0 | ||
| 47179 | rust-diffy-0.4.2 | ||
| 47180 | rust-digest-0.10.7 | ||
| 47181 | rust-diplomat-0.14.0 | ||
| 47182 | rust-diplomat-runtime-0.14.0 | ||
| 47183 | rust-diplomat-core-0.14.0 | ||
| 47184 | rust-dirs-6.0.0 | ||
| 47185 | rust-dirs-next-2.0.0 | ||
| 47186 | rust-dirs-sys-0.5.0 | ||
| 47187 | rust-dirs-sys-next-0.1.2 | ||
| 47188 | rust-dispatch2-0.3.0 | ||
| 47189 | rust-display-container-0.9.0 | ||
| 47190 | rust-displaydoc-0.2.5 | ||
| 47191 | rust-dns-lookup-3.0.1 | ||
| 47192 | rust-document-features-0.2.12 | ||
| 47193 | rust-dotenvy-0.15.7 | ||
| 47194 | rust-downcast-rs-1.2.1 | ||
| 47195 | rust-dtor-0.1.1 | ||
| 47196 | rust-dtor-proc-macro-0.0.6 | ||
| 47197 | rust-dunce-1.0.5 | ||
| 47198 | rust-dupe-0.9.1 | ||
| 47199 | rust-dupe-derive-0.9.1 | ||
| 47200 | rust-dyn-clone-1.0.20 | ||
| 47201 | rust-ecdsa-0.16.9 | ||
| 47202 | rust-ed25519-2.2.3 | ||
| 47203 | rust-ed25519-dalek-2.2.0 | ||
| 47204 | rust-either-1.15.0 | ||
| 47205 | rust-elliptic-curve-0.13.8 | ||
| 47206 | rust-ena-0.14.3 | ||
| 47207 | rust-encode-unicode-1.0.0 | ||
| 47208 | rust-encoding-rs-0.8.35 | ||
| 47209 | rust-endi-1.1.1 | ||
| 47210 | rust-endian-type-0.1.2 | ||
| 47211 | rust-endian-type-0.2.0 | ||
| 47212 | rust-enum-as-inner-0.6.1 | ||
| 47213 | rust-enumflags2-0.7.12 | ||
| 47214 | rust-enumflags2-derive-0.7.12 | ||
| 47215 | rust-env-flags-0.1.1 | ||
| 47216 | rust-env-filter-1.0.0 | ||
| 47217 | rust-env-home-0.1.0 | ||
| 47218 | rust-env-logger-0.11.9 | ||
| 47219 | rust-equivalent-1.0.2 | ||
| 47220 | rust-erased-serde-0.3.31 | ||
| 47221 | rust-errno-0.3.14 | ||
| 47222 | rust-error-code-3.3.2 | ||
| 47223 | rust-etcetera-0.8.0 | ||
| 47224 | rust-event-listener-5.4.1 | ||
| 47225 | rust-event-listener-strategy-0.5.4 | ||
| 47226 | rust-eventsource-stream-0.2.3 | ||
| 47227 | rust-eyre-0.6.12 | ||
| 47228 | rust-faster-hex-0.10.0 | ||
| 47229 | rust-fastrand-2.3.0 | ||
| 47230 | rust-fax-0.2.6 | ||
| 47231 | rust-fax-derive-0.2.0 | ||
| 47232 | rust-fd-lock-4.0.4 | ||
| 47233 | rust-fdeflate-0.3.7 | ||
| 47234 | rust-ff-0.13.1 | ||
| 47235 | rust-fiat-crypto-0.2.9 | ||
| 47236 | rust-filedescriptor-0.8.3 | ||
| 47237 | rust-filetime-0.2.27 | ||
| 47238 | rust-find-crate-0.6.3 | ||
| 47239 | rust-find-msvc-tools-0.1.9 | ||
| 47240 | rust-findshlibs-0.10.2 | ||
| 47241 | rust-fixed-decimal-0.7.1 | ||
| 47242 | rust-fixedbitset-0.4.2 | ||
| 47243 | rust-fixedbitset-0.5.7 | ||
| 47244 | rust-flate2-1.1.8 | ||
| 47245 | rust-float-cmp-0.10.0 | ||
| 47246 | rust-fluent-0.16.1 | ||
| 47247 | rust-fluent-bundle-0.15.3 | ||
| 47248 | rust-fluent-langneg-0.13.1 | ||
| 47249 | rust-fluent-syntax-0.11.1 | ||
| 47250 | rust-flume-0.11.1 | ||
| 47251 | rust-flume-0.12.0 | ||
| 47252 | rust-fnv-1.0.7 | ||
| 47253 | rust-foldhash-0.1.5 | ||
| 47254 | rust-foldhash-0.2.0 | ||
| 47255 | rust-foreign-types-0.3.2 | ||
| 47256 | rust-foreign-types-shared-0.1.1 | ||
| 47257 | rust-form-urlencoded-1.2.2 | ||
| 47258 | rust-fs2-0.4.3 | ||
| 47259 | rust-fs-extra-1.3.0 | ||
| 47260 | rust-fsevent-sys-4.1.0 | ||
| 47261 | rust-fslock-0.2.1 | ||
| 47262 | rust-futures-0.3.31 | ||
| 47263 | rust-futures-channel-0.3.31 | ||
| 47264 | rust-futures-core-0.3.31 | ||
| 47265 | rust-futures-executor-0.3.31 | ||
| 47266 | rust-futures-intrusive-0.5.0 | ||
| 47267 | rust-futures-io-0.3.31 | ||
| 47268 | rust-futures-lite-2.6.1 | ||
| 47269 | rust-futures-macro-0.3.31 | ||
| 47270 | rust-futures-sink-0.3.31 | ||
| 47271 | rust-futures-task-0.3.31 | ||
| 47272 | rust-futures-util-0.3.31 | ||
| 47273 | rust-fxhash-0.2.1 | ||
| 47274 | rust-generator-0.8.8 | ||
| 47275 | rust-generic-array-0.14.7 | ||
| 47276 | rust-gethostname-1.1.0 | ||
| 47277 | rust-getopts-0.2.24 | ||
| 47278 | rust-getrandom-0.2.17 | ||
| 47279 | rust-getrandom-0.3.4 | ||
| 47280 | rust-gif-0.14.1 | ||
| 47281 | rust-gimli-0.32.3 | ||
| 47282 | rust-gio-sys-0.21.5 | ||
| 47283 | rust-gix-0.81.0 | ||
| 47284 | rust-gix-actor-0.40.0 | ||
| 47285 | rust-gix-archive-0.30.0 | ||
| 47286 | rust-gix-attributes-0.31.0 | ||
| 47287 | rust-gix-bitmap-0.3.0 | ||
| 47288 | rust-gix-blame-0.11.0 | ||
| 47289 | rust-gix-chunk-0.7.0 | ||
| 47290 | rust-gix-command-0.8.0 | ||
| 47291 | rust-gix-commitgraph-0.35.0 | ||
| 47292 | rust-gix-config-0.54.0 | ||
| 47293 | rust-gix-config-value-0.17.1 | ||
| 47294 | rust-gix-date-0.15.1 | ||
| 47295 | rust-gix-diff-0.61.0 | ||
| 47296 | rust-gix-dir-0.23.0 | ||
| 47297 | rust-gix-discover-0.49.0 | ||
| 47298 | rust-gix-error-0.2.1 | ||
| 47299 | rust-gix-features-0.46.2 | ||
| 47300 | rust-gix-filter-0.28.0 | ||
| 47301 | rust-gix-fs-0.19.2 | ||
| 47302 | rust-gix-glob-0.24.0 | ||
| 47303 | rust-gix-hash-0.23.0 | ||
| 47304 | rust-gix-hashtable-0.13.0 | ||
| 47305 | rust-gix-ignore-0.19.1 | ||
| 47306 | rust-gix-index-0.49.0 | ||
| 47307 | rust-gix-lock-21.0.2 | ||
| 47308 | rust-gix-merge-0.14.0 | ||
| 47309 | rust-gix-negotiate-0.29.0 | ||
| 47310 | rust-gix-object-0.58.0 | ||
| 47311 | rust-gix-odb-0.78.0 | ||
| 47312 | rust-gix-pack-0.68.0 | ||
| 47313 | rust-gix-packetline-0.21.2 | ||
| 47314 | rust-gix-path-0.11.2 | ||
| 47315 | rust-gix-pathspec-0.16.1 | ||
| 47316 | rust-gix-protocol-0.59.0 | ||
| 47317 | rust-gix-quote-0.7.0 | ||
| 47318 | rust-gix-ref-0.61.0 | ||
| 47319 | rust-gix-refspec-0.39.0 | ||
| 47320 | rust-gix-revision-0.43.0 | ||
| 47321 | rust-gix-revwalk-0.29.0 | ||
| 47322 | rust-gix-sec-0.13.2 | ||
| 47323 | rust-gix-shallow-0.10.0 | ||
| 47324 | rust-gix-status-0.28.0 | ||
| 47325 | rust-gix-submodule-0.28.0 | ||
| 47326 | rust-gix-tempfile-21.0.2 | ||
| 47327 | rust-gix-trace-0.1.18 | ||
| 47328 | rust-gix-transport-0.55.1 | ||
| 47329 | rust-gix-traverse-0.55.0 | ||
| 47330 | rust-gix-url-0.35.2 | ||
| 47331 | rust-gix-utils-0.3.1 | ||
| 47332 | rust-gix-validate-0.11.0 | ||
| 47333 | rust-gix-worktree-0.50.0 | ||
| 47334 | rust-gix-worktree-state-0.28.0 | ||
| 47335 | rust-gix-worktree-stream-0.30.0 | ||
| 47336 | rust-glib-0.21.5 | ||
| 47337 | rust-glib-macros-0.21.5 | ||
| 47338 | rust-glib-sys-0.21.5 | ||
| 47339 | rust-glob-0.3.3 | ||
| 47340 | rust-globset-0.4.18 | ||
| 47341 | rust-gobject-sys-0.21.5 | ||
| 47342 | rust-group-0.13.0 | ||
| 47343 | rust-gzip-header-1.0.0 | ||
| 47344 | rust-h2-0.4.13 | ||
| 47345 | rust-half-2.7.1 | ||
| 47346 | rust-hash32-0.3.1 | ||
| 47347 | rust-hashbrown-0.12.3 | ||
| 47348 | rust-hashbrown-0.14.5 | ||
| 47349 | rust-hashbrown-0.15.5 | ||
| 47350 | rust-hashbrown-0.16.1 | ||
| 47351 | rust-hashlink-0.10.0 | ||
| 47352 | rust-headers-0.4.1 | ||
| 47353 | rust-headers-core-0.3.0 | ||
| 47354 | rust-heapless-0.8.0 | ||
| 47355 | rust-heck-0.4.1 | ||
| 47356 | rust-heck-0.5.0 | ||
| 47357 | rust-hermit-abi-0.5.2 | ||
| 47358 | rust-hex-0.4.3 | ||
| 47359 | rust-hickory-proto-0.25.2 | ||
| 47360 | rust-hickory-resolver-0.25.2 | ||
| 47361 | rust-hkdf-0.12.4 | ||
| 47362 | rust-hmac-0.12.1 | ||
| 47363 | rust-home-0.5.12 | ||
| 47364 | rust-hostname-0.4.2 | ||
| 47365 | rust-http-0.2.12 | ||
| 47366 | rust-http-1.4.0 | ||
| 47367 | rust-http-body-0.4.6 | ||
| 47368 | rust-http-body-1.0.1 | ||
| 47369 | rust-http-body-util-0.1.3 | ||
| 47370 | rust-http-range-header-0.4.2 | ||
| 47371 | rust-httparse-1.10.1 | ||
| 47372 | rust-httpdate-1.0.3 | ||
| 47373 | rust-hyper-1.8.1 | ||
| 47374 | rust-hyper-rustls-0.27.7 | ||
| 47375 | rust-hyper-timeout-0.5.2 | ||
| 47376 | rust-hyper-tls-0.6.0 | ||
| 47377 | rust-hyper-util-0.1.20 | ||
| 47378 | rust-i18n-config-0.4.8 | ||
| 47379 | rust-i18n-embed-0.15.4 | ||
| 47380 | rust-i18n-embed-fl-0.9.4 | ||
| 47381 | rust-i18n-embed-impl-0.8.4 | ||
| 47382 | rust-iana-time-zone-0.1.65 | ||
| 47383 | rust-iana-time-zone-haiku-0.1.2 | ||
| 47384 | rust-icu-calendar-2.1.1 | ||
| 47385 | rust-icu-calendar-data-2.1.1 | ||
| 47386 | rust-icu-collections-2.1.1 | ||
| 47387 | rust-icu-decimal-2.1.1 | ||
| 47388 | rust-icu-decimal-data-2.1.1 | ||
| 47389 | rust-icu-locale-2.1.1 | ||
| 47390 | rust-icu-locale-core-2.1.1 | ||
| 47391 | rust-icu-locale-data-2.1.2 | ||
| 47392 | rust-icu-normalizer-2.1.1 | ||
| 47393 | rust-icu-normalizer-data-2.1.1 | ||
| 47394 | rust-icu-properties-2.1.2 | ||
| 47395 | rust-icu-properties-data-2.1.2 | ||
| 47396 | rust-icu-provider-2.1.1 | ||
| 47397 | rust-ident-case-1.0.1 | ||
| 47398 | rust-idna-1.1.0 | ||
| 47399 | rust-idna-adapter-1.2.1 | ||
| 47400 | rust-ignore-0.4.25 | ||
| 47401 | rust-image-0.25.9 | ||
| 47402 | rust-image-webp-0.2.4 | ||
| 47403 | rust-imara-diff-0.1.8 | ||
| 47404 | rust-imara-diff-0.2.0 | ||
| 47405 | rust-impl-more-0.1.9 | ||
| 47406 | rust-include-dir-0.7.4 | ||
| 47407 | rust-include-dir-macros-0.7.4 | ||
| 47408 | rust-indenter-0.3.4 | ||
| 47409 | rust-indexmap-1.9.3 | ||
| 47410 | rust-indexmap-2.13.0 | ||
| 47411 | rust-indoc-2.0.7 | ||
| 47412 | rust-inotify-0.11.0 | ||
| 47413 | rust-inotify-sys-0.1.5 | ||
| 47414 | rust-inout-0.1.4 | ||
| 47415 | rust-insta-1.46.3 | ||
| 47416 | rust-instability-0.3.11 | ||
| 47417 | rust-intl-memoizer-0.5.3 | ||
| 47418 | rust-intl-pluralrules-7.0.2 | ||
| 47419 | rust-inventory-0.3.21 | ||
| 47420 | rust-io-close-0.3.7 | ||
| 47421 | rust-io-tee-0.1.1 | ||
| 47422 | rust-ipconfig-0.3.2 | ||
| 47423 | rust-ipnet-2.11.0 | ||
| 47424 | rust-iri-string-0.7.10 | ||
| 47425 | rust-is-terminal-0.4.17 | ||
| 47426 | rust-is-ci-1.2.0 | ||
| 47427 | rust-is-terminal-polyfill-1.70.2 | ||
| 47428 | rust-itertools-0.10.5 | ||
| 47429 | rust-itertools-0.11.0 | ||
| 47430 | rust-itertools-0.13.0 | ||
| 47431 | rust-itertools-0.14.0 | ||
| 47432 | rust-itoa-1.0.17 | ||
| 47433 | rust-ixdtf-0.6.4 | ||
| 47434 | rust-jiff-0.2.23 | ||
| 47435 | rust-jiff-static-0.2.23 | ||
| 47436 | rust-jiff-tzdb-0.1.6 | ||
| 47437 | rust-jiff-tzdb-platform-0.1.3 | ||
| 47438 | rust-jni-0.21.1 | ||
| 47439 | rust-jni-sys-0.3.0 | ||
| 47440 | rust-jobserver-0.1.34 | ||
| 47441 | rust-js-sys-0.3.85 | ||
| 47442 | rust-jsonwebtoken-9.3.1 | ||
| 47443 | rust-keyring-3.6.3 | ||
| 47444 | rust-kqueue-1.1.1 | ||
| 47445 | rust-kqueue-sys-1.0.4 | ||
| 47446 | rust-kstring-2.0.2 | ||
| 47447 | rust-lalrpop-0.19.12 | ||
| 47448 | rust-lalrpop-util-0.19.12 | ||
| 47449 | rust-landlock-0.4.4 | ||
| 47450 | rust-language-tags-0.3.2 | ||
| 47451 | rust-lazy-static-1.5.0 | ||
| 47452 | rust-libc-0.2.182 | ||
| 47453 | rust-libdbus-sys-0.2.7 | ||
| 47454 | rust-libloading-0.8.9 | ||
| 47455 | rust-libm-0.2.16 | ||
| 47456 | rust-libredox-0.1.12 | ||
| 47457 | rust-libsqlite3-sys-0.30.1 | ||
| 47458 | rust-libwebrtc-0.3.26.e2d1d1d | ||
| 47459 | rust-libz-sys-1.1.23 | ||
| 47460 | rust-link-cplusplus-1.0.12 | ||
| 47461 | rust-linked-hash-map-0.5.6 | ||
| 47462 | rust-linux-keyutils-0.2.4 | ||
| 47463 | rust-linux-raw-sys-0.4.15 | ||
| 47464 | rust-linux-raw-sys-0.12.1 | ||
| 47465 | rust-litemap-0.8.1 | ||
| 47466 | rust-litrs-1.0.0 | ||
| 47467 | rust-livekit-protocol-0.7.1.e2d1d1d | ||
| 47468 | rust-livekit-runtime-0.4.0.e2d1d1d | ||
| 47469 | rust-local-waker-0.1.4 | ||
| 47470 | rust-lock-api-0.4.14 | ||
| 47471 | rust-log-0.4.29 | ||
| 47472 | rust-logos-0.12.1 | ||
| 47473 | rust-logos-derive-0.12.1 | ||
| 47474 | rust-loom-0.7.2 | ||
| 47475 | rust-lru-0.12.5 | ||
| 47476 | rust-lru-0.16.3 | ||
| 47477 | rust-lru-slab-0.1.2 | ||
| 47478 | rust-lsp-types-0.94.1 | ||
| 47479 | rust-lzma-rs-0.3.0 | ||
| 47480 | rust-lzma-sys-0.1.20 | ||
| 47481 | rust-mach2-0.4.3 | ||
| 47482 | rust-maplit-1.0.2 | ||
| 47483 | rust-matchers-0.2.0 | ||
| 47484 | rust-matchit-0.8.4 | ||
| 47485 | rust-matchit-0.9.1 | ||
| 47486 | rust-maybe-async-0.2.10 | ||
| 47487 | rust-md-5-0.10.6 | ||
| 47488 | rust-md5-0.8.0 | ||
| 47489 | rust-memchr-2.7.6 | ||
| 47490 | rust-memmap2-0.9.10 | ||
| 47491 | rust-memoffset-0.6.5 | ||
| 47492 | rust-memoffset-0.9.1 | ||
| 47493 | rust-mime-0.3.17 | ||
| 47494 | rust-mime-guess-2.0.5 | ||
| 47495 | rust-minimal-lexical-0.2.1 | ||
| 47496 | rust-miniz-oxide-0.8.9 | ||
| 47497 | rust-mio-1.1.1 | ||
| 47498 | rust-moka-0.12.13 | ||
| 47499 | rust-moxcms-0.7.11 | ||
| 47500 | rust-multimap-0.10.1 | ||
| 47501 | rust-native-tls-0.2.14 | ||
| 47502 | rust-ndk-0.8.0 | ||
| 47503 | rust-ndk-context-0.1.1 | ||
| 47504 | rust-ndk-sys-0.5.0+25.2.9519653 | ||
| 47505 | rust-new-debug-unreachable-1.0.6 | ||
| 47506 | rust-nibble-vec-0.1.0 | ||
| 47507 | rust-nix-0.28.0 | ||
| 47508 | rust-nix-0.29.0 | ||
| 47509 | rust-nix-0.30.1 | ||
| 47510 | rust-nom-7.1.3 | ||
| 47511 | rust-nom-8.0.0 | ||
| 47512 | rust-nonempty-0.12.0 | ||
| 47513 | rust-normalize-line-endings-0.3.0 | ||
| 47514 | rust-notify-8.2.0 | ||
| 47515 | rust-notify-types-2.1.0 | ||
| 47516 | rust-nu-ansi-term-0.50.3 | ||
| 47517 | rust-nucleo-0.5.0.4253de9 | ||
| 47518 | rust-nucleo-matcher-0.3.1.4253de9 | ||
| 47519 | rust-num-0.4.3 | ||
| 47520 | rust-num-bigint-0.4.6 | ||
| 47521 | rust-num-bigint-dig-0.8.6 | ||
| 47522 | rust-num-complex-0.4.6 | ||
| 47523 | rust-num-conv-0.2.0 | ||
| 47524 | rust-num-derive-0.4.2 | ||
| 47525 | rust-num-integer-0.1.46 | ||
| 47526 | rust-num-iter-0.1.45 | ||
| 47527 | rust-num-rational-0.4.2 | ||
| 47528 | rust-num-traits-0.2.19 | ||
| 47529 | rust-num-cpus-1.17.0 | ||
| 47530 | rust-num-enum-0.7.5 | ||
| 47531 | rust-num-enum-derive-0.7.5 | ||
| 47532 | rust-num-threads-0.1.7 | ||
| 47533 | rust-oauth2-5.0.0 | ||
| 47534 | rust-objc2-0.6.3 | ||
| 47535 | rust-objc2-app-kit-0.3.2 | ||
| 47536 | rust-objc2-cloud-kit-0.3.2 | ||
| 47537 | rust-objc2-core-data-0.3.2 | ||
| 47538 | rust-objc2-core-foundation-0.3.2 | ||
| 47539 | rust-objc2-core-graphics-0.3.2 | ||
| 47540 | rust-objc2-core-image-0.3.2 | ||
| 47541 | rust-objc2-core-location-0.3.2 | ||
| 47542 | rust-objc2-core-text-0.3.2 | ||
| 47543 | rust-objc2-encode-4.1.0 | ||
| 47544 | rust-objc2-foundation-0.3.2 | ||
| 47545 | rust-objc2-io-surface-0.3.2 | ||
| 47546 | rust-objc2-quartz-core-0.3.2 | ||
| 47547 | rust-objc2-ui-kit-0.3.2 | ||
| 47548 | rust-objc2-user-notifications-0.3.2 | ||
| 47549 | rust-object-0.37.3 | ||
| 47550 | rust-oboe-0.6.1 | ||
| 47551 | rust-oboe-sys-0.6.1 | ||
| 47552 | rust-oid-registry-0.8.1 | ||
| 47553 | rust-once-cell-1.21.3 | ||
| 47554 | rust-once-cell-polyfill-1.70.2 | ||
| 47555 | rust-onig-6.5.1 | ||
| 47556 | rust-onig-sys-69.9.1 | ||
| 47557 | rust-opaque-debug-0.3.1 | ||
| 47558 | rust-openssl-0.10.75 | ||
| 47559 | rust-openssl-macros-0.1.1 | ||
| 47560 | rust-openssl-probe-0.1.6 | ||
| 47561 | rust-openssl-probe-0.2.1 | ||
| 47562 | rust-openssl-src-300.5.5+3.5.5 | ||
| 47563 | rust-openssl-sys-0.9.111 | ||
| 47564 | rust-opentelemetry-0.31.0 | ||
| 47565 | rust-opentelemetry-appender-tracing-0.31.1 | ||
| 47566 | rust-opentelemetry-http-0.31.0 | ||
| 47567 | rust-opentelemetry-otlp-0.31.0 | ||
| 47568 | rust-opentelemetry-proto-0.31.0 | ||
| 47569 | rust-opentelemetry-semantic-conventions-0.31.0 | ||
| 47570 | rust-opentelemetry-sdk-0.31.0 | ||
| 47571 | rust-option-ext-0.2.0 | ||
| 47572 | rust-ordered-stream-0.2.0 | ||
| 47573 | rust-os-info-3.14.0 | ||
| 47574 | rust-os-pipe-1.2.3 | ||
| 47575 | rust-outref-0.5.2 | ||
| 47576 | rust-owo-colors-4.3.0 | ||
| 47577 | rust-p256-0.13.2 | ||
| 47578 | rust-parking-2.2.1 | ||
| 47579 | rust-parking-lot-0.12.5 | ||
| 47580 | rust-parking-lot-core-0.9.12 | ||
| 47581 | rust-password-hash-0.4.2 | ||
| 47582 | rust-paste-1.0.15 | ||
| 47583 | rust-pastey-0.2.1 | ||
| 47584 | rust-path-absolutize-3.1.1 | ||
| 47585 | rust-path-dedot-3.1.1 | ||
| 47586 | rust-pathdiff-0.2.3 | ||
| 47587 | rust-pbjson-0.6.0 | ||
| 47588 | rust-pbjson-build-0.6.2 | ||
| 47589 | rust-pbjson-types-0.6.0 | ||
| 47590 | rust-pbkdf2-0.11.0 | ||
| 47591 | rust-pbkdf2-0.12.2 | ||
| 47592 | rust-pem-3.0.6 | ||
| 47593 | rust-pem-rfc7468-0.7.0 | ||
| 47594 | rust-percent-encoding-2.3.2 | ||
| 47595 | rust-petgraph-0.6.5 | ||
| 47596 | rust-petgraph-0.8.3 | ||
| 47597 | rust-phf-shared-0.11.3 | ||
| 47598 | rust-pin-project-1.1.10 | ||
| 47599 | rust-pin-project-internal-1.1.10 | ||
| 47600 | rust-pin-project-lite-0.2.16 | ||
| 47601 | rust-pin-utils-0.1.0 | ||
| 47602 | rust-piper-0.2.4 | ||
| 47603 | rust-pkcs1-0.7.5 | ||
| 47604 | rust-pkcs8-0.10.2 | ||
| 47605 | rust-pkg-config-0.3.32 | ||
| 47606 | rust-plist-1.8.0 | ||
| 47607 | rust-png-0.18.0 | ||
| 47608 | rust-polling-3.11.0 | ||
| 47609 | rust-poly1305-0.8.0 | ||
| 47610 | rust-portable-atomic-1.13.1 | ||
| 47611 | rust-portable-atomic-util-0.2.5 | ||
| 47612 | rust-portable-pty-0.9.0 | ||
| 47613 | rust-potential-utf-0.1.4 | ||
| 47614 | rust-powerfmt-0.2.0 | ||
| 47615 | rust-ppv-lite86-0.2.21 | ||
| 47616 | rust-precomputed-hash-0.1.1 | ||
| 47617 | rust-predicates-3.1.3 | ||
| 47618 | rust-predicates-core-1.0.9 | ||
| 47619 | rust-predicates-tree-1.0.12 | ||
| 47620 | rust-pretty-assertions-1.4.1 | ||
| 47621 | rust-prettyplease-0.2.37 | ||
| 47622 | rust-primeorder-0.13.6 | ||
| 47623 | rust-proc-macro-crate-3.4.0 | ||
| 47624 | rust-proc-macro-error-attr2-2.0.0 | ||
| 47625 | rust-proc-macro-error2-2.0.1 | ||
| 47626 | rust-proc-macro2-1.0.106 | ||
| 47627 | rust-process-wrap-9.0.1 | ||
| 47628 | rust-prodash-31.0.0 | ||
| 47629 | rust-proptest-1.9.0 | ||
| 47630 | rust-prost-0.12.6 | ||
| 47631 | rust-prost-0.14.3 | ||
| 47632 | rust-prost-build-0.12.6 | ||
| 47633 | rust-prost-build-0.14.3 | ||
| 47634 | rust-prost-derive-0.12.6 | ||
| 47635 | rust-prost-derive-0.14.3 | ||
| 47636 | rust-prost-types-0.12.6 | ||
| 47637 | rust-prost-types-0.14.3 | ||
| 47638 | rust-psl-2.1.184 | ||
| 47639 | rust-psl-types-2.0.11 | ||
| 47640 | rust-publicsuffix-2.3.0 | ||
| 47641 | rust-pulldown-cmark-0.10.3 | ||
| 47642 | rust-pulldown-cmark-escape-0.10.1 | ||
| 47643 | rust-pxfm-0.1.27 | ||
| 47644 | rust-quick-error-2.0.1 | ||
| 47645 | rust-quick-xml-0.38.4 | ||
| 47646 | rust-quinn-0.11.9 | ||
| 47647 | rust-quinn-proto-0.11.14 | ||
| 47648 | rust-quinn-udp-0.5.14 | ||
| 47649 | rust-quote-1.0.44 | ||
| 47650 | rust-r-efi-5.3.0 | ||
| 47651 | rust-radix-trie-0.2.1 | ||
| 47652 | rust-radix-trie-0.3.0 | ||
| 47653 | rust-rama-core-0.3.0-alpha.4 | ||
| 47654 | rust-rama-dns-0.3.0-alpha.4 | ||
| 47655 | rust-rama-error-0.3.0-alpha.4 | ||
| 47656 | rust-rama-http-0.3.0-alpha.4 | ||
| 47657 | rust-rama-http-backend-0.3.0-alpha.4 | ||
| 47658 | rust-rama-http-core-0.3.0-alpha.4 | ||
| 47659 | rust-rama-http-headers-0.3.0-alpha.4 | ||
| 47660 | rust-rama-http-types-0.3.0-alpha.4 | ||
| 47661 | rust-rama-macros-0.3.0-alpha.4 | ||
| 47662 | rust-rama-net-0.3.0-alpha.4 | ||
| 47663 | rust-rama-socks5-0.3.0-alpha.4 | ||
| 47664 | rust-rama-tcp-0.3.0-alpha.4 | ||
| 47665 | rust-rama-tls-rustls-0.3.0-alpha.4 | ||
| 47666 | rust-rama-udp-0.3.0-alpha.4 | ||
| 47667 | rust-rama-unix-0.3.0-alpha.4 | ||
| 47668 | rust-rama-utils-0.3.0-alpha.4 | ||
| 47669 | rust-rand-0.8.5 | ||
| 47670 | rust-rand-0.9.3 | ||
| 47671 | rust-rand-chacha-0.3.1 | ||
| 47672 | rust-rand-chacha-0.9.0 | ||
| 47673 | rust-rand-core-0.6.4 | ||
| 47674 | rust-rand-core-0.9.5 | ||
| 47675 | rust-rand-xorshift-0.4.0 | ||
| 47676 | rust-ratatui-0.29.0.9b2ad12 | ||
| 47677 | rust-ratatui-macros-0.6.0 | ||
| 47678 | rust-rayon-1.11.0 | ||
| 47679 | rust-rayon-core-1.13.0 | ||
| 47680 | rust-rcgen-0.14.7 | ||
| 47681 | rust-redox-syscall-0.5.18 | ||
| 47682 | rust-redox-syscall-0.7.0 | ||
| 47683 | rust-redox-users-0.4.6 | ||
| 47684 | rust-redox-users-0.5.2 | ||
| 47685 | rust-ref-cast-1.0.25 | ||
| 47686 | rust-ref-cast-impl-1.0.25 | ||
| 47687 | rust-regex-1.12.3 | ||
| 47688 | rust-regex-automata-0.4.13 | ||
| 47689 | rust-regex-lite-0.1.8 | ||
| 47690 | rust-regex-syntax-0.6.29 | ||
| 47691 | rust-regex-syntax-0.8.8 | ||
| 47692 | rust-reqwest-0.12.28 | ||
| 47693 | rust-resb-0.1.1 | ||
| 47694 | rust-resolv-conf-0.7.6 | ||
| 47695 | rust-rfc6979-0.4.0 | ||
| 47696 | rust-ring-0.17.14 | ||
| 47697 | rust-rmcp-0.15.0 | ||
| 47698 | rust-rmcp-macros-0.15.0 | ||
| 47699 | rust-rsa-0.9.10 | ||
| 47700 | rust-rtrb-0.3.3 | ||
| 47701 | rust-runfiles-0.1.0.b56cbaa8 | ||
| 47702 | rust-rust-embed-8.11.0 | ||
| 47703 | rust-rust-embed-impl-8.11.0 | ||
| 47704 | rust-rust-embed-utils-8.11.0 | ||
| 47705 | rust-rust-stemmers-1.2.0 | ||
| 47706 | rust-rustc-demangle-0.1.27 | ||
| 47707 | rust-rustc-hash-1.1.0 | ||
| 47708 | rust-rustc-hash-2.1.1 | ||
| 47709 | rust-rustc-version-0.4.1 | ||
| 47710 | rust-rusticata-macros-4.1.0 | ||
| 47711 | rust-rustix-0.38.44 | ||
| 47712 | rust-rustix-1.1.4 | ||
| 47713 | rust-rustls-0.23.36 | ||
| 47714 | rust-rustls-native-certs-0.8.3 | ||
| 47715 | rust-rustls-pki-types-1.14.0 | ||
| 47716 | rust-rustls-webpki-0.103.13 | ||
| 47717 | rust-rustversion-1.0.22 | ||
| 47718 | rust-rustyline-14.0.0 | ||
| 47719 | rust-ryu-1.0.22 | ||
| 47720 | rust-salsa20-0.10.2 | ||
| 47721 | rust-same-file-1.0.6 | ||
| 47722 | rust-scc-2.4.0 | ||
| 47723 | rust-schannel-0.1.28 | ||
| 47724 | rust-schemafy-0.5.2 | ||
| 47725 | rust-schemafy-core-0.5.2 | ||
| 47726 | rust-schemafy-lib-0.5.2 | ||
| 47727 | rust-schemars-0.8.22 | ||
| 47728 | rust-schemars-0.9.0 | ||
| 47729 | rust-schemars-1.2.1 | ||
| 47730 | rust-schemars-derive-0.8.22 | ||
| 47731 | rust-schemars-derive-1.2.1 | ||
| 47732 | rust-scoped-tls-1.0.1 | ||
| 47733 | rust-scopeguard-1.2.0 | ||
| 47734 | rust-scratch-1.0.9 | ||
| 47735 | rust-scrypt-0.11.0 | ||
| 47736 | rust-sdd-3.0.10 | ||
| 47737 | rust-sec1-0.7.3 | ||
| 47738 | rust-seccompiler-0.5.0 | ||
| 47739 | rust-secrecy-0.10.3 | ||
| 47740 | rust-secret-service-4.0.0 | ||
| 47741 | rust-security-framework-2.11.1 | ||
| 47742 | rust-security-framework-3.5.1 | ||
| 47743 | rust-security-framework-sys-2.15.0 | ||
| 47744 | rust-self-cell-0.10.3 | ||
| 47745 | rust-self-cell-1.2.2 | ||
| 47746 | rust-semver-1.0.27 | ||
| 47747 | rust-sentry-0.46.1 | ||
| 47748 | rust-sentry-actix-0.46.1 | ||
| 47749 | rust-sentry-backtrace-0.46.1 | ||
| 47750 | rust-sentry-contexts-0.46.1 | ||
| 47751 | rust-sentry-core-0.46.1 | ||
| 47752 | rust-sentry-debug-images-0.46.1 | ||
| 47753 | rust-sentry-panic-0.46.1 | ||
| 47754 | rust-sentry-tracing-0.46.1 | ||
| 47755 | rust-sentry-types-0.46.1 | ||
| 47756 | rust-serde-1.0.228 | ||
| 47757 | rust-serde-core-1.0.228 | ||
| 47758 | rust-serde-derive-1.0.228 | ||
| 47759 | rust-serde-derive-internals-0.29.1 | ||
| 47760 | rust-serde-html-form-0.3.2 | ||
| 47761 | rust-serde-json-1.0.149 | ||
| 47762 | rust-serde-path-to-error-0.1.20 | ||
| 47763 | rust-serde-repr-0.1.20 | ||
| 47764 | rust-serde-spanned-1.0.4 | ||
| 47765 | rust-serde-urlencoded-0.7.1 | ||
| 47766 | rust-serde-with-3.17.0 | ||
| 47767 | rust-serde-with-macros-3.17.0 | ||
| 47768 | rust-serde-yaml-0.9.34+deprecated | ||
| 47769 | rust-serial2-0.2.33 | ||
| 47770 | rust-serial-test-3.3.1 | ||
| 47771 | rust-serial-test-derive-3.3.1 | ||
| 47772 | rust-sha1-0.10.6 | ||
| 47773 | rust-sha1-checked-0.10.0 | ||
| 47774 | rust-sha1-smol-1.0.1 | ||
| 47775 | rust-sha2-0.10.9 | ||
| 47776 | rust-sharded-slab-0.1.7 | ||
| 47777 | rust-shared-library-0.1.9 | ||
| 47778 | rust-shell-words-1.1.1 | ||
| 47779 | rust-shlex-1.3.0 | ||
| 47780 | rust-signal-hook-0.3.18 | ||
| 47781 | rust-signal-hook-mio-0.2.5 | ||
| 47782 | rust-signal-hook-registry-1.4.8 | ||
| 47783 | rust-signature-2.2.0 | ||
| 47784 | rust-simd-adler32-0.3.8 | ||
| 47785 | rust-simdutf8-0.1.5 | ||
| 47786 | rust-similar-2.7.0 | ||
| 47787 | rust-simple-asn1-0.6.4 | ||
| 47788 | rust-siphasher-1.0.2 | ||
| 47789 | rust-slab-0.4.12 | ||
| 47790 | rust-smallvec-1.15.1 | ||
| 47791 | rust-smawk-0.3.2 | ||
| 47792 | rust-smol-str-0.3.5 | ||
| 47793 | rust-socket2-0.5.10 | ||
| 47794 | rust-socket2-0.6.2 | ||
| 47795 | rust-spin-0.9.8 | ||
| 47796 | rust-spki-0.7.3 | ||
| 47797 | rust-sqlx-0.8.6 | ||
| 47798 | rust-sqlx-core-0.8.6 | ||
| 47799 | rust-sqlx-macros-0.8.6 | ||
| 47800 | rust-sqlx-macros-core-0.8.6 | ||
| 47801 | rust-sqlx-mysql-0.8.6 | ||
| 47802 | rust-sqlx-postgres-0.8.6 | ||
| 47803 | rust-sqlx-sqlite-0.8.6 | ||
| 47804 | rust-sse-stream-0.2.1 | ||
| 47805 | rust-stable-deref-trait-1.2.1 | ||
| 47806 | rust-starlark-0.13.0 | ||
| 47807 | rust-starlark-derive-0.13.0 | ||
| 47808 | rust-starlark-map-0.13.0 | ||
| 47809 | rust-starlark-syntax-0.13.0 | ||
| 47810 | rust-static-assertions-1.1.0 | ||
| 47811 | rust-stop-words-0.9.0 | ||
| 47812 | rust-strck-1.0.0 | ||
| 47813 | rust-streaming-iterator-0.1.9 | ||
| 47814 | rust-string-cache-0.8.9 | ||
| 47815 | rust-stringprep-0.1.5 | ||
| 47816 | rust-strsim-0.10.0 | ||
| 47817 | rust-strsim-0.11.1 | ||
| 47818 | rust-strum-0.26.3 | ||
| 47819 | rust-strum-0.27.2 | ||
| 47820 | rust-strum-macros-0.26.4 | ||
| 47821 | rust-strum-macros-0.27.2 | ||
| 47822 | rust-strum-macros-0.28.0 | ||
| 47823 | rust-subtle-2.6.1 | ||
| 47824 | rust-supports-color-2.1.0 | ||
| 47825 | rust-supports-color-3.0.2 | ||
| 47826 | rust-syn-1.0.109 | ||
| 47827 | rust-syn-2.0.114 | ||
| 47828 | rust-sync-wrapper-1.0.2 | ||
| 47829 | rust-synstructure-0.13.2 | ||
| 47830 | rust-syntect-5.3.0 | ||
| 47831 | rust-sys-locale-0.3.2 | ||
| 47832 | rust-system-configuration-0.7.0 | ||
| 47833 | rust-system-configuration-sys-0.6.0 | ||
| 47834 | rust-system-deps-7.0.7 | ||
| 47835 | rust-tagptr-0.2.0 | ||
| 47836 | rust-target-lexicon-0.13.3 | ||
| 47837 | rust-tempfile-3.27.0 | ||
| 47838 | rust-temporal-capi-0.1.2 | ||
| 47839 | rust-temporal-rs-0.1.2 | ||
| 47840 | rust-term-0.7.0 | ||
| 47841 | rust-termcolor-1.4.1 | ||
| 47842 | rust-terminal-size-0.4.3 | ||
| 47843 | rust-termtree-0.5.1 | ||
| 47844 | rust-test-case-3.3.1 | ||
| 47845 | rust-test-case-core-3.3.1 | ||
| 47846 | rust-test-case-macros-3.3.1 | ||
| 47847 | rust-test-log-0.2.19 | ||
| 47848 | rust-test-log-macros-0.2.19 | ||
| 47849 | rust-textwrap-0.11.0 | ||
| 47850 | rust-textwrap-0.16.2 | ||
| 47851 | rust-thiserror-1.0.69 | ||
| 47852 | rust-thiserror-2.0.18 | ||
| 47853 | rust-thiserror-impl-1.0.69 | ||
| 47854 | rust-thiserror-impl-2.0.18 | ||
| 47855 | rust-thread-local-1.1.9 | ||
| 47856 | rust-tiff-0.10.3 | ||
| 47857 | rust-time-0.3.47 | ||
| 47858 | rust-time-core-0.1.8 | ||
| 47859 | rust-time-macros-0.2.27 | ||
| 47860 | rust-timezone-provider-0.1.2 | ||
| 47861 | rust-tiny-keccak-2.0.2 | ||
| 47862 | rust-tiny-http-0.12.0 | ||
| 47863 | rust-tinystr-0.8.2 | ||
| 47864 | rust-tinyvec-1.10.0 | ||
| 47865 | rust-tinyvec-macros-0.1.1 | ||
| 47866 | rust-tokio-1.49.0 | ||
| 47867 | rust-tokio-graceful-0.2.2 | ||
| 47868 | rust-tokio-macros-2.6.0 | ||
| 47869 | rust-tokio-native-tls-0.3.1 | ||
| 47870 | rust-tokio-rustls-0.26.4 | ||
| 47871 | rust-tokio-stream-0.1.18 | ||
| 47872 | rust-tokio-test-0.4.5 | ||
| 47873 | rust-tokio-tungstenite-0.28.0.132f5b3 | ||
| 47874 | rust-tokio-util-0.7.18 | ||
| 47875 | rust-toml-0.5.11 | ||
| 47876 | rust-toml-0.9.11+spec-1.1.0 | ||
| 47877 | rust-toml-datetime-0.7.5+spec-1.1.0 | ||
| 47878 | rust-toml-edit-0.23.10+spec-1.0.0 | ||
| 47879 | rust-toml-edit-0.24.0+spec-1.1.0 | ||
| 47880 | rust-toml-parser-1.0.6+spec-1.1.0 | ||
| 47881 | rust-toml-writer-1.0.6+spec-1.1.0 | ||
| 47882 | rust-tonic-0.14.3 | ||
| 47883 | rust-tonic-build-0.14.3 | ||
| 47884 | rust-tonic-prost-0.14.3 | ||
| 47885 | rust-tonic-prost-build-0.14.3 | ||
| 47886 | rust-tower-0.5.3 | ||
| 47887 | rust-tower-http-0.6.8 | ||
| 47888 | rust-tower-layer-0.3.3 | ||
| 47889 | rust-tower-service-0.3.3 | ||
| 47890 | rust-tracing-0.1.44 | ||
| 47891 | rust-tracing-appender-0.2.4 | ||
| 47892 | rust-tracing-attributes-0.1.31 | ||
| 47893 | rust-tracing-core-0.1.36 | ||
| 47894 | rust-tracing-error-0.2.1 | ||
| 47895 | rust-tracing-log-0.2.0 | ||
| 47896 | rust-tracing-opentelemetry-0.32.1 | ||
| 47897 | rust-tracing-serde-0.2.0 | ||
| 47898 | rust-tracing-subscriber-0.3.22 | ||
| 47899 | rust-tracing-test-0.2.5 | ||
| 47900 | rust-tracing-test-macro-0.2.5 | ||
| 47901 | rust-tree-sitter-0.25.10 | ||
| 47902 | rust-tree-sitter-bash-0.25.1 | ||
| 47903 | rust-tree-sitter-language-0.1.7 | ||
| 47904 | rust-tree-magic-mini-3.2.2 | ||
| 47905 | rust-try-lock-0.2.5 | ||
| 47906 | rust-ts-rs-11.1.0 | ||
| 47907 | rust-ts-rs-macros-11.1.0 | ||
| 47908 | rust-tungstenite-0.27.0.9200079 | ||
| 47909 | rust-two-face-0.5.1 | ||
| 47910 | rust-type-map-0.5.1 | ||
| 47911 | rust-typenum-1.19.0 | ||
| 47912 | rust-uds-windows-1.1.0 | ||
| 47913 | rust-uname-0.1.1 | ||
| 47914 | rust-unarray-0.1.4 | ||
| 47915 | rust-unic-langid-0.9.6 | ||
| 47916 | rust-unic-langid-impl-0.9.6 | ||
| 47917 | rust-unicase-2.9.0 | ||
| 47918 | rust-unicode-bidi-0.3.18 | ||
| 47919 | rust-unicode-bom-2.0.3 | ||
| 47920 | rust-unicode-ident-1.0.22 | ||
| 47921 | rust-unicode-linebreak-0.1.5 | ||
| 47922 | rust-unicode-normalization-0.1.25 | ||
| 47923 | rust-unicode-properties-0.1.4 | ||
| 47924 | rust-unicode-segmentation-1.12.0 | ||
| 47925 | rust-unicode-truncate-1.1.0 | ||
| 47926 | rust-unicode-width-0.1.14 | ||
| 47927 | rust-unicode-width-0.2.1 | ||
| 47928 | rust-unicode-xid-0.2.6 | ||
| 47929 | rust-universal-hash-0.5.1 | ||
| 47930 | rust-unsafe-libyaml-0.2.11 | ||
| 47931 | rust-untrusted-0.7.1 | ||
| 47932 | rust-untrusted-0.9.0 | ||
| 47933 | rust-ureq-3.1.4 | ||
| 47934 | rust-ureq-proto-0.5.3 | ||
| 47935 | rust-url-2.5.8 | ||
| 47936 | rust-urlencoding-2.1.3 | ||
| 47937 | rust-utf-8-0.7.6 | ||
| 47938 | rust-utf8-iter-1.0.4 | ||
| 47939 | rust-utf8parse-0.2.2 | ||
| 47940 | rust-uuid-1.20.0 | ||
| 47941 | rust-v8-146.4.0 | ||
| 47942 | rust-valuable-0.1.1 | ||
| 47943 | rust-vcpkg-0.2.15 | ||
| 47944 | rust-version-compare-0.2.1 | ||
| 47945 | rust-version-check-0.9.5 | ||
| 47946 | rust-vsimd-0.8.0 | ||
| 47947 | rust-vt100-0.16.2 | ||
| 47948 | rust-vte-0.15.0 | ||
| 47949 | rust-wait-timeout-0.2.1 | ||
| 47950 | rust-walkdir-2.5.0 | ||
| 47951 | rust-want-0.3.1 | ||
| 47952 | rust-wasi-0.11.1+wasi-snapshot-preview1 | ||
| 47953 | rust-wasip2-1.0.2+wasi-0.2.9 | ||
| 47954 | rust-wasite-0.1.0 | ||
| 47955 | rust-wasm-bindgen-0.2.108 | ||
| 47956 | rust-wasm-bindgen-futures-0.4.58 | ||
| 47957 | rust-wasm-bindgen-macro-0.2.108 | ||
| 47958 | rust-wasm-bindgen-macro-support-0.2.108 | ||
| 47959 | rust-wasm-bindgen-shared-0.2.108 | ||
| 47960 | rust-wasm-streams-0.4.2 | ||
| 47961 | rust-wayland-backend-0.3.12 | ||
| 47962 | rust-wayland-client-0.31.12 | ||
| 47963 | rust-wayland-protocols-0.32.10 | ||
| 47964 | rust-wayland-protocols-wlr-0.3.10 | ||
| 47965 | rust-wayland-scanner-0.31.8 | ||
| 47966 | rust-wayland-sys-0.31.8 | ||
| 47967 | rust-web-sys-0.3.85 | ||
| 47968 | rust-web-time-1.1.0 | ||
| 47969 | rust-webbrowser-1.0.6 | ||
| 47970 | rust-webpki-root-certs-1.0.5 | ||
| 47971 | rust-webpki-roots-0.26.11 | ||
| 47972 | rust-webpki-roots-1.0.5 | ||
| 47973 | rust-webrtc-sys-0.3.24.e2d1d1d | ||
| 47974 | rust-webrtc-sys-build-0.3.13.e2d1d1d | ||
| 47975 | rust-weezl-0.1.12 | ||
| 47976 | rust-which-6.0.3 | ||
| 47977 | rust-which-8.0.0 | ||
| 47978 | rust-whoami-1.6.1 | ||
| 47979 | rust-widestring-1.2.1 | ||
| 47980 | rust-wildcard-0.3.0 | ||
| 47981 | rust-wildmatch-2.6.1 | ||
| 47982 | rust-winapi-0.3.9 | ||
| 47983 | rust-winapi-i686-pc-windows-gnu-0.4.0 | ||
| 47984 | rust-winapi-util-0.1.11 | ||
| 47985 | rust-winapi-x86-64-pc-windows-gnu-0.4.0 | ||
| 47986 | rust-windows-0.54.0 | ||
| 47987 | rust-windows-0.58.0 | ||
| 47988 | rust-windows-0.62.2 | ||
| 47989 | rust-windows-collections-0.3.2 | ||
| 47990 | rust-windows-core-0.54.0 | ||
| 47991 | rust-windows-core-0.58.0 | ||
| 47992 | rust-windows-core-0.62.2 | ||
| 47993 | rust-windows-future-0.3.2 | ||
| 47994 | rust-windows-implement-0.58.0 | ||
| 47995 | rust-windows-implement-0.60.2 | ||
| 47996 | rust-windows-interface-0.58.0 | ||
| 47997 | rust-windows-interface-0.59.3 | ||
| 47998 | rust-windows-link-0.2.1 | ||
| 47999 | rust-windows-numerics-0.3.1 | ||
| 48000 | rust-windows-registry-0.6.1 | ||
| 48001 | rust-windows-result-0.1.2 | ||
| 48002 | rust-windows-result-0.2.0 | ||
| 48003 | rust-windows-result-0.4.1 | ||
| 48004 | rust-windows-strings-0.1.0 | ||
| 48005 | rust-windows-strings-0.5.1 | ||
| 48006 | rust-windows-sys-0.45.0 | ||
| 48007 | rust-windows-sys-0.48.0 | ||
| 48008 | rust-windows-sys-0.52.0 | ||
| 48009 | rust-windows-sys-0.59.0 | ||
| 48010 | rust-windows-sys-0.60.2 | ||
| 48011 | rust-windows-sys-0.61.2 | ||
| 48012 | rust-windows-targets-0.42.2 | ||
| 48013 | rust-windows-targets-0.48.5 | ||
| 48014 | rust-windows-targets-0.52.6 | ||
| 48015 | rust-windows-targets-0.53.5 | ||
| 48016 | rust-windows-threading-0.2.1 | ||
| 48017 | rust-windows-aarch64-gnullvm-0.42.2 | ||
| 48018 | rust-windows-aarch64-gnullvm-0.48.5 | ||
| 48019 | rust-windows-aarch64-gnullvm-0.52.6 | ||
| 48020 | rust-windows-aarch64-gnullvm-0.53.1 | ||
| 48021 | rust-windows-aarch64-msvc-0.42.2 | ||
| 48022 | rust-windows-aarch64-msvc-0.48.5 | ||
| 48023 | rust-windows-aarch64-msvc-0.52.6 | ||
| 48024 | rust-windows-aarch64-msvc-0.53.1 | ||
| 48025 | rust-windows-i686-gnu-0.42.2 | ||
| 48026 | rust-windows-i686-gnu-0.48.5 | ||
| 48027 | rust-windows-i686-gnu-0.52.6 | ||
| 48028 | rust-windows-i686-gnu-0.53.1 | ||
| 48029 | rust-windows-i686-gnullvm-0.52.6 | ||
| 48030 | rust-windows-i686-gnullvm-0.53.1 | ||
| 48031 | rust-windows-i686-msvc-0.42.2 | ||
| 48032 | rust-windows-i686-msvc-0.48.5 | ||
| 48033 | rust-windows-i686-msvc-0.52.6 | ||
| 48034 | rust-windows-i686-msvc-0.53.1 | ||
| 48035 | rust-windows-x86-64-gnu-0.42.2 | ||
| 48036 | rust-windows-x86-64-gnu-0.48.5 | ||
| 48037 | rust-windows-x86-64-gnu-0.52.6 | ||
| 48038 | rust-windows-x86-64-gnu-0.53.1 | ||
| 48039 | rust-windows-x86-64-gnullvm-0.42.2 | ||
| 48040 | rust-windows-x86-64-gnullvm-0.48.5 | ||
| 48041 | rust-windows-x86-64-gnullvm-0.52.6 | ||
| 48042 | rust-windows-x86-64-gnullvm-0.53.1 | ||
| 48043 | rust-windows-x86-64-msvc-0.42.2 | ||
| 48044 | rust-windows-x86-64-msvc-0.48.5 | ||
| 48045 | rust-windows-x86-64-msvc-0.52.6 | ||
| 48046 | rust-windows-x86-64-msvc-0.53.1 | ||
| 48047 | rust-winnow-0.7.14 | ||
| 48048 | rust-winreg-0.10.1 | ||
| 48049 | rust-winreg-0.50.0 | ||
| 48050 | rust-winres-0.1.12 | ||
| 48051 | rust-winsafe-0.0.19 | ||
| 48052 | rust-winsplit-0.1.0 | ||
| 48053 | rust-wiremock-0.6.5 | ||
| 48054 | rust-wit-bindgen-0.51.0 | ||
| 48055 | rust-wl-clipboard-rs-0.9.3 | ||
| 48056 | rust-writeable-0.6.2 | ||
| 48057 | rust-x11rb-0.13.2 | ||
| 48058 | rust-x11rb-protocol-0.13.2 | ||
| 48059 | rust-x25519-dalek-2.0.1 | ||
| 48060 | rust-x509-parser-0.18.1 | ||
| 48061 | rust-xdg-home-1.3.0 | ||
| 48062 | rust-xmlparser-0.13.6 | ||
| 48063 | rust-xz2-0.1.7 | ||
| 48064 | rust-yaml-rust-0.4.5 | ||
| 48065 | rust-yansi-1.0.1 | ||
| 48066 | rust-yasna-0.5.2 | ||
| 48067 | rust-yoke-0.8.1 | ||
| 48068 | rust-yoke-derive-0.8.1 | ||
| 48069 | rust-zbus-4.4.0 | ||
| 48070 | rust-zbus-macros-4.4.0 | ||
| 48071 | rust-zbus-names-3.0.0 | ||
| 48072 | rust-zerocopy-0.8.37 | ||
| 48073 | rust-zerocopy-derive-0.8.37 | ||
| 48074 | rust-zerofrom-0.1.6 | ||
| 48075 | rust-zerofrom-derive-0.1.6 | ||
| 48076 | rust-zeroize-1.8.2 | ||
| 48077 | rust-zeroize-derive-1.4.3 | ||
| 48078 | rust-zerotrie-0.2.3 | ||
| 48079 | rust-zerovec-0.11.5 | ||
| 48080 | rust-zerovec-derive-0.11.2 | ||
| 48081 | rust-zip-0.6.6 | ||
| 48082 | rust-zip-2.4.2 | ||
| 48083 | rust-zlib-rs-0.6.3 | ||
| 48084 | rust-zmij-1.0.19 | ||
| 48085 | rust-zoneinfo64-0.2.1 | ||
| 48086 | rust-zopfli-0.8.3 | ||
| 48087 | rust-zstd-0.11.2+zstd.1.5.2 | ||
| 48088 | rust-zstd-0.13.3 | ||
| 48089 | rust-zstd-safe-5.0.2+zstd.1.5.2 | ||
| 48090 | rust-zstd-safe-7.2.4 | ||
| 48091 | rust-zstd-sys-2.0.16+zstd.1.5.7 | ||
| 48092 | rust-zune-core-0.4.12 | ||
| 48093 | rust-zune-core-0.5.1 | ||
| 48094 | rust-zune-jpeg-0.4.21 | ||
| 48095 | rust-zune-jpeg-0.5.12 | ||
| 48096 | rust-zvariant-4.2.0 | ||
| 48097 | rust-zvariant-derive-4.2.0 | ||
| 48098 | rust-zvariant-utils-2.1.0)) | ||
| 48099 | (rust-codex-0.124.0 => | ||
| 48100 | (list rust-inflector-0.11.4 | ||
| 48101 | rust-actix-codec-0.5.2 | ||
| 48102 | rust-actix-http-3.11.2 | ||
| 48103 | rust-actix-router-0.5.3 | ||
| 48104 | rust-actix-rt-2.11.0 | ||
| 48105 | rust-actix-server-2.6.0 | ||
| 48106 | rust-actix-service-2.0.3 | ||
| 48107 | rust-actix-utils-3.0.1 | ||
| 48108 | rust-actix-web-4.12.1 | ||
| 48109 | rust-addr2line-0.25.1 | ||
| 48110 | rust-adler2-2.0.1 | ||
| 48111 | rust-aead-0.5.2 | ||
| 48112 | rust-aes-0.8.4 | ||
| 48113 | rust-age-0.11.2 | ||
| 48114 | rust-age-core-0.11.0 | ||
| 48115 | rust-ahash-0.8.12 | ||
| 48116 | rust-aho-corasick-1.1.4 | ||
| 48117 | rust-allocative-0.3.4 | ||
| 48118 | rust-allocative-derive-0.3.3 | ||
| 48119 | rust-allocator-api2-0.2.21 | ||
| 48120 | rust-alsa-0.9.1 | ||
| 48121 | rust-alsa-sys-0.3.1 | ||
| 48122 | rust-android-system-properties-0.1.5 | ||
| 48123 | rust-annotate-snippets-0.9.2 | ||
| 48124 | rust-ansi-to-tui-7.0.0 | ||
| 48125 | rust-anstream-0.6.21 | ||
| 48126 | rust-anstyle-1.0.13 | ||
| 48127 | rust-anstyle-parse-0.2.7 | ||
| 48128 | rust-anstyle-query-1.1.5 | ||
| 48129 | rust-anstyle-wincon-3.0.11 | ||
| 48130 | rust-anyhow-1.0.101 | ||
| 48131 | rust-arbitrary-1.4.2 | ||
| 48132 | rust-arboard-3.6.1 | ||
| 48133 | rust-arc-swap-1.9.0 | ||
| 48134 | rust-arrayvec-0.7.6 | ||
| 48135 | rust-ascii-1.1.0 | ||
| 48136 | rust-ascii-canvas-3.0.0 | ||
| 48137 | rust-asn1-rs-0.7.1 | ||
| 48138 | rust-asn1-rs-derive-0.6.0 | ||
| 48139 | rust-asn1-rs-impl-0.2.0 | ||
| 48140 | rust-assert-json-diff-2.0.2 | ||
| 48141 | rust-assert-cmd-2.1.2 | ||
| 48142 | rust-assert-matches-1.5.0 | ||
| 48143 | rust-async-broadcast-0.7.2 | ||
| 48144 | rust-async-channel-2.5.0 | ||
| 48145 | rust-async-executor-1.13.3 | ||
| 48146 | rust-async-fs-2.2.0 | ||
| 48147 | rust-async-io-2.6.0 | ||
| 48148 | rust-async-lock-3.4.2 | ||
| 48149 | rust-async-process-2.5.0 | ||
| 48150 | rust-async-recursion-1.1.1 | ||
| 48151 | rust-async-signal-0.2.13 | ||
| 48152 | rust-async-stream-0.3.6 | ||
| 48153 | rust-async-stream-impl-0.3.6 | ||
| 48154 | rust-async-task-4.7.1 | ||
| 48155 | rust-async-trait-0.1.89 | ||
| 48156 | rust-asynk-strim-0.1.5 | ||
| 48157 | rust-atoi-2.0.0 | ||
| 48158 | rust-atomic-waker-1.1.2 | ||
| 48159 | rust-autocfg-1.5.0 | ||
| 48160 | rust-aws-config-1.8.12 | ||
| 48161 | rust-aws-credential-types-1.2.11 | ||
| 46496 | rust-aws-lc-rs-1.16.2 | 48162 | rust-aws-lc-rs-1.16.2 |
| 46497 | rust-aws-lc-sys-0.39.0 | 48163 | rust-aws-lc-sys-0.39.0 |
| 48164 | rust-aws-runtime-1.5.17 | ||
| 48165 | rust-aws-sdk-sso-1.91.0 | ||
| 48166 | rust-aws-sdk-ssooidc-1.93.0 | ||
| 48167 | rust-aws-sdk-sts-1.95.0 | ||
| 48168 | rust-aws-sigv4-1.3.7 | ||
| 48169 | rust-aws-smithy-async-1.2.14 | ||
| 48170 | rust-aws-smithy-http-0.62.6 | ||
| 48171 | rust-aws-smithy-http-client-1.1.12 | ||
| 48172 | rust-aws-smithy-json-0.61.9 | ||
| 48173 | rust-aws-smithy-observability-0.1.5 | ||
| 48174 | rust-aws-smithy-query-0.60.9 | ||
| 48175 | rust-aws-smithy-runtime-1.9.5 | ||
| 48176 | rust-aws-smithy-runtime-api-1.12.0 | ||
| 48177 | rust-aws-smithy-runtime-api-macros-1.0.0 | ||
| 48178 | rust-aws-smithy-types-1.4.7 | ||
| 48179 | rust-aws-smithy-xml-0.60.13 | ||
| 48180 | rust-aws-types-1.3.11 | ||
| 46498 | rust-axum-0.8.8 | 48181 | rust-axum-0.8.8 |
| 46499 | rust-axum-core-0.5.6 | 48182 | rust-axum-core-0.5.6 |
| 46500 | rust-backtrace-0.3.76 | 48183 | rust-backtrace-0.3.76 |
| 48184 | rust-base16ct-0.2.0 | ||
| 46501 | rust-base64-0.21.7 | 48185 | rust-base64-0.21.7 |
| 46502 | rust-base64-0.22.1 | 48186 | rust-base64-0.22.1 |
| 48187 | rust-base64-simd-0.8.0 | ||
| 46503 | rust-base64ct-1.8.3 | 48188 | rust-base64ct-1.8.3 |
| 46504 | rust-basic-toml-0.1.10 | 48189 | rust-basic-toml-0.1.10 |
| 46505 | rust-bech32-0.9.1 | 48190 | rust-bech32-0.9.1 |
| @@ -46510,6 +48195,7 @@ | |||
| 46510 | rust-bit-vec-0.6.3 | 48195 | rust-bit-vec-0.6.3 |
| 46511 | rust-bitflags-1.3.2 | 48196 | rust-bitflags-1.3.2 |
| 46512 | rust-bitflags-2.10.0 | 48197 | rust-bitflags-2.10.0 |
| 48198 | rust-blake2-0.10.6 | ||
| 46513 | rust-block-buffer-0.10.4 | 48199 | rust-block-buffer-0.10.4 |
| 46514 | rust-block-padding-0.3.3 | 48200 | rust-block-padding-0.3.3 |
| 46515 | rust-block2-0.6.2 | 48201 | rust-block2-0.6.2 |
| @@ -46522,6 +48208,7 @@ | |||
| 46522 | rust-byteorder-1.5.0 | 48208 | rust-byteorder-1.5.0 |
| 46523 | rust-byteorder-lite-0.1.0 | 48209 | rust-byteorder-lite-0.1.0 |
| 46524 | rust-bytes-1.11.1 | 48210 | rust-bytes-1.11.1 |
| 48211 | rust-bytes-utils-0.1.4 | ||
| 46525 | rust-bytestring-1.5.0 | 48212 | rust-bytestring-1.5.0 |
| 46526 | rust-bzip2-0.4.4 | 48213 | rust-bzip2-0.4.4 |
| 46527 | rust-bzip2-0.5.2 | 48214 | rust-bzip2-0.5.2 |
| @@ -46553,40 +48240,10 @@ | |||
| 46553 | rust-clap-derive-4.5.55 | 48240 | rust-clap-derive-4.5.55 |
| 46554 | rust-clap-lex-1.0.0 | 48241 | rust-clap-lex-1.0.0 |
| 46555 | rust-clipboard-win-5.4.1 | 48242 | rust-clipboard-win-5.4.1 |
| 48243 | rust-clru-0.6.3 | ||
| 46556 | rust-cmake-0.1.57 | 48244 | rust-cmake-0.1.57 |
| 46557 | rust-cmp-any-0.8.1 | 48245 | rust-cmp-any-0.8.1 |
| 46558 | rust-codespan-reporting-0.13.1 | 48246 | rust-codespan-reporting-0.13.1 |
| 46559 | rust-codex-api-0.120.0 | ||
| 46560 | rust-codex-app-server-protocol-0.120.0 | ||
| 46561 | rust-codex-apply-patch-0.120.0 | ||
| 46562 | rust-codex-arg0-0.120.0 | ||
| 46563 | rust-codex-async-utils-0.120.0 | ||
| 46564 | rust-codex-client-0.120.0 | ||
| 46565 | rust-codex-common-0.120.0 | ||
| 46566 | rust-codex-core-0.120.0 | ||
| 46567 | rust-codex-execpolicy-0.120.0 | ||
| 46568 | rust-codex-experimental-api-macros-0.120.0 | ||
| 46569 | rust-codex-file-search-0.120.0 | ||
| 46570 | rust-codex-git-0.120.0 | ||
| 46571 | rust-codex-keyring-store-0.120.0 | ||
| 46572 | rust-codex-linux-sandbox-0.120.0 | ||
| 46573 | rust-codex-lmstudio-0.120.0 | ||
| 46574 | rust-codex-login-0.120.0 | ||
| 46575 | rust-codex-mcp-server-0.120.0 | ||
| 46576 | rust-codex-ollama-0.120.0 | ||
| 46577 | rust-codex-otel-0.120.0 | ||
| 46578 | rust-codex-protocol-0.120.0 | ||
| 46579 | rust-codex-rmcp-client-0.120.0 | ||
| 46580 | rust-codex-state-0.120.0 | ||
| 46581 | rust-codex-utils-absolute-path-0.120.0 | ||
| 46582 | rust-codex-utils-cache-0.120.0 | ||
| 46583 | rust-codex-utils-home-dir-0.120.0 | ||
| 46584 | rust-codex-utils-image-0.120.0 | ||
| 46585 | rust-codex-utils-json-to-toml-0.120.0 | ||
| 46586 | rust-codex-utils-pty-0.120.0 | ||
| 46587 | rust-codex-utils-readiness-0.120.0 | ||
| 46588 | rust-codex-utils-string-0.120.0 | ||
| 46589 | rust-codex-windows-sandbox-0.120.0 | ||
| 46590 | rust-color-eyre-0.6.5 | 48247 | rust-color-eyre-0.6.5 |
| 46591 | rust-color-spantrace-0.3.0 | 48248 | rust-color-spantrace-0.3.0 |
| 46592 | rust-color-quant-1.1.0 | 48249 | rust-color-quant-1.1.0 |
| @@ -46603,7 +48260,9 @@ | |||
| 46603 | rust-constant-time-eq-0.3.1 | 48260 | rust-constant-time-eq-0.3.1 |
| 46604 | rust-convert-case-0.6.0 | 48261 | rust-convert-case-0.6.0 |
| 46605 | rust-convert-case-0.10.0 | 48262 | rust-convert-case-0.10.0 |
| 48263 | rust-cookie-0.18.1 | ||
| 46606 | rust-cookie-factory-0.3.3 | 48264 | rust-cookie-factory-0.3.3 |
| 48265 | rust-cookie-store-0.22.1 | ||
| 46607 | rust-core-foundation-0.9.4 | 48266 | rust-core-foundation-0.9.4 |
| 46608 | rust-core-foundation-0.10.1 | 48267 | rust-core-foundation-0.10.1 |
| 46609 | rust-core-foundation-sys-0.8.7 | 48268 | rust-core-foundation-sys-0.8.7 |
| @@ -46621,10 +48280,13 @@ | |||
| 46621 | rust-crossbeam-epoch-0.9.18 | 48280 | rust-crossbeam-epoch-0.9.18 |
| 46622 | rust-crossbeam-queue-0.3.12 | 48281 | rust-crossbeam-queue-0.3.12 |
| 46623 | rust-crossbeam-utils-0.8.21 | 48282 | rust-crossbeam-utils-0.8.21 |
| 46624 | rust-crossterm-0.28.1.87db8bfa | 48283 | rust-crossterm-0.28.1.87db8bf |
| 46625 | rust-crossterm-winapi-0.9.1 | 48284 | rust-crossterm-winapi-0.9.1 |
| 46626 | rust-crunchy-0.2.4 | 48285 | rust-crunchy-0.2.4 |
| 48286 | rust-crypto-bigint-0.5.5 | ||
| 46627 | rust-crypto-common-0.1.7 | 48287 | rust-crypto-common-0.1.7 |
| 48288 | rust-crypto-box-0.9.1 | ||
| 48289 | rust-crypto-secretbox-0.1.1 | ||
| 46628 | rust-csv-1.4.0 | 48290 | rust-csv-1.4.0 |
| 46629 | rust-csv-core-0.1.13 | 48291 | rust-csv-core-0.1.13 |
| 46630 | rust-ctor-0.1.26 | 48292 | rust-ctor-0.1.26 |
| @@ -46646,6 +48308,7 @@ | |||
| 46646 | rust-darling-macro-0.20.11 | 48308 | rust-darling-macro-0.20.11 |
| 46647 | rust-darling-macro-0.21.3 | 48309 | rust-darling-macro-0.21.3 |
| 46648 | rust-darling-macro-0.23.0 | 48310 | rust-darling-macro-0.23.0 |
| 48311 | rust-dashmap-6.1.0 | ||
| 46649 | rust-dasp-sample-0.11.0 | 48312 | rust-dasp-sample-0.11.0 |
| 46650 | rust-data-encoding-2.10.0 | 48313 | rust-data-encoding-2.10.0 |
| 46651 | rust-dbus-0.9.10 | 48314 | rust-dbus-0.9.10 |
| @@ -46655,6 +48318,7 @@ | |||
| 46655 | rust-debugid-0.8.0 | 48318 | rust-debugid-0.8.0 |
| 46656 | rust-debugserver-types-0.5.0 | 48319 | rust-debugserver-types-0.5.0 |
| 46657 | rust-deflate64-0.1.10 | 48320 | rust-deflate64-0.1.10 |
| 48321 | rust-deno-core-icudata-0.77.0 | ||
| 46658 | rust-der-0.7.10 | 48322 | rust-der-0.7.10 |
| 46659 | rust-der-parser-10.0.0 | 48323 | rust-der-parser-10.0.0 |
| 46660 | rust-deranged-0.5.5 | 48324 | rust-deranged-0.5.5 |
| @@ -46679,6 +48343,8 @@ | |||
| 46679 | rust-dispatch2-0.3.0 | 48343 | rust-dispatch2-0.3.0 |
| 46680 | rust-display-container-0.9.0 | 48344 | rust-display-container-0.9.0 |
| 46681 | rust-displaydoc-0.2.5 | 48345 | rust-displaydoc-0.2.5 |
| 48346 | rust-dns-lookup-3.0.1 | ||
| 48347 | rust-document-features-0.2.12 | ||
| 46682 | rust-dotenvy-0.15.7 | 48348 | rust-dotenvy-0.15.7 |
| 46683 | rust-downcast-rs-1.2.1 | 48349 | rust-downcast-rs-1.2.1 |
| 46684 | rust-dtor-0.1.1 | 48350 | rust-dtor-0.1.1 |
| @@ -46687,7 +48353,11 @@ | |||
| 46687 | rust-dupe-0.9.1 | 48353 | rust-dupe-0.9.1 |
| 46688 | rust-dupe-derive-0.9.1 | 48354 | rust-dupe-derive-0.9.1 |
| 46689 | rust-dyn-clone-1.0.20 | 48355 | rust-dyn-clone-1.0.20 |
| 48356 | rust-ecdsa-0.16.9 | ||
| 48357 | rust-ed25519-2.2.3 | ||
| 48358 | rust-ed25519-dalek-2.2.0 | ||
| 46690 | rust-either-1.15.0 | 48359 | rust-either-1.15.0 |
| 48360 | rust-elliptic-curve-0.13.8 | ||
| 46691 | rust-ena-0.14.3 | 48361 | rust-ena-0.14.3 |
| 46692 | rust-encode-unicode-1.0.0 | 48362 | rust-encode-unicode-1.0.0 |
| 46693 | rust-encoding-rs-0.8.35 | 48363 | rust-encoding-rs-0.8.35 |
| @@ -46710,13 +48380,16 @@ | |||
| 46710 | rust-event-listener-strategy-0.5.4 | 48380 | rust-event-listener-strategy-0.5.4 |
| 46711 | rust-eventsource-stream-0.2.3 | 48381 | rust-eventsource-stream-0.2.3 |
| 46712 | rust-eyre-0.6.12 | 48382 | rust-eyre-0.6.12 |
| 48383 | rust-faster-hex-0.10.0 | ||
| 46713 | rust-fastrand-2.3.0 | 48384 | rust-fastrand-2.3.0 |
| 46714 | rust-fax-0.2.6 | 48385 | rust-fax-0.2.6 |
| 46715 | rust-fax-derive-0.2.0 | 48386 | rust-fax-derive-0.2.0 |
| 46716 | rust-fd-lock-4.0.4 | 48387 | rust-fd-lock-4.0.4 |
| 46717 | rust-fdeflate-0.3.7 | 48388 | rust-fdeflate-0.3.7 |
| 48389 | rust-ff-0.13.1 | ||
| 46718 | rust-fiat-crypto-0.2.9 | 48390 | rust-fiat-crypto-0.2.9 |
| 46719 | rust-filedescriptor-0.8.3 | 48391 | rust-filedescriptor-0.8.3 |
| 48392 | rust-filetime-0.2.27 | ||
| 46720 | rust-find-crate-0.6.3 | 48393 | rust-find-crate-0.6.3 |
| 46721 | rust-find-msvc-tools-0.1.9 | 48394 | rust-find-msvc-tools-0.1.9 |
| 46722 | rust-findshlibs-0.10.2 | 48395 | rust-findshlibs-0.10.2 |
| @@ -46762,15 +48435,70 @@ | |||
| 46762 | rust-gif-0.14.1 | 48435 | rust-gif-0.14.1 |
| 46763 | rust-gimli-0.32.3 | 48436 | rust-gimli-0.32.3 |
| 46764 | rust-gio-sys-0.21.5 | 48437 | rust-gio-sys-0.21.5 |
| 48438 | rust-gix-0.81.0 | ||
| 48439 | rust-gix-actor-0.40.0 | ||
| 48440 | rust-gix-archive-0.30.0 | ||
| 48441 | rust-gix-attributes-0.31.0 | ||
| 48442 | rust-gix-bitmap-0.3.0 | ||
| 48443 | rust-gix-blame-0.11.0 | ||
| 48444 | rust-gix-chunk-0.7.0 | ||
| 48445 | rust-gix-command-0.8.0 | ||
| 48446 | rust-gix-commitgraph-0.35.0 | ||
| 48447 | rust-gix-config-0.54.0 | ||
| 48448 | rust-gix-config-value-0.17.1 | ||
| 48449 | rust-gix-date-0.15.1 | ||
| 48450 | rust-gix-diff-0.61.0 | ||
| 48451 | rust-gix-dir-0.23.0 | ||
| 48452 | rust-gix-discover-0.49.0 | ||
| 48453 | rust-gix-error-0.2.1 | ||
| 48454 | rust-gix-features-0.46.2 | ||
| 48455 | rust-gix-filter-0.28.0 | ||
| 48456 | rust-gix-fs-0.19.2 | ||
| 48457 | rust-gix-glob-0.24.0 | ||
| 48458 | rust-gix-hash-0.23.0 | ||
| 48459 | rust-gix-hashtable-0.13.0 | ||
| 48460 | rust-gix-ignore-0.19.1 | ||
| 48461 | rust-gix-index-0.49.0 | ||
| 48462 | rust-gix-lock-21.0.2 | ||
| 48463 | rust-gix-merge-0.14.0 | ||
| 48464 | rust-gix-negotiate-0.29.0 | ||
| 48465 | rust-gix-object-0.58.0 | ||
| 48466 | rust-gix-odb-0.78.0 | ||
| 48467 | rust-gix-pack-0.68.0 | ||
| 48468 | rust-gix-packetline-0.21.2 | ||
| 48469 | rust-gix-path-0.11.2 | ||
| 48470 | rust-gix-pathspec-0.16.1 | ||
| 48471 | rust-gix-protocol-0.59.0 | ||
| 48472 | rust-gix-quote-0.7.0 | ||
| 48473 | rust-gix-ref-0.61.0 | ||
| 48474 | rust-gix-refspec-0.39.0 | ||
| 48475 | rust-gix-revision-0.43.0 | ||
| 48476 | rust-gix-revwalk-0.29.0 | ||
| 48477 | rust-gix-sec-0.13.2 | ||
| 48478 | rust-gix-shallow-0.10.0 | ||
| 48479 | rust-gix-status-0.28.0 | ||
| 48480 | rust-gix-submodule-0.28.0 | ||
| 48481 | rust-gix-tempfile-21.0.2 | ||
| 48482 | rust-gix-trace-0.1.18 | ||
| 48483 | rust-gix-transport-0.55.1 | ||
| 48484 | rust-gix-traverse-0.55.0 | ||
| 48485 | rust-gix-url-0.35.2 | ||
| 48486 | rust-gix-utils-0.3.1 | ||
| 48487 | rust-gix-validate-0.11.0 | ||
| 48488 | rust-gix-worktree-0.50.0 | ||
| 48489 | rust-gix-worktree-state-0.28.0 | ||
| 48490 | rust-gix-worktree-stream-0.30.0 | ||
| 46765 | rust-glib-0.21.5 | 48491 | rust-glib-0.21.5 |
| 46766 | rust-glib-macros-0.21.5 | 48492 | rust-glib-macros-0.21.5 |
| 46767 | rust-glib-sys-0.21.5 | 48493 | rust-glib-sys-0.21.5 |
| 46768 | rust-glob-0.3.3 | 48494 | rust-glob-0.3.3 |
| 46769 | rust-globset-0.4.18 | 48495 | rust-globset-0.4.18 |
| 46770 | rust-gobject-sys-0.21.5 | 48496 | rust-gobject-sys-0.21.5 |
| 48497 | rust-group-0.13.0 | ||
| 46771 | rust-gzip-header-1.0.0 | 48498 | rust-gzip-header-1.0.0 |
| 46772 | rust-h2-0.4.13 | 48499 | rust-h2-0.4.13 |
| 46773 | rust-half-2.7.1 | 48500 | rust-half-2.7.1 |
| 48501 | rust-hash32-0.3.1 | ||
| 46774 | rust-hashbrown-0.12.3 | 48502 | rust-hashbrown-0.12.3 |
| 46775 | rust-hashbrown-0.14.5 | 48503 | rust-hashbrown-0.14.5 |
| 46776 | rust-hashbrown-0.15.5 | 48504 | rust-hashbrown-0.15.5 |
| @@ -46778,6 +48506,7 @@ | |||
| 46778 | rust-hashlink-0.10.0 | 48506 | rust-hashlink-0.10.0 |
| 46779 | rust-headers-0.4.1 | 48507 | rust-headers-0.4.1 |
| 46780 | rust-headers-core-0.3.0 | 48508 | rust-headers-core-0.3.0 |
| 48509 | rust-heapless-0.8.0 | ||
| 46781 | rust-heck-0.4.1 | 48510 | rust-heck-0.4.1 |
| 46782 | rust-heck-0.5.0 | 48511 | rust-heck-0.5.0 |
| 46783 | rust-hermit-abi-0.5.2 | 48512 | rust-hermit-abi-0.5.2 |
| @@ -46790,6 +48519,7 @@ | |||
| 46790 | rust-hostname-0.4.2 | 48519 | rust-hostname-0.4.2 |
| 46791 | rust-http-0.2.12 | 48520 | rust-http-0.2.12 |
| 46792 | rust-http-1.4.0 | 48521 | rust-http-1.4.0 |
| 48522 | rust-http-body-0.4.6 | ||
| 46793 | rust-http-body-1.0.1 | 48523 | rust-http-body-1.0.1 |
| 46794 | rust-http-body-util-0.1.3 | 48524 | rust-http-body-util-0.1.3 |
| 46795 | rust-http-range-header-0.4.2 | 48525 | rust-http-range-header-0.4.2 |
| @@ -46825,6 +48555,8 @@ | |||
| 46825 | rust-ignore-0.4.25 | 48555 | rust-ignore-0.4.25 |
| 46826 | rust-image-0.25.9 | 48556 | rust-image-0.25.9 |
| 46827 | rust-image-webp-0.2.4 | 48557 | rust-image-webp-0.2.4 |
| 48558 | rust-imara-diff-0.1.8 | ||
| 48559 | rust-imara-diff-0.2.0 | ||
| 46828 | rust-impl-more-0.1.9 | 48560 | rust-impl-more-0.1.9 |
| 46829 | rust-include-dir-0.7.4 | 48561 | rust-include-dir-0.7.4 |
| 46830 | rust-include-dir-macros-0.7.4 | 48562 | rust-include-dir-macros-0.7.4 |
| @@ -46840,6 +48572,7 @@ | |||
| 46840 | rust-intl-memoizer-0.5.3 | 48572 | rust-intl-memoizer-0.5.3 |
| 46841 | rust-intl-pluralrules-7.0.2 | 48573 | rust-intl-pluralrules-7.0.2 |
| 46842 | rust-inventory-0.3.21 | 48574 | rust-inventory-0.3.21 |
| 48575 | rust-io-close-0.3.7 | ||
| 46843 | rust-io-tee-0.1.1 | 48576 | rust-io-tee-0.1.1 |
| 46844 | rust-ipconfig-0.3.2 | 48577 | rust-ipconfig-0.3.2 |
| 46845 | rust-ipnet-2.11.0 | 48578 | rust-ipnet-2.11.0 |
| @@ -46853,8 +48586,10 @@ | |||
| 46853 | rust-itertools-0.14.0 | 48586 | rust-itertools-0.14.0 |
| 46854 | rust-itoa-1.0.17 | 48587 | rust-itoa-1.0.17 |
| 46855 | rust-ixdtf-0.6.4 | 48588 | rust-ixdtf-0.6.4 |
| 46856 | rust-jiff-0.2.18 | 48589 | rust-jiff-0.2.23 |
| 46857 | rust-jiff-static-0.2.18 | 48590 | rust-jiff-static-0.2.23 |
| 48591 | rust-jiff-tzdb-0.1.6 | ||
| 48592 | rust-jiff-tzdb-platform-0.1.3 | ||
| 46858 | rust-jni-0.21.1 | 48593 | rust-jni-0.21.1 |
| 46859 | rust-jni-sys-0.3.0 | 48594 | rust-jni-sys-0.3.0 |
| 46860 | rust-jobserver-0.1.34 | 48595 | rust-jobserver-0.1.34 |
| @@ -46863,6 +48598,7 @@ | |||
| 46863 | rust-keyring-3.6.3 | 48598 | rust-keyring-3.6.3 |
| 46864 | rust-kqueue-1.1.1 | 48599 | rust-kqueue-1.1.1 |
| 46865 | rust-kqueue-sys-1.0.4 | 48600 | rust-kqueue-sys-1.0.4 |
| 48601 | rust-kstring-2.0.2 | ||
| 46866 | rust-lalrpop-0.19.12 | 48602 | rust-lalrpop-0.19.12 |
| 46867 | rust-lalrpop-util-0.19.12 | 48603 | rust-lalrpop-util-0.19.12 |
| 46868 | rust-landlock-0.4.4 | 48604 | rust-landlock-0.4.4 |
| @@ -46874,13 +48610,17 @@ | |||
| 46874 | rust-libm-0.2.16 | 48610 | rust-libm-0.2.16 |
| 46875 | rust-libredox-0.1.12 | 48611 | rust-libredox-0.1.12 |
| 46876 | rust-libsqlite3-sys-0.30.1 | 48612 | rust-libsqlite3-sys-0.30.1 |
| 48613 | rust-libwebrtc-0.3.26.e2d1d1d | ||
| 46877 | rust-libz-sys-1.1.23 | 48614 | rust-libz-sys-1.1.23 |
| 46878 | rust-link-cplusplus-1.0.12 | 48615 | rust-link-cplusplus-1.0.12 |
| 46879 | rust-linked-hash-map-0.5.6 | 48616 | rust-linked-hash-map-0.5.6 |
| 46880 | rust-linux-keyutils-0.2.4 | 48617 | rust-linux-keyutils-0.2.4 |
| 46881 | rust-linux-raw-sys-0.4.15 | 48618 | rust-linux-raw-sys-0.4.15 |
| 46882 | rust-linux-raw-sys-0.11.0 | 48619 | rust-linux-raw-sys-0.12.1 |
| 46883 | rust-litemap-0.8.1 | 48620 | rust-litemap-0.8.1 |
| 48621 | rust-litrs-1.0.0 | ||
| 48622 | rust-livekit-protocol-0.7.1.e2d1d1d | ||
| 48623 | rust-livekit-runtime-0.4.0.e2d1d1d | ||
| 46884 | rust-local-waker-0.1.4 | 48624 | rust-local-waker-0.1.4 |
| 46885 | rust-lock-api-0.4.14 | 48625 | rust-lock-api-0.4.14 |
| 46886 | rust-log-0.4.29 | 48626 | rust-log-0.4.29 |
| @@ -46898,9 +48638,11 @@ | |||
| 46898 | rust-matchers-0.2.0 | 48638 | rust-matchers-0.2.0 |
| 46899 | rust-matchit-0.8.4 | 48639 | rust-matchit-0.8.4 |
| 46900 | rust-matchit-0.9.1 | 48640 | rust-matchit-0.9.1 |
| 48641 | rust-maybe-async-0.2.10 | ||
| 46901 | rust-md-5-0.10.6 | 48642 | rust-md-5-0.10.6 |
| 46902 | rust-md5-0.8.0 | 48643 | rust-md5-0.8.0 |
| 46903 | rust-memchr-2.7.6 | 48644 | rust-memchr-2.7.6 |
| 48645 | rust-memmap2-0.9.10 | ||
| 46904 | rust-memoffset-0.6.5 | 48646 | rust-memoffset-0.6.5 |
| 46905 | rust-memoffset-0.9.1 | 48647 | rust-memoffset-0.9.1 |
| 46906 | rust-mime-0.3.17 | 48648 | rust-mime-0.3.17 |
| @@ -46922,6 +48664,7 @@ | |||
| 46922 | rust-nix-0.30.1 | 48664 | rust-nix-0.30.1 |
| 46923 | rust-nom-7.1.3 | 48665 | rust-nom-7.1.3 |
| 46924 | rust-nom-8.0.0 | 48666 | rust-nom-8.0.0 |
| 48667 | rust-nonempty-0.12.0 | ||
| 46925 | rust-normalize-line-endings-0.3.0 | 48668 | rust-normalize-line-endings-0.3.0 |
| 46926 | rust-notify-8.2.0 | 48669 | rust-notify-8.2.0 |
| 46927 | rust-notify-types-2.1.0 | 48670 | rust-notify-types-2.1.0 |
| @@ -46984,7 +48727,9 @@ | |||
| 46984 | rust-ordered-stream-0.2.0 | 48727 | rust-ordered-stream-0.2.0 |
| 46985 | rust-os-info-3.14.0 | 48728 | rust-os-info-3.14.0 |
| 46986 | rust-os-pipe-1.2.3 | 48729 | rust-os-pipe-1.2.3 |
| 48730 | rust-outref-0.5.2 | ||
| 46987 | rust-owo-colors-4.3.0 | 48731 | rust-owo-colors-4.3.0 |
| 48732 | rust-p256-0.13.2 | ||
| 46988 | rust-parking-2.2.1 | 48733 | rust-parking-2.2.1 |
| 46989 | rust-parking-lot-0.12.5 | 48734 | rust-parking-lot-0.12.5 |
| 46990 | rust-parking-lot-core-0.9.12 | 48735 | rust-parking-lot-core-0.9.12 |
| @@ -47029,27 +48774,32 @@ | |||
| 47029 | rust-predicates-tree-1.0.12 | 48774 | rust-predicates-tree-1.0.12 |
| 47030 | rust-pretty-assertions-1.4.1 | 48775 | rust-pretty-assertions-1.4.1 |
| 47031 | rust-prettyplease-0.2.37 | 48776 | rust-prettyplease-0.2.37 |
| 48777 | rust-primeorder-0.13.6 | ||
| 47032 | rust-proc-macro-crate-3.4.0 | 48778 | rust-proc-macro-crate-3.4.0 |
| 47033 | rust-proc-macro-error-attr2-2.0.0 | 48779 | rust-proc-macro-error-attr2-2.0.0 |
| 47034 | rust-proc-macro-error2-2.0.1 | 48780 | rust-proc-macro-error2-2.0.1 |
| 47035 | rust-proc-macro2-1.0.106 | 48781 | rust-proc-macro2-1.0.106 |
| 47036 | rust-process-wrap-9.0.1 | 48782 | rust-process-wrap-9.0.1 |
| 48783 | rust-prodash-31.0.0 | ||
| 47037 | rust-proptest-1.9.0 | 48784 | rust-proptest-1.9.0 |
| 47038 | rust-prost-0.12.6 | 48785 | rust-prost-0.12.6 |
| 47039 | rust-prost-0.14.3 | 48786 | rust-prost-0.14.3 |
| 47040 | rust-prost-build-0.12.6 | 48787 | rust-prost-build-0.12.6 |
| 48788 | rust-prost-build-0.14.3 | ||
| 47041 | rust-prost-derive-0.12.6 | 48789 | rust-prost-derive-0.12.6 |
| 47042 | rust-prost-derive-0.14.3 | 48790 | rust-prost-derive-0.14.3 |
| 47043 | rust-prost-types-0.12.6 | 48791 | rust-prost-types-0.12.6 |
| 48792 | rust-prost-types-0.14.3 | ||
| 47044 | rust-psl-2.1.184 | 48793 | rust-psl-2.1.184 |
| 47045 | rust-psl-types-2.0.11 | 48794 | rust-psl-types-2.0.11 |
| 48795 | rust-publicsuffix-2.3.0 | ||
| 47046 | rust-pulldown-cmark-0.10.3 | 48796 | rust-pulldown-cmark-0.10.3 |
| 47047 | rust-pulldown-cmark-escape-0.10.1 | 48797 | rust-pulldown-cmark-escape-0.10.1 |
| 47048 | rust-pxfm-0.1.27 | 48798 | rust-pxfm-0.1.27 |
| 47049 | rust-quick-error-2.0.1 | 48799 | rust-quick-error-2.0.1 |
| 47050 | rust-quick-xml-0.38.4 | 48800 | rust-quick-xml-0.38.4 |
| 47051 | rust-quinn-0.11.9 | 48801 | rust-quinn-0.11.9 |
| 47052 | rust-quinn-proto-0.11.13 | 48802 | rust-quinn-proto-0.11.14 |
| 47053 | rust-quinn-udp-0.5.14 | 48803 | rust-quinn-udp-0.5.14 |
| 47054 | rust-quote-1.0.44 | 48804 | rust-quote-1.0.44 |
| 47055 | rust-r-efi-5.3.0 | 48805 | rust-r-efi-5.3.0 |
| @@ -47072,7 +48822,7 @@ | |||
| 47072 | rust-rama-unix-0.3.0-alpha.4 | 48822 | rust-rama-unix-0.3.0-alpha.4 |
| 47073 | rust-rama-utils-0.3.0-alpha.4 | 48823 | rust-rama-utils-0.3.0-alpha.4 |
| 47074 | rust-rand-0.8.5 | 48824 | rust-rand-0.8.5 |
| 47075 | rust-rand-0.9.2 | 48825 | rust-rand-0.9.3 |
| 47076 | rust-rand-chacha-0.3.1 | 48826 | rust-rand-chacha-0.3.1 |
| 47077 | rust-rand-chacha-0.9.0 | 48827 | rust-rand-chacha-0.9.0 |
| 47078 | rust-rand-core-0.6.4 | 48828 | rust-rand-core-0.6.4 |
| @@ -47097,6 +48847,7 @@ | |||
| 47097 | rust-reqwest-0.12.28 | 48847 | rust-reqwest-0.12.28 |
| 47098 | rust-resb-0.1.1 | 48848 | rust-resb-0.1.1 |
| 47099 | rust-resolv-conf-0.7.6 | 48849 | rust-resolv-conf-0.7.6 |
| 48850 | rust-rfc6979-0.4.0 | ||
| 47100 | rust-ring-0.17.14 | 48851 | rust-ring-0.17.14 |
| 47101 | rust-rmcp-0.15.0 | 48852 | rust-rmcp-0.15.0 |
| 47102 | rust-rmcp-macros-0.15.0 | 48853 | rust-rmcp-macros-0.15.0 |
| @@ -47113,11 +48864,11 @@ | |||
| 47113 | rust-rustc-version-0.4.1 | 48864 | rust-rustc-version-0.4.1 |
| 47114 | rust-rusticata-macros-4.1.0 | 48865 | rust-rusticata-macros-4.1.0 |
| 47115 | rust-rustix-0.38.44 | 48866 | rust-rustix-0.38.44 |
| 47116 | rust-rustix-1.1.3 | 48867 | rust-rustix-1.1.4 |
| 47117 | rust-rustls-0.23.36 | 48868 | rust-rustls-0.23.36 |
| 47118 | rust-rustls-native-certs-0.8.3 | 48869 | rust-rustls-native-certs-0.8.3 |
| 47119 | rust-rustls-pki-types-1.14.0 | 48870 | rust-rustls-pki-types-1.14.0 |
| 47120 | rust-rustls-webpki-0.103.10 | 48871 | rust-rustls-webpki-0.103.13 |
| 47121 | rust-rustversion-1.0.22 | 48872 | rust-rustversion-1.0.22 |
| 47122 | rust-rustyline-14.0.0 | 48873 | rust-rustyline-14.0.0 |
| 47123 | rust-ryu-1.0.22 | 48874 | rust-ryu-1.0.22 |
| @@ -47138,6 +48889,7 @@ | |||
| 47138 | rust-scratch-1.0.9 | 48889 | rust-scratch-1.0.9 |
| 47139 | rust-scrypt-0.11.0 | 48890 | rust-scrypt-0.11.0 |
| 47140 | rust-sdd-3.0.10 | 48891 | rust-sdd-3.0.10 |
| 48892 | rust-sec1-0.7.3 | ||
| 47141 | rust-seccompiler-0.5.0 | 48893 | rust-seccompiler-0.5.0 |
| 47142 | rust-secrecy-0.10.3 | 48894 | rust-secrecy-0.10.3 |
| 47143 | rust-secret-service-4.0.0 | 48895 | rust-secret-service-4.0.0 |
| @@ -47173,6 +48925,7 @@ | |||
| 47173 | rust-serial-test-3.3.1 | 48925 | rust-serial-test-3.3.1 |
| 47174 | rust-serial-test-derive-3.3.1 | 48926 | rust-serial-test-derive-3.3.1 |
| 47175 | rust-sha1-0.10.6 | 48927 | rust-sha1-0.10.6 |
| 48928 | rust-sha1-checked-0.10.0 | ||
| 47176 | rust-sha1-smol-1.0.1 | 48929 | rust-sha1-smol-1.0.1 |
| 47177 | rust-sha2-0.10.9 | 48930 | rust-sha2-0.10.9 |
| 47178 | rust-sharded-slab-0.1.7 | 48931 | rust-sharded-slab-0.1.7 |
| @@ -47236,7 +48989,7 @@ | |||
| 47236 | rust-system-deps-7.0.7 | 48989 | rust-system-deps-7.0.7 |
| 47237 | rust-tagptr-0.2.0 | 48990 | rust-tagptr-0.2.0 |
| 47238 | rust-target-lexicon-0.13.3 | 48991 | rust-target-lexicon-0.13.3 |
| 47239 | rust-tempfile-3.24.0 | 48992 | rust-tempfile-3.27.0 |
| 47240 | rust-temporal-capi-0.1.2 | 48993 | rust-temporal-capi-0.1.2 |
| 47241 | rust-temporal-rs-0.1.2 | 48994 | rust-temporal-rs-0.1.2 |
| 47242 | rust-term-0.7.0 | 48995 | rust-term-0.7.0 |
| @@ -47282,7 +49035,9 @@ | |||
| 47282 | rust-toml-parser-1.0.6+spec-1.1.0 | 49035 | rust-toml-parser-1.0.6+spec-1.1.0 |
| 47283 | rust-toml-writer-1.0.6+spec-1.1.0 | 49036 | rust-toml-writer-1.0.6+spec-1.1.0 |
| 47284 | rust-tonic-0.14.3 | 49037 | rust-tonic-0.14.3 |
| 49038 | rust-tonic-build-0.14.3 | ||
| 47285 | rust-tonic-prost-0.14.3 | 49039 | rust-tonic-prost-0.14.3 |
| 49040 | rust-tonic-prost-build-0.14.3 | ||
| 47286 | rust-tower-0.5.3 | 49041 | rust-tower-0.5.3 |
| 47287 | rust-tower-http-0.6.8 | 49042 | rust-tower-http-0.6.8 |
| 47288 | rust-tower-layer-0.3.3 | 49043 | rust-tower-layer-0.3.3 |
| @@ -47316,6 +49071,7 @@ | |||
| 47316 | rust-unic-langid-impl-0.9.6 | 49071 | rust-unic-langid-impl-0.9.6 |
| 47317 | rust-unicase-2.9.0 | 49072 | rust-unicase-2.9.0 |
| 47318 | rust-unicode-bidi-0.3.18 | 49073 | rust-unicode-bidi-0.3.18 |
| 49074 | rust-unicode-bom-2.0.3 | ||
| 47319 | rust-unicode-ident-1.0.22 | 49075 | rust-unicode-ident-1.0.22 |
| 47320 | rust-unicode-linebreak-0.1.5 | 49076 | rust-unicode-linebreak-0.1.5 |
| 47321 | rust-unicode-normalization-0.1.25 | 49077 | rust-unicode-normalization-0.1.25 |
| @@ -47337,10 +49093,12 @@ | |||
| 47337 | rust-utf8-iter-1.0.4 | 49093 | rust-utf8-iter-1.0.4 |
| 47338 | rust-utf8parse-0.2.2 | 49094 | rust-utf8parse-0.2.2 |
| 47339 | rust-uuid-1.20.0 | 49095 | rust-uuid-1.20.0 |
| 49096 | rust-v8-146.4.0 | ||
| 47340 | rust-valuable-0.1.1 | 49097 | rust-valuable-0.1.1 |
| 47341 | rust-vcpkg-0.2.15 | 49098 | rust-vcpkg-0.2.15 |
| 47342 | rust-version-compare-0.2.1 | 49099 | rust-version-compare-0.2.1 |
| 47343 | rust-version-check-0.9.5 | 49100 | rust-version-check-0.9.5 |
| 49101 | rust-vsimd-0.8.0 | ||
| 47344 | rust-vt100-0.16.2 | 49102 | rust-vt100-0.16.2 |
| 47345 | rust-vte-0.15.0 | 49103 | rust-vte-0.15.0 |
| 47346 | rust-wait-timeout-0.2.1 | 49104 | rust-wait-timeout-0.2.1 |
| @@ -47367,6 +49125,8 @@ | |||
| 47367 | rust-webpki-root-certs-1.0.5 | 49125 | rust-webpki-root-certs-1.0.5 |
| 47368 | rust-webpki-roots-0.26.11 | 49126 | rust-webpki-roots-0.26.11 |
| 47369 | rust-webpki-roots-1.0.5 | 49127 | rust-webpki-roots-1.0.5 |
| 49128 | rust-webrtc-sys-0.3.24.e2d1d1d | ||
| 49129 | rust-webrtc-sys-build-0.3.13.e2d1d1d | ||
| 47370 | rust-weezl-0.1.12 | 49130 | rust-weezl-0.1.12 |
| 47371 | rust-which-6.0.3 | 49131 | rust-which-6.0.3 |
| 47372 | rust-which-8.0.0 | 49132 | rust-which-8.0.0 |
| @@ -47454,6 +49214,7 @@ | |||
| 47454 | rust-x25519-dalek-2.0.1 | 49214 | rust-x25519-dalek-2.0.1 |
| 47455 | rust-x509-parser-0.18.1 | 49215 | rust-x509-parser-0.18.1 |
| 47456 | rust-xdg-home-1.3.0 | 49216 | rust-xdg-home-1.3.0 |
| 49217 | rust-xmlparser-0.13.6 | ||
| 47457 | rust-xz2-0.1.7 | 49218 | rust-xz2-0.1.7 |
| 47458 | rust-yaml-rust-0.4.5 | 49219 | rust-yaml-rust-0.4.5 |
| 47459 | rust-yansi-1.0.1 | 49220 | rust-yansi-1.0.1 |
| @@ -47474,6 +49235,7 @@ | |||
| 47474 | rust-zerovec-derive-0.11.2 | 49235 | rust-zerovec-derive-0.11.2 |
| 47475 | rust-zip-0.6.6 | 49236 | rust-zip-0.6.6 |
| 47476 | rust-zip-2.4.2 | 49237 | rust-zip-2.4.2 |
| 49238 | rust-zlib-rs-0.6.3 | ||
| 47477 | rust-zmij-1.0.19 | 49239 | rust-zmij-1.0.19 |
| 47478 | rust-zoneinfo64-0.2.1 | 49240 | rust-zoneinfo64-0.2.1 |
| 47479 | rust-zopfli-0.8.3 | 49241 | rust-zopfli-0.8.3 |
diff --git a/gnu/packages/rust-sources.scm b/gnu/packages/rust-sources.scm index 827f9340fba..9c1d2d7c38a 100644 --- a/gnu/packages/rust-sources.scm +++ b/gnu/packages/rust-sources.scm | |||
| @@ -1537,6 +1537,168 @@ repository, used as dependencies by codex-acp.") | |||
| 1537 | and runtime for AI-assisted coding.") | 1537 | and runtime for AI-assisted coding.") |
| 1538 | (license license:asl2.0)))) | 1538 | (license license:asl2.0)))) |
| 1539 | 1539 | ||
| 1540 | (define-public rust-codex-0.124.0 | ||
| 1541 | (hidden-package | ||
| 1542 | (package | ||
| 1543 | (inherit rust-codex-0.120.0) | ||
| 1544 | (version "0.124.0") | ||
| 1545 | (source | ||
| 1546 | (origin | ||
| 1547 | (method git-fetch) | ||
| 1548 | (uri (git-reference | ||
| 1549 | (url "https://github.com/openai/codex") | ||
| 1550 | (commit "e9fb49366c93a1478ec71cc41ecee415a197d036"))) | ||
| 1551 | (file-name (git-file-name "rust-codex" "0.124.0")) | ||
| 1552 | (sha256 | ||
| 1553 | (base32 "06il60npjnc0h91afyp3wk725cgy3ywk3hx2sbvzdxx6037z6nb0")) | ||
| 1554 | (modules '((guix build utils))) | ||
| 1555 | (snippet '(begin | ||
| 1556 | ;;; These are JSON manifests with a dotslash | ||
| 1557 | ;;; shebang that download and run pre-built | ||
| 1558 | ;;; binaries (ripgrep, bash) at runtime. | ||
| 1559 | (delete-file "codex-cli/bin/rg") | ||
| 1560 | ;; Bundled bubblewrap source tree; includes a | ||
| 1561 | ;; compiled BPF blob (demos/flatpak.bpf). | ||
| 1562 | (delete-file-recursively "codex-rs/vendor/bubblewrap"))) | ||
| 1563 | (patches (search-patches | ||
| 1564 | "codex-acp-0.11.1-disable-code-mode.patch" | ||
| 1565 | "rust-codex-0.124.0-code-mode-stub-toolname.patch" | ||
| 1566 | "rust-codex-0.124.0-remove-patch-sections.patch" | ||
| 1567 | "rust-codex-0.120.0-remove-libwebrtc.patch")))) | ||
| 1568 | (arguments | ||
| 1569 | (substitute-keyword-arguments (package-arguments rust-codex-0.120.0) | ||
| 1570 | ;; 0.124 differs from 0.120 by a single removal | ||
| 1571 | ;; (codex-instructions) and ten additions placed at topo-correct | ||
| 1572 | ;; positions; the order also shifts in a few spots to satisfy new | ||
| 1573 | ;; deps (e.g. codex-utils-cargo-bin moves before codex-app-server- | ||
| 1574 | ;; protocol). Replace the whole list rather than computing a | ||
| 1575 | ;; delta against the inherited one. | ||
| 1576 | ((#:cargo-package-crates _) | ||
| 1577 | ''(;; Topologically sorted by internal dependency order. | ||
| 1578 | "codex-async-utils" | ||
| 1579 | "codex-utils-absolute-path" | ||
| 1580 | "codex-execpolicy" | ||
| 1581 | "codex-utils-home-dir" | ||
| 1582 | "codex-utils-rustls-provider" | ||
| 1583 | "codex-network-proxy" | ||
| 1584 | "codex-utils-cache" | ||
| 1585 | "codex-utils-image" | ||
| 1586 | "codex-utils-string" | ||
| 1587 | "codex-utils-template" | ||
| 1588 | "codex-protocol" | ||
| 1589 | "codex-agent-identity" | ||
| 1590 | "codex-experimental-api-macros" | ||
| 1591 | "codex-shell-command" | ||
| 1592 | "codex-utils-cargo-bin" | ||
| 1593 | "codex-app-server-protocol" | ||
| 1594 | "codex-client" | ||
| 1595 | "codex-api" | ||
| 1596 | "codex-otel" | ||
| 1597 | "codex-features" | ||
| 1598 | "codex-model-provider-info" | ||
| 1599 | "codex-utils-path" | ||
| 1600 | "codex-config" | ||
| 1601 | "codex-sandboxing" | ||
| 1602 | "codex-utils-pty" | ||
| 1603 | "codex-exec-server" | ||
| 1604 | "codex-git-utils" | ||
| 1605 | "codex-keyring-store" | ||
| 1606 | "codex-terminal-detection" | ||
| 1607 | "codex-login" | ||
| 1608 | "codex-utils-plugins" | ||
| 1609 | "codex-plugin" | ||
| 1610 | "codex-analytics" | ||
| 1611 | "codex-ansi-escape" | ||
| 1612 | "codex-apply-patch" | ||
| 1613 | "codex-code-mode" | ||
| 1614 | "codex-connectors" | ||
| 1615 | "codex-skills" | ||
| 1616 | "codex-utils-output-truncation" | ||
| 1617 | "codex-core-skills" | ||
| 1618 | "codex-core-plugins" | ||
| 1619 | "codex-feedback" | ||
| 1620 | "codex-hooks" | ||
| 1621 | "codex-rmcp-client" | ||
| 1622 | "codex-mcp" | ||
| 1623 | "codex-aws-auth" | ||
| 1624 | "codex-model-provider" | ||
| 1625 | "codex-collaboration-mode-templates" | ||
| 1626 | "codex-response-debug-context" | ||
| 1627 | "codex-models-manager" | ||
| 1628 | "codex-file-search" | ||
| 1629 | "codex-state" | ||
| 1630 | "codex-rollout" | ||
| 1631 | "codex-rollout-trace" | ||
| 1632 | "codex-secrets" | ||
| 1633 | "codex-shell-escalation" | ||
| 1634 | "codex-thread-store" | ||
| 1635 | "codex-tools" | ||
| 1636 | "codex-utils-readiness" | ||
| 1637 | "codex-utils-stream-parser" | ||
| 1638 | "codex-windows-sandbox" | ||
| 1639 | "codex-core" | ||
| 1640 | "codex-linux-sandbox" | ||
| 1641 | "codex-arg0" | ||
| 1642 | "codex-backend-openapi-models" | ||
| 1643 | "codex-backend-client" | ||
| 1644 | "codex-utils-cli" | ||
| 1645 | "codex-chatgpt" | ||
| 1646 | "codex-cloud-requirements" | ||
| 1647 | "codex-device-key" | ||
| 1648 | "codex-utils-json-to-toml" | ||
| 1649 | "codex-app-server" | ||
| 1650 | "codex-app-server-client" | ||
| 1651 | "codex-app-server-test-client" | ||
| 1652 | "codex-cloud-tasks-client" | ||
| 1653 | "codex-cloud-tasks-mock-client" | ||
| 1654 | "codex-install-context" | ||
| 1655 | "codex-realtime-webrtc" | ||
| 1656 | "codex-utils-approval-presets" | ||
| 1657 | "codex-utils-elapsed" | ||
| 1658 | "codex-utils-fuzzy-match" | ||
| 1659 | "codex-lmstudio" | ||
| 1660 | "codex-ollama" | ||
| 1661 | "codex-utils-oss" | ||
| 1662 | "codex-utils-sandbox-summary" | ||
| 1663 | "codex-utils-sleep-inhibitor" | ||
| 1664 | "codex-exec" | ||
| 1665 | "codex-mcp-server" | ||
| 1666 | "codex-process-hardening" | ||
| 1667 | "codex-responses-api-proxy" | ||
| 1668 | "codex-uds" | ||
| 1669 | "codex-stdio-to-uds" | ||
| 1670 | "codex-debug-client" | ||
| 1671 | "codex-execpolicy-legacy" | ||
| 1672 | "codex-test-binary-support")) | ||
| 1673 | ((#:phases orig) | ||
| 1674 | ;; Two changes from the inherited phases: | ||
| 1675 | ;; (1) 'add-version-to-workspace-deps stamps the literal | ||
| 1676 | ;; 0.120.0 version inside its substitute pattern, so we | ||
| 1677 | ;; swap the whole phase for one stamping 0.124.0 (and | ||
| 1678 | ;; using a regex that also matches the codex_windows_ | ||
| 1679 | ;; sandbox underscore alias introduced in 0.124). | ||
| 1680 | ;; (2) Add a new phase 'break-dev-dep-cycles to strip the | ||
| 1681 | ;; codex-test-binary-support dev-dep from exec-server and | ||
| 1682 | ;; core; it forms a cycle (test-binary-support -> arg0 -> | ||
| 1683 | ;; {exec-server,core} -> test-binary-support) that cargo | ||
| 1684 | ;; package --no-verify still rejects. | ||
| 1685 | #~(modify-phases #$orig | ||
| 1686 | (replace 'add-version-to-workspace-deps | ||
| 1687 | (lambda _ | ||
| 1688 | (let ((cargo-files (find-files "." "^Cargo\\.toml$"))) | ||
| 1689 | (substitute* cargo-files | ||
| 1690 | (("(codex[_-][a-z0-9_-]+) = \\{ path = " all name) | ||
| 1691 | (string-append name " = { version = \"0.124.0\", path = ")) | ||
| 1692 | (("(codex[_-][a-z0-9_-]+) = \\{ package = " all name) | ||
| 1693 | (string-append name " = { version = \"0.124.0\", package = ")) | ||
| 1694 | (("^(path = \"\\.\\./[^\"]*\")" all path-line) | ||
| 1695 | (string-append path-line "\nversion = \"0.124.0\"")))))) | ||
| 1696 | (add-after 'add-version-to-workspace-deps 'break-dev-dep-cycles | ||
| 1697 | (lambda _ | ||
| 1698 | (substitute* '("exec-server/Cargo.toml" "core/Cargo.toml") | ||
| 1699 | (("^codex-test-binary-support = \\{[^}]*\\}\n") "")))))))) | ||
| 1700 | (inputs (cargo-inputs 'rust-codex-0.124.0))))) | ||
| 1701 | |||
| 1540 | ;; Also update (@ (gnu packages gnome) glycin-loaders) when updating this. | 1702 | ;; Also update (@ (gnu packages gnome) glycin-loaders) when updating this. |
| 1541 | (define-public rust-glycin-3 | 1703 | (define-public rust-glycin-3 |
| 1542 | (package | 1704 | (package |
