mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-05-29 07:31:54 +00:00
14 lines
202 B
Rust
14 lines
202 B
Rust
//! WebAssembly format library
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
extern crate byteorder;
|
|
|
|
pub mod elements;
|
|
|
|
pub use elements::{
|
|
Error as SerializationError,
|
|
deserialize_buffer,
|
|
deserialize_file
|
|
};
|