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 deno_cache_dir

Dependencies

(25 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.1.730.1.85up to date
 base32=0.5.10.5.1up to date
 base64^0.21.70.22.1out of date
 boxed_error^0.2.30.2.3up to date
 cache_control^0.2.00.2.0up to date
 chrono ⚠️^0.40.4.39maybe insecure
 console_error_panic_hook^0.1.60.1.7up to date
 data-url^0.3.00.3.1up to date
 deno_error^0.5.20.5.5up to date
 deno_media_type^0.2.20.2.3up to date
 deno_path_util^0.3.00.3.0up to date
 http^11.2.0up to date
 indexmap^2.0.02.7.0up to date
 js-sys=0.3.680.3.77out of date
 log^0.4.190.4.25up to date
 once_cell^1.18.01.20.2up to date
 parking_lot^0.12.10.12.3up to date
 serde^1.0.1831.0.217up to date
 serde-wasm-bindgen^0.6.50.6.5up to date
 serde_json^1.0.1041.0.135up to date
 sha2^0.10.00.10.8up to date
 sys_traits^0.1.00.1.7up to date
 thiserror^1.0.442.0.11out of date
 url^2.5.12.5.4up to date
 wasm-bindgen=0.2.910.2.100out of date

Dev dependencies

(4 total, 1 possibly insecure)

CrateRequiredLatestStatus
 pretty_assertions^1.4.01.4.1up to date
 sys_traits^0.1.00.1.7up to date
 tempfile^3.7.13.15.0up to date
 tokio ⚠️^11.43.0maybe insecure

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