aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-11-18 01:02:52 -0600
committermat <git@matdoes.dev>2023-11-18 01:02:52 -0600
commit89f5053b475b23bbd5b6316b189aea575f689ded (patch)
tree115613b911aa791bdb30cd804cb1736f81d7e754 /azalea-client
parent9633508a3a31a70c657329fdeca0050b7082959e (diff)
downloadazalea-drasl-89f5053b475b23bbd5b6316b189aea575f689ded.tar.xz
upgrade all dependencies
Diffstat (limited to 'azalea-client')
-rw-r--r--azalea-client/Cargo.toml4
-rw-r--r--azalea-client/src/packet_handling/game.rs2
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) => {
/// // ...
/// }