3 unstable releases

0.2.1 Feb 5, 2024
0.2.0 Jun 4, 2021
0.1.0 Jan 16, 2021

#1594 in Text processing

Download history 132/week @ 2023-12-21 91/week @ 2023-12-28 142/week @ 2024-01-04 170/week @ 2024-01-11 132/week @ 2024-01-18 208/week @ 2024-01-25 204/week @ 2024-02-01 227/week @ 2024-02-08 269/week @ 2024-02-15 225/week @ 2024-02-22 230/week @ 2024-02-29 213/week @ 2024-03-07 171/week @ 2024-03-14 257/week @ 2024-03-21 265/week @ 2024-03-28 237/week @ 2024-04-04

960 downloads per month
Used in 19 crates (via tectonic_xetex_layout)

MIT license

7KB

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:

  • It uses Tectonic’s dependency-finding framework, which supports both pkg-config and vcpkg.
  • It ensures the ICU C API is exposed to Cargo.
  • Because it does not need to provide Rust bindings, it avoids a good deal of grief relating to bindgen, symbol versioning, etc.

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_PATH, which will be a semicolon-separated list of C include directories enabling your code to include 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:

#[allow(unused_imports)]
#[allow(clippy::single_component_path_imports)]
use tectonic_bridge_icu;

Cargo features

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

Dependencies

~26KB