1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

Fix duplicate lint, remove log dependency

This commit is contained in:
EightFactorial 2024-12-04 16:19:52 -08:00
parent f70dc84f33
commit b297a27734
No known key found for this signature in database
3 changed files with 0 additions and 3 deletions

1
Cargo.lock generated
View file

@ -481,7 +481,6 @@ dependencies = [
"flate2",
"futures",
"futures-lite",
"log",
"serde",
"serde_json",
"simdnbt",

View file

@ -137,7 +137,6 @@ pub fn death_event(query: Query<&LocalPlayerEvents, Added<Dead>>) {
}
}
#[allow(clippy::large_enum_variant)]
#[derive(Error, Debug)]
#[expect(clippy::large_enum_variant)]
pub enum HandlePacketError {

View file

@ -39,7 +39,6 @@ flate2 = { workspace = true }
futures = { workspace = true }
futures-lite = { workspace = true }
#futures-util = { workspace = true }
log = { workspace = true }
serde = { workspace = true, features = ["serde_derive"] }
serde_json = { workspace = true }
simdnbt = { workspace = true }