Adding autotools library as a dependency

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

cargo add --build autotools

to add autotools as a build-time dependency. To add it as a run-time dependency, run:

cargo add autotools

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

autotools = "0.2.7"

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

Back to the crate overview.