aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity
diff options
context:
space:
mode:
authorEightFactorial <29801334+EightFactorial@users.noreply.github.com>2024-12-04 16:31:22 -0800
committerGitHub <noreply@github.com>2024-12-04 18:31:22 -0600
commit6379035b852f1b619565d27f5cee3b93042c2312 (patch)
tree30c858cfaf841d0fcc5a139f1507b9b67d768e8b /azalea-entity
parent241c7527ce11177082dcc0ebc4152506946ee684 (diff)
downloadazalea-drasl-6379035b852f1b619565d27f5cee3b93042c2312.tar.xz
Update Bevy and migrate to workspace dependencies and package attributes (#181)
* Use workspace `Cargo.toml` for dependencies and package atributes * Fix a couple clippy warnings * Update bevy, update build script, move deps to workspace, and fix clippy warnings * Remove carrots from crate versions The default behavior is the same * Remove unused dependencies Compiles and all tests pass, so it should be fine * Update codegen to use `std::sync::LazyLock` instead of `once_cell::sync::Lazy` * Update Bevy to `0.15.0-rc.3` Surprisingly little needed to be changed * Update to bevy 0.15.0 * Fix leftover merge issues * Clarify the reason the swarm can't connect * Fix duplicate lint, remove `log` dependency
Diffstat (limited to 'azalea-entity')
-rw-r--r--azalea-entity/Cargo.toml24
1 files changed, 11 insertions, 13 deletions
diff --git a/azalea-entity/Cargo.toml b/azalea-entity/Cargo.toml
index 2508e092..b4f1c232 100644
--- a/azalea-entity/Cargo.toml
+++ b/azalea-entity/Cargo.toml
@@ -1,23 +1,21 @@
[package]
name = "azalea-entity"
-version = "0.10.3+mc1.21.4"
-edition = "2021"
description = "Things related to Minecraft entities used by Azalea"
-repository = "https://github.com/azalea-rs/azalea/tree/main/azalea-entity"
-license = "MIT"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+version = { workspace = true }
+edition = { workspace = true }
+license = { workspace = true }
+repository = { workspace = true }
[dependencies]
-azalea-block = { version = "0.10.0", path = "../azalea-block" }
-azalea-buf = { version = "0.10.0", path = "../azalea-buf" }
-azalea-chat = { version = "0.10.0", path = "../azalea-chat", features = [
+azalea-block = { path = "../azalea-block", version = "0.10.0" }
+azalea-buf = { path = "../azalea-buf", version = "0.10.0" }
+azalea-chat = { path = "../azalea-chat", version = "0.10.0", features = [
"azalea-buf",
] }
-azalea-core = { version = "0.10.0", path = "../azalea-core" }
-azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" }
-azalea-registry = { version = "0.10.0", path = "../azalea-registry" }
-azalea-world = { version = "0.10.0", path = "../azalea-world" }
+azalea-core = { path = "../azalea-core", version = "0.10.0" }
+azalea-inventory = { path = "../azalea-inventory", version = "0.10.0" }
+azalea-registry = { path = "../azalea-registry", version = "0.10.0" }
+azalea-world = { path = "../azalea-world", version = "0.10.0" }
bevy_app = { workspace = true }
bevy_ecs = { workspace = true }
derive_more = { workspace = true }