You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `bincode` feature flag to enable the use of `bincode-2.0.0`.
- `NonEmpty::capacity` returns `NonZeroUsize`
- Fixed the `nonempty!` macro to use the `vec!` macro internally, ensuring that
it compiles with `std` and `no_std`.
- `std` feature flag; building with `--no-default-features` now enabl…
…es `no_std` use.
- `NonEmpty::sort` was added.
- `NonEmpty::as_ref` added for converting a `&NonEmpty` to `NonEmpty<&T>`.
- MSRV is now 1.56 (this is a semver-breaking change).
- `NonEmpty::split` now returns `Option<&T>` for last element.
- `cargo clippy` and `cargo doc` failures are fixed.