gemachain_program_runtime/
lib.rs

1#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(min_specialization))]
2#![allow(clippy::integer_arithmetic)]
3
4mod instruction_processor;
5mod native_loader;
6
7pub use instruction_processor::*;
8pub use native_loader::*;