aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-03-29 18:15:49 -0500
committermat <git@matdoes.dev>2025-03-29 18:15:49 -0500
commit55ed46d081a9843e4b0ded27cadc10876d367356 (patch)
treec6acdc6546dfd0312f7d897cf79670b5e01ce78b
parent43ebbee94a24e1f797759d3abe002b8ddfe0523c (diff)
downloadazalea-drasl-55ed46d081a9843e4b0ded27cadc10876d367356.tar.xz
fix incorrect usage of optional dependency
-rw-r--r--azalea-protocol/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index 78e776b6..f2f6a9cf 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -54,4 +54,4 @@ crc32fast = { workspace = true, optional = true }
connecting = []
default = ["packets"]
packets = ["connecting", "dep:azalea-core", "crc32"]
-crc32 = ["crc32fast"]
+crc32 = ["dep:crc32fast"]