Fix clippy lints and address cargo deny advisories (#117)

This commit is contained in:
2025-09-13 02:04:42 -06:00
committed by GitHub
parent d3596dbaa4
commit 31c42d58db
10 changed files with 74 additions and 96 deletions

View File

@@ -123,7 +123,7 @@ pub fn run(args: Args) -> Result<()> {
}
}
fn load_obj(buf: &[u8]) -> Result<File> {
fn load_obj(buf: &[u8]) -> Result<File<'_>> {
let obj = File::parse(buf)?;
match obj.architecture() {
Architecture::PowerPc => {}