aboutsummaryrefslogtreecommitdiff
path: root/azalea-buf/src/lib.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-09-04 21:24:10 -0500
committermat <github@matdoes.dev>2022-09-04 21:24:10 -0500
commit99fcad7bc4133c32627fe2e4751faad05b9b4ef1 (patch)
tree77d776fa1eb0476d1709c67c07af2293674c4a0e /azalea-buf/src/lib.rs
parent2557d70576764c32773153d33eeaa31f34b16b15 (diff)
downloadazalea-drasl-99fcad7bc4133c32627fe2e4751faad05b9b4ef1.tar.xz
fix chunks not being able to be read
Diffstat (limited to 'azalea-buf/src/lib.rs')
-rw-r--r--azalea-buf/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
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;