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

(47 total, 12 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.98up to date
 bytes^11.10.1up to date
 data-url^0.30.3.1up to date
 dirs^56.0.0out of date
 dunce^11.0.5up to date
 embed_plist^1.21.2.2up to date
 futures-util^0.30.3.31up to date
 getrandom^0.20.3.3out of date
 glob^0.30.3.2up to date
 gtk^0.180.18.2up to date
 heck^0.50.5.0up to date
 http^1.11.3.1up to date
 http-range^0.1.50.1.5up to date
 image^0.250.25.6up to date
 jni^0.210.21.1up to date
 libc^0.20.2.174up to date
 log^0.40.4.27up to date
 mime^0.30.3.17up to date
 muda^0.150.17.0out of date
 objc2^0.5.20.6.1out of date
 objc2-app-kit^0.2.20.3.1out of date
 objc2-foundation^0.2.20.3.1out of date
 percent-encoding^2.32.3.1up to date
 plist^11.7.2up to date
 raw-window-handle^0.60.6.2up to date
 reqwest^0.120.12.21up to date
 serde^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 serde_repr^0.10.1.20up to date
 serialize-to-javascript=0.1.10.1.2out of date
 specta^2.0.0-rc.161.0.5up to date
 swift-rs^1.0.71.0.7up to date
 tauri-macros^2.0.0-rc.122.3.1up to date
 tauri-runtime^2.0.0-rc.132.7.0up to date
 tauri-runtime-wry^2.0.0-rc.142.7.1up to date
 tauri-utils^2.0.0-rc.132.5.0up to date
 thiserror^1.02.0.12out of date
 tokio ⚠️^11.45.1maybe insecure
 tracing^0.10.1.41up to date
 tray-icon^0.190.21.0out of date
 url^22.5.4up to date
 urlpattern^0.30.3.0up to date
 uuid^11.17.0up to date
 webkit2gtk=2.0.12.0.1up to date
 webview2-com^0.330.38.0out of date
 window-vibrancy^0.50.6.0out of date
 windows^0.580.61.3out of date

Dev dependencies

(9 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 cargo_toml^0.170.22.1out of date
 http-range^0.1.50.1.5up to date
 objc2-web-kit^0.2.20.3.1out of date
 proptest^1.4.01.7.0up to date
 quickcheck^1.0.31.0.3up to date
 quickcheck_macros^1.0.01.1.0up to date
 serde^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 tokio ⚠️^11.45.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);