diff --git a/Cargo.toml b/Cargo.toml index 87f6a5e..4c2c55e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,11 +9,11 @@ minecraft-auth = { git = "https://github.com/ismaileke/minecraft-auth.git", bran mojang-nbt = { git = "https://github.com/ismaileke/mojang-nbt.git", branch = "master" } log = "0.4.22" rand = "0.9.0-alpha.2" -tokio = "1.40.0" +tokio = "1.41.0" base64 = "0.22.1" openssl = "0.10.66" -serde = { version = "1.0.210", features = ["derive"] } -serde_json = "1.0.131" +serde = { version = "1.0.213", features = ["derive"] } +serde_json = "1.0.132" flate2 = "1.0.34" chrono = "0.4.38" miniz_oxide = "0.8.0" diff --git a/README.md b/README.md index 08e8622..6346b02 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ RakNet Client written in Rust. ```css [dependencies] raknet-client = { git = "https://github.com/ismaileke/raknet-client.git", branch = "master" } -tokio = "1.40.0" +tokio = "1.41.0" ``` @@ -17,7 +17,7 @@ use raknet_client::client; #[tokio::main] async fn main() { - let client = client::create("127.0.0.1".to_string(), 19132, "1.21.30".to_string(), true); // target address, target port, client version, debug mode + let client = client::create("127.0.0.1".to_string(), 19132, "1.21.40".to_string(), true); // target address, target port, client version, debug mode client.await.unwrap().connect().expect("Target IP Connection Error"); } ```