-
Related to https://github.com/GoogleChromeLabs/wasm-bindgen-rayon/issues/30, I tried to initalise thread pool in my wasm bindgen test with the following:
```rust
use wasm_bindgen_futures::{spawn_l…
-
**Describe the bug**
I have set up a reactive graph with "source => memo 1 => memo 2" and "memo1, memo2 => effect". When I change the source, then the first memo gets recomputed, the effect gets upda…
-
## Problem
I ran into an issue while using diplomat to create js bindings for a library I'm working on. The library has dependencies which themselves seem to depend on wasm bindgen. The generated was…
-
Rather than folding all error types into the `windows_result::Error` type, APIs can more specifically return `Result`, `Result`, and so on. This would avoid the overhead that necessitated #3126 and al…
-
I know you're asking for a minimal header, but I don't have enough C++ experience to be able to understand exactly what's going on. If anyone wants to pair up on this to come up with an example, I'm m…
-
My understanding is, that it is very common to wrap a C library in a Rust `*-sys` crate by using `bindgen` to automatically generate Rust bindings and `cc` to compile the C code.
As far as I understa…
-
**Problem**
Some packaging tools like nix use Cargo.lock to pick up versions of the dependencies. Currently dioxus-cli Cargo.lock uses 0.2.93 webasm-bindgen but rest of Dioxus uses 0.2.95 version o…
-
The following is minimized from Xcode's C++ standard library implementation.
```cpp
// namespace.h
#pragma once
#define BEGIN_NAMESPACE namespace repro { inline namespace __1 {
#define END_NAMESPACE…
-
I am getting this error while trying to generate bindings:
```
[nix-shell:~/src/pluralkit/pluralkit]$ RUST_BACKTRACE=1 uniffi-bindgen-cs lib/commands/src/commands.udl
thread 'main' panicked at b…
-
I'm using bindgen to generate un4seen's BASS lib binding. Here is my build.rs:
```rust
let bindings = bindgen::Builder::default()
// The input header we would like to generate
// bind…