diff options
Diffstat (limited to 'vendor/ucd-parse/src/lib.rs')
-rw-r--r-- | vendor/ucd-parse/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/ucd-parse/src/lib.rs b/vendor/ucd-parse/src/lib.rs index f6654658a..f53963200 100644 --- a/vendor/ucd-parse/src/lib.rs +++ b/vendor/ucd-parse/src/lib.rs @@ -16,6 +16,7 @@ pub use crate::arabic_shaping::ArabicShaping; pub use crate::bidi_mirroring_glyph::BidiMirroring; pub use crate::case_folding::{CaseFold, CaseStatus}; pub use crate::core_properties::CoreProperty; +pub use crate::east_asian_width::EastAsianWidth; pub use crate::emoji_properties::EmojiProperty; pub use crate::grapheme_cluster_break::{ GraphemeClusterBreak, GraphemeClusterBreakTest, @@ -42,6 +43,8 @@ macro_rules! err { } } +pub mod extracted; + mod common; mod error; @@ -50,6 +53,7 @@ mod arabic_shaping; mod bidi_mirroring_glyph; mod case_folding; mod core_properties; +mod east_asian_width; mod emoji_properties; mod grapheme_cluster_break; mod jamo_short_name; |