diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9e6f2f795f..d0a5d10064 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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)" diff --git a/deny.toml b/deny.toml index 84673e3572..f5be0a996c 100644 --- a/deny.toml +++ b/deny.toml @@ -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 ] diff --git a/src/dynimage.rs b/src/dynimage.rs index 682e1ebb3b..51f023af3c 100644 --- a/src/dynimage.rs +++ b/src/dynimage.rs @@ -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, } }