From 892869ad1249e238eb9228d57bd9884793a9fe75 Mon Sep 17 00:00:00 2001 From: veronoicc <64193056+veronoicc@users.noreply.github.com> Date: Tue, 14 May 2024 23:59:36 +0200 Subject: Update simdnbt dep (#148) * Update simdnbt dep * Fix not compiling (rust analyzer is still yapping, i trust you cargo check) * Update simdnbt to 0.5.2 * finally everything works :prayge: --- azalea-buf/src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-buf/src') diff --git a/azalea-buf/src/read.rs b/azalea-buf/src/read.rs index b3352a80..40889c64 100755 --- a/azalea-buf/src/read.rs +++ b/azalea-buf/src/read.rs @@ -359,7 +359,7 @@ impl McBufReadable for simdnbt::owned::NbtCompound { impl McBufReadable for simdnbt::owned::Nbt { fn read_from(buf: &mut Cursor<&[u8]>) -> Result { - Ok(simdnbt::owned::Nbt::read_unnamed(buf)?) + Ok(simdnbt::owned::read_unnamed(buf)?) } } -- cgit v1.2.3