From 7e7af6e7c14a3be8a70b4c67e8ee78cae3c88f7d Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Mon, 6 Mar 2023 18:50:48 -0800 Subject: [PATCH] Set bevy version to 0.10 (#272) ## Description Sets Bevy dependencies to version 0.10 instead of the previous commit hash. --- crates/valence/Cargo.toml | 4 ++-- crates/valence_anvil/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/valence/Cargo.toml b/crates/valence/Cargo.toml index c849423..459f08e 100644 --- a/crates/valence/Cargo.toml +++ b/crates/valence/Cargo.toml @@ -16,8 +16,8 @@ anyhow = "1.0.65" arrayvec = "0.7.2" async-trait = "0.1.60" base64 = "0.21.0" -bevy_app = { git = "https://github.com/bevyengine/bevy/", rev = "2ea00610188dce1eba1172a3ded8244570189230" } -bevy_ecs = { git = "https://github.com/bevyengine/bevy/", rev = "2ea00610188dce1eba1172a3ded8244570189230" } +bevy_app = "0.10" +bevy_ecs = "0.10" bitfield-struct = "0.3.1" bytes = "1.2.1" flume = "0.10.14" diff --git a/crates/valence_anvil/Cargo.toml b/crates/valence_anvil/Cargo.toml index 5f3d0b5..ba43d55 100644 --- a/crates/valence_anvil/Cargo.toml +++ b/crates/valence_anvil/Cargo.toml @@ -20,7 +20,7 @@ valence_nbt = { version = "0.5.0", path = "../valence_nbt" } [dev-dependencies] anyhow = "1.0.68" -bevy_ecs = { git = "https://github.com/bevyengine/bevy/", rev = "2ea00610188dce1eba1172a3ded8244570189230" } +bevy_ecs = "0.10" clap = "4.1.4" criterion = "0.4.0" flume = "0.10.14"