mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-05-29 23:51:35 +00:00
25 lines
391 B
Rust
25 lines
391 B
Rust
//! WebAssembly format library
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
extern crate byteorder;
|
|
extern crate parking_lot;
|
|
|
|
pub mod elements;
|
|
pub mod builder;
|
|
pub mod interpreter;
|
|
|
|
pub use elements::{
|
|
Error as SerializationError,
|
|
deserialize_buffer,
|
|
deserialize_file,
|
|
serialize,
|
|
serialize_to_file,
|
|
};
|
|
|
|
pub use interpreter::{
|
|
ProgramInstance,
|
|
ModuleInstance,
|
|
RuntimeValue,
|
|
};
|