Results 8 issues of Nissa

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Rust Version rustc 1.61.0 (fe5b13d68 2022-05-18)...

C-bug

fixes #34. https://github.com/zowens/crc32c/blob/47c2999907a770daec5444cf9fcb522926d8cfe4/src/util.rs#L33 this line in `util::split` transmutes a `&[u8]` to a `&[u64]` without considering endianness, causing incorrect results on BE targets. to fix this, i have it return a...

`util::split` documents the following invariants of the returned slices: https://github.com/zowens/crc32c/blob/47c2999907a770daec5444cf9fcb522926d8cfe4/src/util.rs#L3-L6 however, `mid` doesn't seem to uphold these. adding the following to the function before it returns `(start, mid, end)` results...

fixes #32 > i changed Matrix to have zero-initialized integers because it was used in so many methods, and would make things more convoluted to write correctly that way. i...

the build script creates uninitialized integers in a few places: https://github.com/zowens/crc32c/blob/47c2999907a770daec5444cf9fcb522926d8cfe4/build.rs#L13 https://github.com/zowens/crc32c/blob/47c2999907a770daec5444cf9fcb522926d8cfe4/build.rs#L43-L49 https://github.com/zowens/crc32c/blob/47c2999907a770daec5444cf9fcb522926d8cfe4/build.rs#L135 afaik, this is undefined behavior (excerpt from MaybeUninit type docs) > Moreover, uninitialized memory is special in...

Is there a reason why 128-bit integers aren't supported (other than that 128-bit byte sizes are esoteric), and could they be supported?

**Is your feature request related to a problem? Please describe.** it's not currently possible to construct a `StyledContent` in a `const` context. **Describe the solution you'd like** there are several...