Adding data_encoding library as a dependency
Run this command in a terminal, in your project's directory:
cargo add data-encoding
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
data-encoding = "2.10.0"
The data_encoding library will be automatically available globally.
Read the data_encoding library documentation.
Back to the crate overview.