Remove some obsolete re-exports in wasmtime-jit. (#992)

These were from when wasmtime-jit was trying to present a different API;
now they're not needed.
This commit is contained in:
Dan Gohman
2020-02-26 05:13:28 -08:00
committed by GitHub
parent e41cae7db9
commit d55a9967b1
3 changed files with 2 additions and 8 deletions

View File

@@ -40,9 +40,5 @@ pub use crate::link::link_module;
pub use crate::resolver::{NullResolver, Resolver};
pub use crate::target_tunables::target_tunables;
// Re-export `InstanceHandle` so that users won't need to separately depend on
// wasmtime-runtime in common cases.
pub use wasmtime_runtime::{InstanceHandle, InstantiationError};
/// Version number of this crate.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");