diff options
Diffstat (limited to 'azalea-protocol/packet-macros/src')
| -rwxr-xr-x | azalea-protocol/packet-macros/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/packet-macros/src/lib.rs b/azalea-protocol/packet-macros/src/lib.rs index 089d1594..aca7df8c 100755 --- a/azalea-protocol/packet-macros/src/lib.rs +++ b/azalea-protocol/packet-macros/src/lib.rs @@ -54,7 +54,7 @@ pub fn derive_mcbufreadable(input: TokenStream) -> TokenStream { impl crate::mc_buf::McBufReadable for #ident { async fn read_into<R>(buf: &mut R) -> Result<Self, String> where - R: AsyncRead + std::marker::Unpin + std::marker::Send, + R: tokio::io::AsyncRead + std::marker::Unpin + std::marker::Send, { #(#read_fields)* Ok(#ident { |
