aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index fa25777..fd742f3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,17 +7,20 @@ extern crate alloc;
extern crate test;
mod deserialize;
+mod serialize;
pub mod nbt;
pub mod protocol;
-mod serialize;
pub mod status;
pub mod types;
pub mod utils;
pub mod uuid;
+mod chat;
+pub mod byte_order;
+
+#[cfg(feature = "v1_15_2")]
pub mod v1_15_2;
+#[cfg(feature = "v1_16_3")]
pub mod v1_16_3;
-mod chat;
-mod byte_order;
pub use deserialize::*;
pub use serialize::*;