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 librepages

Dependencies

(29 total, 11 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-web^4.0.14.5.1up to date
 actix-http^3.0.43.6.0up to date
 actix-identity^0.4.00.7.1out of date
 actix-rt^22.9.0up to date
 sqlx^0.6.10.7.4out of date
 clap^3.2.204.5.4out of date
 config^0.130.14.0out of date
 git2^0.14.20.18.3out of date
 serde^11.0.198up to date
 serde_json^11.0.116up to date
 pretty_env_logger^0.40.5.0out of date
 lazy_static^1.41.4.0up to date
 url^2.22.5.0up to date
 urlencoding^2.1.02.1.3up to date
 derive_more^0.990.99.17up to date
 num_cpus^1.131.16.0up to date
 tokio ⚠️^11.37.0maybe insecure
 num_enum^0.5.70.7.2out of date
 mime_guess^2.0.42.0.4up to date
 mime^0.3.160.3.17up to date
 rust-embed^6.3.08.3.0out of date
 rand^0.8.50.8.5up to date
 tracing^0.1.370.1.40up to date
 tracing-actix-web^0.6.20.7.10out of date
 toml^0.5.90.8.12out of date
 serde_yaml^0.9.140.9.34+deprecatedup to date
 uuid^1.2.21.8.0up to date
 reqwest^0.11.130.12.4out of date
 tera^1.15.01.19.1up to date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 futures^0.3.240.3.30up to date
 mktemp^0.4.10.5.1out 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);