Adding blake3 library as a dependency

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

cargo add blake3

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

blake3 = "1.8.6"

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

Back to the crate overview.