BlakStar
BlakStar
I executed fuzzing, and faces many intentional crashes such like assert statement. Most crashes does not documented with `# Panic` section, so I'll list up those. Since most of them...
While I executed fuzzing, I faced some panics by `expect`. Though those are intentional crash, I think it's better to mention on docs as well. [Some of APIs](https://docs.rs/time/0.3.28/time/struct.Date.html#method.prev_occurrence) are already...
I executed fuzzing with textwrap-0.16.0. Proper panic message should be added by `assert!` or need to use checked operations. ~~~ Thread '' panicked at 'attempt to multiply with overflow', textwrap-0.16.0/src/lib.rs:1173...
I executed fuzz testing on `http-0.2.9`, and found some arithmetic overflow. Please note that overflow condition is different with #626 . ~~~ pub fn with_capacity(capacity: usize) -> HeaderMap { if...