1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! WebAssembly format library
#![warn(missing_docs)]

#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(not(feature = "std"), feature(alloc))]

#[cfg(not(feature="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,
};

#[cfg(not(feature = "std"))]
pub (crate) mod rust {
	pub use core::*;
	pub use ::alloc::format;
	pub use ::alloc::vec;
	pub use ::alloc::string;
	pub use ::alloc::boxed;
	pub use ::alloc::borrow;
}

#[cfg(feature="std")]
pub (crate) mod rust {
	pub use std::*;
}