Make objdiff-core no_std + huge WASM rework

This commit is contained in:
2025-02-07 00:10:49 -07:00
parent d938988d43
commit e8de35b78e
49 changed files with 1463 additions and 1046 deletions

View File

@@ -1,3 +1,6 @@
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
#[cfg(feature = "any-arch")]
pub mod arch;
#[cfg(feature = "bindings")]
@@ -14,3 +17,5 @@ pub mod jobs;
pub mod obj;
#[cfg(feature = "any-arch")]
pub mod util;
#[cfg(feature = "wasm")]
pub mod wasm;