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 crusty

Dependencies

(30 total, 18 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 tokio ⚠️^1.141.37.0maybe insecure
 itertools~0.10.10.12.1out of date
 strum^0.230.26.2out of date
 anyhow~1.0.401.0.82up to date
 futures~0.3.140.3.30up to date
 tracing~0.1.250.1.40up to date
 tracing-subscriber~0.3.00.3.18up to date
 tracing-futures~0.2.50.2.5up to date
 config~0.11.00.14.0out of date
 ipnetwork~0.18.00.20.0out of date
 crusty-core^0.820.82.0up to date
 tracing-tools~0.5.00.6.0out of date
 clickhouse~0.9.10.11.6out of date
 redis~0.21.00.25.3out of date
 serde_json^1.01.0.116up to date
 serde~1.0.1251.0.198up to date
 http~0.2.31.1.0out of date
 cache_2q~0.10.10.10.1up to date
 crc32fast~1.2.11.4.0out of date
 bytes~1.1.01.6.0out of date
 backoff~0.3.00.4.0out of date
 num_cpus~1.13.01.16.0out of date
 url~2.2.12.5.0out of date
 once_cell~1.8.01.19.0out of date
 fdlimit~0.2.10.3.0out of date
 humanize-rs~0.10.1.5up to date
 relabuf~0.16.00.16.0up to date
 base64~0.13.00.22.0out of date
 html5ever~0.25.10.27.0out of date
 lol_html~0.3.01.2.1out of date

Build dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 vergen~58.3.1out of date
 anyhow~1.0.401.0.82up to date

Crate interop

Dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 serde~1.0.1251.0.198up to date

Crate redis-utils

Dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 redis-module~0.24.02.0.7out of date

Crate redis-queue

Dependencies

(6 total, 2 outdated)

CrateRequiredLatestStatus
 anyhow~1.0.401.0.82up to date
 thiserror~1.0.241.0.58up to date
 serde~1.0.1251.0.198up to date
 serde_json^1.01.0.116up to date
 redis-module~0.24.02.0.7out of date
 validator~0.14.00.18.1out of date

Crate redis-calc

Dependencies

(7 total, 3 outdated)

CrateRequiredLatestStatus
 anyhow~1.0.401.0.82up to date
 thiserror~1.0.241.0.58up to date
 serde~1.0.1251.0.198up to date
 serde_json^1.01.0.116up to date
 redis-module~0.24.02.0.7out of date
 validator~0.14.00.18.1out of date
 itertools~0.10.10.12.1out of 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);