From 99fcad7bc4133c32627fe2e4751faad05b9b4ef1 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 4 Sep 2022 21:24:10 -0500 Subject: fix chunks not being able to be read --- azalea-buf/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'azalea-buf/src/lib.rs') diff --git a/azalea-buf/src/lib.rs b/azalea-buf/src/lib.rs index 24392f6e..b8daa325 100644 --- a/azalea-buf/src/lib.rs +++ b/azalea-buf/src/lib.rs @@ -1,6 +1,9 @@ //! Utilities for reading and writing for the Minecraft protocol #![feature(min_specialization)] +// these two are necessary for thiserror backtraces +#![feature(error_generic_member_access)] +#![feature(provide_any)] mod definitions; mod read; -- cgit v1.2.3