Pierre Wehbe

Results 17 comments of Pierre Wehbe

Any updates on that one?

+1 I have a struct ``` #[derive(uniffi::Object)] pub struct Animal { pub name: String; } ``` ``` #[derive(uniffi::Record)] pub struct Person { pub animal: Arc } ``` In swift, this...

@mhammond My current workaround is to implement Equatable/Hashable as an extension ``` extension Animal: Equatable, Hashable { ... // this tend to be a bit more custom for Objects }...

In case 5.8 is a concern (since it becomes the minimum), I believe keeping 5.2 would still work

@badboy thanks for looking into it, I'll try building a repo that reproduces the issue. I failed to mention some information: - It runs fine on 0.25.x - here is...

@badboy Indeed, renaming our local **core** lib to anything else works...

@mhammond That was my thought as well, I've unblocked us by renaming our current library, but I bet lots of repos would have a "core" package internal to them, would...

Note: It might be related to a sqlx problem. I opened a PR over there in case you guys can help take it to the finish line. https://github.com/launchbadge/sqlx/pull/3411 -- Update:...