Christian Poveda Ruiz
Christian Poveda Ruiz
I'd favor having the `pub` as a qualifier for `import` instead as it would be easier to read which imports are public and which ones are not: ```gleam import two.{pub...
I think https://github.com/rust-lang/rust-bindgen/pull/2561 doesn't strictly fix this but it is a step in that direction iiuc (cc @reitermarkus). If that's the case maybe this is a good enough reason to...
CI is failing due to https://github.com/rust-lang/libc/issues/3613
we haven't been able to get windows releases to work as the CI workflow fails while compilating bindgen on windows. We don't have a way to reproduce and fix this...
We had to revert this change so I'm reopening this.
I like this feature but I think it needs more bikeshedding. One issue I see is that having to write the name of the macro itself and the type makes...
> Writing the wrapper manually in a header and passing it to bindgen does create a binding, but the function still needs to be included in the final compilation unit,...
This sounds like another of those C++ template issues where we don't have a straight solution and it is mostly caused by how libclang exposes the information of the templates....
This sounds like C++ templates are making bindgen sad. The part about `ManuallyDrop` sounds like something that we could fix. However, several issues about poorly translated generics happen because libclang...
I agree that `as` can be confusing (specially if we're discussing if truncation or saturation is the right behavior). But having `.try_into().unwrap()` is just causing bindgen to panic at random...