aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-04-19 19:57:30 +0000
committermat <github@matdoes.dev>2023-04-19 19:57:30 +0000
commit0b49939374c222b8037aebe0101fc96506dddd81 (patch)
treee46193e2c2283c6f8802b50682d584051196388a
parent16903b73bf58a6f5b7fa19f52f265c50dadf0c2b (diff)
downloadazalea-drasl-0b49939374c222b8037aebe0101fc96506dddd81.tar.xz
re export azalea_auth from azalea
-rw-r--r--Cargo.lock1
-rw-r--r--azalea/Cargo.toml1
-rw-r--r--azalea/src/lib.rs1
3 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 493cc6a1..20380f3a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -164,6 +164,7 @@ version = "0.6.0"
dependencies = [
"anyhow",
"async-trait",
+ "azalea-auth",
"azalea-block",
"azalea-chat",
"azalea-client",
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index dd2bb46c..678d4a3b 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -22,6 +22,7 @@ azalea-physics = { version = "0.6.0", path = "../azalea-physics" }
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" }
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 c58ca7b1..bd1d356a 100644
--- a/azalea/src/lib.rs
+++ b/azalea/src/lib.rs
@@ -7,6 +7,7 @@ pub mod prelude;
pub mod swarm;
use app::{App, Plugin, PluginGroup};
+pub use azalea_auth as auth;
pub use azalea_block as blocks;
pub use azalea_client::*;
pub use azalea_core::{BlockPos, Vec3};