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-io

Dependencies

(42 total, 12 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 ahash>=0.8.50.8.11up to date
 polars-arrow^0.45.10.46.0out of date
 async-trait^0.1.590.1.88up to date
 atoi_simd^0.160.16.0up to date
 blake3^1.5.11.8.0up to date
 bytes^1.71.10.1up to date
 chrono^0.4.310.4.40up to date
 chrono-tz^0.100.10.3up to date
 fast-float2^0.2.20.2.3up to date
 flate2^11.1.0up to date
 fs4^0.120.13.1out of date
 futures^0.3.250.3.31up to date
 glob^0.30.3.2up to date
 hashbrown ⚠️^0.15.00.15.2maybe insecure
 home^0.5.40.5.11up to date
 itoa^1.0.61.0.15up to date
 memchr^2.62.7.4up to date
 memmap2^0.90.9.5up to date
 num-traits^0.20.2.19up to date
 object_store^0.110.12.0out of date
 once_cell^11.21.3up to date
 percent-encoding^2.32.3.1up to date
 polars-core^0.45.10.46.0out of date
 polars-error^0.45.10.46.0out of date
 polars-json^0.45.10.46.0out of date
 polars-parquet^0.45.10.46.0out of date
 polars-schema^0.45.10.46.0out of date
 polars-time^0.45.10.46.0out of date
 polars-utils^0.45.10.46.0out of date
 pyo3 ⚠️^0.220.24.1out of date
 rayon^1.91.10.0up to date
 regex^1.91.11.1up to date
 reqwest^0.120.12.15up to date
 ryu^1.0.131.0.20up to date
 serde^1.0.1881.0.219up to date
 serde_json^11.0.140up to date
 simd-json^0.140.15.0out of date
 simdutf8^0.1.40.1.5up to date
 tokio^1.261.44.1up to date
 tokio-util^0.7.80.7.14up to date
 url^2.42.5.4up to date
 zstd^0.130.13.3up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 tempfile^33.19.1up to 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.