diff options
author | Joey Sacchini <joey@sacchini.net> | 2020-10-20 13:42:02 -0400 |
---|---|---|
committer | Joey Sacchini <joey@sacchini.net> | 2020-10-20 13:42:43 -0400 |
commit | fc08a93b6109373652d6775fe1bfb7d18cdb7575 (patch) | |
tree | 3db56d9e9c736b081eebb8eeb0cbd93319576964 /src/lib.rs | |
parent | 51d00fef7da09ae99bcd66f260ef37719dbf8878 (diff) | |
download | mcproto-rs-fc08a93b6109373652d6775fe1bfb7d18cdb7575.tar.gz mcproto-rs-fc08a93b6109373652d6775fe1bfb7d18cdb7575.tar.bz2 mcproto-rs-fc08a93b6109373652d6775fe1bfb7d18cdb7575.zip |
implement byte order as a trait and use it instead of the util functions
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,11 +15,11 @@ pub mod types; pub mod utils; pub mod uuid; pub mod v1_15_2; - mod chat; +mod byte_order; pub use deserialize::*; pub use serialize::*; #[cfg(all(test, feature = "std"))] -mod test_macros;
\ No newline at end of file +mod test_macros; |