Elichai Turkel

Results 84 issues of Elichai Turkel

Hi, @oli-obk You asked for use cases so this is on you ;) I think that being able to hash in a const fn is a needed use case in...

Hi, I want to use ArrayString in `rustc_hex::ToHex`, this trait works on every type that implements FromIterator on Item=char. But ArrayString is Item=u8. Is there a reason this isn't Item=char?

enhancement

stderr: ``` Compiling aaa v0.1.0 (/home/elichai2/gits/bitcoin_hashes/aaa) error: linking with `emcc` failed: exit code: 1 | = note: "emcc" "-s" "DISABLE_EXCEPTION_CATCHING=0" "-L" "/home/elichai2/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/asmjs-unknown-emscripten/lib" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.16wuxgcw1dyeug54.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.24edp0pkhkg3bzaj.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.258alywq8rkbip0o.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.34unkmon762a3l3x.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.3pktckg11sdl5ck1.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.3z4hvcq108xn0or8.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.43ayxfsvk5k64b02.rcgu.o" "/home/elichai2/gits/bitcoin_hashes/aaa/target/asmjs-unknown-emscripten/debug/deps/aaa-aaf4c1111a16ca77.477onwm48yoaqbfl.rcgu.o"...

I get `error: tests timed out!` in the middle of the tests when running with chrome.

The time it takes to compile this library is getting pretty long. especially on CIs. This is a naive start to hopefully decrease compile time. here I just disabled unused...

Hi, Running `cargo web test --target=asmjs-unknown-emscripten` the tests pass smoothly. But If I run `cargo web test --target=wasm32-unknown-unknown` I get the following: ``` Error loading Rust wasm module 'mylib_41e23712799ffb49': error:...

Hi I'm trying to install emscripten using #52 in my CI like this: ``` rustup target add asmjs-unknown-emscripten && cargo install --force cargo-web && cargo web prepare-emscripten ``` but `cargo...

This is to remove openssl as a dependency, making this tool entirely free standing the sha256 implementation is from libsecp256k1(https://github.com/bitcoin-core/secp256k1/blob/master/src/hash_impl.h) but I've adjusted it to the code style here. There...

Armory can't import compressed keys. is it fixed in testing version?

Hi, I have a proc-macro that I want to make sure that the results are always `no-std` compatible (I'll add this to the CI), for that I need this to...

enhancement