aboutsummaryrefslogtreecommitdiff
path: root/azalea-nbt/src/lib.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-03-23 19:38:18 +0000
committermat <github@matdoes.dev>2023-03-23 19:38:18 +0000
commit95925b64fa0e75a7567c9b2361d90d477fc9bf55 (patch)
treefd1bc6a0bb2e4e6896899e2302f5b4482cc501d5 /azalea-nbt/src/lib.rs
parent5e5682ab52322f33563fd362c622ab7613cc555a (diff)
downloadazalea-drasl-95925b64fa0e75a7567c9b2361d90d477fc9bf55.tar.xz
nbt lookup optimization
Diffstat (limited to 'azalea-nbt/src/lib.rs')
-rwxr-xr-xazalea-nbt/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-nbt/src/lib.rs b/azalea-nbt/src/lib.rs
index b6a7a971..fe0c34cb 100755
--- a/azalea-nbt/src/lib.rs
+++ b/azalea-nbt/src/lib.rs
@@ -1,4 +1,5 @@
#![doc = include_str!("../README.md")]
+#![feature(min_specialization)]
mod decode;
mod encode;
@@ -6,7 +7,7 @@ mod error;
mod tag;
pub use error::Error;
-pub use tag::{NbtCompound, NbtList, Nbt};
+pub use tag::{Nbt, NbtCompound, NbtList};
#[cfg(test)]
mod tests {