From 30cebd74b2ad0ef4b1eea51934ba0ae95d2bda97 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 29 Sep 2023 08:00:42 -0700 Subject: [PATCH] c-api: Remove reexport of wasmtime crate This is a follow-up to #6765 to remove this reexport since it was originally added to use both the C API and the `wasmtime` crate in the same downstream crate, but this should be possible through Cargo with: [dependencies] wasmtime = "13" wasmtime-c-api = { version = "13", package = "wasmtime-c-api" } and that way `wasmtime::*` is available as well as `wasmtime_c_api::*` --- crates/c-api/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/c-api/src/lib.rs b/crates/c-api/src/lib.rs index 3ef450731902..4bc111b5dc1b 100644 --- a/crates/c-api/src/lib.rs +++ b/crates/c-api/src/lib.rs @@ -11,8 +11,6 @@ #![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)] -pub use wasmtime::*; - mod config; mod engine; mod error;