Brandon Simmons

Results 120 comments of Brandon Simmons

I've created a set of `Hash` types of different widths in v1.0. This feature can be done in a separate package if anyone wants it I think.

Although it's probably a requirement that I implement a drop-in replacement to `hashable`'s auto-deriving with GHC.Generics if I want this library to have any traction (that way e.g. `unordered-containers` could...

I'm only using the `assertNF` family of functions. It seems as though that could be moved into its own library and simply disabled with a warning when there is a...

I'm fairly new to both rust and AFL++ and a little lost about the work around here. For context I arrived here while investigating why my fuzzing campaign seemed to...

Oh and I ran `cargo afl config --build --force` but that seemed not to do anything

ah thanks! so ... ``` $ rustup show Default host: x86_64-unknown-linux-gnu rustup home: /home/me/.rustup installed toolchains -------------------- stable-x86_64-unknown-linux-gnu nightly-x86_64-unknown-linux-gnu (default) active toolchain ---------------- nightly-x86_64-unknown-linux-gnu (default) rustc 1.78.0-nightly (8ace7ea1f 2024-02-07) $...

I guess that's just on me to install and keep up to date; I don't see `llvm-config` in the stuff rustc ships

installing llvm-17 on my system was sufficient, then after running `cargo afl config --plugins --force` it compiled with cmplog plugins etc. thanks for the help!

subselects don't seem to have this issue, maybe there's a solution there

I think if it can't be worked around properly, the next best thing would be to make `In` take/be a non-empty list type (maybe eventually https://hackage.haskell.org/package/base-4.9.1.0/docs/Data-List-NonEmpty.html), or to simply throw...