This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate nannou

Dependencies

(25 total, 17 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 approx^0.10.5.1out of date
 cgmath^0.160.18.0out of date
 conrod_core^0.680.76.1out of date
 conrod_vulkano^0.680.76.1out of date
 conrod_winit^0.680.76.1out of date
 daggy^0.60.8.0out of date
 find_folder^0.30.3.0up to date
 image ⚠️^0.210.25.1out of date
 lyon^0.141.0.1out of date
 moltenvk_deps^0.10.1.8up to date
 noise^0.50.9.0out of date
 notosans^0.10.1.0up to date
 palette^0.40.7.6out of date
 pennereq^0.30.3.1up to date
 rand^0.70.8.5out of date
 rusttype^0.70.9.3out of date
 serde^11.0.200up to date
 serde_derive^11.0.200up to date
 serde_json^11.0.116up to date
 toml^0.40.8.12out of date
 vulkano^0.160.34.1out of date
 vulkano-shaders^0.160.34.0out of date
 vulkano-win^0.160.34.0out of date
 walkdir^22.5.0up to date
 winit^0.190.30.0out of date

Dev dependencies

(5 total, 4 outdated)

CrateRequiredLatestStatus
 audrey^0.20.3.0out of date
 nannou_audio^0.20.19.0out of date
 nannou_laser^0.30.19.0out of date
 nannou_osc^0.10.19.0out of date
 shade_runner^0.30.3.0up to date

Security Vulnerabilities

image: Flaw in interface may drop uninitialized instance of arbitrary types

RUSTSEC-2019-0014

Affected versions of this crate would call Vec::set_len on an uninitialized vector with user-provided type parameter, in an interface of the HDR image format decoder. They would then also call other code that could panic before initializing all instances.

This could run Drop implementations on uninitialized types, equivalent to use-after-free, and allow an attacker arbitrary code execution.

Two different fixes were applied. It is possible to conserve the interface by ensuring proper initialization before calling Vec::set_len. Drop is no longer called in case of panic, though.

Starting from version 0.22, a breaking change to the interface requires callers to pre-allocate the output buffer and pass a mutable slice instead, avoiding all unsafe code.