Skip to content

Commit f7004c1

Browse files
authored
c-api: Update reexport of wasmtime crate crate (#7112)
* 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::*` * Add `pub use wasmtime;`
1 parent 1633b60 commit f7004c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/c-api/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
1313

14-
pub use wasmtime::*;
14+
pub use wasmtime;
1515

1616
mod config;
1717
mod engine;

0 commit comments

Comments
 (0)