feat!: decouple wasmer from Marine, replace it with generic backend interface (#219)

This commit is contained in:
Valery Antopol
2023-03-15 00:43:51 +03:00
committed by GitHub
parent b0e9b2c104
commit d3a773df4f
157 changed files with 5375 additions and 2179 deletions

View File

@ -27,7 +27,7 @@ pub fn delete_it_section_from_file(
out_wasm_path: PathBuf,
) -> Result<(), ITParserError> {
let module = ModuleConfig::new()
.parse_file(&in_wasm_path)
.parse_file(in_wasm_path)
.map_err(ITParserError::CorruptedWasmFile)?;
let mut module = delete_it_section(module);