Results 129 issues of Nemo157

## Description If you set a message to be rendered using one of the animations, then stop it and change to a different message which is shorter than the original...

`pgp::packet::Signature::verify_certificate` assumes that the issuing key is also the key that had the id signed to it. This isn't the case when you have signed someone else's identity, in that...

According to [the Wikipedia page on SHA-3](https://en.wikipedia.org/wiki/SHA-3) SHAKE128/256 are parameterised functions that need to have an output digest length specified. As of now I'm unsure how they are actually meant...

```rust #[derive(Debug, gumdrop::Options)] struct Args { /// Which base58 alphabet to decode/encode with [possible values: bitcoin, monero, /// ripple, flickr or custom(abc...xyz)] alphabet: Alphabet, help: bool } ``` This will...

![](https://user-images.githubusercontent.com/81079/83244336-7ac7ae00-a19f-11ea-8433-1c2b3acc1a9e.png) ![](https://user-images.githubusercontent.com/81079/83244360-84e9ac80-a19f-11ea-9f39-c56dfcdd7eaf.png)

https://github.com/rust-lang-nursery/api-guidelines/issues/149

https://github.com/Nemo157/roaring-rs/blob/bc97c1400d11b75ff92f61040e21772de8c8f8c3/src/bitmap/mod.rs#L6-L12 These shouldn't have been reordered with rustfmt since they affect the documentation rendering.

Just in case, should setup fuzzing for the deserializer to make sure it's safe (most likely issue I can think of would be over-allocation, so something that limits the virtual...

```rust let rb1 = RoaringBitmap::from_iter(0..1u32); let rb2 = RoaringBitmap::from_iter(2..3u32); let rb3 = &rb1 | &rb2; ``` No way to do the above using an inherent method on `rb1`, might be...

Because of the bitwise operators being traits they're not very discoverable in the documentation. Would probably pay to add a section to the main struct docs/crate docs for them.