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 ironpress

Dependencies

(18 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 html5ever^0.380.39.0out of date
 lightningcss^1.0.0-alpha.71N/Aup to date
 image^0.250.25.10up to date
 png^0.180.18.1up to date
 pulldown-cmark^0.130.13.4up to date
 markup5ever_rcdom^0.380.39.0+unofficialout of date
 fontdb^0.230.23.0up to date
 flate2^11.1.9up to date
 resvg^0.470.47.0up to date
 rustybuzz^0.200.20.1up to date
 subsetter^0.2.30.2.6up to date
 thiserror^22.0.18up to date
 tokio ⚠️^11.52.3maybe insecure
 ureq^33.3.0up to date
 wasm-bindgen^0.20.2.125up to date
 js-sys^0.30.3.102up to date
 getrandom^0.30.4.2out of date
 unicode-bidi^0.3.180.3.18up to date

Dev dependencies

(4 total, 1 possibly insecure)

CrateRequiredLatestStatus
 tokio ⚠️^11.52.3maybe insecure
 proptest^11.11.0up to date
 criterion^0.80.8.2up to date
 serde_json^11.0.150up to date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);