externref icon indicating copy to clipboard operation
externref copied to clipboard

Low-cost reference type shims for WASM modules

Results 6 externref issues
Sort by recently updated
recently updated
newest added

Bumps the minor-changes group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.8` |...

dependencies

## Feature request It would be nice if the `externref` crate did not require the standard library. When using it as a dependency, it's impossible to define a custom `#[panic_handler]`,...

## Feature request Optionally typed function references, which are another kind of reference type. ### Why? I am creating an IDL using this crate for Rust bindings, and want to...

## Bug report Hello, thank you for the great library! Recently I applied the `externref` CLI to the result of debug build (`cargo build`) and got an “incorrectly placed externref...

bug

I have a rust module defined like this ``` pub mod funcs { pub struct Arena(()); // use wasmedge_bindgen_macro::*; use externref::{externref, Resource}; // #[wasmedge_bindgen] #[no_mangle] #[externref] pub extern "C" fn...

bug

## Bug report When creating type alias from resource, eg: `pub struct Bar(Resource);` And using that type in function, eg: ``` #[externref] extern "C" { fn imported_function() -> Bar; }...

bug