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 axum

Dependencies

(29 total, 13 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.1.430.1.80up to date
 axum-core^0.2.90.4.3out of date
 axum-macros^0.2.30.4.1out of date
 base64^0.130.22.1out of date
 bitflags^1.02.5.0out of date
 bytes^1.01.6.0up to date
 futures-util^0.30.3.30up to date
 headers^0.3.70.4.0out of date
 http^0.2.51.1.0out of date
 http-body^0.4.41.0.0out of date
 hyper^0.14.141.3.1out of date
 itoa^1.0.11.0.11up to date
 matchit^0.5.00.8.2out of date
 memchr^2.4.12.7.2up to date
 mime^0.3.160.3.17up to date
 multer^2.0.03.0.0out of date
 percent-encoding^2.12.3.1up to date
 pin-project-lite^0.2.70.2.14up to date
 serde^1.01.0.200up to date
 serde_json^1.01.0.116up to date
 serde_urlencoded^0.70.7.1up to date
 sha-1^0.100.10.1up to date
 sync_wrapper^0.1.11.0.1out of date
 tokio ⚠️^11.37.0maybe insecure
 tokio-tungstenite^0.17.20.21.0out of date
 tower^0.4.130.4.13up to date
 tower-http^0.3.00.5.2out of date
 tower-layer^0.30.3.2up to date
 tower-service^0.30.3.2up to date

Dev dependencies

(13 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.82up to date
 futures^0.30.3.30up to date
 quickcheck^1.01.0.3up to date
 quickcheck_macros^1.01.0.0up to date
 reqwest^0.11.110.12.4out of date
 serde^1.01.0.200up to date
 serde_json^1.01.0.116up to date
 tokio ⚠️^1.6.11.37.0maybe insecure
 tokio-stream^0.10.1.15up to date
 tower^0.4.100.4.13up to date
 tower-http^0.3.40.5.2out of date
 tracing^0.10.1.40up to date
 uuid^1.01.8.0up 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);