Lines Matching full:unicode
35 default = ["std", "perf", "unicode", "regex-syntax/default"]
67 # UNICODE DATA FEATURES
69 # Enables all Unicode features. This expands if new Unicode features are added.
70 unicode = [
71 "unicode-age",
72 "unicode-bool",
73 "unicode-case",
74 "unicode-gencat",
75 "unicode-perl",
76 "unicode-script",
77 "unicode-segment",
78 "regex-syntax/unicode",
81 unicode-age = ["regex-syntax/unicode-age"]
83 unicode-bool = ["regex-syntax/unicode-bool"]
84 # Enables Unicode-aware case insensitive matching, e.g., `(?i)β`.
85 unicode-case = ["regex-syntax/unicode-case"]
86 # Enables Unicode general categories, e.g., `\p{Letter}` or `\pL`.
87 unicode-gencat = ["regex-syntax/unicode-gencat"]
88 # Enables Unicode-aware Perl classes corresponding to `\w`, `\s` and `\d`.
89 unicode-perl = ["regex-syntax/unicode-perl"]
90 # Enables Unicode scripts and script extensions, e.g., `\p{Greek}`.
91 unicode-script = ["regex-syntax/unicode-script"]
92 # Enables Unicode segmentation properties, e.g., `\p{gcb=Extend}`.
93 unicode-segment = ["regex-syntax/unicode-segment"]
150 # Run the test suite on the NFA algorithm over Unicode codepoints.
165 # Run the test suite on the backtracking engine over Unicode codepoints.