Skip to content

chore(deps): bump the cargo-minor-patch group across 1 directory with 9 updates - #460

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-minor-patch-8de439bc8b
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-minor-patch-8de439bc8b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-minor-patch group with 9 updates in the / directory:

Package From To
clap 4.6.2 4.6.6
toml 1.1.3+spec-1.1.0 1.1.5+spec-1.1.0
chrono 0.4.44 0.4.45
which 8.0.5 8.0.6
libc 0.2.186 0.2.189
rusqlite 0.40.1 0.40.2
tokenizers 0.23.1 0.23.2
turso 0.7.1 0.7.2
tokio 1.53.0 1.53.1

Updates clap from 4.6.2 to 4.6.6

Release notes

Sourced from clap's releases.

v4.6.6

[4.6.6] - 2026-08-06

Features

  • Add Command::get_overridden_usage

v4.6.5

[4.6.5] - 2026-07-31

Fixes

  • (help) Correctly mark which value_names are optional with num_args

v4.6.4

[4.6.4] - 2026-07-21

Internal

  • Update to syn v3

v4.6.3

[4.6.3] - 2026-07-20

Fixes

  • (derive) Allow "literal".function() as attribute values
Changelog

Sourced from clap's changelog.

[4.6.6] - 2026-08-06

Features

  • Add Command::get_overridden_usage

[4.6.5] - 2026-07-31

Fixes

  • (help) Correctly mark which value_names are optional with num_args

[4.6.4] - 2026-07-21

Internal

  • Update to syn v3

[4.6.3] - 2026-07-20

Fixes

  • (derive) Allow "literal".function() as attribute values
