| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-11-12 | [beta] remove specialization that caused perf regression | The 8472 | -12/+0 | |
| the fix on nightly is recent and should get time to bake, removal of the optimization is the less risky approach for a backport | ||||
| 2023-07-09 | additional io::copy specializations | The 8472 | -1/+37 | |
| - copying from `&[u8]` and `VecDeque<u8>` - copying to `Vec<u8>` | ||||
| 2023-06-17 | Extend io::copy buffer reuse to BufReader too | The 8472 | -0/+108 | |
| previously it was only able to use BufWriter. This was due to a limitation in the BufReader generics that prevented specialization. This change works around the issue by using `where Self: Read` instead of `where I: Read`. This limits our options, e.g. we can't access BufRead methods, but it happens to work out if we rely on some implementation details. | ||||
