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 datafusion-common

Dependencies

(18 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.80.8.11up to date
 apache-avro^0.170.17.0up to date
 arrow^54.2.154.3.1up to date
 arrow-ipc^54.2.054.3.1up to date
 base64^0.22.10.22.1up to date
 half^2.2.12.5.0up to date
 hashbrown^0.14.50.15.2out of date
 indexmap^2.7.12.8.0up to date
 libc^0.2.1700.2.171up to date
 log^0.40.4.27up to date
 object_store^0.11.00.12.0out of date
 parquet^54.2.154.3.1up to date
 paste^1.0.151.0.15up to date
 pyo3 ⚠️^0.23.30.24.1out of date
 recursive^0.1.10.1.1up to date
 sqlparser^0.54.00.55.0out of date
 tokio^1.431.44.1up to date
 web-time^1.1.01.1.0up to date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 chrono^0.4.380.4.40up to date
 rand^0.8.50.9.0out of date

Security Vulnerabilities

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.