Tricster

Results 33 comments of Tricster

`mysql` crate requires `native-tls`, I disable it for now. ```toml [features] default = [ "native-tls", ] ``` However, I guess we need to support TLS if we want our changes...

I just find that `mysql` has support for `rustls`. But there some limitations when using `rustls`. > - it will fail if you'll try to connect to the server by...

Hi, @mindrock, Can you try [this branch](https://github.com/MediosZ/rust-mysql-simple/tree/wasi) please?

It works for me on macOS 12.3. If it doesn't work, please change [this line in Cargo.toml](https://github.com/MediosZ/rust-mysql-simple/blob/8c5c33f59feaba80a955b12b81e2d00f2694d2fb/Cargo.toml#L32) to `flate2/default` and remember to comment out [native-tls](https://github.com/MediosZ/rust-mysql-simple/blob/8c5c33f59feaba80a955b12b81e2d00f2694d2fb/Cargo.toml#L29). This should resolve this problem.

Hi @q82419, I am trying to add a example of using `wasi-crypto` in rust. But I fail to import host function like this: ```rust #[link(wasm_import_module = "wasi_ephemeral_crypto_signatures")] extern "C" {...

For anyone who are interested, check out these two crates: [mysql_wasi](https://crates.io/crates/mysql_wasi) [mysql_async_wasi](https://crates.io/crates/mysql_async_wasi)

Hi @milesrichardson, I guess that should work, but what are the scenarios of using tokio in browsers?

For missing APIs like TcpStream and TcpListener, I tried to replace std with [wasmedge_wasi_socket](https://github.com/second-state/wasmedge_wasi_socket) and it works. But this requires using WasmEdge and is not compatiable with other runtimes. Some...

I’m introducing a new concept called the `leading axis` to handle resizing options like `smart | smart-opposite`. The leading axis is the longer axis of the floating window, like the...

The code compiles on my mac m2. Could you confirm if the code still cannot compile on your machine?