Crystal Durham

Results 508 comments of Crystal Durham

> after `cargo upgrade` I'd personally expect cargo-upgrade to ignore rust-version, as it's already making semver-incompatible upgrades which you'll need to fix. cargo-update / cargo-generate-lockfile are the ones which I'd...

I personally think it's more useful for `saturating_sh[lr]` to be consistent with the other methods and refer to the shift operand saturating instead of the shift result... except that the...

It doesn't, tbf. The main reason I made the PR is that `$crate` in macro patterns is pretty cursed.

Mainly just recording/calling out that it's reporting 500 internal error, and a change to report a timeout instead (if that's indeed what's ocurring) would be nice and less work than...

If you don't mind third parties being able to perform the cast safely, the [ref-cast crate](https://lib.rs/crates/ref-cast) automates the required bits to cast from `&SliceWithHeader` to `&MyStr`. If you need to...

Is there something specific I can call out in the documentation to help direct people towards the correct practice for this? It's pretty much standard requirement for wrappers around unsized...

You would need to track the initialized prefix and handle reallocation. Actually, implementing our own `Slice`/`SliceBuf` pair would be an interesting case study for the docs... 🤔💭 Unfortunately I don't...

The basic formula: Store `Box>`. In `Header`, track which elements are initialized. When pushing a new element that requires reallocation, make a new `Box` by copying over the content from...

Feel free to ignore the clippy warnings CI reported; I fixed them in #72.

> Being generic implies being available for cross-crate inlining by necessity Out of curiosity, @HadrienG2, are you using any sort of `-Zshare-generics` style flags? Because as we make it possible...