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 thirtyfour

Dependencies

(20 total, 1 possibly insecure)

CrateRequiredLatestStatus
 arc-swap^11.7.1up to date
 async-trait^0.1.830.1.89up to date
 base64^0.220.22.1up to date
 bytes^1.7.21.10.1up to date
 cfg-if^1.0.01.0.4up to date
 const_format^0.2.330.2.35up to date
 futures-util^0.3.310.3.31up to date
 http^11.3.1up to date
 indexmap^22.12.0up to date
 paste^11.0.15up to date
 reqwest^0.12.80.12.24up to date
 serde^1.0.2101.0.228up to date
 serde_json^1.0.1321.0.145up to date
 serde_repr^0.1.190.1.20up to date
 stringmatch^0.40.4.0up to date
 thirtyfour-macros^0.2.00.2.0up to date
 thiserror^2.0.122.0.17up to date
 tokio ⚠️^11.48.0maybe insecure
 tracing^0.10.1.41up to date
 url^2.5.22.5.7up to date

Dev dependencies

(8 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 assert_matches^1.51.5.0up to date
 axum^0.70.8.6out of date
 color-eyre^0.60.6.5up to date
 rstest^0.25.00.26.1out of date
 serial_test^3.2.03.2.0up to date
 tokio ⚠️^11.48.0maybe insecure
 tower-http^0.60.6.6up to date
 tracing-subscriber^0.30.3.20up 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);