diff options
Diffstat (limited to 'azalea-client')
| -rw-r--r-- | azalea-client/Cargo.toml | 4 | ||||
| -rw-r--r-- | azalea-client/src/packet_handling/game.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index b95edeed..71f117ed 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -37,11 +37,11 @@ once_cell = "1.18.0" parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] } regex = "1.10.2" thiserror = "^1.0.50" -tokio = { version = "^1.33.0", features = ["sync"] } +tokio = { version = "^1.34.0", features = ["sync"] } uuid = "^1.5.0" azalea-entity = { version = "0.8.0", path = "../azalea-entity" } serde_json = "1.0.108" -serde = "1.0.190" +serde = "1.0.192" [features] default = ["log"] diff --git a/azalea-client/src/packet_handling/game.rs b/azalea-client/src/packet_handling/game.rs index dba0e070..3d61d790 100644 --- a/azalea-client/src/packet_handling/game.rs +++ b/azalea-client/src/packet_handling/game.rs @@ -60,7 +60,7 @@ use crate::{ /// entity, /// packet, /// } in events.read() { -/// match packet { +/// match packet.as_ref() { /// ClientboundGamePacket::LevelParticles(p) => { /// // ... /// } |
