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 sqlx-core

Dependencies

(51 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-io^1.9.02.3.4out of date
 async-std^1.121.13.0up to date
 atoi^2.02.0.0up to date
 bigdecimal^0.4.00.4.5up to date
 bit-vec^0.6.30.8.0out of date
 bstr^1.01.10.0up to date
 byteorder^1.4.31.5.0up to date
 bytes^1.1.01.7.2up to date
 chrono^0.4.340.4.38up to date
 crc^33.2.1up to date
 crossbeam-queue^0.3.20.3.11up to date
 digest^0.10.00.10.7up to date
 either^1.6.11.13.0up to date
 encoding_rs^0.8.300.8.34up to date
 event-listener^5.2.05.3.1up to date
 futures-channel^0.3.190.3.31up to date
 futures-core^0.3.190.3.31up to date
 futures-intrusive^0.5.00.5.0up to date
 futures-io^0.3.240.3.31up to date
 futures-util^0.3.190.3.31up to date
 hashbrown^0.14.50.15.0out of date
 hashlink^0.9.00.9.1up to date
 hex^0.4.30.4.3up to date
 indexmap^2.02.6.0up to date
 ipnetwork^0.20.00.20.0up to date
 log^0.4.180.4.22up to date
 mac_address^1.1.51.1.7up to date
 memchr^2.4.12.7.4up to date
 native-tls^0.2.100.2.12up to date
 num-bigint^0.4.00.4.6up to date
 once_cell^1.9.01.20.2up to date
 paste^1.0.61.0.15up to date
 percent-encoding^2.1.02.3.1up to date
 regex^1.5.51.11.0up to date
 rust_decimal^1.26.11.36.0up to date
 rustls^0.23.110.23.15up to date
 rustls-pemfile^22.2.0up to date
 serde^1.0.1321.0.210up to date
 serde_json^1.0.731.0.129up to date
 sha1^0.10.10.10.6up to date
 sha2^0.10.00.10.8up to date
 smallvec^1.7.01.13.2up to date
 sqlformat^0.2.00.3.0out of date
 thiserror^1.0.301.0.64up to date
 time^0.3.360.3.36up to date
 tokio ⚠️^11.40.0maybe insecure
 tokio-stream^0.1.80.1.16up to date
 tracing^0.1.370.1.40up to date
 url^2.2.22.5.2up to date
 uuid^1.1.21.11.0up to date
 webpki-roots^0.260.26.6up to date

Dev dependencies

(2 total, 1 possibly insecure)

CrateRequiredLatestStatus
 sqlx=0.8.20.8.2up to date
 tokio ⚠️^11.40.0maybe 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);