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 manic

Dependencies

(8 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 indicatif^0.16.20.17.8out of date
 reqwest^0.11.40.12.2out of date
 sha2^0.9.80.10.8out of date
 thiserror^1.0.291.0.58up to date
 tokio ⚠️^1.12.01.37.0maybe insecure
 tracing^0.1.280.1.40up to date
 tracing-futures^0.2.50.2.5up to date
 url^2.2.22.5.0up to date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 log^0.4.140.4.21up to date
 pretty_env_logger^0.4.00.5.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);