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 libosu

Dependencies

(25 total, 8 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bitflags^1.3.22.5.0out of date
 lazy_static^1.4.01.4.0up to date
 num^0.4.00.4.2up to date
 num-derive^0.3.30.4.2out of date
 num-traits^0.2.150.2.18up to date
 ordered-float^3.0.04.2.0out of date
 regex^1.6.01.10.4up to date
 thiserror^1.0.311.0.59up to date
 derive_more^0.99.170.99.17up to date
 log^0.4.170.4.21up to date
 byteorder^1.4.31.5.0up to date
 static_assertions^1.1.01.1.0up to date
 futures^0.3.210.3.30up to date
 http^0.2.81.1.0out of date
 hyper^0.14.201.3.1out of date
 tokio ⚠️^1.17.01.37.0maybe insecure
 xz2^0.1.60.1.7up to date
 lzma-rs^0.20.3.0out of date
 serde^1.0.1361.0.198up to date
 serde_json^1.0.791.0.116up to date
 reqwest^0.11.100.12.4out of date
 anyhow^1.0.561.0.82up to date
 chrono ⚠️^0.4.190.4.38maybe insecure
 url^2.2.22.5.0up to date
 rosu-pp^0.8.01.0.0out of date

Dev dependencies

(5 total, 1 outdated)

CrateRequiredLatestStatus
 serde_json^1.0.821.0.116up to date
 difference^2.0.02.0.0up to date
 anyhow^1.0.581.0.82up to date
 proptest^1.0.01.4.0up to date
 proptest-derive^0.3.00.4.0out of 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);