Re-export the whole parity_wasm crate

This commit is contained in:
Alexander Theißen
2021-05-26 15:05:02 +02:00
parent 1b0ed1b383
commit 95a711bc33
3 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -34,8 +34,7 @@ pub use graph::{Module, parse as graph_parse, generate as graph_generate};
pub use ref_list::{RefList, Entry, EntryRef, DeleteTransaction};
#[cfg(feature = "std")]
pub use export_globals::export_mutable_globals;
pub use parity_wasm::elements::Instruction;
use parity_wasm;
pub use parity_wasm;
pub struct TargetSymbols {
pub create: &'static str,
+1 -1
View File
@@ -5,7 +5,7 @@ use crate::std::collections::BTreeMap as Map;
use crate::std::num::NonZeroU32;
use crate::std::str::FromStr;
use crate::Instruction;
use parity_wasm::elements::Instruction;
pub struct UnknownInstruction;