Oleksii Lozovskyi
Oleksii Lozovskyi
FWIW, I've been testing recently added WasmThemis example with recently released `[email protected]` with Safari 14.0.3 as well, and it works fine for me. So it does not seem to be...
This might also be related to https://github.com/cossacklabs/themis/issues/798
JavaThemis calls `System.loadLibrary("themis_jni")` and the translation to actual library file name happens in a platform-specific manner. I'd expect that Windows JRE might expect to find `themis_jni.dll` exactly, without a `lib-`...
The exit code is for “access violation” error, which suggests that the issue here runs deeper. Rereading your message, I believe the issue here might be in mixing JDKs. JNI...
As a long-term solution, we should think about migrating from `setup.py` completely to... well... whatever Python community considers the "modern way" this year. The one we use has been deprecated...
To be honest, MSYS2 support is at best on “life support” at the moment, and is still largely experimental as we don’t get all too many users interested in it....
@seanmonstar @kazk bump. What's the blocker here? What help do you need?
> I am no guru of Rust lifetimes, but is there really no way to solve the above problem without introducing a new closure? It seems that it would be...
Tried out the thing with `Pin` – no, it won't help, it solves a different problem. The thing is, Rust _always_ allows to move things in general. `Pin` prevents the...
The next best thing that I could come up with is some crazy macro that you use like this: ```rust fn stuff() { fluid_get!(log_file = &LOG_FILE); // you can use...