aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol')
-rw-r--r--azalea-protocol/Cargo.toml34
-rw-r--r--azalea-protocol/azalea-protocol-macros/Cargo.toml6
-rwxr-xr-xazalea-protocol/src/packets/game/clientbound_update_advancements_packet.rs1
3 files changed, 21 insertions, 20 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index 8f702aa4..ebe49e64 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -9,11 +9,11 @@ version = "0.7.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-async-compression = { version = "^0.3.8", features = [
+async-compression = { version = "^0.4.0", features = [
"tokio",
"zlib",
], optional = true }
-async-recursion = "1.0.0"
+async-recursion = "1.0.4"
azalea-auth = { path = "../azalea-auth", version = "^0.7.0" }
azalea-block = { path = "../azalea-block", default-features = false, version = "^0.7.0" }
azalea-brigadier = { path = "../azalea-brigadier", version = "^0.7.0", features = [
@@ -32,22 +32,22 @@ azalea-nbt = { path = "../azalea-nbt", version = "^0.7.0", features = [
azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "^0.7.0" }
azalea-registry = { path = "../azalea-registry", version = "^0.7.0" }
azalea-world = { path = "../azalea-world", version = "^0.7.0" }
-bevy_ecs = { version = "0.10.0", default-features = false }
+bevy_ecs = { version = "0.11.0", default-features = false }
byteorder = "^1.4.3"
-bytes = "^1.1.0"
-flate2 = "1.0.25"
-futures = "0.3.24"
-futures-util = "0.3.24"
-log = "0.4.17"
+bytes = "^1.4.0"
+flate2 = "1.0.26"
+futures = "0.3.28"
+futures-util = "0.3.28"
+log = "0.4.19"
serde = { version = "^1.0", features = ["serde_derive"] }
-serde_json = "^1.0.93"
-thiserror = "1.0.37"
-tokio = { version = "^1.24.2", features = ["io-util", "net", "macros"] }
-tokio-util = { version = "0.7.4", features = ["codec"] }
+serde_json = "^1.0.100"
+thiserror = "1.0.43"
+tokio = { version = "^1.29.1", features = ["io-util", "net", "macros"] }
+tokio-util = { version = "0.7.8", features = ["codec"] }
trust-dns-resolver = { version = "^0.22.0", default-features = false, features = [
"tokio-runtime",
] }
-uuid = "1.1.2"
+uuid = "1.4.0"
[features]
connecting = []
@@ -56,7 +56,7 @@ packets = ["connecting", "dep:async-compression", "dep:azalea-core"]
strict_registry = ["packets"]
[dev-dependencies]
-anyhow = "^1.0.65"
-tracing = "^0.1.36"
-tracing-subscriber = "^0.3.15"
-once_cell = "1.17.0"
+anyhow = "^1.0.71"
+tracing = "^0.1.37"
+tracing-subscriber = "^0.3.17"
+once_cell = "1.18.0"
diff --git a/azalea-protocol/azalea-protocol-macros/Cargo.toml b/azalea-protocol/azalea-protocol-macros/Cargo.toml
index dcd9a329..e78368f4 100644
--- a/azalea-protocol/azalea-protocol-macros/Cargo.toml
+++ b/azalea-protocol/azalea-protocol-macros/Cargo.toml
@@ -11,6 +11,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-proc-macro2 = "^1.0.36"
-quote = "^1.0.10"
-syn = "^1.0.82"
+proc-macro2 = "^1.0.64"
+quote = "^1.0.29"
+syn = "^2.0.25"
diff --git a/azalea-protocol/src/packets/game/clientbound_update_advancements_packet.rs b/azalea-protocol/src/packets/game/clientbound_update_advancements_packet.rs
index a561fa9c..81704b37 100755
--- a/azalea-protocol/src/packets/game/clientbound_update_advancements_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_update_advancements_packet.rs
@@ -142,6 +142,7 @@ mod tests {
}),
criteria: HashMap::new(),
requirements: Vec::new(),
+ sends_telemetry_event: false,
},
)]
.into_iter()