Skip to content

Commit

Permalink
Fix warnings and cargo deny issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed Oct 30, 2022
1 parent c874eab commit 6bc3640
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Expand Up @@ -157,7 +157,7 @@ jobs:
cargo afl check --bin fuzz_webp
cargo afl check --bin fuzz_pnm
env:
RUSTFLAGS: "-Znew-llvm-pass-manager=no"
RUSTFLAGS: ""

build_fuzz_cargo-fuzz:
name: "Fuzz targets (cargo-fuzz)"
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Expand Up @@ -26,6 +26,7 @@ wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny
deny = []
skip = []
skip-tree = [
{ name = "flate2", version = "=1.0.24" }, # until a new version is published
{ name = "criterion" }, # dev-dependency
{ name = "quickcheck" }, # dev-dependency
]
Expand Down
2 changes: 1 addition & 1 deletion src/dynimage.rs
Expand Up @@ -1332,7 +1332,7 @@ mod test {
// ensures that DynamicImage implements Default (if it didn't, this would cause a compile error).
#[derive(Default)]
struct Foo {
image: super::DynamicImage,
_image: super::DynamicImage,
}
}

Expand Down

0 comments on commit 6bc3640

Please sign in to comment.