Consolidate stragglers: document cache crate, bump MAX_PEERS to 200 - #3
Merged
Conversation
Update CLAUDE.md to reflect oxidebt-cache layer and current frontend state. Bump peer cap from 100 to 200 and ignore resume.md. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The clippy::unnecessary_sort_by lint (stabilized in 1.95) flagged two pre-existing call sites. Local Rust 1.93 doesn't emit this, but CI runs a newer toolchain and rejects warnings. - crates/oxidebt-dht/src/routing.rs: sort_by(|a, b| a.1.cmp(&b.1)) -> sort_by_key(|a| a.1) - src/engine/mod.rs: sort_by(|a, b| b.1.cmp(&a.1)) -> sort_by_key(|a| Reverse(a.1)) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Brings in the only outstanding straggler: the previously-uncommitted work from the local
buildbranch.Changes
oxidebt-cachecrate inCLAUDE.md's crate treeCLAUDE.md("Minimal" → current state)MAX_PEERS_PER_TORRENTfrom 100 → 200 inoxidebt-constantsresume.mdto.gitignorereqwestfeature list insrc-tauri/Cargo.tomlBranches analyzed but not included (no unmerged work)
feat/use-rbit— 0 commits ahead ofmain; already merged/obsoleteclaude/analyze-test-coverage-dPXTG— already merged via PR Add comprehensive test coverage across all crates #1claude/automate-ota-releases-3rUMo— already merged via PR Add automatic update checking and installation support #2Test plan
cargo check --workspacepasses insrc-tauri🤖 Generated with Claude Code