1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-27 01:37:42 +02:00

update all crates msrv to 1.57 (#464)

This commit is contained in:
Rob Ede
2022-07-23 01:51:12 +02:00
committed by GitHub
parent 126ed4c2e3
commit 66756bc448
18 changed files with 34 additions and 91 deletions

View File

@ -72,7 +72,7 @@ impl AsRef<[u8]> for ByteString {
impl AsRef<str> for ByteString {
fn as_ref(&self) -> &str {
&*self
self
}
}
@ -96,7 +96,7 @@ impl ops::Deref for ByteString {
impl borrow::Borrow<str> for ByteString {
fn borrow(&self) -> &str {
&*self
self
}
}