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 polars-utils

Dependencies

(18 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 ahash>=0.8.50.8.11up to date
 bytemuck^1.111.22.0up to date
 bytes^1.71.10.1up to date
 compact_str^0.8.00.9.0out of date
 hashbrown ⚠️^0.15.00.15.2maybe insecure
 indexmap^22.8.0up to date
 libc^0.20.2.171up to date
 memmap2^0.90.9.5up to date
 num-traits^0.20.2.19up to date
 once_cell^11.21.3up to date
 polars-error^0.45.10.46.0out of date
 pyo3 ⚠️^0.220.24.1out of date
 rand^0.80.9.0out of date
 raw-cpuid^1111.5.0up to date
 rayon^1.91.10.0up to date
 serde^1.0.1881.0.219up to date
 stacker^0.10.1.20up to date
 sysinfo^0.320.34.1out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 rand^0.80.9.0out of date

Security Vulnerabilities

hashbrown: Borsh serialization of HashMap is non-canonical

RUSTSEC-2024-0402

The borsh serialization of the HashMap did not follow the borsh specification. It potentially produced non-canonical encodings dependent on insertion order. It also did not perform canonicty checks on decoding.

This can result in consensus splits and cause equivalent objects to be considered distinct.

This was patched in 0.15.1.

pyo3: Risk of buffer overflow in `PyString::from_object`

RUSTSEC-2025-0020

PyString::from_object took &str arguments and forwarded them directly to the Python C API without checking for terminating nul bytes. This could lead the Python interpreter to read beyond the end of the &str data and potentially leak contents of the out-of-bounds read (by raising a Python exception containing a copy of the data including the overflow).

In PyO3 0.24.1 this function will now allocate a CString to guarantee a terminating nul bytes. PyO3 0.25 will likely offer an alternative API which takes &CStr arguments.