aboutsummaryrefslogtreecommitdiff
path: root/azalea-world/Cargo.toml
diff options
context:
space:
mode:
authorShayne Hartford <shaybox@shaybox.com>2025-02-17 18:28:37 -0500
committerGitHub <noreply@github.com>2025-02-17 17:28:37 -0600
commitc285fadd34df2a43a5cfe1d3c02a3cc47bf69e9e (patch)
tree8e68e7869a23be9dcbfad43a8de957b35d3723f1 /azalea-world/Cargo.toml
parent022771b71bdbfa29253342af36a63f0fe00ea962 (diff)
downloadazalea-drasl-c285fadd34df2a43a5cfe1d3c02a3cc47bf69e9e.tar.xz
Enable serde feature in sub-crates (#202)
Add serde derive to MinecraftEntityId
Diffstat (limited to 'azalea-world/Cargo.toml')
-rw-r--r--azalea-world/Cargo.toml8
1 files changed, 5 insertions, 3 deletions
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml
index 2ce3d097..5354259e 100644
--- a/azalea-world/Cargo.toml
+++ b/azalea-world/Cargo.toml
@@ -13,19 +13,21 @@ criterion = "0.5.1"
[dependencies]
azalea-block = { path = "../azalea-block", default-features = false, version = "0.11.0" }
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
-azalea-core = { path = "../azalea-core", version = "0.11.0", features = [
- "bevy_ecs",
-] }
+azalea-core = { path = "../azalea-core", version = "0.11.0", features = ["bevy_ecs"] }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
bevy_ecs.workspace = true
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
nohash-hasher.workspace = true
parking_lot.workspace = true
rustc-hash.workspace = true
+serde = { workspace = true, optional = true }
simdnbt.workspace = true
thiserror.workspace = true
tracing.workspace = true
+[features]
+serde = ["dep:serde"]
+
[[bench]]
name = "chunks"
harness = false