Tony Arcieri
Tony Arcieri
Failing everything else, I think these sort of hierarchical selector setups can be written on top of nio4r, as opposed to requiring first-class support. First-class support would be nice though....
I guess the question here is: what should the behavior be? Throw `EOFError`? Return `nil`?
Awesome, great news!
It seems it was duplicated because `soft` isn't always available: https://github.com/RustCrypto/stream-ciphers/actions/runs/8427139184/job/23077019314?pr=349#step:7:106 ``` Compiling chacha20 v0.10.0-pre (/project/chacha20) error[E0432]: unresolved import `crate::backends::soft` --> chacha20/src/xchacha.rs:11:22 | 11 | use crate::backends::soft::quarter_round; | ^^^^ could...
Now I'm noticing we should really get #333 landed first
@oxarbitrage need to re-evaluate this PR now that #333 has been merged
Something of a sidebar, but: is anyone aware of a tracking issue for adding a first-class feature for this to `rustc`? I know there are a few options for this...
> If RTIC handled panics How? Most Rust embedded projects I've seen implement very simple panic handlers that do something like specify an `eh_personality` lang item that goes into an...
> Or you can use fallible accessors The [`get`](https://doc.rust-lang.org/std/primitive.slice.html#method.get) and [`get_mut`](https://doc.rust-lang.org/std/primitive.slice.html#method.get_mut) methods of the slice primitive are fantastic for this, especially since thanks to the [`SliceIndex`](https://doc.rust-lang.org/std/slice/trait.SliceIndex.html) trait they can be...