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, 14 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.1.430.1.88up to date
 axum-core^0.2.90.5.2out of date
 axum-macros^0.2.30.5.0out of date
 base64^0.130.22.1out of date
 bitflags^1.02.9.1out of date
 bytes^1.01.10.1up to date
 futures-util^0.30.3.31up to date
 headers^0.3.70.4.1out of date
 http^0.2.51.3.1out of date
 http-body^0.4.41.0.1out of date
 hyper^0.14.141.6.0out of date
 itoa^1.0.11.0.15up to date
 matchit^0.5.00.8.6out of date
 memchr^2.4.12.7.5up to date
 mime^0.3.160.3.17up to date
 multer^2.0.03.1.0out of date
 percent-encoding^2.12.3.1up to date
 pin-project-lite^0.2.70.2.16up to date
 serde^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 serde_urlencoded^0.70.7.1up to date
 sha-1^0.100.10.1up to date
 sync_wrapper^0.1.11.0.2out of date
 tokio ⚠️^11.46.1maybe insecure
 tokio-tungstenite^0.17.20.27.0out of date
 tower^0.4.130.5.2out of date
 tower-http^0.3.00.6.6out of date
 tower-layer^0.30.3.3up to date
 tower-service^0.30.3.3up to date

Dev dependencies

(13 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.98up to date
 futures^0.30.3.31up to date
 quickcheck^1.01.0.3up to date
 quickcheck_macros^1.01.1.0up to date
 reqwest^0.11.110.12.22out of date
 serde^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 tokio ⚠️^1.6.11.46.1maybe insecure
 tokio-stream^0.10.1.17up to date
 tower^0.4.100.5.2out of date
 tower-http^0.3.40.6.6out of date
 tracing^0.10.1.41up to date
 uuid^1.01.17.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);