aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
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-client
parent776f714826882a3fc1bbe3b2cdf46f902dd48742 (diff)
downloadazalea-drasl-4ed4be529f0ee44120bb9c110418cbb8e3edd22d.tar.xz
upgrade thiserror and other deps
Diffstat (limited to 'azalea-client')
-rw-r--r--azalea-client/Cargo.toml24
-rw-r--r--azalea-client/src/lib.rs1
2 files changed, 12 insertions, 13 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index 90e5d14e..f955337c 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -10,8 +10,8 @@ version = "0.7.0"
[dependencies]
reqwest = { version = "0.11.18", default-features = false }
-anyhow = "1.0.71"
-async-trait = "0.1.71"
+anyhow = "1.0.74"
+async-trait = "0.1.73"
azalea-auth = { path = "../azalea-auth", version = "0.7.0" }
azalea-block = { path = "../azalea-block", version = "0.7.0" }
azalea-nbt = { path = "../azalea-nbt", version = "0.7.0" }
@@ -23,22 +23,22 @@ azalea-buf = { path = "../azalea-buf", version = "0.7.0" }
azalea-protocol = { path = "../azalea-protocol", version = "0.7.0" }
azalea-registry = { path = "../azalea-registry", version = "0.7.0" }
azalea-world = { path = "../azalea-world", version = "0.7.0" }
-bevy_app = "0.11.0"
-bevy_ecs = "0.11.0"
-bevy_log = "0.11.0"
-bevy_tasks = "0.11.0"
-bevy_time = "0.11.0"
+bevy_app = "0.11.1"
+bevy_ecs = "0.11.1"
+bevy_log = "0.11.1"
+bevy_tasks = "0.11.1"
+bevy_time = "0.11.1"
azalea-inventory = { path = "../azalea-inventory", version = "0.7.0" }
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
futures = "0.3.28"
-log = "0.4.19"
+log = "0.4.20"
nohash-hasher = "0.2.0"
once_cell = "1.18.0"
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
-regex = "1.9.1"
-thiserror = "^1.0.43"
-tokio = { version = "^1.29.1", features = ["sync"] }
-uuid = "^1.4.0"
+regex = "1.9.3"
+thiserror = "^1.0.46"
+tokio = { version = "^1.31.0", features = ["sync"] }
+uuid = "^1.4.1"
azalea-entity = { version = "0.1.0", path = "../azalea-entity" }
[features]
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index e8698fc7..92a44f6c 100644
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -5,7 +5,6 @@
//! [`azalea_protocol`]: https://docs.rs/azalea-protocol
//! [`azalea`]: https://docs.rs/azalea
-#![feature(provide_any)]
#![allow(incomplete_features)]
#![feature(trait_upcasting)]
#![feature(error_generic_member_access)]