Elichai Turkel

Results 265 comments of Elichai Turkel

Linking previous discussions: https://github.com/rust-lang/api-guidelines/discussions/123

I would also like to see `--target-dir` for `cargo install`

So it's not that easy because `ArrayString` and `ArrayVec` are inherently different. How do you think about making `ArrayString` just a wrapper of `ArrayVec` with the generic Array set to...

Like this? or something else? ``` { "adress": "bc1q64mh4n7u9xxvfdsml3pasr4tsn85dewnsfexuf", "privkey": "KxUeV889U8Zxfzf2qCSVFBTkZZQMVXodUJDutT7pBf4XdjcEds7p" } ```

lol, sorry. ok. i'll add `--json` to all the commands and test that `jq` parse them correctly :)

should It return a json even if the base64 isn't valid or something like that? or at that point it's fine to have a regular error? (the exit value is...

Feel free to test current master, should do the job for best case scenarios but won't return json's on weird errors. if you want 100% jsons always that will require...

I'm also interested, I want to fuzz my go implementation against a C implementation

For future reference, I ended up using libfuzzer directly, example with msan: ```bash $ CC=clang go build -buildmode c-archive -msan -gcflags "all=-d=libfuzzer" -tags gofuzz,gofuzz_libfuzzer,libfuzzer -trimpath -o fuzz.a $ clang -fsanitize=fuzzer,memory...

Same error for me. What's going on? did `emcc` bump the llvm version so it doesn't match anymore?