aboutsummaryrefslogtreecommitdiff
path: root/azalea-nbt/src/lib.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2023-11-19 22:07:38 -0600
committerGitHub <noreply@github.com>2023-11-19 22:07:38 -0600
commit2c610826fc9f8e16897f52313faa8e0602d1dc3d (patch)
tree5aad79ecab3b68511a10ebd7eba07af0bd8a5905 /azalea-nbt/src/lib.rs
parent84e036ce3752ecf57904b0f5aff1f33d43e95a32 (diff)
downloadazalea-drasl-2c610826fc9f8e16897f52313faa8e0602d1dc3d.tar.xz
Replace azalea-nbt with simdnbt (#111)
* delete azalea-nbt and replace with simdnbt * use simdnbt from crates.io * remove serde dependency on azalea-registry
Diffstat (limited to 'azalea-nbt/src/lib.rs')
-rwxr-xr-xazalea-nbt/src/lib.rs46
1 files changed, 0 insertions, 46 deletions
diff --git a/azalea-nbt/src/lib.rs b/azalea-nbt/src/lib.rs
deleted file mode 100755
index 1a636520..00000000
--- a/azalea-nbt/src/lib.rs
+++ /dev/null
@@ -1,46 +0,0 @@
-#![doc = include_str!("../README.md")]
-
-mod decode;
-mod encode;
-mod error;
-mod tag;
-
-pub use error::Error;
-pub use tag::*;
-
-#[cfg(test)]
-mod tests {
- use std::io::Cursor;
-
- use crate::tag::NbtCompound;
-
- use super::*;
- use azalea_buf::{McBufReadable, McBufWritable};
-
- #[test]
- fn mcbuf_nbt() {
- let mut buf = Vec::new();
- let tag = Nbt::Compound(NbtCompound::from_iter(vec![(
- "hello world".into(),
- Nbt::Compound(NbtCompound::from_iter(vec![(
- "name".into(),
- Nbt::String("Bananrama".into()),
- )])),
- )]));
- tag.write_into(&mut buf).unwrap();
-
- let mut buf = Cursor::new(&buf[..]);
-
- let result = Nbt::read_from(&mut buf).unwrap();
- assert_eq!(
- result,
- Nbt::Compound(NbtCompound::from_iter(vec![(
- "hello world".into(),
- Nbt::Compound(NbtCompound::from_iter(vec![(
- "name".into(),
- Nbt::String("Bananrama".into()),
- )])),
- )]))
- );
- }
-}