thunderbiscuit

Results 189 comments of thunderbiscuit

I wonder if it's because you are using the proc macros? I made a smaller [reproducible example here: uniffi/2282](https://github.com/thunderbiscuit/uniffi-examples/tree/uniffi/2282/6-multiple-libraries). My `calendar-ffi` library imports a single type from the lower level...

Hi Mark! Sorry it took me a while to get back to this. I was able to reproduce my bug using the fixtures. See the [diff here](https://github.com/mozilla/uniffi-rs/compare/main...thunderbiscuit:uniffi-rs:issue/2282). I basically simply...

Hi @mhammond, just wondering if you have any thoughts on this issue. I have re-tested my examples and production crates using the latest commit on `main` (80d5ce2bb8f4082677ffbde85522f72afcb65eb1), which required a...

Yep I'm coming back to this as well. This bug (whether it's coming from my build workflow or from uniffi) prevented us from using a 2-crates setup for the 1.0...

@mhammond @bendk sorry for tagging, but this is one we'd like to figure out if possible! We are now a few (4 to 8) libraries that use uniffi to produce...

Thanks for the quick response @mhammond! We've discussed using Rust features before (potentially 1 feature per type), and so that's an option at the moment, but also felt not quite...

Hey no sweat! I didn't read it as dismissive at all @mhammond. Your team has been incredibly responsive with us for years, and building an absolutely rad library we rely...

Feel free to pick it up @aagbotemi!

I like it. This is starting to look good! Just writing notes here to keep track of stuff left to do: - [x] Run all tests and fix them -...

Note on a required change from the Rust API: the builder pattern ending with `load_wallet()` [returns an Option](https://docs.rs/bdk_wallet/1.0.0-beta.1/bdk_wallet/struct.Wallet.html#method.load-1) but the constructors in uniffi cannot. So here I decided to add...