bendk
bendk
Last comment on this: does anyone know a good way to test this on a 32-bit arch? It seems like this should be easy, but I couldn't figure out an...
> Oh, looks like the exposed provenance API is too new. I think per policy we could probably bump MSRV to 1.84, but it seems a bit weird to bump...
I believe the way to reproduce this is to add `-strict-concurrency=complete` as an argument [here](https://github.com/mozilla/uniffi-rs/blob/09bc9e9084dc4d12cad2816df84f5ce2ed013e6f/uniffi_bindgen/src/bindings/swift/test.rs#L96). It looks like I get the same errors on swift `5.10.1` with that argument, although...
I converted some more variables to `let` in https://github.com/mozilla/uniffi-rs/pull/2294, I'd love to hear feedback from the Swift devs on the changes. In particular, am I right about the need to...
Looks like there's definitely more changes to be had, since this is breaking the nimbus-fml tests. If you point me in the right direction, I think I can fix them....
I think the dependency checks are passing nowadays, not sure what changed to make that happen. Should we close this? I don't want to push a clap upgrade on nimbus...
This is no longer an issue with the current `main`, let's close this.
Can you link to the code that you're running with the printouts? I'm especially interested in where the "dropping handle" print statement is.
This test is really complex because you have a Rust future that's awaiting a foreign future. At the end of all of that, the foreign future gets dropped, which should...
Looks like we're getting somewhere. Let's add some more printouts: - Is the [Scheduler::wake](https://github.com/giarc3/uniffi-rs/blob/f15686a49c3fd135d460b8aa8b48c9bf94a835b4/uniffi_core/src/ffi/rustfuture/scheduler.rs#L70) being called and is it invoking the callback? - Is the callback [completing the continutation](https://github.com/IronCoreLabs/uniffi-bindgen-java/blob/8a14d1c813d0468e7a31b72f19214b3170e60457/src/templates/Async.java#L24)? -...