diff options
| author | mat <git@matdoes.dev> | 2025-03-29 18:15:49 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-03-29 18:15:49 -0500 |
| commit | 55ed46d081a9843e4b0ded27cadc10876d367356 (patch) | |
| tree | c6acdc6546dfd0312f7d897cf79670b5e01ce78b | |
| parent | 43ebbee94a24e1f797759d3abe002b8ddfe0523c (diff) | |
| download | azalea-drasl-55ed46d081a9843e4b0ded27cadc10876d367356.tar.xz | |
fix incorrect usage of optional dependency
| -rw-r--r-- | azalea-protocol/Cargo.toml | 2 |
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"] |
