aboutsummaryrefslogtreecommitdiff
path: root/azalea/Cargo.toml
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2023-12-04 23:42:49 -0600
committerGitHub <noreply@github.com>2023-12-04 23:42:49 -0600
commit421d8ce2c837e3140d8f866e63032c277b31a413 (patch)
treed5f06fbcd02c24c6b40edd22cbdfda4d6ed6a39f /azalea/Cargo.toml
parentda4afa8ae3afec4cd59b9a19ae1e04818f1763a7 (diff)
downloadazalea-drasl-421d8ce2c837e3140d8f866e63032c277b31a413.tar.xz
Replace Bevy's FixedUpdate with Azalea's GameTick (#119)
* replace bevy FixedUpdate with azalea GameTick * Update to Bevy 0.12.1
Diffstat (limited to 'azalea/Cargo.toml')
-rw-r--r--azalea/Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index 0c02207e..8c9da998 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -26,9 +26,9 @@ azalea-world = { version = "0.8.0", path = "../azalea-world" }
azalea-auth = { version = "0.8.0", path = "../azalea-auth" }
azalea-brigadier = { version = "0.8.0", path = "../azalea-brigadier" }
azalea-buf = { version = "0.8.0", path = "../azalea-buf" }
-bevy_app = "0.12.0"
-bevy_ecs = "0.12.0"
-bevy_tasks = { version = "0.12.0", features = ["multi-threaded"] }
+bevy_app = "0.12.1"
+bevy_ecs = "0.12.1"
+bevy_tasks = { version = "0.12.1", features = ["multi-threaded"] }
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
futures = "0.3.29"
futures-lite = "2.0.1"
@@ -40,9 +40,9 @@ priority-queue = "1.3.2"
thiserror = "^1.0.50"
tokio = "^1.34.0"
uuid = "1.5.0"
-bevy_log = "0.12.0"
+bevy_log = "0.12.1"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
-bevy_time = "0.12.0"
+bevy_time = "0.12.1"
rustc-hash = "1.1.0"
[dev-dependencies]