Skip to content

Commit

Permalink
fix clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-vernooij committed Feb 5, 2025
1 parent 54b9016 commit 700a5aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ categories = ["graphics"]
anyhow = { version = "1.0.1", default-features = false, features = ["std"] }
bytecheck = { version = "0.6", default-features = false }
rkyv = { version = "0.7.40", optional = true, default-features = false, features = ["size_64", "validation"] }
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
serde = { version = "1.0.217", default-features = false, features = ["derive"] }
serde-xml-rs = { version = "0.6", default-features = false }
2 changes: 1 addition & 1 deletion src/deserialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ where
}
}

impl<'de, T> Visitor<'de> for ArrayVisitor<T>
impl<T> Visitor<'_> for ArrayVisitor<T>
where
T: FromStr,
T::Err: fmt::Display,
Expand Down

0 comments on commit 700a5aa

Please sign in to comment.