aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-08-15 22:21:04 -0500
committermat <git@matdoes.dev>2023-08-15 22:21:04 -0500
commit4ed4be529f0ee44120bb9c110418cbb8e3edd22d (patch)
tree91802ee7508c44e596013b23864bdd449383bbd7 /azalea-protocol
parent776f714826882a3fc1bbe3b2cdf46f902dd48742 (diff)
downloadazalea-drasl-4ed4be529f0ee44120bb9c110418cbb8e3edd22d.tar.xz
upgrade thiserror and other deps
Diffstat (limited to 'azalea-protocol')
-rw-r--r--azalea-protocol/Cargo.toml18
-rw-r--r--azalea-protocol/azalea-protocol-macros/Cargo.toml6
-rw-r--r--azalea-protocol/src/lib.rs1
3 files changed, 12 insertions, 13 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index f1682e8b..8caf5852 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -9,7 +9,7 @@ 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.4.0", features = [
+async-compression = { version = "^0.4.1", features = [
"tokio",
"zlib",
], optional = true }
@@ -33,23 +33,23 @@ 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.11.0", default-features = false }
+bevy_ecs = { version = "0.11.1", default-features = false }
byteorder = "^1.4.3"
bytes = "^1.4.0"
-flate2 = "1.0.26"
+flate2 = "1.0.27"
futures = "0.3.28"
futures-lite = "1.13.0"
futures-util = "0.3.28"
-log = "0.4.19"
+log = "0.4.20"
serde = { version = "^1.0", features = ["serde_derive"] }
-serde_json = "^1.0.100"
-thiserror = "1.0.43"
-tokio = { version = "^1.29.1", features = ["io-util", "net", "macros"] }
+serde_json = "^1.0.105"
+thiserror = "1.0.46"
+tokio = { version = "^1.31.0", 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.4.0"
+uuid = "1.4.1"
[features]
connecting = []
@@ -58,7 +58,7 @@ packets = ["connecting", "dep:async-compression", "dep:azalea-core"]
strict_registry = ["packets"]
[dev-dependencies]
-anyhow = "^1.0.71"
+anyhow = "^1.0.74"
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 e78368f4..2a890eab 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.64"
-quote = "^1.0.29"
-syn = "^2.0.25"
+proc-macro2 = "^1.0.66"
+quote = "^1.0.32"
+syn = "^2.0.28"
diff --git a/azalea-protocol/src/lib.rs b/azalea-protocol/src/lib.rs
index 8c357905..34f7cd4c 100644
--- a/azalea-protocol/src/lib.rs
+++ b/azalea-protocol/src/lib.rs
@@ -11,7 +11,6 @@
// these two are necessary for thiserror backtraces
#![feature(error_generic_member_access)]
-#![feature(provide_any)]
use std::{fmt::Display, net::SocketAddr, str::FromStr};