diff options
| author | mat <github@matdoes.dev> | 2023-03-23 19:38:18 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2023-03-23 19:38:18 +0000 |
| commit | 95925b64fa0e75a7567c9b2361d90d477fc9bf55 (patch) | |
| tree | fd1bc6a0bb2e4e6896899e2302f5b4482cc501d5 /azalea-nbt/src/lib.rs | |
| parent | 5e5682ab52322f33563fd362c622ab7613cc555a (diff) | |
| download | azalea-drasl-95925b64fa0e75a7567c9b2361d90d477fc9bf55.tar.xz | |
nbt lookup optimization
Diffstat (limited to 'azalea-nbt/src/lib.rs')
| -rwxr-xr-x | azalea-nbt/src/lib.rs | 3 |
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 { |
