diff --git a/lib/runtime-c-api/src/lib.rs b/lib/runtime-c-api/src/lib.rs index b087cd356..52a80f3fc 100644 --- a/lib/runtime-c-api/src/lib.rs +++ b/lib/runtime-c-api/src/lib.rs @@ -97,7 +97,6 @@ pub mod table; pub mod trampoline; pub mod value; -#[derive(Debug)] #[allow(non_camel_case_types)] #[repr(C)] pub enum wasmer_result_t { @@ -119,6 +118,6 @@ pub struct wasmer_limit_option_t { #[repr(C)] pub struct wasmer_byte_array { - bytes: *const u8, - bytes_len: u32, + pub bytes: *const u8, + pub bytes_len: u32, }