Skip to main content

ucd_general_category_ranges/
lib.rs

1//! `ucd_general_category_ranges`
2//!
3//! Ranges of codepoints generated from the Unicode Character Database.
4
5pub mod categories;
6
7pub use categories::GeneralCategory;
8#[cfg(feature = "py-regex")]
9pub use categories::py::PyCategory;
10
11include!(concat!(env!("OUT_DIR"), "/ranges.rs"));