chore: apply cargo fmt + clippy cleanup across crate

Silence forward-looking dead_code on unused DAO modules, annotate
individual placeholder items, rewrite tautological assert!(true/false)
in token tests as panic! arms, and pick up fmt drift.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Cameron
2026-04-18 16:50:15 -04:00
committed by cameron
parent a0f3bfab5f
commit c2ee3996be
22 changed files with 106 additions and 67 deletions

View File

@@ -40,7 +40,10 @@ pub struct Ffmpeg;
pub enum GifType {
Overview,
OverviewVideo { duration: u32 },
#[allow(dead_code)]
OverviewVideo {
duration: u32,
},
}
impl Ffmpeg {