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 gremlin-client

Dependencies

(24 total, 6 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 serde^1.01.0.199up to date
 serde_json^1.01.0.116up to date
 serde_derive^1.01.0.199up to date
 r2d2^0.8.30.8.10up to date
 chrono ⚠️^0.40.4.38maybe insecure
 lazy_static^1.3.01.4.0up to date
 base64^0.21.40.22.1out of date
 native-tls^0.2.30.2.11up to date
 tungstenite^0.20.10.21.0out of date
 async-tungstenite^0.230.25.1out of date
 async-std^1.4.01.12.0up to date
 async-trait^0.1.100.1.80up to date
 async-tls^0.120.13.0out of date
 tokio-native-tls^0.3.00.3.1up to date
 tokio-stream^0.1.20.1.15up to date
 rustls ⚠️^0.200.23.5out of date
 webpki^0.22.20.22.4up to date
 thiserror^1.0.201.0.59up to date
 mobc^0.70.8.4out of date
 url^2.1.02.5.0up to date
 futures^0.3.10.3.30up to date
 pin-project-lite^0.20.2.14up to date
 tokio ⚠️^11.37.0maybe insecure
 uuid^1.1.21.8.0up to date

Crate gremlin-tutorial

No external dependencies! 🙌

Crate gremlin-derive

Dependencies

(3 total, 1 outdated)

CrateRequiredLatestStatus
 proc-macro2^1.0.91.0.81up to date
 syn^1.0.162.0.60out of date
 quote^1.0.21.0.36up to date

Crate gremlin-cli

Dependencies

(10 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 rustyline^6.2.014.0.0out of date
 smol^0.4.32.0.0out of date
 shellwords^1.1.01.1.0up to date
 futures^0.3.50.3.30up to date
 async-std^1.6.31.12.0up to date
 uuid^0.8.11.8.0out of date
 chrono ⚠️^0.4.150.4.38maybe insecure
 structopt^0.30.3.26up to date
 prettytable-rs^0.10.00.10.0up to date
 anyhow^1.0.321.0.82up to 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);

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and are affected.