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 toxicblend

Dependencies

(15 total, 9 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.7.20.8.11out of date
 boostvoronoi^0.8.10.11.1out of date
 building-blocks^0.6.00.7.1out of date
 centerline^0.3.00.11.0out of date
 cgmath^0.18.00.18.0up to date
 fnv^1.0.71.0.7up to date
 itertools^0.10.00.12.1out of date
 linestring^0.3.00.13.0out of date
 prost^0.7.00.12.4out of date
 rayon^1.5.01.10.0up to date
 smallvec^1.6.11.13.2up to date
 thiserror^1.0.241.0.58up to date
 tokio ⚠️^1.4.01.37.0maybe insecure
 tonic^0.4.20.11.0out of date
 yabf^0.1.00.3.0out of 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);