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