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 git_function_history

Dependencies

(7 total, all up-to-date)

CrateRequiredLatestStatus
 chrono^0.4.380.4.38up to date
 rayon^1.10.01.10.0up to date
 cfg-if^1.0.01.0.0up to date
 cached^0.53.10.53.1up to date
 gix^0.66.00.66.0up to date
 gix-features^0.38.20.38.2up to date
 log^0.4.220.4.22up to date

Crate cargo-function-history

Dependencies

(7 total, 1 possibly insecure)

CrateRequiredLatestStatus
 ratatui^0.28.00.28.1up to date
 crossterm^0.28.10.28.1up to date
 eyre ⚠️^0.6.110.6.12maybe insecure
 dirs^5.0.15.0.1up to date
 simple_file_logger^0.4.10.4.1up to date
 log^0.4.200.4.22up to date
 tui-textarea^0.6.10.6.1up to date

Crate git-function-history-gui

Dependencies

(6 total, 1 outdated)

CrateRequiredLatestStatus
 eframe^0.28.10.29.1out of date
 egui_extras*0.29.1up to date
 simple_file_logger^0.4.10.4.1up to date
 log^0.4.220.4.22up to date
 image^0.25.20.25.4up to date
 itertools^0.13.00.13.0up to date

Crate function_history_backend_thread

Dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 log^0.4.200.4.22up to date

Crate git_function_history-proc-macro

Dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 syn^2.0.482.0.79up to date
 quote^1.0.351.0.37up to date
 proc-macro2^1.0.761.0.88up to date

Crate function-grep

Dependencies

(11 total, 1 outdated)

CrateRequiredLatestStatus
 tree-sitter>=0.23.00.24.3up to date
 tree-sitter-c^0.23.00.23.1up to date
 tree-sitter-java^0.23.20.23.2up to date
 tree-sitter-ocaml^0.23.00.23.1up to date
 tree-sitter-python^0.23.20.23.2up to date
 tree-sitter-ruby^0.23.00.23.0up to date
 tree-sitter-go^0.23.10.23.1up to date
 tree-sitter-c-sharp^0.23.00.23.0up to date
 tree-sitter-javascript^0.23.00.23.0up to date
 tree-sitter-rust^0.23.00.23.0up to date
 tree-sitter-tags^0.230.24.3out of date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 clap^4.5.164.5.20up 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.