Issue
The pre-push hook fails due to 172 clippy unwrap_used warnings in test code (src/sync.rs tests), preventing any pushes.
This was likely introduced by a Rust toolchain update enabling stricter clippy defaults for test targets.
Impact
Blocks ALL pushes including bug fixes (e.g., #17 --block-size fix).
Fix Options
- Add
#[allow(clippy::unwrap_used)] to test modules
- Replace unwrap() with expect() in test code
- Adjust clippy.toml to allow unwrap in tests
Found during kaizen dogfooding push.
Issue
The pre-push hook fails due to 172 clippy
unwrap_usedwarnings in test code (src/sync.rstests), preventing any pushes.This was likely introduced by a Rust toolchain update enabling stricter clippy defaults for test targets.
Impact
Blocks ALL pushes including bug fixes (e.g., #17 --block-size fix).
Fix Options
#[allow(clippy::unwrap_used)]to test modulesFound during kaizen dogfooding push.