Adding percent_encoding library as a dependency

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

cargo add percent-encoding

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

percent-encoding = "2.3.1"

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

Back to the crate overview.