diff --git a/Cargo.lock b/Cargo.lock index 0cc8a3e4..fcb125b3 100755 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,7 +100,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "azalea" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "async-trait", diff --git a/azalea-client/src/account.rs b/azalea-client/src/account.rs index 94e84ab8..fc34d6c4 100644 --- a/azalea-client/src/account.rs +++ b/azalea-client/src/account.rs @@ -6,6 +6,7 @@ use tokio::sync::mpsc::UnboundedReceiver; use uuid::Uuid; /// Something that can join Minecraft servers. +#[derive(Clone, Debug)] pub struct Account { pub username: String, /// The access token for authentication. You can obtain one of these diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index 1b14c604..fea476d6 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -3,7 +3,7 @@ description = "A framework for creating Minecraft bots." edition = "2021" license = "MIT" name = "azalea" -version = "0.2.1" +version = "0.2.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html