pedantic79
pedantic79
It would be great if you added support for ARM and ARM64 to your images. I used your Dockerfile to build it on my raspberrypi, but it would be great...
This is some-what similar to #18, where the debug symbols are turned on, but there are quite a few other [differences](https://doc.rust-lang.org/cargo/reference/profiles.html#default-profiles) between the `dev` and `release` profiles. Certain classes of...
On Advent of Code 2020, Day 15, part 2. I'm trying to benchmark things in the 1s range in performance ``` runner: 1.159830989s ``` With the default criterion config that...
I wrote my own version of this for advent of code after I realized there wasn't a built-in way. Essentially this is like [separated_list0](https://docs.rs/nom/latest/nom/multi/fn.separated_list0.html)/[separated_list1](https://docs.rs/nom/latest/nom/multi/fn.separated_list1.html), but with an `init` and `g`...
I've using a customize version to find keys that don't match the convention I'm looking for, but have been trying to think of a more customizable way for this to...