Lucas Kent
Lucas Kent
As you noted, AFIT might help, that is a lot of `async_trait` usage in the codebase. But we have no idea when full AFIT is actually coming so if you...
Another valuable metric for me is the time it takes to compile a binary with `LTO = fat` for the purposes of iterative integration level benchmarking. Running `cargo build --release...
When compiling my project in debug build fred 8.0.6 was the most expensive dependency, taking 25s:  Now, fred 9.0.1 is the 6th most expensive, taking 8s:  A very...
Fair enough, it would be nice to have more context on those errors but that would be an overhaul much larger than what I've described here so I'll go ahead...
Oooh this sounds really nice. > @rukai presumably the error you got was a [rustls::Error](https://docs.rs/rustls/latest/rustls/enum.Error.html) with the value AlertReceived(CertificateRequired) Yep that is correct
I havent personally tried it out since I ended up migrating to axum, but https://github.com/hyperium/hyper-util/pull/110 looks like it resolves this issue. Thanks @CobaltCause !
https://github.com/astonbitecode/j4rs/blob/d361dd00461c8dfd3d0da99096e7eebd8442e434/java/src/main/java/org/astonbitecode/j4rs/api/instantiation/NativeInstantiationImpl.java#L119-L123 The issue seems to be here, any ParameterizedType in a constructor will always match. This must be causing the Optional to always match. The non-deterministic part of the problem...
I can confirm the example I gave works now. I ran it in a loop 100 times for good measure. Thanks for the quick resolution!
The main draw of this crate is the higher performance other over crates. If this crate werent actually faster I would be better off just using the crc crate as...
Mostly implemented in: https://github.com/rukai/PF_Sandbox/commit/784f21ae04f4f29e135110b3fb90e23d401e8863 Mapping is already handled by gilrs, it grabs mappings from a database of SDL input maps. Still need to provide an interface to generate custom sdl...