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

CrateRequiredLatestStatus
 anyhow^1.01.0.87up to date
 bytes^11.7.1up to date
 cocoa^0.250.26.0out of date
 data-url^0.30.3.1up to date
 dirs-next^2.02.0.0up to date
 dunce^11.0.5up 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.158up to date
 log^0.40.4.22up to date
 mime^0.30.3.17up to date
 muda^0.13.40.14.1out of 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.7up to date
 serde^1.01.0.210up to date
 serde_json^1.01.0.128up to date
 serde_repr^0.10.1.19up to date
 serialize-to-javascript=0.1.10.1.2out of date
 specta^2.0.0-rc.91.0.5up to date
 state^0.60.6.0up to date
 swift-rs^1.0.61.0.7up to date
 tauri-macros^2.0.0-beta.171.4.6up to date
 tauri-runtime^2.0.0-beta.180.14.5up to date
 tauri-runtime-wry^2.0.0-beta.180.14.10up to date
 tauri-utils^2.0.0-beta.171.6.1up to date
 thiserror^1.01.0.63up to date
 tokio ⚠️^11.40.0maybe insecure
 tracing^0.10.1.40up to date
 tray-icon^0.140.17.0out of date
 url^22.5.2up to date
 urlpattern^0.20.3.0out of date
 uuid^11.10.0up to date
 webkit2gtk=2.0.12.0.1up to date
 webview2-com^0.300.33.0out of date
 window-vibrancy^0.50.5.1up 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.210up to date
 serde_json^1.01.0.128up to date
 tokio ⚠️^11.40.0maybe 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);