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 fantoch

Dependencies

(19 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.7.60.8.12out of date
 bincode^1.3.32.0.1out of date
 bytes^1.1.01.10.1up to date
 color-eyre^0.6.10.6.5up to date
 dashmap^5.1.06.1.0out of date
 flate2^1.0.221.1.2up to date
 futures^0.3.210.3.31up to date
 hashbrown^0.12.00.15.4out of date
 parking_lot^0.12.00.12.4up to date
 num_cpus^1.13.11.17.0up to date
 rand^0.8.50.9.2out of date
 serde^1.0.1361.0.219up to date
 threshold^0.9.10.9.1up to date
 tokio ⚠️^1.17.01.47.0maybe insecure
 tokio-util^0.7.00.7.15up to date
 tracing^0.1.310.1.41up to date
 tracing-appender^0.2.10.2.3up to date
 tracing-subscriber^0.3.90.3.19up to date
 zipf^7.0.07.0.2up to date

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 quickcheck^1.0.31.0.3up to date
 quickcheck_macros^1.0.01.1.0up to date

Crate fantoch_ps

Dependencies

(14 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.7.60.8.12out of date
 clap^3.1.54.5.42out of date
 color-eyre^0.6.10.6.5up to date
 futures^0.3.210.3.31up to date
 rand^0.8.50.9.2out of date
 rayon^1.5.11.10.0up to date
 serde^1.0.1361.0.219up to date
 threshold^0.9.10.9.1up to date
 tokio ⚠️^1.17.01.47.0maybe insecure
 tracing^0.1.310.1.41up to date
 tracing-appender^0.2.10.2.3up to date
 parking_lot^0.12.00.12.4up to date
 num_cpus^1.13.11.17.0up to date
 jemallocator^0.3.20.5.4out of date

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 permutator^0.4.30.4.3up to date
 quickcheck^1.0.31.0.3up to date
 quickcheck_macros^1.0.01.1.0up to date

Crate fantoch_bote

Dependencies

(4 total, 1 outdated)

CrateRequiredLatestStatus
 bincode^1.3.32.0.1out of date
 permutator^0.4.30.4.3up to date
 rayon^1.5.11.10.0up to date
 serde^1.0.1361.0.219up to date

Crate fantoch_exp

Dependencies

(15 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bincode^1.3.32.0.1out of date
 color-eyre^0.6.10.6.5up to date
 indicatif^0.16.20.18.0out of date
 flate2^1.0.221.1.2up to date
 futures^0.3.210.3.31up to date
 rusoto_core^0.46.00.48.0out of date
 rusoto_credential^0.46.00.48.0out of date
 rusoto_ec2^0.46.00.48.0out of date
 serde^1.0.1361.0.219up to date
 serde_json^1.0.791.0.141up to date
 tracing^0.1.310.1.41up to date
 tracing-futures^0.2.50.2.5up to date
 tracing-subscriber^0.3.90.3.19up to date
 tokio ⚠️^1.17.01.47.0maybe insecure
 tsunami^0.11.10.11.1up to date

Crate fantoch_plot

Dependencies

(5 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 pyo3 ⚠️^0.16.00.25.1out of date
 color-eyre^0.6.10.6.5up to date
 csv^1.1.61.3.1up to date
 rayon^1.5.11.10.0up to date
 serde^1.0.1361.0.219up 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);

pyo3: Risk of buffer overflow in `PyString::from_object`

RUSTSEC-2025-0020

PyString::from_object took &str arguments and forwarded them directly to the Python C API without checking for terminating nul bytes. This could lead the Python interpreter to read beyond the end of the &str data and potentially leak contents of the out-of-bounds read (by raising a Python exception containing a copy of the data including the overflow).

In PyO3 0.24.1 this function will now allocate a CString to guarantee a terminating nul bytes. PyO3 0.25 will likely offer an alternative API which takes &CStr arguments.