Add hack to get deprecated API to work

This commit is contained in:
Mark McCaskey
2020-11-19 17:43:33 -08:00
parent 84370c7930
commit a95c44583c
11 changed files with 300 additions and 177 deletions

View File

@@ -6,6 +6,9 @@ mod table;
pub use self::function::{
FromToNativeWasmType, Function, HostFunction, WasmTypeList, WithEnv, WithoutEnv,
};
#[cfg(feature = "deprecated")]
pub use self::function::{LegacyEnv, WithLegacyEnv};
pub use self::global::Global;
pub use self::memory::Memory;
pub use self::table::Table;