mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 11:27:59 +00:00
29 lines
733 B
Rust
29 lines
733 B
Rust
extern crate parity_wasm;
|
|
extern crate env_logger;
|
|
extern crate byteorder;
|
|
#[macro_use] extern crate log;
|
|
#[macro_use] extern crate lazy_static;
|
|
|
|
pub static CREATE_SYMBOL: &'static str = "deploy";
|
|
pub static CALL_SYMBOL: &'static str = "call";
|
|
pub static RET_SYMBOL: &'static str = "ret";
|
|
|
|
pub mod rules;
|
|
|
|
mod optimizer;
|
|
mod gas;
|
|
mod symbols;
|
|
mod logger;
|
|
mod ext;
|
|
mod pack;
|
|
mod runtime_type;
|
|
|
|
pub mod stack_height;
|
|
|
|
pub use optimizer::{optimize, Error as OptimizerError};
|
|
pub use gas::inject_gas_counter;
|
|
pub use logger::init_log;
|
|
pub use ext::{externalize, externalize_mem, underscore_funcs, ununderscore_funcs, shrink_unknown_stack};
|
|
pub use pack::{pack_instance, Error as PackingError};
|
|
pub use runtime_type::inject_runtime_type;
|