The tectonic_bridge_icu crate

This crate is part of the Tectonic project. It exposes the C API of the [ICU4C] Unicode library the Rust/Cargo build framework, with no Rust bindings.

There are a variety of other low-level ICU-related crates available, with rust_icu perhaps taking the most systematic approach. This package is distinctive because:

Ideally, though, one day this crate will be superseded by a true Rust “sys crate”.

If your project depends on this crate, Cargo will export for your build script an environment variable named DEP_ICUUC_INCLUDE, which will be the name of a directory containing the unicode headers.

You will need to ensure that your Rust code actually references this crate in order for the linker to include linked libraries. A use statement will suffice:

```rust

[allow(unused_imports)]

[allow(clippy::singlecomponentpath_imports)]

use tectonicbridgeicu; ```

Cargo features

At the moment this crate does not provide any Cargo features.