diff options
| author | mat <git@matdoes.dev> | 2023-10-01 14:48:19 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-10-01 14:48:19 -0500 |
| commit | 33e823d6fab990efaa735c05e4b0c42636003b76 (patch) | |
| tree | 68bc28189136f43ac88932071fe3a2de5d5260a7 /azalea-client | |
| parent | a440c23a3b0f348fc89e504b4ef0ccb1dc3ec93a (diff) | |
| download | azalea-drasl-33e823d6fab990efaa735c05e4b0c42636003b76.tar.xz | |
fix log feature
Diffstat (limited to 'azalea-client')
| -rw-r--r-- | azalea-client/Cargo.toml | 4 |
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"] |
