aboutsummaryrefslogtreecommitdiff
path: root/azalea
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-05-04 20:11:29 -0500
committermat <git@matdoes.dev>2023-05-04 20:11:49 -0500
commitc690e7240514217c189adf870ffcabb594755b04 (patch)
tree90943dd1dfbd4f6e6dee77c598cb568e92f28ac5 /azalea
parent634cb8d72c6608512aedba19e5cd669104bc35ea (diff)
downloadazalea-drasl-c690e7240514217c189adf870ffcabb594755b04.tar.xz
export brigadier from azalea
Diffstat (limited to 'azalea')
-rw-r--r--azalea/Cargo.toml1
-rw-r--r--azalea/src/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index 5dbc7556..4a7469d3 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -24,6 +24,7 @@ azalea-protocol = { version = "0.6.0", path = "../azalea-protocol" }
azalea-registry = { version = "0.6.0", path = "../azalea-registry" }
azalea-world = { version = "0.6.0", path = "../azalea-world" }
azalea-auth = { version = "0.6.0", path = "../azalea-auth" }
+azalea-brigadier = { version = "0.6.0", path = "../azalea-brigadier" }
bevy_app = "0.10.0"
bevy_ecs = "0.10.0"
bevy_tasks = "0.10.0"
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs
index 2e8e4fa1..bde94634 100644
--- a/azalea/src/lib.rs
+++ b/azalea/src/lib.rs
@@ -12,6 +12,7 @@ pub mod swarm;
use app::{App, Plugin, PluginGroup};
pub use azalea_auth as auth;
pub use azalea_block as blocks;
+pub use azalea_brigadier as brigadier;
pub use azalea_client::*;
pub use azalea_core::{BlockPos, Vec3};
pub use azalea_protocol as protocol;