Conversation
Removed several dependencies that were declared in Cargo.toml files but no longer used in the code, including url from tinyinference-llm, async-trait, tempfile, tinyinference-core, tinyinference-llm, and tokio from tinyinference-providers, and log from tinyinference-voice. This cleans up the dependency tree and reduces unnecessary compilation overhead. Auto-committed-on: dragonfly Co-authored-by: Medulla <medulla@tinyhumans.ai>
Tiny Sweeper reviewTiny Sweeper reviewed this change across 6 lane(s) and found 0 active actionable finding(s). Detailed lane evidence and any incomplete work are listed below. State: Ready for maintainer review Review snapshot
Completeness: Complete What changedThe review could not produce a supported behavioral summary; inspect the cited changed surface and lane details below. FeaturesNone identified with supported citations. TestsNo supported feature-to-test mapping was produced. Test execution is not inferred. FindingsNo active actionable findings. Before mergeNone. Agent review detailscritique
security
tests
commits
description
e2e
Evidence and run details
|
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Advanced Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (3)
💤 Files with no reviewable changes (3)
Included review availability: Your plan provides up to 1 included review per hour; 0 remain after this review. 📝 WalkthroughWalkthroughThree Cargo manifests remove dependency declarations. No public entities change. ChangesDependency Manifest Cleanup
Priority: ⬇️ Low Estimated code review effort: 1 (Trivial) | ~5 minutes Change: Other 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
A rabbit reads each line, Comment |
Summary
Found by the cross-repo dependency audit in tinyhumansai/openhuman#6353 (
pnpm dep:audit, tinyanalyzer-driven) and verified by grep against this tree atmain. Manifest and lockfile only; no source changes.tinyinference-providers: droptinyinference-core,tinyinference-llm,tokio,async-traitand dev-dependencytempfile— the crate is auth/OAuth/config-rejection helpers overreqwest/serdeand never references any of them.tinyinference-voice: droplog(the crate logs throughtracing).tinyinference-llm: dropurl(the word only appears in strings and doc comments; nourl::path).All of these are still pulled in by sibling crates, so this is a manifest clean-up rather than a build-graph reduction — but it stops
tinyinference-providersfrom looking like it depends on the LLM crate.Related issue
None.
API or behavior changes
None.
Validation
Commands actually run, with their outcome:
cargo fmt --all -- --check— cleancargo clippy --workspace --all-targets --all-features -- -D warnings— clean (stable 1.98)cargo check --workspace --all-targets --all-features— cleancargo test --workspace --all-features— 719 passed, 0 failedTests
None added: dependency removal is verified by the build, not by a test.
Documentation
Not needed; no public surface changed.
Checklist
#[allow(...)],#[ignore], or relaxed lints.envcontents in the diff or the descriptionSummary by CodeRabbit