Make objdiff-core no_std + huge WASM rework

This commit is contained in:
Luke Street
2025-02-09 22:28:02 -07:00
parent d938988d43
commit e8de35b78e
49 changed files with 1463 additions and 1046 deletions
+9 -1
View File
@@ -1,4 +1,12 @@
use std::{borrow::Cow, cmp::Ordering, collections::BTreeMap};
use alloc::{
borrow::Cow,
collections::BTreeMap,
format,
string::{String, ToString},
vec,
vec::Vec,
};
use core::cmp::Ordering;
use anyhow::{bail, Result};
use object::{elf, File, Relocation, RelocationFlags};