From 5d799be9dbfe2fd50aa2bdf30100f4df7e114674 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 8 May 2025 06:09:03 +0900 Subject: [PATCH] re-export bevy_tasks from azalea_client --- azalea-client/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs index b83c24a8..31ad6e71 100644 --- a/azalea-client/src/lib.rs +++ b/azalea-client/src/lib.rs @@ -21,6 +21,9 @@ pub mod test_simulation; pub use account::{Account, AccountOpts}; pub use azalea_protocol::common::client_information::ClientInformation; +// Re-export bevy-tasks so plugins can make sure that they're using the same +// version. +pub use bevy_tasks; pub use client::{ Client, InConfigState, InGameState, JoinError, JoinedClientBundle, LocalPlayerBundle, StartClientOpts, start_ecs_runner,