muji

Results 109 comments of muji

Thanks @omershlo and @survived, I am excited to see those changes land! > a lot of other things block us from being wasm-compatible right now It would be really useful...

Hey, I noticed that https://github.com/ZenGo-X/curv/pull/137 has landed in `[email protected]` and wanted to upgrade the dependency here but it looks like `centipede` and `bulletproof` would need to be upgraded in lock...

@survived, heads up that I just got this repository compiling and we move past the `rust-crypto` problem but it looks like we need to enable the `js` feature flag for...

Thanks @elichai, setting the feature flag for the transitive dependency fixes that issue and I move on to the next error: ``` error[E0432]: unresolved imports `libc::c_char`, `libc::c_int`, `libc::c_long`, `libc::c_ulong`, `libc::c_void`,...

Interestingly, when I try compiling for the `wasm32-wasi` target I get this error: ``` error: You can choose only one bigint implementation. See crate features. --> /home/muji/.cargo/registry/src/github.com-1ecc6299db9ec823/curv-kzen-0.9.0/src/arithmetic/mod.rs:26:1 | 26 |...

Thanks for the tip @survived, it seems like all I needed was to set `default-features` for the `multi-party-ecdsa` dependency to get it to compile. Using these dependencies: ```toml [dependencies] multi-party-ecdsa...

@survived, having some issues getting entropy in WASM, I wonder if you have any ideas. First I hit this error calling `Keys::create()` in the WASM module: ``` panicked at 'could...

I have been looking into the `rand` errors a bit and it appears to be something to do with the transitive dependency chain configuration but I am not sure exactly...

I managed to get it working by downgrading `getrandom` from: ``` getrandom = {version = "0.2", features = ["js"]} ``` To `0.1.16` with the `wasm-bindgen` feature: ``` getrandom = {version...

@survived and anyone else following this thread I found an interesting problem. For context, I am trying to port the gg18 example to WASM using a websocket server backend, the...