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 sentry

Dependencies

(23 total, 15 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 curl^0.4.250.4.47up to date
 http-client^6.5.36.5.3up to date
 httpdate^1.0.01.0.3up to date
 isahc^0.9.141.7.2out of date
 log^0.4.80.4.27up to date
 native-tls^0.2.80.2.14up to date
 reqwest^0.110.12.15out of date
 rustls ⚠️^0.20.60.23.27out of date
 sentry-anyhow^0.29.30.37.0out of date
 sentry-backtrace^0.29.30.37.0out of date
 sentry-contexts^0.29.30.37.0out of date
 sentry-core^0.29.30.37.0out of date
 sentry-debug-images^0.29.30.37.0out of date
 sentry-log^0.29.30.37.0out of date
 sentry-panic^0.29.30.37.0out of date
 sentry-slog^0.29.30.37.0out of date
 sentry-tower^0.29.30.37.0out of date
 sentry-tracing^0.29.30.37.0out of date
 serde_json^1.0.481.0.140up to date
 surf^2.0.02.3.2up to date
 tokio ⚠️^1.01.45.0maybe insecure
 ureq^2.3.03.0.11out of date
 webpki-roots^0.22.51.0.0out of date

Dev dependencies

(9 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-web^44.10.2up to date
 anyhow^1.0.301.0.98up to date
 log^0.4.80.4.27up to date
 pretty_env_logger^0.4.00.5.0out of date
 slog^2.5.22.7.0up to date
 tokio ⚠️^1.01.45.0maybe insecure
 tower^0.40.5.2out of date
 tracing^0.10.1.41up to date
 tracing-subscriber^0.30.3.19up 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);

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and are affected.