llm-config-devtools is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing llm-dependency-scan llm-security-scan executables

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install llm-config-devtools

It will make llm-dependency-scan llm-security-scan commands available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall llm-config-devtools uninstalls.

Adding llm_config_devtools library as a dependency

Run this command in a terminal, in your project's directory:

cargo add llm-config-devtools

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

llm-config-devtools = "0.5.0"

The llm_config_devtools library will be automatically available globally. Read the llm_config_devtools library documentation.

Back to the crate overview.