This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate herbie-lint

Dependencies

(6 total, 4 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 clippy~0.00.0.302up to date
 itertools^0.4.80.13.0out of date
 rusqlite ⚠️^0.6.00.31.0out of date
 rustc-serialize ⚠️^0.3.180.3.25insecure
 toml^0.1.270.8.13out of date
 wait-timeout^0.1.20.2.0out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 compiletest_rs^0.1.00.10.2out of date

Security Vulnerabilities

rusqlite: Various memory safety issues

RUSTSEC-2020-0014

Several memory safety issues have been uncovered in an audit of rusqlite.

See https://github.com/rusqlite/rusqlite/releases/tag/0.23.0 for a complete list.

rustc-serialize: Stack overflow in rustc_serialize when parsing deeply nested JSON

RUSTSEC-2022-0004

When parsing JSON using json::Json::from_str, there is no limit to the depth of the stack, therefore deeply nested objects can cause a stack overflow, which aborts the process.

Example code that triggers the vulnerability is

fn main() {
    let _ = rustc_serialize::json::Json::from_str(&"[0,[".repeat(10000));
}

serde is recommended as a replacement to rustc_serialize.