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 sccache

Dependencies

(66 total, 12 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.93up to date
 ar^0.90.9.0up to date
 async-trait^0.10.1.83up to date
 base64^0.210.22.1out of date
 bincode^11.3.3up to date
 blake3^11.5.4up to date
 byteorder^1.51.5.0up to date
 bytes^11.8.0up to date
 chrono ⚠️^0.40.4.38maybe insecure
 clap^4.4.184.5.21up to date
 directories^5.0.15.0.1up to date
 encoding_rs^0.80.8.35up to date
 env_logger^0.100.11.5out of date
 filetime^0.20.2.25up to date
 flate2^1.01.0.35up to date
 fs-err^2.113.0.0out of date
 futures^0.30.3.31up to date
 gzp^0.11.30.11.3up to date
 http^1.01.1.0up to date
 http-body-util^0.10.1.2up to date
 hyper^1.11.5.0up to date
 hyper-util^0.1.30.1.10up to date
 is-terminal^0.4.120.4.13up to date
 itertools^0.120.13.0out of date
 jobserver^0.10.1.32up to date
 jsonwebtoken^99.3.0up to date
 libc^0.2.1530.2.162up to date
 linked-hash-map^0.50.5.6up to date
 log^0.40.4.22up to date
 memchr^22.7.4up to date
 mime^0.30.3.17up to date
 num_cpus^1.161.16.0up to date
 number_prefix^0.40.4.0up to date
 once_cell^1.191.20.2up to date
 opendal^0.50.10.50.2up to date
 openssl ⚠️^0.10.640.10.68maybe insecure
 rand^0.8.40.8.5up to date
 regex^1.10.31.11.1up to date
 reqsign^0.16.00.16.1up to date
 reqwest^0.120.12.9up to date
 retry^22.0.0up to date
 semver^1.01.0.23up to date
 serde^1.01.0.215up to date
 serde_json^1.01.0.132up to date
 sha2^0.10.80.10.8up to date
 strip-ansi-escapes^0.20.2.0up to date
 tar^0.4.400.4.43up to date
 tempfile^33.14.0up to date
 tokio ⚠️^11.41.1maybe insecure
 tokio-serde^0.80.9.0out of date
 tokio-util^0.70.7.12up to date
 toml^0.80.8.19up to date
 tower^0.40.5.1out of date
 url^22.5.3up to date
 uuid^1.91.11.0up to date
 walkdir^22.5.0up to date
 which^67.0.0out of date
 zip^0.62.2.0out of date
 zstd^0.130.13.2up to date
 memmap2^0.9.40.9.5up to date
 nix^0.28.00.29.0out of date
 object^0.320.36.5out of date
 rouille^3.63.6.2up to date
 shlex^1.3.01.3.0up to date
 syslog^67.0.0out of date
 version-compare^0.1.10.2.0out of date

Dev dependencies

(10 total, 2 outdated)

CrateRequiredLatestStatus
 assert_cmd^2.0.132.0.16up to date
 cc^1.01.2.1up to date
 chrono^0.4.330.4.38up to date
 filetime^0.20.2.25up to date
 itertools^0.120.13.0out of date
 predicates=3.1.03.1.2out of date
 serial_test^3.13.2.0up to date
 temp-env^0.3.60.3.6up to date
 test-case^3.3.13.3.1up to date
 thirtyfour_sync^0.270.27.1up to date

Security Vulnerabilities

chrono: Potential segfault in `localtime_r` invocations

RUSTSEC-2020-0159

Impact

Unix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.

Workarounds

No workarounds are known.

References

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

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.