From e7c5a5e4fa7f2491b93b0f0692bba51ef76a4426 Mon Sep 17 00:00:00 2001 From: mat Date: Wed, 24 Apr 2024 05:05:19 +0000 Subject: [PATCH] require azalea-buf feature for azalea-chat in some places --- azalea-inventory/Cargo.toml | 4 +++- azalea-protocol/Cargo.toml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/azalea-inventory/Cargo.toml b/azalea-inventory/Cargo.toml index 78fb2916..775daabe 100644 --- a/azalea-inventory/Cargo.toml +++ b/azalea-inventory/Cargo.toml @@ -13,6 +13,8 @@ simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } azalea-buf = { version = "0.10.0", path = "../azalea-buf" } azalea-inventory-macros = { version = "0.10.0", path = "./azalea-inventory-macros" } azalea-registry = { version = "0.10.0", path = "../azalea-registry" } -azalea-chat = { version = "0.10.0", path = "../azalea-chat" } +azalea-chat = { version = "0.10.0", path = "../azalea-chat", features = [ + "azalea-buf", +] } azalea-core = { version = "0.10.0", path = "../azalea-core" } uuid = "1.8.0" diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 5d87e739..74ca9b40 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -19,6 +19,7 @@ azalea-brigadier = { path = "../azalea-brigadier", version = "0.10.0", features azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-chat = { path = "../azalea-chat", version = "0.10.0", features = [ "numbers", + "azalea-buf", ] } azalea-core = { path = "../azalea-core", optional = true, version = "0.10.0", features = [ "serde",