Joshua Liebow-Feeser
Joshua Liebow-Feeser
The recently-added standard library endian conversion functions like [`from_be_bytes`](https://doc.rust-lang.org/std/primitive.u16.html#method.from_be_bytes) and [`to_be_bytes`](https://doc.rust-lang.org/std/primitive.u16.html#method.to_be_bytes) operate on arrays by value rather than slices by reference, which can provide better type safety in some cases....
On this function: ```rust pub fn copy(src: &[u8], dst: &mut [u8]) { assert!(src.len() == dst.len()); for i in 0..src.len() { dst[i] = src[i]; } } ``` I get output that...
I'm wondering whether `StableDeref` implies requirements on fat pointers (e.g., that the length of a DST won't change). If so, I'd like to be able to use `StableDeref` for that...
Since we have support for structs, we should also have support for arrays. Slices should probably remain unsupported, as most of the logic of creating packers/unpackers is reliant on fixed...
Currently, packing/unpacking only works when the type which is packed/unpacked is a struct, even though fields may be other types. We should extend the public API so that any type...
It would be nice to be able to iterate over the contents of the two queue types without popping their contents. Is this possible?
**Is your feature request related to a problem? Please describe.** I'm writing unit tests to exercise code which connects to Firestore. What would be _really_ nice is to have an...
The docs.rs build for 0.4.4 failed ([logs](https://docs.rs/crate/mundane/0.4.4/builds/357678)). I believe this is caused by https://github.com/rust-lang/docs.rs/issues/1303.
Per @davidben's comment [here](https://fuchsia-review.googlesource.com/c/mundane/+/486717/2/src/public/rsa/mod.rs#69): > I think you should probably think about what things you want to support and build an API around that. > > - What flavors of...
UPDATE: ASan has been implemented in https://github.com/google/mundane/commit/0148297bf1c5bb8ccc8acbc7abcc15cb4b53d6ee. We should still run tests with MSan, although it's less important than ASan. === old text === We should enable ASan and MSan...