Victor Dods

Results 44 comments of Victor Dods

For a more specific way to replicate this, I tried to build `rusqlite/libsqlite3-sys` (in the libsqlite3-sys crate within the rusqlite workspace) via `cargo build --features bundled --target wasm32-wasi` and it...

Any word on this? I'm getting the same crash while making concurrent requests.

Maybe related: https://github.com/fdehau/tui-rs/discussions/608

Likewise. I've been trying to figure out what the correct (or any) way to create a wasm_bindgen-enabled API for a Rust type whose impl has async methods. So far, I...

Relevant discussion: https://github.com/rustwasm/wasm-bindgen/issues/2802 (see the bottom of the comment, where it defines a function that returns `js_sys::Promise`).

FYI https://github.com/gakonst/ethers-rs/issues/2486#issuecomment-1656893389 -- uint v0.9.3 has a few functions that could be const that aren't (e.g. `fn one`), whereas uint v0.9.4 has them as const (not sure if it's maximally...

There's a mismatch between Bls12381KeyPairs::get_fingerprint_g2 ``` fn get_fingerprint_g2(&self) -> String { let codec: &[u8] = &[0xeb, 0x1]; let data = [codec, &self.pk_g2.to_bytes()[..]].concat().to_vec(); format!("z{}", bs58::encode(data).into_string()) } ``` vs `impl TryFrom for...

I ran into this problem too, and it was a similar situation where the crate that used sqlx was not the root dir. I was able to work around it,...

I have a working branch in a fork: https://github.com/LedgerDomain/did-key.rs/tree/v0.0