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 awc

Dependencies

(28 total, 4 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 actix-codec^0.50.5.2up to date
 actix-http^3.73.9.0up to date
 actix-rt^2.12.10.0up to date
 actix-service^22.0.2up to date
 actix-tls^3.43.4.0up to date
 actix-utils^33.0.1up to date
 base64^0.220.22.1up to date
 bytes^11.7.1up to date
 cfg-if^11.0.0up to date
 cookie^0.160.18.1out of date
 derive_more^0.99.51.0.0out of date
 futures-core^0.3.170.3.30up to date
 futures-util^0.3.170.3.30up to date
 h2^0.3.260.4.6out of date
 http^0.2.71.1.0out of date
 itoa^11.0.11up to date
 log^0.40.4.22up to date
 mime^0.30.3.17up to date
 percent-encoding^2.12.3.1up to date
 pin-project-lite^0.20.2.14up to date
 rand^0.80.8.5up to date
 serde^1.01.0.210up to date
 serde_json^1.01.0.128up to date
 serde_urlencoded^0.70.7.1up to date
 openssl ⚠️^0.10.550.10.66maybe insecure
 rustls ⚠️^0.230.23.13maybe insecure
 tokio^1.24.21.40.0up to date
 trust-dns-resolver^0.230.23.2up to date

Dev dependencies

(18 total, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-http^3.73.9.0up to date
 actix-http-test^33.2.0up to date
 actix-server^22.5.0up to date
 actix-test^0.10.1.5up to date
 actix-tls^3.43.4.0up to date
 actix-utils^33.0.1up to date
 actix-web^44.9.0up to date
 brotli^66.0.0up to date
 const-str^0.50.5.7up to date
 env_logger^0.110.11.5up to date
 flate2^1.0.131.0.33up to date
 futures-util^0.3.170.3.30up to date
 rcgen^0.130.13.1up to date
 rustls-pemfile^22.1.3up to date
 static_assertions^1.11.1.0up to date
 rustls ⚠️^0.230.23.13maybe insecure
 tokio^1.24.21.40.0up to date
 zstd^0.130.13.2up to date

Security Vulnerabilities

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.

openssl: `MemBio::get_buf` has undefined behavior with empty buffers

RUSTSEC-2024-0357

Previously, MemBio::get_buf called slice::from_raw_parts with a null-pointer, which violates the functions invariants, leading to undefined behavior. In debug builds this would produce an assertion failure. This is now fixed.