From 3f60bdadac1a02e1109148bbbe5a8a3545f13849 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Thu, 17 Apr 2025 16:16:51 -0500 Subject: Move login state to the ECS (#213) * use packet handlers code for login custom_query * initial broken implementation for ecs-only login * fixes * run Update schedule 60 times per second and delete code related to run_schedule_sender * fix tests * fix online-mode * reply to query packets in a separate system and make it easier for plugins to disable individual replies * remove unused imports --- azalea-auth/Cargo.toml | 5 ++++- azalea-auth/src/game_profile.rs | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'azalea-auth') diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml index 8418616f..fb1b37c9 100644 --- a/azalea-auth/Cargo.toml +++ b/azalea-auth/Cargo.toml @@ -12,7 +12,10 @@ azalea-crypto = { path = "../azalea-crypto", version = "0.12.0" } base64.workspace = true chrono = { workspace = true, features = ["serde"] } md-5.workspace = true -reqwest = { workspace = true, features = ["json", "rustls-tls"] } +reqwest = { workspace = true, default-features = false, features = [ + "json", + "rustls-tls", +] } rsa.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true diff --git a/azalea-auth/src/game_profile.rs b/azalea-auth/src/game_profile.rs index ebff4fce..c2561a9d 100644 --- a/azalea-auth/src/game_profile.rs +++ b/azalea-auth/src/game_profile.rs @@ -10,6 +10,7 @@ pub struct GameProfile { pub uuid: Uuid, /// The username of the player. pub name: String, + // this is an arc to make GameProfile cheaper to clone when the properties are big pub properties: Arc>, } -- cgit v1.2.3