1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

re export azalea_auth from azalea

This commit is contained in:
mat 2023-04-19 19:57:30 +00:00
parent 16903b73bf
commit 0b49939374
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View file

@ -164,6 +164,7 @@ version = "0.6.0"
dependencies = [
"anyhow",
"async-trait",
"azalea-auth",
"azalea-block",
"azalea-chat",
"azalea-client",

View file

@ -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"

View file

@ -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};