Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

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 grex

Dependencies

(11 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 clap^4.5.14.5.34up to date
 itertools^0.12.10.14.0out of date
 lazy_static^1.4.01.5.0up to date
 ndarray^0.15.60.16.1out of date
 petgraph^0.6.40.7.1out of date
 pyo3 ⚠️^0.20.30.24.1out of date
 regex^1.10.31.11.1up to date
 unic-char-range^0.9.00.9.0up to date
 unic-ucd-category^0.9.00.9.0up to date
 unicode-segmentation^1.11.01.12.0up to date
 wasm-bindgen^0.2.920.2.100up to date

Dev dependencies

(8 total, 1 outdated)

CrateRequiredLatestStatus
 assert_cmd^2.0.142.0.16up to date
 criterion^0.5.10.5.1up to date
 indoc^2.0.42.0.6up to date
 predicates^3.1.03.1.3up to date
 proptest^1.4.01.6.0up to date
 rstest^0.18.20.25.0out of date
 tempfile^3.10.13.19.1up to date
 wasm-bindgen-test^0.3.420.3.50up 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.