1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 23:17:43 +02:00

Add ByteString::slice_ref (#470)

This commit is contained in:
Wang, Chi
2022-11-08 04:16:46 +08:00
committed by GitHub
parent 00654aadc5
commit 363984ad75
2 changed files with 36 additions and 0 deletions

View File

@ -2,7 +2,9 @@
## Unreleased - 2022-xx-xx
- Minimum supported Rust version (MSRV) is now 1.57.
- Add `ByteString::slice_ref` which can safely slice a `ByteString` into a new one with zero copy. [#470]
[#470]: https://github.com/actix/actix-net/pull/470
## 1.1.0 - 2022-06-11
- Implement `From<Box<str>>` for `ByteString`. [#458]