Adding sha_crypt library as a dependency

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

cargo add sha-crypt

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

sha-crypt = "0.6.0-rc.4"

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

Back to the crate overview.