Edwin Amsler
Edwin Amsler
Ah, so it looks like the whole function gets dropped which makes some sense as to why there was a `scopeguard::defer()` call... For example, this never panics: ```rust fut.await; panic!("This...
That’s quite helpful! I’ll play with it some more and see how it goes. I’m going to build a more complex UI around the VirtualizedList this week to get more...
Heya! I'm taking a look at this today... It looks like a lot more care (beyond my knowledge is needed here). I didn't change any of actual dependencies and just...
I might be wrong, but it just seemed the documentation is lacking: ```rust create_join_table(m, "movies", vec![ ("title", ColType::String) ], vec![] ) .await; ``` Which table is it joining to, etc....
Mmm. Had a realization after cutting this issue that `dyn` might not be FFI-safe and it seems no? There's a crate here: https://github.com/outfoxxed/dyntable Still, I'm curious about how someone might...
I think this may be a SeaORM issue. I'm able to reproduce a similar issue from this code where a `chrono::DateTime` throws a different serialization error: ```rust fn test_serialize() {...
I wonder if the problem is here in dump_tables: https://github.com/loco-rs/loco/blob/master/src/db.rs#L899 It might be that the bool is able to be serialized as a u8 and so it succeeds to early....
Thanks for the info! I’m pretty surprised that Cargo follows a different understanding of SemVer. In practice for me it safely automatically upgrades to the latest “Y” in your example...