blob: c49a3c5a17a2700a1fc0df525f8bf37dddf80fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//! WebAssembly format library
#![warn(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
#[macro_use]
extern crate alloc;
pub mod elements;
pub mod builder;
mod io;
pub use elements::{
Error as SerializationError,
deserialize_buffer,
serialize,
peek_size,
};
#[cfg(feature = "std")]
pub use elements::{
deserialize_file,
serialize_to_file,
};
|