ucd_data/
lib.rs

1include!(concat!(env!("OUT_DIR"), "/include"));
2
3/// Returns UCD properties in JSON
4pub fn get(char: char) -> &'static str {
5    UCD_DATA[char as usize]
6}