Thanks to visit codestin.com
Credit goes to lib.rs

Adding aya_build library as a dependency

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

cargo add --build aya-build

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

cargo add aya-build

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

aya-build = "0.1.3"

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

Back to the crate overview.