aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/Cargo.toml
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-04-17 10:15:14 -1245
committermat <git@matdoes.dev>2025-04-17 10:15:14 -1245
commitad45cf5431939d088b97aa8a368ed910332b53d2 (patch)
tree845a607d945e66e84f5677f7289f58d70334677f /azalea-client/Cargo.toml
parent43d7c428e317f503dda899cade9e3ec8024de4de (diff)
downloadazalea-drasl-ad45cf5431939d088b97aa8a368ed910332b53d2.tar.xz
allow disabling Event::Packet with a crate feature
Diffstat (limited to 'azalea-client/Cargo.toml')
-rw-r--r--azalea-client/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index 6ca17a94..88bf02bc 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -41,6 +41,7 @@ uuid.workspace = true
anyhow.workspace = true
[features]
-default = ["log"]
+default = ["log", "packet-event"]
# enables bevy_log::LogPlugin by default
log = ["bevy_log"]
+packet-event = []