diff options
| author | mat <github@matdoes.dev> | 2023-04-20 17:11:56 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2023-04-20 17:11:56 +0000 |
| commit | 88b09f7791b51639f8191cc88c98fbd13fa7e3d4 (patch) | |
| tree | de9d1497d51190df26eddf00992658ac7bc47924 /azalea | |
| parent | c4c5edf80b364b9e1281e04b26446cdff499a8b5 (diff) | |
| parent | 821533138152748d3b677afd64f505020d6a83b3 (diff) | |
| download | azalea-drasl-88b09f7791b51639f8191cc88c98fbd13fa7e3d4.tar.xz | |
Merge branch 'main' into 1.20
Diffstat (limited to 'azalea')
| -rw-r--r-- | azalea/Cargo.toml | 1 | ||||
| -rw-r--r-- | azalea/src/lib.rs | 1 |
2 files changed, 2 insertions, 0 deletions
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}; |
