neo-decompiler 0.11.0

Neo N3 NEF decompiler: parse, disassemble, lift bytecode to high-level pseudocode and C# skeletons, with a CLI, JSON reports, and optional WebAssembly bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Browser-friendly reports and optional WebAssembly bindings.

mod api;
mod common;
mod options;
mod report;
#[cfg(target_arch = "wasm32")]
mod wasm;

pub use api::{decompile_report, disasm_report, info_report};
pub use options::{WebDecompileOptions, WebDisasmOptions};
pub use report::{WebDecompileReport, WebDisasmReport, WebInfoReport};
#[cfg(target_arch = "wasm32")]
pub use wasm::{decompile_report_wasm, disasm_report_wasm, info_report_wasm, init_panic_hook};