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 dump_syms

Dependencies

(23 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.100up to date
 bitflags^22.9.4up to date
 cab^0.60.6.0up to date
 clap^44.5.48up to date
 crossbeam^0.80.8.4up to date
 dirs^66.0.0up to date
 futures^0.30.3.31up to date
 goblin^0.80.10.2out of date
 hashbrown ⚠️^0.150.16.0out of date
 log^0.40.4.28up to date
 lzma-rs^0.3.00.3.0up to date
 num_cpus^1.131.17.0up to date
 once_cell^1.151.21.3up to date
 regex^1.61.12.1up to date
 reqwest^0.120.12.23up to date
 serde^1.01.0.228up to date
 serde_json^1.01.0.145up to date
 sha2^0.100.10.9up to date
 simplelog^0.120.12.2up to date
 symbolic^1212.16.3up to date
 tokio ⚠️^1.231.47.1maybe insecure
 url^2.22.5.7up to date
 uuid^11.18.1up to date

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 fxhash^0.20.2.1up to date
 reqwest^0.120.12.23up to date
 tempfile^33.23.0up 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);

hashbrown: Borsh serialization of HashMap is non-canonical

RUSTSEC-2024-0402

The borsh serialization of the HashMap did not follow the borsh specification. It potentially produced non-canonical encodings dependent on insertion order. It also did not perform canonicty checks on decoding.

This can result in consensus splits and cause equivalent objects to be considered distinct.

This was patched in 0.15.1.