diff options
| author | mat <github@matdoes.dev> | 2022-06-23 15:28:33 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-23 15:28:33 -0500 |
| commit | ba399c4440c2d182f55cba7fab068e1118bcc2b7 (patch) | |
| tree | 20188f93e3fe16b747350ef2b44678b188313c61 /azalea-buf/src/lib.rs | |
| parent | 5ca49e680ed8519456dc9a9af84321d4b69dcbb3 (diff) | |
| download | azalea-drasl-ba399c4440c2d182f55cba7fab068e1118bcc2b7.tar.xz | |
switch things to use azalea-buf
Diffstat (limited to 'azalea-buf/src/lib.rs')
| -rw-r--r-- | azalea-buf/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-buf/src/lib.rs b/azalea-buf/src/lib.rs index 2ba17ac2..bd9f43be 100644 --- a/azalea-buf/src/lib.rs +++ b/azalea-buf/src/lib.rs @@ -7,6 +7,7 @@ mod definitions; mod read; mod write; +pub use buf_macros::*; pub use definitions::*; pub use read::{read_varint_async, McBufReadable, McBufVarReadable, Readable}; pub use write::{McBufVarWritable, McBufWritable, Writable}; @@ -18,7 +19,7 @@ const MAX_STRING_LENGTH: u16 = 32767; #[cfg(test)] mod tests { use super::*; - use std::{collections::HashMap, io::Cursor}; + use std::io::Cursor; #[test] fn test_write_varint() { |
