Erik Živković
Erik Živković
This code ```rust #[swift_bridge::bridge] mod ffi { #[swift_bridge(swift_repr = "struct")] pub struct TopLevel { pub nested: Option, } #[swift_bridge(swift_repr = "struct")] pub struct Nested { x: f64, } } ```...
When I run my iOS application in Debug mode, everything is working correctly and the code is linking properly. But when I build my iOS app in Release mode, for...
I would like to read some documentation on what you think the best place for auxillary Swift files for the generated Swift Package is. Might it be * In the...
Hello, I recently decided to upgrade to stompjs 7 from 5.4.4, and typescript doesn't like the following code: ```typescript client.webSocketFactory = (): WebSocket => { return new WebSocket(myBrokerUrl); }; ```...
Hi, I recently upgraded from `3.0.0` to `5.0.3` and now my audio playlist ends up in `unknown_tags` instead of in `alternatives`. What am I doing wrong? Here is the master...
Leaving this here as a potential help to other developers (or future me, hi!). It could be fleshed out to become better, by someone else. It's possible to use this...
# Bug Sometimes tsify won't generate a TypeScript interface. # How to reproduce Specifically, under these circumstances: Given a crate that has _exactly one_ type that has a Tsify derive,...
Hello! Thanks for a great library! In https://github.com/rustwasm/wasm-bindgen/pull/3554 (See also: https://github.com/rustwasm/wasm-bindgen/issues/111 ) the possibility to return a `Vec` where `SomeType` has `#[wasm_bindgen]` on it was introduced. Later, in https://github.com/rustwasm/wasm-bindgen/issues/3692 @hillin...
Hello! This might be a cosmic-text issue, but I'm starting here since I don't know how to dig further. If I use multiple spans using `Buffer::set_rich_text`, and I use `Attrs`...
`TextDecoder` in Safari has a limitation that causes it to throw `RangeError` after decoding more than 2GiB of data. This causes long running wasm programs that need to use `TextDecoder`...