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 pulsar

Dependencies

(34 total, 12 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-native-tls^0.4.00.5.0out of date
 async-std^1.12.01.13.1up to date
 async-trait^0.1.580.1.88up to date
 asynchronous-codec^0.6.00.7.0out of date
 bit-vec^0.6.30.8.0out of date
 bytes^1.2.11.10.1up to date
 chrono^0.4.220.4.41up to date
 crc^3.0.03.3.0up to date
 data-url^0.2.00.3.1out of date
 flate2^1.0.241.1.2up to date
 futures^0.3.250.3.31up to date
 futures-io^0.3.250.3.31up to date
 futures-timer^3.0.23.0.3up to date
 log^0.4.170.4.27up to date
 lz4^1.24.01.28.1up to date
 native-tls^0.2.100.2.14up to date
 nom^7.1.18.0.0out of date
 oauth2^4.2.35.0.0out of date
 openidconnect^2.4.04.0.1out of date
 pem^1.1.03.0.5out of date
 prost^0.11.00.14.1out of date
 prost-derive^0.11.00.14.1out of date
 rand^0.8.50.9.2out of date
 regex^1.6.01.11.1up to date
 serde^1.0.1471.0.219up to date
 serde_json^1.0.871.0.142up to date
 snap^1.0.51.1.1up to date
 tokio ⚠️^1.21.21.47.1maybe insecure
 tokio-native-tls^0.3.00.3.1up to date
 tokio-util^0.7.40.7.15up to date
 tracing^0.1.370.1.41up to date
 url^2.3.12.5.4up to date
 uuid^1.2.11.17.0up to date
 zstd^0.11.20.13.3out of date

Dev dependencies

(4 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 env_logger^0.9.10.11.8out of date
 serde^1.0.1451.0.219up to date
 serde_json^1.0.851.0.142up to date
 tokio ⚠️^1.21.21.47.1maybe insecure

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