Adding icu library as a dependency

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

cargo add icu

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

icu = "2.3.0"

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

Back to the crate overview.