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 wgpu-hal

Dependencies

(36 total, 13 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 android_system_properties^0.1.10.1.5up to date
 arrayvec^0.70.7.6up to date
 ash^0.37.30.38.0+1.3.281out of date
 bit-set^0.50.8.0out of date
 bitflags^22.6.0up to date
 block^0.10.1.6up to date
 core-graphics-types^0.10.2.0out of date
 d3d12^0.19.022.0.0out of date
 glow^0.13.10.14.0out of date
 glutin_wgl_sys^0.50.6.0out of date
 gpu-alloc^0.60.6.0up to date
 gpu-allocator^0.250.27.0out of date
 gpu-descriptor^0.20.3.0out of date
 hassle-rs^0.110.11.0up to date
 js-sys^0.3.670.3.70up to date
 khronos-egl^66.0.0up to date
 libc^0.20.2.158up to date
 libloading>=0.7, <0.90.8.5up to date
 log^0.40.4.22up to date
 metal^0.27.00.29.0out of date
 naga^0.19.022.1.0out of date
 ndk-sys^0.5.00.6.0+11769913out of date
 objc^0.2.50.2.7up to date
 once_cell^1.19.01.19.0up to date
 parking_lot>=0.11, <0.130.12.3up to date
 profiling^11.0.15up to date
 range-alloc^0.10.1.3up to date
 raw-window-handle^0.60.6.2up to date
 renderdoc-sys^1.0.01.1.0up to date
 rustc-hash^1.12.0.0out of date
 smallvec ⚠️^11.13.2maybe insecure
 thiserror^11.0.63up to date
 wasm-bindgen^0.2.870.2.93up to date
 web-sys^0.3.670.3.70up to date
 wgpu-types^0.19.022.0.0out of date
 winapi^0.30.3.9up to date

Dev dependencies

(6 total, 5 outdated)

CrateRequiredLatestStatus
 cfg-if^11.0.0up to date
 env_logger^0.100.11.5out of date
 glam^0.25.00.29.0out of date
 glutin^0.29.10.32.0out of date
 naga^0.19.022.1.0out of date
 winit^0.29.90.30.5out of date

Security Vulnerabilities

smallvec: Buffer overflow in SmallVec::insert_many

RUSTSEC-2021-0003

A bug in the SmallVec::insert_many method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap.

This bug was only triggered if the iterator passed to insert_many yielded more items than the lower bound returned from its size_hint method.

The flaw was corrected in smallvec 0.6.14 and 1.6.1, by ensuring that additional space is always reserved for each item inserted. The fix also simplified the implementation of insert_many to use less unsafe code, so it is easier to verify its correctness.

Thank you to Yechan Bae (@Qwaz) and the Rust group at Georgia Tech’s SSLab for finding and reporting this bug.