aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2026-01-12 02:09:41 -0600
committerGitHub <noreply@github.com>2026-01-12 02:09:41 -0600
commit1accbac964168af5fa0d87cb170389f0a9d01363 (patch)
tree1509b26c19beaa23a492289f6bf00d3958be44d5 /Cargo.toml
parent58339b9d229592dee40e15b8648fe4075cc391f4 (diff)
downloadazalea-drasl-1accbac964168af5fa0d87cb170389f0a9d01363.tar.xz
Make Bevy dependencies optional in azalea-protocol (#303)
* Make Bevy dependencies optional in azalea-protocol * derive serde traits on Direction again * update docs for types that may not have Component
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml34
1 files changed, 17 insertions, 17 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a6f4ae42..523a5c7a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -92,26 +92,26 @@ tracing-subscriber = "0.3.22"
uuid = "1.19.0"
radix-heap = "0.4.2"
-azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.15.0" }
-azalea-block = { path = "azalea-block", version = "0.15.0" }
+azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.15.0", default-features = false }
+azalea-block = { path = "azalea-block", version = "0.15.0", default-features = false }
azalea-auth = { path = "azalea-auth", version = "0.15.0", default-features = false }
-azalea-brigadier = { path = "azalea-brigadier", version = "0.15.0" }
-azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.15.0" }
-azalea-buf = { path = "azalea-buf", version = "0.15.0" }
-azalea-chat = { path = "azalea-chat", version = "0.15.0" }
+azalea-brigadier = { path = "azalea-brigadier", version = "0.15.0", default-features = false }
+azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.15.0", default-features = false }
+azalea-buf = { path = "azalea-buf", version = "0.15.0", default-features = false }
+azalea-chat = { path = "azalea-chat", version = "0.15.0", default-features = false }
azalea-client = { path = "azalea-client", version = "0.15.0", default-features = false }
-azalea-core = { path = "azalea-core", version = "0.15.0" }
-azalea-crypto = { path = "azalea-crypto", version = "0.15.0" }
-azalea-entity = { path = "azalea-entity", version = "0.15.0" }
-azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.15.0" }
-azalea-inventory = { path = "azalea-inventory", version = "0.15.0" }
-azalea-language = { path = "azalea-language", version = "0.15.0" }
-azalea-physics = { path = "azalea-physics", version = "0.15.0" }
-azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.15.0" }
+azalea-core = { path = "azalea-core", version = "0.15.0", default-features = false }
+azalea-crypto = { path = "azalea-crypto", version = "0.15.0", default-features = false }
+azalea-entity = { path = "azalea-entity", version = "0.15.0", default-features = false }
+azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.15.0", default-features = false }
+azalea-inventory = { path = "azalea-inventory", version = "0.15.0", default-features = false }
+azalea-language = { path = "azalea-language", version = "0.15.0", default-features = false }
+azalea-physics = { path = "azalea-physics", version = "0.15.0", default-features = false }
+azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.15.0", default-features = false }
azalea-protocol = { path = "azalea-protocol", version = "0.15.0", default-features = false }
-azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.15.0" }
-azalea-registry = { path = "azalea-registry", version = "0.15.0" }
-azalea-world = { path = "azalea-world", version = "0.15.0" }
+azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.15.0", default-features = false }
+azalea-registry = { path = "azalea-registry", version = "0.15.0", default-features = false }
+azalea-world = { path = "azalea-world", version = "0.15.0", default-features = false }
[workspace.lints.clippy]
# https://users.rust-lang.org/t/to-string-vs-to-owned-for-string-literals/1441