aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-10-01 14:48:19 -0500
committermat <git@matdoes.dev>2023-10-01 14:48:19 -0500
commit33e823d6fab990efaa735c05e4b0c42636003b76 (patch)
tree68bc28189136f43ac88932071fe3a2de5d5260a7 /azalea-client
parenta440c23a3b0f348fc89e504b4ef0ccb1dc3ec93a (diff)
downloadazalea-drasl-33e823d6fab990efaa735c05e4b0c42636003b76.tar.xz
fix log feature
Diffstat (limited to 'azalea-client')
-rw-r--r--azalea-client/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index de36860e..dd60e4aa 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -25,7 +25,7 @@ azalea-registry = { path = "../azalea-registry", version = "0.8.0" }
azalea-world = { path = "../azalea-world", version = "0.8.0" }
bevy_app = "0.11.2"
bevy_ecs = "0.11.2"
-bevy_log = "0.11.2"
+bevy_log = { version = "0.11.2", optional = true }
bevy_tasks = "0.11.2"
bevy_time = "0.11.2"
azalea-inventory = { path = "../azalea-inventory", version = "0.8.0" }
@@ -46,4 +46,4 @@ serde = "1.0.183"
[features]
default = ["log"]
# enables bevy_log::LogPlugin by default
-log = []
+log = ["bevy_log"]