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 eyre

Dependencies

(3 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 indenter^0.3.00.3.3up to date
 once_cell^1.18.01.21.3up to date
 pyo3 ⚠️^0.200.24.2out of date

Dev dependencies

(8 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.281.0.98up to date
 backtrace^0.3.460.3.75up to date
 futures^0.30.3.31up to date
 pyo3 ⚠️^0.200.24.2out of date
 rustversion^1.01.0.20up to date
 syn^2.02.0.101up to date
 thiserror^1.02.0.12out of date
 trybuild^1.0.191.0.105up to 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.