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

Dependencies

(21 total, 7 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bitflags^1.22.9.0out of date
 bytes^1.0.01.10.1up to date
 chrono ⚠️^0.4.190.4.40maybe insecure
 derive_more^0.99.92.0.1out of date
 either^1.6.11.15.0up to date
 futures^0.3.50.3.31up to date
 log^0.40.4.27up to date
 mime^0.3.160.3.17up to date
 never^0.1.00.1.0up to date
 once_cell^1.5.01.21.3up to date
 pin-project^1.0.31.1.10up to date
 reqwest^0.11.00.12.15out of date
 serde^1.0.1141.0.219up to date
 serde_json^1.0.551.0.140up to date
 serde_with_macros^1.4.13.12.0out of date
 thiserror^1.0.202.0.12out of date
 tokio ⚠️^1.8.01.44.2maybe insecure
 tokio-util^0.6.00.7.14out of date
 url^22.5.4up to date
 uuid^0.8.11.16.0out of date
 vecrem^0.10.1.0up to date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 pretty_env_logger^0.40.5.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);