I'm trying to use the imap create in a Tauri 2.0 app.
It fails on building ring, with this in Cargo.toml
[dependencies.imap]
version = "3.0.0-alpha.14"
default-features = false
features = ["rustls-tls"]
The error is really long and can be found here: https://paste.rs/XllGu
Basically ring fails on wasm, as I understand it because it requires libc, which is not a thing on wasm (but wasi).
Has anyone managed to get something like rustls or openssl running on Tauri?