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 tauri

Dependencies

(46 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.86up to date
 bytes^11.6.1up to date
 cocoa^0.250.25.0up to date
 data-url^0.30.3.1up to date
 dirs-next^2.02.0.0up to date
 dunce^11.0.4up to date
 embed_plist^1.21.2.2up to date
 futures-util^0.30.3.30up to date
 getrandom^0.20.2.15up to date
 glob^0.30.3.1up to date
 gtk^0.180.18.1up to date
 heck^0.50.5.0up to date
 http^1.11.1.0up to date
 http-range^0.1.50.1.5up to date
 image^0.240.25.2out of date
 jni^0.210.21.1up to date
 libc^0.20.2.155up to date
 log^0.40.4.22up to date
 mime^0.30.3.17up to date
 muda^0.13.40.13.5up to date
 objc^0.20.2.7up to date
 percent-encoding^2.32.3.1up to date
 raw-window-handle^0.60.6.2up to date
 reqwest^0.120.12.5up to date
 serde^1.01.0.204up to date
 serde_json^1.01.0.120up to date
 serde_repr^0.10.1.19up to date
 serialize-to-javascript=0.1.10.1.1up to date
 specta^2.0.0-rc.91.0.5up to date
 state^0.60.6.0up to date
 swift-rs^1.0.61.0.6up to date
 tauri-macros^2.0.0-beta.171.4.5up to date
 tauri-runtime^2.0.0-beta.180.14.4up to date
 tauri-runtime-wry^2.0.0-beta.180.14.9up to date
 tauri-utils^2.0.0-beta.171.6.0up to date
 thiserror^1.01.0.63up to date
 tokio ⚠️^11.39.1maybe insecure
 tracing^0.10.1.40up to date
 tray-icon^0.140.14.3up to date
 url^22.5.2up to date
 urlpattern^0.20.2.0up to date
 uuid^11.10.0up to date
 webkit2gtk=2.0.12.0.1up to date
 webview2-com^0.300.32.0out of date
 window-vibrancy^0.50.5.0up to date
 windows^0.560.58.0out of date

Dev dependencies

(8 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 cargo_toml^0.170.20.4out of date
 http-range^0.1.50.1.5up to date
 proptest^1.4.01.5.0up to date
 quickcheck^1.0.31.0.3up to date
 quickcheck_macros^1.0.01.0.0up to date
 serde^1.01.0.204up to date
 serde_json^1.01.0.120up to date
 tokio ⚠️^11.39.1maybe insecure

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);