owasm_abi/
lib.rs

1//! WASM ABI Tools
2
3#![warn(missing_docs)]
4#![cfg_attr(feature="strict", deny(unused))]
5
6extern crate byteorder;
7
8#[cfg(test)]
9#[cfg_attr(all(test), macro_use)]
10extern crate hex_literal;
11
12pub mod eth;