From c6786474a70b08f415d6a2cfb5e47b44df8e5ce2 Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Sun, 9 Jun 2019 23:24:10 -0500 Subject: [PATCH] Add MiddlewareChain and StreamingCompiler to runtime --- lib/runtime/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/runtime/src/lib.rs b/lib/runtime/src/lib.rs index 421181ba8ad..efe72ea10dc 100644 --- a/lib/runtime/src/lib.rs +++ b/lib/runtime/src/lib.rs @@ -76,6 +76,7 @@ //! [`wasmer-clif-backend`]: https://crates.io/crates/wasmer-clif-backend //! [`compile_with`]: fn.compile_with.html +pub use wasmer_runtime_core::codegen::{MiddlewareChain, StreamingCompiler}; pub use wasmer_runtime_core::export::Export; pub use wasmer_runtime_core::global::Global; pub use wasmer_runtime_core::import::ImportObject;