aboutsummaryrefslogtreecommitdiff
path: root/azalea
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2024-07-05 00:45:45 -0500
committerGitHub <noreply@github.com>2024-07-05 00:45:45 -0500
commitea64fba7f655b9afa03d57e8590c16e024f396f3 (patch)
tree728293b8cc852bf6b50a55594589a3b93b96c286 /azalea
parent350e32d0a9f21103e271e80e63daa5711a78e1d7 (diff)
downloadazalea-drasl-ea64fba7f655b9afa03d57e8590c16e024f396f3.tar.xz
upgrade to simdnbt 0.6 (#160)
Diffstat (limited to 'azalea')
-rw-r--r--azalea/Cargo.toml28
-rw-r--r--azalea/src/lib.rs1
2 files changed, 14 insertions, 15 deletions
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index 2b2341a5..78c6182d 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -12,7 +12,7 @@ pre-release-replacements = [
]
[dependencies]
-anyhow = "^1.0.82"
+anyhow = "^1.0.86"
async-trait = "0.1.80"
azalea-block = { version = "0.10.0", path = "../azalea-block" }
azalea-chat = { version = "0.10.0", path = "../azalea-chat" }
@@ -25,23 +25,23 @@ azalea-world = { version = "0.10.0", path = "../azalea-world" }
azalea-auth = { version = "0.10.0", path = "../azalea-auth" }
azalea-brigadier = { version = "0.10.0", path = "../azalea-brigadier" }
azalea-buf = { version = "0.10.0", path = "../azalea-buf" }
-bevy_app = "0.13.2"
-bevy_ecs = "0.13.2"
-bevy_tasks = { version = "0.13.2", features = ["multi-threaded"] }
-derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
+bevy_app = "0.13.0"
+bevy_ecs = "0.13.0"
+bevy_tasks = { version = "0.13.0", features = ["multi-threaded"] }
+derive_more = { version = "0.99.18", features = ["deref", "deref_mut"] }
futures = "0.3.30"
futures-lite = "2.3.0"
tracing = "0.1.40"
nohash-hasher = "0.2.0"
-num-traits = "0.2.18"
-parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
-priority-queue = "2.0.2"
-thiserror = "^1.0.59"
-tokio = "^1.37.0"
-uuid = "1.8.0"
-bevy_log = "0.13.2"
-bevy_time = "0.13.2"
-rustc-hash = "1.1.0"
+num-traits = "0.2.19"
+parking_lot = { version = "^0.12.3", features = ["deadlock_detection"] }
+priority-queue = "2.0.3"
+thiserror = "^1.0.61"
+tokio = "^1.38.0"
+uuid = "1.9.1"
+bevy_log = "0.13.0"
+bevy_time = "0.13.0"
+rustc-hash = "2.0.0"
azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" }
azalea-entity = { version = "0.10.0", path = "../azalea-entity" }
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs
index 7d8b424c..c78b6ef1 100644
--- a/azalea/src/lib.rs
+++ b/azalea/src/lib.rs
@@ -1,7 +1,6 @@
#![doc = include_str!("../README.md")]
#![allow(incomplete_features)]
#![feature(type_changing_struct_update)]
-#![feature(lazy_cell)]
#![feature(let_chains)]
#![feature(never_type)]