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 re_viewer_context

Dependencies

(54 total, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.80.8.12up to date
 anyhow^1.01.0.100up to date
 arrow^55.256.2.0out of date
 bit-vec^0.80.8.0up to date
 bitflags^2.42.9.4up to date
 bytemuck^1.181.24.0up to date
 crossbeam^0.80.8.4up to date
 datafusion^4750.1.0out of date
 egui^0.32.30.33.0out of date
 egui-wgpu^0.32.30.33.0out of date
 egui_tiles^0.130.13.0up to date
 emath^0.32.30.33.0out of date
 glam^0.30.30.30.8up to date
 half^2.3.12.7.0up to date
 home=0.5.90.5.11out of date
 image^0.250.25.8up to date
 itertools^0.140.14.0up to date
 linked-hash-map^0.50.5.6up to date
 macaw^0.30.00.30.0up to date
 ndarray^0.160.16.1up to date
 nohash-hasher^0.20.2.0up to date
 parking_lot^0.12.30.12.5up to date
 re_arrow_ui^0.25.10.25.1up to date
 re_arrow_util^0.25.10.25.1up to date
 re_byte_size^0.25.10.25.1up to date
 re_chunk^0.25.10.25.1up to date
 re_chunk_store^0.25.10.25.1up to date
 re_data_source^0.25.10.25.1up to date
 re_entity_db^0.25.10.25.1up to date
 re_format^0.25.10.25.1up to date
 re_global_context^0.25.10.25.1up to date
 re_log^0.25.10.25.1up to date
 re_log_encoding^0.25.10.25.1up to date
 re_log_types^0.25.10.25.1up to date
 re_query^0.25.10.25.1up to date
 re_renderer^0.25.10.25.1up to date
 re_smart_channel^0.25.10.25.1up to date
 re_string_interner^0.25.10.25.1up to date
 re_tracing^0.25.10.25.1up to date
 re_types^0.25.10.25.1up to date
 re_types_core^0.25.10.25.1up to date
 re_ui^0.25.10.25.1up to date
 re_uri^0.25.10.25.1up to date
 re_video^0.25.10.25.1up to date
 serde^11.0.228up to date
 slotmap^1.0.61.0.7up to date
 smallvec ⚠️^1.01.15.1maybe insecure
 static_assertions^1.11.1.0up to date
 thiserror^1.02.0.17out of date
 tokio^1.44.21.47.1up to date
 vec1^1.81.12.1up to date
 wasm-bindgen-futures^0.4.500.4.54up to date
 web-sys^0.30.3.81up to date
 wgpu^25.027.0.1out 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.