Damien Elmes

Results 241 comments of Damien Elmes

If that was addressed at me, fairly sure; the build was failing on Windows with the error in the top post until I updated rules_rust. There's a rust_test in //rslib...

I can't seem to reproduce this on my machine - both images load before the fade in begins. I presume you haven't adjusted the default qFade/aFade? You could either tweak...

My mistake for not reading the title clearly :-) Glad to hear you've got a workaround for now.

Could something like the following work instead? It allows passing either a conn/trx while retaining easy access to the statement cache. ```rust use std::{ ops::{Deref, DerefMut}, sync::Arc, }; use deadpool::async_trait;...

With a sealed trait, the duplication seems inevitable. It wasn't a lot of code, and presumably it doesn't change that frequently, so perhaps it's not so bad?

Hmm, I'm seeing a stack overflow when invoking query_opt() on an &impl GenericClient - the trait method appears to be invoking itself instead of the underlying method.

Should be obsoleted by https://github.com/ankidroid/Anki-Android/pull/12897

I suspect any large message will reproduce the issue, but can produce a sample one if the devs request it. On a positive note, protobuf-es's code generation seems to be...

pywin32 relies on .pth files and dlls to provide modules, so it won't work out of the box. I was able to get things running by calling the following code...