Commits
  • 348cff3 chore: Release
  • d478377 docs: Update changelog
  • 04b9fbb Merge pull request #6414 from koopatroopa787/fix-bash-completion-bracket-glob
  • 7075239 Merge pull request #6422 from BaumiCoder/fix-fish-indentations
  • f90a966 fix(complete): Use spaces for indentation in fish
  • dd4997b fix(complete): Don't glob-expand bash positionals
  • 8387c81 Merge pull request #6399 from clap-rs/renovate/crate-ci-typos-1.x
  • 8141e11 chore(deps): Update compatible (dev) (#6398)
  • 8a6bd4e chore(deps): Update pre-commit hook crate-ci/typos to v1.47.0
  • 71a7213 chore(deps): Update Rust Stable to v1.96 (#6396)
  • Additional commits viewable in compare view

Updates toml from 1.1.3+spec-1.1.0 to 1.1.5+spec-1.1.0

Commits
  • e93ed4e chore: Release
  • d23436d docs: Update changelog
  • 151afcd fix(de): Ensure DeValue::make_owned includes DeInteger/DeFloat (#1211)
  • 26a4050 fix(de): Ensure DeValue::make_owned includes DeInteger/DeFloat
  • 232f136 chore(deps): Update Prek to v0.5.1 (#1209)
  • 9ee4b4e chore(deps): Update crate-ci/typos digest to 4d9c206 (#1208)
  • 525f352 chore(deps): Update crate-ci/committed digest to 800a04e (#1207)
  • 46043ed chore(deps): Update crate-ci/typos digest to 4d9c206
  • c00e894 chore(deps): Update crate-ci/committed digest to 800a04e
  • 1ae0158 chore(deps): Update Prek to v0.5.0 (#1205)
  • Additional commits viewable in compare view

Updates chrono from 0.4.44 to 0.4.45

Release notes

Sourced from chrono's releases.

0.4.45

What's Changed

Commits
  • 1703382 Prepare 0.4.45 release
  • 881f9ab tz_data: fix tzdata locations on Android
  • f14ead4 fix(tz): reject TZ offset hour of 24 to avoid FixedOffset overflow
  • c6063e6 Update similar-asserts requirement from 1.6.1 to 2.0.0
  • 120686c Bump codecov/codecov-action from 5 to 6
  • See full diff in compare view

Updates which from 8.0.5 to 8.0.6

Release notes

Sourced from which's releases.

8.0.6

What's Changed

New Contributors

Full Changelog: harryfei/which-rs@8.0.5...8.0.6

Changelog

Sourced from which's changelog.

8.0.6

  • Bug fix: #128 Resolve relative PATH entries against the user provided CWD when available, rather than the process CWD. Thanks @​RSS1102 for your contribution to which!
Commits

Updates libc from 0.2.186 to 0.2.189

Release notes

Sourced from libc's releases.

0.2.189

Added

  • Emscripten: Add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessat, and pthread_kill (#5270)
  • Linux SPARC: Enable the clone3 syscall (#4980)
  • Solarish: Add CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID (#5274)

Deprecated

  • Deprecate CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND. These overflow their types and will be changed to a larger size in the future. (8c6e6710458d)

Fixed

  • Musl riscv32: Rename padding fields to avoid a conflict and fix the build (2499ff0ad993)
  • NuttX: Fix wchar_t definition under Arm (#5245)
  • Windows: Add back link names for time-related symbols (#5300)

0.2.188

Changed

These were removed in 0.2.187 because libc does not actually make Send and Sync guarantees about DIR (or other extern types), but this caused some crates to break. The traits are added back for now to allow time to migrate, but will be removed again in the future; please make sure your crates are not relying on libc::DIR: Send or libc::DIR: Sync.

0.2.187

This release contains a number of improvements related to 64-bit time_t configuration. Of note the existing RUST_LIBC_UNSTABLE_* environment variables have been replaced with configuration options. The new way to use these is:

RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo ...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...

Being able to set this via RUSTFLAGS makes it easier to only apply configuration to specific targets (and notably, not the host if build scripts are used).

There are two other notable changes:

  • The 32-bit windows-gnu targets now respect libc_unstable_gnu_time_bits

  • uClibc now supports a similar configuration option:

    RUSTFLAGS='--cfg=libc_unstable_uclibc_time64'

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.189 - 2026-07-21

Added

  • Emscripten: Add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessat, and pthread_kill (#5270)
  • Linux SPARC: Enable the clone3 syscall (#4980)
  • Solarish: Add CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID (#5274)

Deprecated

  • Deprecate CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND. These overflow their types and will be changed to a larger size in the future. (8c6e6710458d)

Fixed

  • Musl riscv32: Rename padding fields to avoid a conflict and fix the build (2499ff0ad993)
  • NuttX: Fix wchar_t definition under Arm (#5245)
  • Windows: Add back link names for time-related symbols (#5300)

0.2.188 - 2026-07-21

Changed

These were removed in 0.2.187 because libc does not actually make Send and Sync guarantees about DIR (or other extern types), but this caused some crates to break. The traits are added back for now to allow time to migrate, but will be removed again in the future; please make sure your crates are not relying on libc::DIR: Send or libc::DIR: Sync.

0.2.187 - 2026-07-20

This release contains a number of improvements related to 64-bit time_t configuration. Of note the existing RUST_LIBC_UNSTABLE_* environment variables have been replaced with configuration options. The new way to use these is:

RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo ...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...

Being able to set this via RUSTFLAGS makes it easier to only apply configuration to specific targets (and notably, not the host if build scripts are used).

There are two other notable changes:

  • The 32-bit windows-gnu targets now respect libc_unstable_gnu_time_bits
  • uClibc now supports a similar configuration option:

... (truncated)

Commits
  • ef0906e libc: Release 0.2.189
  • 5a79f76 riscv32-musl: Rename padding fields to avoid a conflict
  • 3e51062 psp: Fix overflowing_literals warnings
  • e352fdd emscripten: add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessa...
  • 63221b3 macros: Require safe in safe_f! invocations
  • 707ab52 macros: Require unsafe in f! invocations
  • 8e40c94 Enable clone3() syscall on sparc-linux and sparc64-linux
  • 8427909 windows: Add back link names for time-related symbols
  • b4863fa nuttx: fix wchar_t definition under arm
  • 41c683d nuttx: mirror type definitions
  • Additional commits viewable in compare view

Updates rusqlite from 0.40.1 to 0.40.2

Release notes

Sourced from rusqlite's releases.

0.40.2

What's Changed

  • Lower MSRV to 1.88.0

Full Changelog: rusqlite/rusqlite@v0.40.1...v0.40.2

Commits

Updates tokenizers from 0.23.1 to 0.23.2

Release notes

Sourced from tokenizers's releases.

v0.23.2

This is the last v0 release, we are moving to v1!!

More details coming soon 👀

What's Changed

New Contributors

Full Changelog: huggingface/tokenizers@v0.23.1...v0.23.2

Commits
  • 88a4498 add lock
  • e4ea65f real release
  • 7c5964b add lock
  • bc405ad push rc0
  • d582781 Add a ParityBpeTrainer example and list it in the trainers API docs (#2217)
  • 447890f fix(python): pin the ruff rule set so a ruff release can't redden main (#2292)
  • 68b3ab7 chore(node): take node security alerts from 33 to 0 (#2287)
  • 74ef81f ci: pin every action to one SHA, drop stale audit suppressions (#2291)
  • b26727f chore(node): drop 8 unused devDependencies (#2286)
  • 7c7cfd8 chore: remove stale examples (kills 50% of dependabot traffic) (#2285)
  • Additional commits viewable in compare view

Updates turso from 0.7.1 to 0.7.2

Release notes

Sourced from turso's releases.

v0.7.2

Install turso_cli 0.7.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/turso/releases/download/v0.7.2/turso_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/tursodatabase/turso/releases/download/v0.7.2/turso_cli-installer.ps1 | iex"

Download turso_cli 0.7.2

File Platform Checksum
turso_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
turso_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
turso_cli-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
turso_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
turso_cli-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
turso_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/turso

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.7.2-pre.6

Install turso_cli 0.7.2-pre.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/turso/releases/download/v0.7.2-pre.6/turso_cli-installer.sh | sh

Install prebuilt binaries via powershell script

</tr></table> 

... (truncated)

Commits
  • 046e9cb Turso 0.7.2
  • 8ee137b Turso 0.7.2-pre.6
  • 8a929b3 Merge 'sync: auto-detect the remote pull protocol' from Preston Thorpe
  • 2cc44a8 Merge 'sync/engine: temporarily use truncate checkpoint only in mvcc mode' fr...
  • a303869 Turso 0.7.2-pre.5
  • fbcb6e5 ci: pin Ruff lint version
  • 4755d65 sync/engine: fix test build against v0.7 Database::open_file signature
  • 458214a Turso 0.7.2-pre.4
  • 1bf2045 Merge 'bindings/javascript: pin playwright to 1.61.0 to match container image...
  • 20576a1 Turso 0.7.2-pre.3
  • Additional commits viewable in compare view

Updates tokio from 1.53.0 to 1.53.1

Release notes

Sourced from tokio's releases.

Tokio v1.53.1

1.53.1 (July 20th, 2026)

Fixed

  • signal: restore MSRV by removing OnceLock::wait from the Windows handler (#8300)

Fixed (unstable)

  • time: fix alt timer cancellation and insertion race (#8252)

Documented

  • runtime: remove dead link definition in Runtime::block_on (#8301)

#8252: tokio-rs/tokio#8252 #8300: tokio-rs/tokio#8300 #8301: tokio-rs/tokio#8301

Commits
  • 75fef53 chore: prepare Tokio v1.53.1 (#8303)
  • ae9d011 signal: restore MSRV by removing OnceLock::wait from the Windows handler (#8300)
  • eb4988d time: fix the loom test of the race between cancellation/insertion (#8302)
  • 91d3b4c time: fix alt timer cancellation and insertion race (#8252)
  • a463384 runtime: remove dead link definition in Runtime::block_on (#8301)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… 9 updates

Bumps the cargo-minor-patch group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.6.2` | `4.6.6` |
| [toml](https://github.com/toml-rs/toml) | `1.1.3+spec-1.1.0` | `1.1.5+spec-1.1.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.44` | `0.4.45` |
| [which](https://github.com/harryfei/which-rs) | `8.0.5` | `8.0.6` |
| [libc](https://github.com/rust-lang/libc) | `0.2.186` | `0.2.189` |
| [rusqlite](https://github.com/rusqlite/rusqlite) | `0.40.1` | `0.40.2` |
| [tokenizers](https://github.com/huggingface/tokenizers) | `0.23.1` | `0.23.2` |
| [turso](https://github.com/tursodatabase/turso) | `0.7.1` | `0.7.2` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.53.0` | `1.53.1` |



Updates `clap` from 4.6.2 to 4.6.6
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.2...clap_complete-v4.6.6)

Updates `toml` from 1.1.3+spec-1.1.0 to 1.1.5+spec-1.1.0
- [Commits](toml-rs/toml@toml-v1.1.3...toml-v1.1.5)

Updates `chrono` from 0.4.44 to 0.4.45
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.44...v0.4.45)

Updates `which` from 8.0.5 to 8.0.6
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@8.0.5...8.0.6)

Updates `libc` from 0.2.186 to 0.2.189
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.189/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.186...0.2.189)

Updates `rusqlite` from 0.40.1 to 0.40.2
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@v0.40.1...v0.40.2)

Updates `tokenizers` from 0.23.1 to 0.23.2
- [Release notes](https://github.com/huggingface/tokenizers/releases)
- [Changelog](https://github.com/huggingface/tokenizers/blob/main/RELEASE.md)
- [Commits](huggingface/tokenizers@v0.23.1...v0.23.2)

Updates `turso` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/tursodatabase/turso/releases)
- [Changelog](https://github.com/tursodatabase/turso/blob/main/CHANGELOG.md)
- [Commits](tursodatabase/turso@v0.7.1...v0.7.2)

Updates `tokio` from 1.53.0 to 1.53.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.53.0...tokio-1.53.1)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: toml
  dependency-version: 1.1.5+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: chrono
  dependency-version: 0.4.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: which
  dependency-version: 8.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: libc
  dependency-version: 0.2.189
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: rusqlite
  dependency-version: 0.40.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: tokenizers
  dependency-version: 0.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: turso
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
- dependency-name: tokio
  dependency-version: 1.53.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, rust. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-actions

github-actions Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

Coverage report

Metric Coverage
Lines 58.44%
Functions 64.43%
Regions 59.02%
Per-file breakdown
Filename                           Regions    Missed Regions     Cover   Functions  Missed Functions  Executed       Lines      Missed Lines     Cover    Branches   Missed Branches     Cover
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
agents/custom_cli.rs                   221                37    83.26%          16                 4    75.00%         159                19    88.05%           0                 0         -
agents/definition.rs                   255                 6    97.65%          11                 1    90.91%         286                 5    98.25%           0                 0         -
agents/install.rs                      179                49    72.63%          12                 3    75.00%         121                36    70.25%           0                 0         -
agents/manager.rs                     1331              1092    17.96%          93                74    20.43%         858               703    18.07%           0                 0         -
agents/types.rs                        157                16    89.81%          16                 1    93.75%         104                15    85.58%           0                 0         -
ansi.rs                                374                62    83.42%          21                 0   100.00%         215                42    80.47%           0                 0         -
auth.rs                                291               129    55.67%          24                 4    83.33%         202               110    45.54%           0                 0         -
clanker.rs                             573               272    52.53%          37                18    51.35%         398               218    45.23%           0                 0         -
cli.rs                                1090               205    81.19%          56                15    73.21%         629               143    77.27%           0                 0         -
config.rs                             1315               112    91.48%          72                 9    87.50%         796                51    93.59%           0                 0         -
gateway/api.rs                        1508               149    90.12%          75                12    84.00%        1136               126    88.91%           0                 0         -
gateway/history.rs                    1092               366    66.48%          71                30    57.75%         804               243    69.78%           0                 0         -
gateway/mod.rs                         849               356    58.07%          45                21    53.33%         585               221    62.22%           0                 0         -
gateway/pty.rs                         219                82    62.56%          13                 4    69.23%         152                52    65.79%           0                 0         -
hooks.rs                              1713               162    90.54%         114                18    84.21%         891               104    88.33%           0                 0         -
hyprland.rs                            292               198    32.19%          36                28    22.22%         213               156    26.76%           0                 0         -
identity.rs                            116                18    84.48%           8                 2    75.00%         102                27    73.53%           0                 0         -
input.rs                               209                44    78.95%          18                 2    88.89%         153                31    79.74%           0                 0         -
interchange/claude.rs                 1630                68    95.83%          97                 5    94.85%         969                37    96.18%           0                 0         -
interchange/codex.rs                  1752               266    84.82%         112                20    82.14%        1095               183    83.29%           0                 0         -
interchange/crossload_index.rs         738                80    89.16%          36                 8    77.78%         414                46    88.89%           0                 0         -
interchange/gemini.rs                 1963               277    85.89%         105                10    90.48%        1212               175    85.56%           0                 0         -
interchange/helpers.rs                  20                 0   100.00%           4                 0   100.00%          11                 0   100.00%           0                 0         -
interchange/hermes.rs                 1425                67    95.30%          61                 8    86.89%         928                37    96.01%           0                 0         -
interchange/hub.rs                     143                 3    97.90%           4                 0   100.00%         126                 3    97.62%           0                 0         -
interchange/inject.rs                 3856              1448    62.45%         289                91    68.51%        2338               851    63.60%           0                 0         -
interchange/mod.rs                     457               438     4.16%          11                 9    18.18%         239               229     4.18%           0                 0         -
interchange/opencode.rs               2605               298    88.56%         221                29    86.88%        1775               190    89.30%           0                 0         -
interchange/passthrough.rs             333                25    92.49%          15                 2    86.67%         240                15    93.75%           0                 0         -
interchange/pi.rs                     2037               179    91.21%         122                 5    95.90%        1153                96    91.67%           0                 0         -
interchange/semantic_eq.rs             240                20    91.67%          14                 1    92.86%         106                20    81.13%           0                 0         -
interchange/sessions.rs               1377               727    47.20%          80                45    43.75%         837               441    47.31%           0                 0         -
json_output.rs                          15                15     0.00%           3                 3     0.00%          17                17     0.00%           0                 0         -
launcher.rs                            939               720    23.32%          55                33    40.00%         606               496    18.15%           0                 0         -
lib.rs                                2052              1737    15.35%          94                72    23.40%        1371              1162    15.24%           0                 0         -
pixel_art.rs                          1515               829    45.28%         122                65    46.72%         958               556    41.96%           0                 0         -
polyfill.rs                           1407                20    98.58%          76                 2    97.37%         821                 5    99.39%           0                 0         -
progress.rs                            376               216    42.55%          19                 6    68.42%         232               141    39.22%           0                 0         -
sandbox.rs                            1416               973    31.29%         103                70    32.04%         994               734    26.16%           0                 0         -
search.rs                             2706              2217    18.07%         129                94    27.13%        1667              1415    15.12%           0                 0         -
skillsync/agy.rs                        44                12    72.73%           6                 2    66.67%          29                 8    72.41%           0                 0         -
skillsync/claude.rs                     32                12    62.50%           7                 3    57.14%          24                 9    62.50%           0                 0         -
skillsync/codex.rs                     110                24    78.18%          10                 3    70.00%          71                13    81.69%           0                 0         -
skillsync/gemini.rs                    134                25    81.34%          14                 3    78.57%          90                12    86.67%           0                 0         -
skillsync/hermes.rs                     23                 6    73.91%           6                 2    66.67%          18                 6    66.67%           0                 0         -
skillsync/mod.rs                      1057               379    64.14%          78                26    66.67%         612               197    67.81%           0                 0         -
skillsync/opencode.rs                   23                 6    73.91%           6                 2    66.67%          18                 6    66.67%           0                 0         -
skillsync/pi.rs                         23                 6    73.91%           6                 2    66.67%          18                 6    66.67%           0                 0         -
stream/claude.rs                       555                32    94.23%          47                 4    91.49%         390                28    92.82%           0                 0         -
stream/codex.rs                        819                65    92.06%          73                 7    90.41%         533                37    93.06%           0                 0         -
stream/mod.rs                          375                16    95.73%          25                 4    84.00%         238                 9    96.22%           0                 0         -
stream/runtime.rs                      296               113    61.82%          19                 7    63.16%         192                58    69.79%           0                 0         -
text_input.rs                          690                59    91.45%          56                 6    89.29%         410                33    91.95%           0                 0         -
theme.rs                               675               169    74.96%          41                10    75.61%         390                91    76.67%           0                 0         -
token_count.rs                          98                98     0.00%           7                 7     0.00%          55                55     0.00%           0                 0         -
tui/app.rs                            9926              6073    38.82%         357               157    56.02%        5948              3550    40.32%           0                 0         -
tui/mod.rs                             443               443     0.00%          21                21     0.00%         316               316     0.00%           0                 0         -
tui/session_picker.rs                  440               282    35.91%          20                 9    55.00%         270               154    42.96%           0                 0         -
updater.rs                            1928              1465    24.01%         124                87    29.84%        1303               995    23.64%           0                 0         -
version/antigravity.rs                  74                44    40.54%           6                 2    66.67%          58                39    32.76%           0                 0         -
version/cache.rs                       142                46    67.61%          13                 2    84.62%          93                30    67.74%           0                 0         -
version/claude.rs                      771               587    23.87%          37                25    32.43%         568               456    19.72%           0                 0         -
version/cli.rs                         277               277     0.00%          21                21     0.00%         193               193     0.00%           0                 0         -
version/codex.rs                       262               218    16.79%          14                11    21.43%         223               191    14.35%           0                 0         -
version/compare.rs                     150                 4    97.33%          10                 0   100.00%          70                 4    94.29%           0                 0         -
version/gemini.rs                      106                73    31.13%           6                 2    66.67%          91                73    19.78%           0                 0         -
version/hermes.rs                      121                60    50.41%          10                 6    40.00%         119                61    48.74%           0                 0         -
version/manager.rs                     309               222    28.16%          30                17    43.33%         200               132    34.00%           0                 0         -
version/opencode.rs                    155               115    25.81%           8                 2    75.00%         124               100    19.35%           0                 0         -
version/pi.rs                           76                43    43.42%           5                 1    80.00%          59                41    30.51%           0                 0         -
version/unleash_self.rs                 50                31    38.00%           6                 5    16.67%          40                21    47.50%           0                 0         -
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
TOTAL                                60970             24983    59.02%        3599              1280    64.43%       38676             16075    58.44%           0                 0         -

Raw lcov.info is attached as a workflow artifact.
Generated by cargo llvm-cov --lib.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants