aboutsummaryrefslogtreecommitdiff
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
parenta440c23a3b0f348fc89e504b4ef0ccb1dc3ec93a (diff)
downloadazalea-drasl-33e823d6fab990efaa735c05e4b0c42636003b76.tar.xz
fix log feature
-rw-r--r--azalea-client/Cargo.toml4
-rw-r--r--azalea/Cargo.toml2
2 files changed, 3 insertions, 3 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"]
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index ad7bc900..582168a4 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -16,7 +16,7 @@ anyhow = "^1.0.75"
async-trait = "0.1.73"
azalea-block = { version = "0.8.0", path = "../azalea-block" }
azalea-chat = { version = "0.8.0", path = "../azalea-chat" }
-azalea-client = { version = "0.8.0", path = "../azalea-client" }
+azalea-client = { version = "0.8.0", path = "../azalea-client", default-features = false }
azalea-core = { version = "0.8.0", path = "../azalea-core" }
azalea-inventory = { version = "0.8.0", path = "../azalea-inventory" }
azalea-physics = { version = "0.8.0", path = "../azalea-physics" }