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 ascom-alpaca

Dependencies

(33 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-fn-stream^0.2.00.2.2up to date
 async-trait^0.1.770.1.80up to date
 axum^0.7.40.7.5up to date
 bytemuck^1.14.01.16.0up to date
 bytes^1.5.01.6.0up to date
 custom_debug^0.5.10.6.1out of date
 default-net^0.21.00.22.0out of date
 eyre ⚠️^0.6.110.6.12maybe insecure
 futures^0.3.300.3.30up to date
 http^1.0.01.1.0up to date
 indexmap^2.1.02.2.6up to date
 macro_rules_attribute^0.2.00.2.0up to date
 mediatype^0.19.170.19.18up to date
 mime^0.3.170.3.17up to date
 ndarray^0.15.60.15.6up to date
 net-literals^0.2.00.2.0up to date
 num_enum^0.7.20.7.2up to date
 once_cell^1.19.01.19.0up to date
 rand^0.8.50.8.5up to date
 reqwest^0.11.230.12.4out of date
 sailfish^0.8.30.8.3up to date
 serde^1.0.1951.0.202up to date
 serde-ndim^1.1.01.1.0up to date
 serde_json^1.0.1111.0.117up to date
 serde_plain^1.0.21.0.2up to date
 serde_repr^0.1.180.1.19up to date
 socket2^0.5.50.5.7up to date
 thiserror^1.0.561.0.61up to date
 time^0.3.310.3.36up to date
 tokio^1.35.11.37.0up to date
 tracing^0.1.400.1.40up to date
 tracing-futures^0.2.50.2.5up to date
 windows-sys^0.52.00.52.0up to date

Dev dependencies

(13 total, 1 outdated)

CrateRequiredLatestStatus
 bayer^0.1.50.1.5up to date
 color-eyre^0.6.20.6.3up to date
 criterion^0.5.10.5.1up to date
 ctor^0.2.60.2.8up to date
 eframe^0.25.00.27.2out of date
 ndarray^0.15.60.15.6up to date
 nokhwa^0.10.40.10.4up to date
 parking_lot^0.12.10.12.2up to date
 serial_test^3.0.03.1.1up to date
 time^0.3.310.3.36up to date
 tracing-error^0.2.00.2.0up to date
 tracing-forest^0.1.60.1.6up to date
 tracing-subscriber^0.3.180.3.18up to date

Security Vulnerabilities

eyre: Parts of Report are dropped as the wrong type during downcast

RUSTSEC-2024-0021

In affected versions, after a Report is constructed using wrap_err or wrap_err_with to attach a message of type D onto an error of type E, then using downcast to recover ownership of either the value of type D or the value of type E, one of two things can go wrong:

  • If downcasting to E, there remains a value of type D to be dropped. It is incorrectly "dropped" by running E's drop behavior, rather than D's. For example if D is &str and E is std::io::Error, there would be a call of std::io::Error::drop in which the reference received by the Drop impl does not refer to a valid value of type std::io::Error, but instead to &str.

  • If downcasting to D, there remains a value of type E to be dropped. When D and E do not happen to be the same size, E's drop behavior is incorrectly executed in the wrong location. The reference received by the Drop impl may point left or right of the real E value that is meant to be getting dropped.

In both cases, when the Report contains an error E that has nontrivial drop behavior, the most likely outcome is memory corruption.

When the Report contains an error E that has trivial drop behavior (for example a Utf8Error) but where D has nontrivial drop behavior (such as String), the most likely outcome is that downcasting to E would leak D.