diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2026-01-13 10:51:45 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-13 10:51:45 -0600 |
| commit | b21ac946cafaacc9ee2478ea48ed9e72554f79ed (patch) | |
| tree | 4d05744b9801e94f5da6563d8fabddfb20d1c7b7 /azalea-buf/src/lib.rs | |
| parent | d5fa5e32b37754b3b5c136e58821e48cd3b7c2ff (diff) | |
| download | azalea-drasl-b21ac946cafaacc9ee2478ea48ed9e72554f79ed.tar.xz | |
Merge AzaleaRead and AzaleaWrite (#305)
Diffstat (limited to 'azalea-buf/src/lib.rs')
| -rw-r--r-- | azalea-buf/src/lib.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/azalea-buf/src/lib.rs b/azalea-buf/src/lib.rs index 966b1372..d6eb9299 100644 --- a/azalea-buf/src/lib.rs +++ b/azalea-buf/src/lib.rs @@ -4,18 +4,16 @@ #![feature(error_generic_member_access)] mod definitions; -mod read; +pub mod impls; mod serializable_uuid; -mod write; pub use azalea_buf_macros::*; pub use definitions::*; -pub use read::{AzaleaRead, AzaleaReadLimited, AzaleaReadVar, BufReadError}; +pub use impls::*; pub use serializable_uuid::*; -pub use write::{AzaleaWrite, AzaleaWriteVar}; // const DEFAULT_NBT_QUOTA: u32 = 2097152; -const MAX_STRING_LENGTH: u16 = 32767; +const MAX_STRING_LENGTH: u32 = 32767; // const MAX_COMPONENT_STRING_LENGTH: u32 = 262144; #[cfg(test)] |
