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 yew

Dependencies

(20 total, 6 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64ct^1.5.01.8.0up to date
 bincode^1.3.32.0.1out of date
 console_error_panic_hook^0.10.1.7up to date
 futures^0.30.3.31up to date
 gloo^0.80.11.0out of date
 html-escape^0.2.90.2.13up to date
 implicit-clone^0.30.6.0out of date
 indexmap^12.10.0out of date
 js-sys^0.30.3.77up to date
 prokio^0.1.00.1.0up to date
 rustversion^11.0.21up to date
 serde^11.0.219up to date
 slab^0.40.4.10up to date
 thiserror^1.02.0.12out of date
 tokio ⚠️^1.191.45.1maybe insecure
 tracing^0.1.360.1.41up to date
 wasm-bindgen^0.20.2.100up to date
 wasm-bindgen-futures^0.40.4.50up to date
 web-sys^0.3.590.3.77up to date
 yew-macro^0.20.00.21.0out of date

Dev dependencies

(6 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 gloo^0.80.11.0out of date
 tokio ⚠️^1.191.45.1maybe insecure
 trybuild^11.0.105up to date
 wasm-bindgen-futures^0.40.4.50up to date
 wasm-bindgen-test^0.30.3.50up to date
 web-sys^0.30.3.77up 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);