From 55ed46d081a9843e4b0ded27cadc10876d367356 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 29 Mar 2025 18:15:49 -0500 Subject: [PATCH] fix incorrect usage of optional dependency --- azalea-protocol/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]