Bart Massey
Bart Massey
I am using `glass_pumpkin` for a teaching demo, and really just want 32-bit primes. Is there some reason for the restriction to 128 bits or more? Sure would be great...
Would be nice to be able to use this library with `async`/`await`. I don't think it's super hard, although I don't have time to look at it right this second.
Code support all Rust native numeric types except `u8`/`i8` right now. I don't have a use case for these yet, but I can imagine someone doing so in the future:...
The multi-call `coreutils` binary starts by trying to convert its invocation path into a UTF-8 string, panicking if this doesn't work. This patch makes `coreutils` exit gracefully in this case.
I added a reasonably comprehensive example of crate use to `gc-arena`. It shows some working with LISP-style lists. Hopefully this will help folks figure out how to get started. I...
It is currently possible to call `noecho()` before `initscr()`, and nothing I saw in the documentation suggests that it is a bad idea. But it doesn't work. `noecho()` *does* return...
The Rust implementation currently has compiler warnings. I used the big hammer of `cargo clippy --fix`, which seems to have resolved these and a host of other Clippy linter warnings....
Minifb 0.24.0 (and current git) uses `wayland-client` at 0.29.5. Sadly, this produces a "future deprecation warning" because of old `wayland-client` dependencies. warning: the following packages contain code that will be...
In the section *Filling In Random Bits* is written: > The other intersting thing to talk about is Hash itself. Do you see how we hash in `len`? That's actually...
closes #284