Skip to content

Commit

Permalink
Make C API usable from Rust (bytecodealliance#6765)
Browse files Browse the repository at this point in the history
  • Loading branch information
RubixDev authored and eduardomourar committed Oct 4, 2023
1 parent c5f739a commit dc152bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false

[lib]
name = "wasmtime"
crate-type = ["staticlib", "cdylib"]
crate-type = ["staticlib", "cdylib", "rlib"]
doc = false
test = false
doctest = false
Expand Down
2 changes: 2 additions & 0 deletions crates/c-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]

pub use wasmtime::*;

mod config;
mod engine;
mod error;
Expand Down

0 comments on commit dc152bf

Please sign in to comment.