repo
stringclasses 1
value | created_at
stringlengths 20
20
| instance_id
stringlengths 20
21
| test_patch
stringlengths 560
7.45k
| hints_text
stringclasses 7
values | patch
stringlengths 911
342k
| issue_numbers
listlengths 1
2
| pull_number
int64 637
1.11k
| problem_statement
stringlengths 702
2.89k
| version
stringclasses 7
values | base_commit
stringlengths 40
40
| environment_setup_commit
stringclasses 7
values | FAIL_TO_PASS
listlengths 1
6
| PASS_TO_PASS
listlengths 63
1.98k
| FAIL_TO_FAIL
listlengths 0
0
| PASS_TO_FAIL
listlengths 0
0
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
rust-lang/regex
|
2023-10-16T14:23:23Z
|
rust-lang__regex-1111
|
diff --git a/testdata/regression.toml b/testdata/regression.toml
--- a/testdata/regression.toml
+++ b/testdata/regression.toml
@@ -813,3 +813,18 @@ name = "hir-optimization-out-of-order-class"
regex = '^[[:alnum:]./-]+$'
haystack = "a-b"
matches = [[0, 3]]
+
+# This is a regression test for an improper reverse suffix optimization. This
+# occurred when I "broadened" the applicability of the optimization to include
+# multiple possible literal suffixes instead of only sticking to a non-empty
+# longest common suffix. It turns out that, at least given how the reverse
+# suffix optimization works, we need to stick to the longest common suffix for
+# now.
+#
+# See: https://github.com/rust-lang/regex/issues/1110
+# See also: https://github.com/astral-sh/ruff/pull/7980
+[[test]]
+name = 'improper-reverse-suffix-optimization'
+regex = '(\\N\{[^}]+})|([{}])'
+haystack = 'hiya \N{snowman} bye'
+matches = [[[5, 16], [5, 16], []]]
|
diff --git a/regex-automata/src/meta/strategy.rs b/regex-automata/src/meta/strategy.rs
--- a/regex-automata/src/meta/strategy.rs
+++ b/regex-automata/src/meta/strategy.rs
@@ -1167,21 +1167,34 @@ impl ReverseSuffix {
return Err(core);
}
let kind = core.info.config().get_match_kind();
- let suffixseq = crate::util::prefilter::suffixes(kind, hirs);
- let Some(suffixes) = suffixseq.literals() else {
- debug!(
- "skipping reverse suffix optimization because \
- the extract suffix sequence is not finite",
- );
- return Err(core);
+ let suffixes = crate::util::prefilter::suffixes(kind, hirs);
+ let lcs = match suffixes.longest_common_suffix() {
+ None => {
+ debug!(
+ "skipping reverse suffix optimization because \
+ a longest common suffix could not be found",
+ );
+ return Err(core);
+ }
+ Some(lcs) if lcs.is_empty() => {
+ debug!(
+ "skipping reverse suffix optimization because \
+ the longest common suffix is the empty string",
+ );
+ return Err(core);
+ }
+ Some(lcs) => lcs,
};
- let Some(pre) = Prefilter::new(kind, suffixes) else {
- debug!(
- "skipping reverse suffix optimization because \
+ let pre = match Prefilter::new(kind, &[lcs]) {
+ Some(pre) => pre,
+ None => {
+ debug!(
+ "skipping reverse suffix optimization because \
a prefilter could not be constructed from the \
longest common suffix",
- );
- return Err(core);
+ );
+ return Err(core);
+ }
};
if !pre.is_fast() {
debug!(
diff --git a/regex-automata/src/meta/strategy.rs b/regex-automata/src/meta/strategy.rs
--- a/regex-automata/src/meta/strategy.rs
+++ b/regex-automata/src/meta/strategy.rs
@@ -1268,7 +1281,7 @@ impl ReverseSuffix {
e.try_search_half_rev_limited(&input, min_start)
} else if let Some(e) = self.core.hybrid.get(&input) {
trace!(
- "using lazy DFA for reverse inner search at {:?}, \
+ "using lazy DFA for reverse suffix search at {:?}, \
but will be stopped at {} to avoid quadratic behavior",
input.get_span(),
min_start,
|
[
"1110"
] | 1,111
|
broadening of reverse suffix optimization has led to incorrect matches
Specifically, this program succeeds in `regex 1.9.x` but fails in `regex 1.10.1`:
```rust
fn main() -> anyhow::Result<()> {
let re = regex::Regex::new(r"(\\N\{[^}]+})|([{}])").unwrap();
let hay = r#"hiya \N{snowman} bye"#;
let matches = re.find_iter(hay).map(|m| m.range()).collect::<Vec<_>>();
assert_eq!(matches, vec![5..16]);
Ok(())
}
```
Its output with `1.10.1`:
```
$ cargo run -q
thread 'main' panicked at main.rs:7:5:
assertion `left == right` failed
left: [7..8, 15..16]
right: [5..16]
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
I believe the issue here was my change to broaden the reverse suffix optimization to use one of many possible literals. But this turns out to be not be quite correct since the rules that govern prefixes don't apply to suffixes. In this case, the literal optimization extracts `{` and `}` as suffixes. It looks for a `{` first and finds a match at that position via the second alternate in the regex. But this winds up missing the match that came before it with the first alternate since the `{` isn't a suffix of the first alternate.
This is why we should, at least at present, only use this optimization when there is a non-empty longest common suffix. In that case, and only that case, we know that it is a suffix of every possible path through the regex.
Thank you to @charliermarsh for finding this! See: https://github.com/astral-sh/ruff/pull/7980
|
1.10
|
e7bd19dd3ebf4b1a861275f0353202bf93a39ab1
|
10fe722a3fcfdc17068b21f3262189cc52227bb5
|
[
"suite_string::default"
] |
[
"misc::capture_index_panic_name - should panic",
"fuzz::meta_stopat_specialize_start_states_min",
"fuzz::slow_big_empty_chain4",
"fuzz::slow_big_empty_chain6",
"regression::regression_invalid_repetition_expr",
"misc::capture_index_panic_usize - should panic",
"fuzz::fail_branch_prevents_match",
"misc::capture_index",
"fuzz::slow_big_empty_chain2",
"fuzz::minimum_len_overflow",
"fuzz::slow_big_empty_chain3",
"misc::capture_names",
"fuzz::meta_stopat_specialize_start_states",
"misc::regex_string",
"misc::capture_misc",
"regression::regression_bad_word_boundary",
"misc::unclosed_group_error",
"misc::capture_index_lifetime",
"fuzz::slow_big_empty_chain5",
"regression::regression_invalid_flags_expression",
"regression::regression_complete_literals_suffix_incorrect",
"regression::invalid_regexes_no_crash",
"fuzz::slow_big_empty_chain",
"misc::sub_capture_matches",
"regression::regression_captures_rep",
"regression::regression_nfa_stops1",
"misc::dfa_handles_pathological_case",
"regression::regression_many_repeat_stack_overflow",
"regression::regression_unicode_perl_not_enabled",
"regression::regression_big_regex_overflow",
"regression_fuzz::empty_any_errors_no_panic",
"replace::all",
"replace::plus",
"replace::single_empty_match",
"replace::first",
"replace::literal_dollar2",
"replace::named",
"replace::match_at_start_replace_with_empty",
"replace::simple_expand",
"replace::number_hyphen",
"replace::groups",
"replace::no_expand1",
"replace::literal_dollar1",
"replace::closure_returning_reference",
"replace::impl_cow_str_owned",
"replace::replacen_no_captures",
"replace::closure_returning_value",
"replace::impl_string_ref",
"replace::replacen_with_captures",
"replace::impl_cow_str_borrowed_ref",
"regression_fuzz::fail_branch_prevents_match",
"replace::impl_string",
"replace::no_expand2",
"replace::trim",
"replace::capture_longest_possible_name",
"replace::impl_cow_str_owned_ref",
"regression_fuzz::todo",
"replace::impl_cow_str_borrowed",
"suite_bytes::default",
"replace::double_dollar",
"suite_bytes_set::default",
"suite_string_set::default",
"regression_fuzz::big_regex_fails_to_compile"
] |
[] |
[] |
|
rust-lang/regex
|
2023-08-26T12:53:23Z
|
rust-lang__regex-1072
|
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -54,10 +54,14 @@ jobs:
os: ubuntu-latest
rust: stable
target: i686-unknown-linux-gnu
- - build: stable-mips
+ - build: stable-powerpc64
os: ubuntu-latest
rust: stable
- target: mips64-unknown-linux-gnuabi64
+ target: powerpc64-unknown-linux-gnu
+ - build: stable-s390x
+ os: ubuntu-latest
+ rust: stable
+ target: s390x-unknown-linux-gnu
- build: beta
os: ubuntu-latest
rust: beta
diff --git a/testdata/regression.toml b/testdata/regression.toml
--- a/testdata/regression.toml
+++ b/testdata/regression.toml
@@ -756,3 +756,29 @@ name = "reverse-inner-short"
regex = '(?:([0-9][0-9][0-9]):)?([0-9][0-9]):([0-9][0-9])'
haystack = '102:12:39'
matches = [[[0, 9], [0, 3], [4, 6], [7, 9]]]
+
+# This regression test was found via the RegexSet APIs. It triggered a
+# particular code path where a regex was compiled with 'All' match semantics
+# (to support overlapping search), but got funneled down into a standard
+# leftmost search when calling 'is_match'. This is fine on its own, but the
+# leftmost search will use a prefilter and that's where this went awry.
+#
+# Namely, since 'All' semantics were used, the aho-corasick prefilter was
+# incorrectly compiled with 'Standard' semantics. This was wrong because
+# 'Standard' immediately attempts to report a match at every position, even if
+# that would mean reporting a match past the leftmost match before reporting
+# the leftmost match. This breaks the prefilter contract of never having false
+# negatives and leads overall to the engine not finding a match.
+#
+# See: https://github.com/rust-lang/regex/issues/1070
+[[test]]
+name = "prefilter-with-aho-corasick-standard-semantics"
+regex = '(?m)^ *v [0-9]'
+haystack = 'v 0'
+matches = [
+ { id = 0, spans = [[0, 3]] },
+]
+match-kind = "all"
+search-kind = "overlapping"
+unicode = true
+utf8 = true
|
diff --git a/regex-automata/src/util/prefilter/aho_corasick.rs b/regex-automata/src/util/prefilter/aho_corasick.rs
--- a/regex-automata/src/util/prefilter/aho_corasick.rs
+++ b/regex-automata/src/util/prefilter/aho_corasick.rs
@@ -22,11 +22,20 @@ impl AhoCorasick {
}
#[cfg(feature = "perf-literal-multisubstring")]
{
+ // We used to use `aho_corasick::MatchKind::Standard` here when
+ // `kind` was `MatchKind::All`, but this is not correct. The
+ // "standard" Aho-Corasick match semantics are to report a match
+ // immediately as soon as it is seen, but `All` isn't like that.
+ // In particular, with "standard" semantics, given the needles
+ // "abc" and "b" and the haystack "abc," it would report a match
+ // at offset 1 before a match at offset 0. This is never what we
+ // want in the context of the regex engine, regardless of whether
+ // we have leftmost-first or 'all' semantics. Namely, we always
+ // want the leftmost match.
let ac_match_kind = match kind {
- MatchKind::LeftmostFirst => {
+ MatchKind::LeftmostFirst | MatchKind::All => {
aho_corasick::MatchKind::LeftmostFirst
}
- MatchKind::All => aho_corasick::MatchKind::Standard,
};
// This is kind of just an arbitrary number, but basically, if we
// have a small enough set of literals, then we try to use the VERY
diff --git a/regex-automata/src/util/prefilter/mod.rs b/regex-automata/src/util/prefilter/mod.rs
--- a/regex-automata/src/util/prefilter/mod.rs
+++ b/regex-automata/src/util/prefilter/mod.rs
@@ -195,15 +195,6 @@ impl Prefilter {
/// Some(Span::from(6..9)),
/// pre.find(hay.as_bytes(), Span::from(0..hay.len())),
/// );
- /// // Now we put 'samwise' back before 'sam', but change the match
- /// // semantics to 'All'. In this case, there is no preference
- /// // order semantics and the first match detected is returned.
- /// let pre = Prefilter::new(MatchKind::All, &["samwise", "sam"])
- /// .expect("a prefilter");
- /// assert_eq!(
- /// Some(Span::from(6..9)),
- /// pre.find(hay.as_bytes(), Span::from(0..hay.len())),
- /// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
diff --git a/regex-automata/src/util/prefilter/teddy.rs b/regex-automata/src/util/prefilter/teddy.rs
--- a/regex-automata/src/util/prefilter/teddy.rs
+++ b/regex-automata/src/util/prefilter/teddy.rs
@@ -50,12 +50,17 @@ impl Teddy {
// theory we could at least support leftmost-longest, as the
// aho-corasick crate does, but regex-automata doesn't know about
// leftmost-longest currently.
+ //
+ // And like the aho-corasick prefilter, if we're using `All`
+ // semantics, then we can still use leftmost semantics for a
+ // prefilter. (This might be a suspicious choice for the literal
+ // engine, which uses a prefilter as a regex engine directly, but
+ // that only happens when using leftmost-first semantics.)
let (packed_match_kind, ac_match_kind) = match kind {
- MatchKind::LeftmostFirst => (
+ MatchKind::LeftmostFirst | MatchKind::All => (
aho_corasick::packed::MatchKind::LeftmostFirst,
aho_corasick::MatchKind::LeftmostFirst,
),
- _ => return None,
};
let minimum_len =
needles.iter().map(|n| n.as_ref().len()).min().unwrap_or(0);
|
[
"1070"
] | 1,072
|
RegexSet and Regex give different results for the same pattern in 1.9
#### What version of regex are you using?
`1.9.3`. The issue is present in regex `1.9.0` and later.
#### Describe the bug at a high level.
`RegexSet::new([r"(?m)^ *v [0-9]"]).unwrap().is_match("v 0")` incorrectly returns false in version 1.9.0 and later.
It returns true in 1.8.4.
It returns true if I use a `Regex` instead of a `RegexSet`.
#### What are the steps to reproduce the behavior?
```rust
fn main() {
let pattern = r"(?m)^ *v [0-9]";
let text = "v 0";
let re = regex::Regex::new(pattern).unwrap();
println!("re is: {re:?}");
println!("{}", re.is_match(text)); // true (correct)
let rs = regex::RegexSet::new([pattern]).unwrap();
println!("rs is: {rs:?}");
println!("{}", rs.is_match(text)); // false (incorrect)
}
```
([playground link](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=eb964fd144925df0b5fd15e0d1d61279))
#### What is the actual behavior?
```
re is: Regex("(?m)^ *v [0-9]")
true
rs is: RegexSet(["(?m)^ *v [0-9]"])
false
```
#### What is the expected behavior?
The last line should be `true`.
|
1.9
|
7536e055840f74f1f7bda8ffecf851cb3e500147
|
17284451f10aa06c6c42e622e3529b98513901a8
|
[
"suite_string_set::default"
] |
[
"fuzz::fail_branch_prevents_match",
"fuzz::meta_stopat_specialize_start_states",
"fuzz::slow_big_empty_chain",
"fuzz::slow_big_empty_chain4",
"misc::capture_index_lifetime",
"fuzz::slow_big_empty_chain3",
"fuzz::slow_big_empty_chain2",
"fuzz::slow_big_empty_chain5",
"fuzz::meta_stopat_specialize_start_states_min",
"misc::capture_index",
"misc::capture_misc",
"fuzz::slow_big_empty_chain6",
"misc::capture_names",
"misc::regex_string",
"misc::sub_capture_matches",
"misc::capture_index_panic_name - should panic",
"misc::unclosed_group_error",
"misc::capture_index_panic_usize - should panic",
"regression::regression_bad_word_boundary",
"regression::invalid_regexes_no_crash",
"misc::dfa_handles_pathological_case",
"regression::regression_complete_literals_suffix_incorrect",
"regression::regression_captures_rep",
"regression::regression_invalid_repetition_expr",
"regression::regression_invalid_flags_expression",
"regression::regression_nfa_stops1",
"regression_fuzz::empty_any_errors_no_panic",
"regression_fuzz::fail_branch_prevents_match",
"replace::all",
"replace::impl_cow_str_borrowed_ref",
"replace::impl_cow_str_owned",
"replace::impl_cow_str_owned_ref",
"regression_fuzz::todo",
"replace::impl_string_ref",
"replace::replacen_no_captures",
"replace::literal_dollar2",
"replace::match_at_start_replace_with_empty",
"replace::single_empty_match",
"replace::trim",
"replace::first",
"replace::literal_dollar1",
"replace::impl_cow_str_borrowed",
"replace::double_dollar",
"replace::simple_expand",
"replace::closure_returning_value",
"replace::closure_returning_reference",
"replace::replacen_with_captures",
"replace::impl_string",
"replace::named",
"replace::plus",
"regression::regression_unicode_perl_not_enabled",
"replace::no_expand2",
"replace::capture_longest_possible_name",
"replace::number_hyphen",
"replace::groups",
"replace::no_expand1",
"suite_bytes_set::default",
"fuzz::minimum_len_overflow",
"regression::regression_big_regex_overflow",
"suite_bytes::default",
"regression::regression_many_repeat_stack_overflow",
"regression_fuzz::big_regex_fails_to_compile",
"suite_string::default"
] |
[] |
[] |
|
rust-lang/regex
|
2023-08-05T21:38:26Z
|
rust-lang__regex-1063
|
diff --git a/testdata/regression.toml b/testdata/regression.toml
--- a/testdata/regression.toml
+++ b/testdata/regression.toml
@@ -739,3 +739,20 @@ matches = [[0, 9]]
utf8 = false
match-kind = "all"
search-kind = "overlapping"
+
+# See: https://github.com/rust-lang/regex/issues/1060
+[[test]]
+name = "reverse-inner-plus-shorter-than-expected"
+regex = '(?:(\d+)[:.])?(\d{1,2})[:.](\d{2})'
+haystack = '102:12:39'
+matches = [[[0, 9], [0, 3], [4, 6], [7, 9]]]
+
+# Like reverse-inner-plus-shorter-than-expected, but using a far simpler regex
+# to demonstrate the extent of the rot. Sigh.
+#
+# See: https://github.com/rust-lang/regex/issues/1060
+[[test]]
+name = "reverse-inner-short"
+regex = '(?:([0-9][0-9][0-9]):)?([0-9][0-9]):([0-9][0-9])'
+haystack = '102:12:39'
+matches = [[[0, 9], [0, 3], [4, 6], [7, 9]]]
|
CLI reproduction:
```
$ regex-cli find match meta -p '(?:(\d+)[:.])?(\d{1,2})[:.](\d{2})' -y '888:77:66'
parse time: 27.056µs
translate time: 9.404µs
build meta time: 263.862µs
search time: 28.082µs
total matches: 1
0:1:9:88:77:66
```
The match should be `0:9` but `1:9` is reported.
This isn't really about `+` but about a literal optimization. The regex is conceptually broken into three pieces: `(?:(\d+)[:.])?(\d{1,2})`, `[:.]` and `(\d{2})`. The search looks for matches of the `[:.]` first, which is very quick by virtue of using SIMD acceleration. That first match occurs at `&haystack[3]`. Then it tries to run a reverse search for `(?:(\d+)[:.])?(\d{1,2})`. This is where things go wrong. It finds a reverse match at `&haystack[1]` because the `\d{1,2}` matches two digits and since the `(?:(\d+)[:.])?` is overall optional and the `[:.]` doesn't match at this point, the match is reported at offset `1`. Then a forward search is run from that point to find the real end of the match, which finds `9` because a match at `&haystack[1..9]` exists, but the correct leftmost match is `&haystack[0..9]`.
I'm going to need to think a little bit about how to fix this. It might be something about characterizing regexes that can't be used with the inner literal optimization. Which is unfortunate, but much better than removing the inner literal optimization altogether... Yikes.
|
diff --git a/regex-automata/src/meta/limited.rs b/regex-automata/src/meta/limited.rs
--- a/regex-automata/src/meta/limited.rs
+++ b/regex-automata/src/meta/limited.rs
@@ -88,7 +88,41 @@ pub(crate) fn dfa_try_search_half_rev(
return Err(RetryError::Quadratic(RetryQuadraticError::new()));
}
}
+ let was_dead = dfa.is_dead_state(sid);
dfa_eoi_rev(dfa, input, &mut sid, &mut mat)?;
+ // If we reach the beginning of the search and we could otherwise still
+ // potentially keep matching if there was more to match, then we actually
+ // return an error to indicate giving up on this optimization. Why? Because
+ // we can't prove that the real match begins at where we would report it.
+ //
+ // This only happens when all of the following are true:
+ //
+ // 1) We reach the starting point of our search span.
+ // 2) The match we found is before the starting point.
+ // 3) The FSM reports we could possibly find a longer match.
+ //
+ // We need (1) because otherwise the search stopped before the starting
+ // point and there is no possible way to find a more leftmost position.
+ //
+ // We need (2) because if the match found has an offset equal to the minimum
+ // possible offset, then there is no possible more leftmost match.
+ //
+ // We need (3) because if the FSM couldn't continue anyway (i.e., it's in
+ // a dead state), then we know we couldn't find anything more leftmost
+ // than what we have. (We have to check the state we were in prior to the
+ // EOI transition since the EOI transition will usually bring us to a dead
+ // state by virtue of it represents the end-of-input.)
+ if at == input.start()
+ && mat.map_or(false, |m| m.offset() > input.start())
+ && !was_dead
+ {
+ trace!(
+ "reached beginning of search at offset {} without hitting \
+ a dead state, quitting to avoid potential false positive match",
+ at,
+ );
+ return Err(RetryError::Quadratic(RetryQuadraticError::new()));
+ }
Ok(mat)
}
diff --git a/regex-automata/src/meta/limited.rs b/regex-automata/src/meta/limited.rs
--- a/regex-automata/src/meta/limited.rs
+++ b/regex-automata/src/meta/limited.rs
@@ -140,7 +174,20 @@ pub(crate) fn hybrid_try_search_half_rev(
return Err(RetryError::Quadratic(RetryQuadraticError::new()));
}
}
+ let was_dead = sid.is_dead();
hybrid_eoi_rev(dfa, cache, input, &mut sid, &mut mat)?;
+ // See the comments in the full DFA routine above for why we need this.
+ if at == input.start()
+ && mat.map_or(false, |m| m.offset() > input.start())
+ && !was_dead
+ {
+ trace!(
+ "reached beginning of search at offset {} without hitting \
+ a dead state, quitting to avoid potential false positive match",
+ at,
+ );
+ return Err(RetryError::Quadratic(RetryQuadraticError::new()));
+ }
Ok(mat)
}
|
[
"1060"
] | 1,063
|
reverse inner literal optimization results in incorrect match offsets in some cases
#### What version of regex are you using?
The bug is present in version 1.9.0 and 1.9.1.
1.8.4 was the last working version.
#### Describe the bug at a high level.
I am using the regex crate for parsing textual video durations and getting the duration in seconds.
After updating the regex crate to version 1.9.0, my regex fails to parse durations with more than 2 hour digits.
The + operator I use for matching an arbitrary amount of hour digits now only matches 1 or 2 digits.
#### What are the steps to reproduce the behavior?
Regex: `(?:(\d+)[:.])?(\d{1,2})[:.](\d{2})`
Here is my parsing function.
```rust
/// Parse textual video length (e.g. `0:49`, `2:02` or `1:48:18`)
/// and return the duration in seconds.
pub fn parse_video_length(text: &str) -> Option<u32> {
static VIDEO_LENGTH_REGEX: Lazy<Regex> =
Lazy::new(|| Regex::new(r#"(?:(\d+)[:.])?(\d{1,2})[:.](\d{2})"#).unwrap());
VIDEO_LENGTH_REGEX.captures(text).map(|cap| {
let hrs = cap
.get(1)
.and_then(|x| x.as_str().parse::<u32>().ok())
.unwrap_or_default();
let min = cap
.get(2)
.and_then(|x| x.as_str().parse::<u32>().ok())
.unwrap_or_default();
let sec = cap
.get(3)
.and_then(|x| x.as_str().parse::<u32>().ok())
.unwrap_or_default();
hrs * 3600 + min * 60 + sec
})
}
```
#### What is the actual behavior?
The hour group only matches the number 2, so the parsed duration is `2:12:39` or 7959 seconds
```rust
parse_video_length("102:12:39") == Some(7959)
```
#### What is the expected behavior?
```rust
parse_video_length("102:12:39") == Some(367959)
```
|
1.9
|
bbf0b38df618734b92d7b92acc8a8bf31b6d0046
|
17284451f10aa06c6c42e622e3529b98513901a8
|
[
"suite_string::default"
] |
[
"fuzz::fail_branch_prevents_match",
"fuzz::slow_big_empty_chain",
"fuzz::slow_big_empty_chain3",
"fuzz::meta_stopat_specialize_start_states",
"fuzz::slow_big_empty_chain4",
"misc::capture_index_lifetime",
"misc::capture_index",
"fuzz::slow_big_empty_chain6",
"fuzz::slow_big_empty_chain2",
"fuzz::meta_stopat_specialize_start_states_min",
"fuzz::slow_big_empty_chain5",
"misc::regex_string",
"misc::dfa_handles_pathological_case",
"misc::sub_capture_matches",
"misc::capture_index_panic_name - should panic",
"misc::capture_index_panic_usize - should panic",
"misc::unclosed_group_error",
"regression::invalid_regexes_no_crash",
"misc::capture_names",
"regression::regression_bad_word_boundary",
"regression::regression_complete_literals_suffix_incorrect",
"regression::regression_invalid_repetition_expr",
"regression::regression_captures_rep",
"regression::regression_invalid_flags_expression",
"misc::capture_misc",
"regression::regression_nfa_stops1",
"regression_fuzz::fail_branch_prevents_match",
"regression_fuzz::todo",
"replace::capture_longest_possible_name",
"replace::closure_returning_reference",
"replace::impl_cow_str_borrowed_ref",
"replace::impl_cow_str_owned",
"replace::impl_string",
"regression_fuzz::empty_any_errors_no_panic",
"replace::all",
"replace::match_at_start_replace_with_empty",
"replace::simple_expand",
"replace::number_hyphen",
"replace::impl_cow_str_owned_ref",
"replace::literal_dollar1",
"replace::literal_dollar2",
"replace::no_expand2",
"regression::regression_unicode_perl_not_enabled",
"replace::trim",
"replace::first",
"replace::impl_cow_str_borrowed",
"replace::replacen_with_captures",
"replace::closure_returning_value",
"replace::replacen_no_captures",
"replace::impl_string_ref",
"replace::plus",
"replace::single_empty_match",
"replace::double_dollar",
"replace::no_expand1",
"replace::named",
"replace::groups",
"suite_string_set::default",
"fuzz::minimum_len_overflow",
"regression::regression_big_regex_overflow",
"suite_bytes::default",
"suite_bytes_set::default",
"regression::regression_many_repeat_stack_overflow",
"regression_fuzz::big_regex_fails_to_compile"
] |
[] |
[] |
rust-lang/regex
|
2023-05-25T15:45:45Z
|
rust-lang__regex-1000
|
diff --git a/tests/regression.rs b/tests/regression.rs
--- a/tests/regression.rs
+++ b/tests/regression.rs
@@ -248,3 +248,16 @@ fn regression_big_regex_overflow() {
let re = regex_new!(pat);
assert!(re.is_err());
}
+
+#[test]
+fn regression_complete_literals_suffix_incorrect() {
+ let needles = vec![
+ "aA", "bA", "cA", "dA", "eA", "fA", "gA", "hA", "iA", "jA", "kA",
+ "lA", "mA", "nA", "oA", "pA", "qA", "rA", "sA", "tA", "uA", "vA",
+ "wA", "xA", "yA", "zA",
+ ];
+ let pattern = needles.join("|");
+ let re = regex!(&pattern);
+ let hay = "FUBAR";
+ assert_eq!(0, re.find_iter(text!(hay)).count());
+}
|
This was originally reported via ripgrep: https://github.com/rust-lang/regex/issues/999
|
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -1439,7 +1439,18 @@ impl ExecReadOnly {
// This case shouldn't happen. When the regex isn't
// anchored, then complete prefixes should imply complete
// suffixes.
- Some(MatchType::Literal(MatchLiteralType::Unanchored))
+ //
+ // The above is wrong! This case can happen. While
+ // complete prefixes should imply complete suffixes
+ // here, that doesn't necessarily mean we have a useful
+ // prefix matcher! It could be the case that the literal
+ // searcher decided the prefixes---even though they are
+ // "complete"---weren't good enough and thus created an
+ // empty matcher. If that happens and we return Unanchored
+ // here, then we'll end up using that matcher, which is
+ // very bad because it matches at every position. So...
+ // return None.
+ None
};
}
None
|
[
"999"
] | 1,000
|
regex with many literal alternates can erroneously match the empty string
This program panics:
```rust
fn main() {
let needles = vec![
"aA", "bA", "cA", "dA", "eA", "fA", "gA", "hA", "iA", "jA", "kA", "lA",
"mA", "nA", "oA", "pA", "qA", "rA", "sA", "tA", "uA", "vA", "wA", "xA",
"yA", "zA",
];
let pattern = needles.join("|");
let re = regex::Regex::new(&pattern).unwrap();
let hay = "FUBAR";
assert_eq!(0, re.find_iter(hay).count());
}
```
But it should run without panicking as the regex should not match anything in `FUBAR`.
This is another bug caused by the literal optimizer. This one is pretty hard to hit. All of the following need to be true:
* The literals extracted need to be "complete." That is, the language described by the regex is small and finite.
* There needs to be at least 26 distinct starting bytes among all of the elements in the language described by the regex.
* There needs to be fewer than 26 distinct ending bytes among all of the elements in the language described by the regex.
* Possibly other criteria...
This causes a weird code path in `src/exec.rs` that results in using an "empty" prefix literal matcher that matches at every position.
I'll plan to get a fix up for this soon, but this bug does not impact the rewrite. (Its literal infrastructure is far more principled than the hodge podge on `master`. We'll see if it lives up to my expectations though.)
|
1.8
|
d555d6122d1d1a354c45361d029571413beca8ef
|
d555d6122d1d1a354c45361d029571413beca8ef
|
[
"regression::regression_complete_literals_suffix_incorrect"
] |
[
"compile::tests::byte_classes",
"compile::tests::full_byte_classes",
"dfa::tests::prop_read_write_i32",
"dfa::tests::prop_read_write_u32",
"expand::tests::find_cap_ref1",
"exec::test::uppercut_s_backtracking_bytes_default_bytes_mismatch",
"exec::test::unicode_lit_star_backtracking_utf8bytes_default_utf8bytes_mismatch",
"expand::tests::find_cap_ref11",
"expand::tests::find_cap_ref10",
"expand::tests::find_cap_ref12",
"expand::tests::find_cap_ref13",
"expand::tests::find_cap_ref14",
"expand::tests::find_cap_ref15",
"expand::tests::find_cap_ref16",
"expand::tests::find_cap_ref17",
"expand::tests::find_cap_ref18",
"expand::tests::find_cap_ref19",
"expand::tests::find_cap_ref2",
"expand::tests::find_cap_ref20",
"expand::tests::find_cap_ref21",
"expand::tests::find_cap_ref22",
"expand::tests::find_cap_ref23",
"expand::tests::find_cap_ref24",
"expand::tests::find_cap_ref25",
"expand::tests::find_cap_ref26",
"expand::tests::find_cap_ref3",
"expand::tests::find_cap_ref4",
"expand::tests::find_cap_ref5",
"expand::tests::find_cap_ref6",
"expand::tests::find_cap_ref7",
"expand::tests::find_cap_ref8",
"expand::tests::find_cap_ref9",
"pool::tests::oibits",
"prog::test::test_size_of_inst",
"utf8::tests::prop_decode_last_matches_std",
"pool::tests::thread_owner_optimization",
"utf8::tests::prop_decode_matches_std",
"utf8::tests::prop_roundtrip",
"utf8::tests::prop_encode_matches_std",
"utf8::tests::reject_invalid",
"utf8::tests::prop_roundtrip_last",
"utf8::tests::reject_invalid_last",
"dfa::tests::prop_state_encode_decode",
"api::capture_index",
"api::capture_index_lifetime",
"api::capture_index_panic_usize - should panic",
"api::capture_index_panic_name - should panic",
"api::capture_names",
"api::capture_misc",
"api::empty_match_find_iter",
"api::empty_match_captures_iter",
"api::empty_regex_empty_match",
"api::expand10",
"api::empty_regex_nonempty_match",
"api::expand1",
"api::expand2",
"api::expand4",
"api::expand3",
"api::expand5",
"api::expand6",
"api::expand8",
"api::expand7",
"api::expand9",
"api::expand_name1",
"api::expand_name10",
"api::expand_name2",
"api::expand_name3",
"api::expand_name5",
"api::expand_name4",
"api::expand_name11",
"api::expand_name6",
"api::expand_name9",
"api::expand_name7",
"api::expand_name8",
"api::many_zero_length_match",
"api::first_range_starts_with_left_bracket",
"api::many_sequential_zero_length_match",
"api::splitn_below_limit",
"api_str::match_as_str",
"api::split3",
"api::regex_string",
"api::split_trailing_blank",
"crazy::greedy_many_optional",
"api::range_ends_with_escape",
"api::splitn_zero_limit",
"api::sub_capture_matches",
"api::split2",
"crazy::greedy_one_many_optional",
"api::splitn_at_limit",
"crazy::lazy_one_many_many",
"api::split_none",
"api::split_empty",
"api::split1",
"api::one_zero_length_match",
"crazy::greedy_one_many_many",
"api_str::empty_match_unicode_find_iter",
"api::splitn_empty",
"crazy::greedy_range_many",
"api::split_trailing_blanks",
"crazy::lazy_range_many",
"crazy::match_email",
"api::quoted_bracket_set",
"crazy::match_empty11",
"crazy::match_empty16",
"crazy::match_empty12",
"crazy::match_empty2",
"crazy::match_empty22",
"crazy::match_empty13",
"crazy::match_empty20",
"crazy::match_empty14",
"crazy::match_empty1",
"api::splitn_above_limit",
"crazy::lazy_many_many",
"crazy::lazy_range_min_many",
"api::splitn_trailing_blank",
"crazy::lazy_one_many_optional",
"crazy::match_email_not",
"crazy::match_empty7",
"crazy::ascii_literal",
"api::splitn_trailing_separator",
"crazy::match_empty21",
"api_str::empty_match_unicode_captures_iter",
"crazy::greedy_many_many",
"crazy::match_float2",
"crazy::lazy_many_optional",
"crazy::match_empty10",
"crazy::match_start_end_empty_many_1",
"crazy::greedy_range_min_many",
"crazy::match_empty15",
"crazy::match_empty18",
"crazy::match_empty23",
"crazy::match_empty17",
"crazy::match_empty3",
"crazy::match_email_big",
"crazy::match_ranges_not",
"crazy::match_date1",
"crazy::match_empty19",
"crazy::match_empty6",
"crazy::match_start_end_empty_rev",
"crazy::match_empty4",
"crazy::match_start_end_empty_many_2",
"crazy::match_start_end_empty_rep_rev",
"crazy::negclass_letters",
"crazy::negclass_space_comma",
"flags::match_flag_ungreedy_greedy",
"crazy::negclass_ascii",
"flags::match_flag_case_dotnl_toggle_ok",
"flags::match_flag_case_dotnl_toggle",
"crazy::match_float4",
"crazy::negclass_letter_comma",
"crazy::match_ranges",
"flags::match_flag_case_dotnl",
"flags::match_flag_ungreedy",
"fowler::match_basic_10",
"crazy::match_empty5",
"crazy::match_empty9",
"crazy::match_start_end_empty",
"flags::match_flag_case_dotnl_toggle_not",
"crazy::match_empty8",
"fowler::match_basic_102",
"fowler::match_basic_105",
"crazy::match_float3",
"crazy::match_float1",
"crazy::negclass_letter_space",
"flags::match_flag_weird_case_not",
"crazy::match_start_end_empty_rep",
"fowler::match_basic_113",
"crazy::negclass_space",
"crazy::negclass_comma",
"crazy::negclass_comma_space",
"flags::match_flag_case",
"fowler::match_basic_115",
"fowler::match_basic_116",
"flags::match_flag_multi",
"fowler::match_basic_110",
"fowler::match_basic_114",
"fowler::match_basic_123",
"crazy::match_date3",
"crazy::match_date2",
"fowler::match_basic_106",
"fowler::match_basic_121",
"fowler::match_basic_125",
"fowler::match_basic_100",
"fowler::match_basic_129",
"fowler::match_basic_104",
"fowler::match_basic_101",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_126",
"fowler::match_basic_111",
"fowler::match_basic_103",
"fowler::match_basic_131",
"fowler::match_basic_107",
"fowler::match_basic_122",
"fowler::match_basic_112",
"flags::match_flag_weird_case",
"fowler::match_basic_138",
"fowler::match_basic_134",
"fowler::match_basic_137",
"fowler::match_basic_141",
"fowler::match_basic_118",
"fowler::match_basic_109",
"fowler::match_basic_12",
"fowler::match_basic_119",
"fowler::match_basic_147",
"fowler::match_basic_108",
"fowler::match_basic_117",
"fowler::match_basic_120",
"fowler::match_basic_158",
"fowler::match_basic_133",
"fowler::match_basic_124",
"fowler::match_basic_128",
"fowler::match_basic_16",
"fowler::match_basic_160",
"fowler::match_basic_148",
"fowler::match_basic_140",
"fowler::match_basic_157",
"fowler::match_basic_162",
"fowler::match_basic_155",
"fowler::match_basic_149",
"fowler::match_basic_165",
"fowler::match_basic_150",
"fowler::match_basic_132",
"fowler::match_basic_161",
"fowler::match_basic_135",
"fowler::match_basic_139",
"fowler::match_basic_145",
"fowler::match_basic_15",
"fowler::match_basic_153",
"fowler::match_basic_18",
"fowler::match_basic_146",
"fowler::match_basic_144",
"fowler::match_basic_159",
"fowler::match_basic_17",
"fowler::match_basic_142",
"fowler::match_basic_151",
"fowler::match_basic_154",
"fowler::match_basic_166",
"fowler::match_basic_156",
"fowler::match_basic_170",
"fowler::match_basic_152",
"fowler::match_basic_178",
"fowler::match_basic_173",
"fowler::match_basic_169",
"fowler::match_basic_172",
"fowler::match_basic_180",
"fowler::match_basic_168",
"fowler::match_basic_164",
"fowler::match_basic_167",
"fowler::match_basic_181",
"fowler::match_basic_188",
"fowler::match_basic_175",
"fowler::match_basic_163",
"fowler::match_basic_19",
"fowler::match_basic_197",
"fowler::match_basic_193",
"fowler::match_basic_194",
"fowler::match_basic_186",
"fowler::match_basic_191",
"fowler::match_basic_199",
"fowler::match_basic_185",
"fowler::match_basic_177",
"fowler::match_basic_176",
"fowler::match_basic_171",
"fowler::match_basic_204",
"fowler::match_basic_196",
"fowler::match_basic_183",
"fowler::match_basic_190",
"fowler::match_basic_174",
"fowler::match_basic_189",
"fowler::match_basic_187",
"fowler::match_basic_179",
"fowler::match_basic_202",
"fowler::match_basic_192",
"fowler::match_basic_218",
"fowler::match_basic_198",
"fowler::match_basic_213",
"fowler::match_basic_217",
"fowler::match_basic_216",
"fowler::match_basic_207",
"fowler::match_basic_209",
"fowler::match_basic_184",
"fowler::match_basic_221",
"fowler::match_basic_20",
"fowler::match_basic_182",
"fowler::match_basic_195",
"fowler::match_basic_29",
"fowler::match_basic_201",
"fowler::match_basic_200",
"fowler::match_basic_205",
"fowler::match_basic_203",
"fowler::match_basic_37",
"fowler::match_basic_21",
"fowler::match_basic_212",
"fowler::match_basic_36",
"fowler::match_basic_208",
"fowler::match_basic_210",
"fowler::match_basic_206",
"fowler::match_basic_38",
"fowler::match_basic_4",
"fowler::match_basic_22",
"fowler::match_basic_41",
"fowler::match_basic_30",
"fowler::match_basic_48",
"fowler::match_basic_219",
"fowler::match_basic_215",
"fowler::match_basic_23",
"fowler::match_basic_220",
"fowler::match_basic_3",
"fowler::match_basic_49",
"fowler::match_basic_32",
"fowler::match_basic_214",
"fowler::match_basic_35",
"fowler::match_basic_45",
"fowler::match_basic_25",
"fowler::match_basic_27",
"fowler::match_basic_5",
"fowler::match_basic_211",
"fowler::match_basic_26",
"fowler::match_basic_28",
"fowler::match_basic_24",
"fowler::match_basic_33",
"fowler::match_basic_7",
"fowler::match_basic_34",
"fowler::match_basic_68",
"fowler::match_basic_47",
"fowler::match_basic_55",
"fowler::match_basic_73",
"fowler::match_basic_46",
"fowler::match_basic_67",
"fowler::match_basic_39",
"fowler::match_basic_56",
"fowler::match_basic_44",
"fowler::match_basic_42",
"fowler::match_basic_43",
"fowler::match_basic_40",
"fowler::match_basic_54",
"fowler::match_basic_70",
"fowler::match_basic_58",
"fowler::match_basic_88",
"fowler::match_basic_77",
"fowler::match_basic_78",
"fowler::match_basic_6",
"fowler::match_basic_66",
"fowler::match_basic_51",
"fowler::match_basic_50",
"fowler::match_basic_59",
"fowler::match_basic_65",
"fowler::match_basic_76",
"fowler::match_basic_87",
"fowler::match_basic_72",
"fowler::match_basic_57",
"fowler::match_basic_69",
"fowler::match_basic_52",
"fowler::match_basic_53",
"fowler::match_basic_85",
"fowler::match_basic_80",
"fowler::match_nullsubexpr_14",
"fowler::match_basic_91",
"fowler::match_basic_98",
"fowler::match_basic_71",
"fowler::match_nullsubexpr_12",
"fowler::match_basic_99",
"fowler::match_basic_79",
"fowler::match_basic_86",
"fowler::match_basic_84",
"fowler::match_nullsubexpr_15",
"fowler::match_basic_83",
"fowler::match_basic_9",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_23",
"fowler::match_basic_97",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_10",
"fowler::match_basic_81",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_34",
"fowler::match_basic_90",
"fowler::match_basic_89",
"fowler::match_basic_95",
"fowler::match_basic_94",
"fowler::match_basic_96",
"fowler::match_basic_92",
"fowler::match_basic_93",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_16",
"fowler::match_nullsubexpr_30",
"fowler::match_nullsubexpr_45",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_13",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_18",
"fowler::match_basic_74",
"fowler::match_nullsubexpr_43",
"fowler::match_basic_75",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_19",
"fowler::match_nullsubexpr_7",
"fowler::match_nullsubexpr_69",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_77",
"fowler::match_repetition_104",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_33",
"fowler::match_nullsubexpr_74",
"fowler::match_nullsubexpr_8",
"fowler::match_repetition_10",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_6",
"fowler::match_repetition_106",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_78",
"fowler::match_repetition_100",
"fowler::match_repetition_136",
"fowler::match_repetition_12",
"fowler::match_nullsubexpr_70",
"fowler::match_repetition_114",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_71",
"fowler::match_repetition_115",
"fowler::match_repetition_128",
"fowler::match_repetition_14",
"fowler::match_repetition_137",
"fowler::match_nullsubexpr_79",
"fowler::match_repetition_112",
"fowler::match_repetition_15",
"fowler::match_nullsubexpr_9",
"fowler::match_repetition_150",
"fowler::match_repetition_152",
"fowler::match_repetition_135",
"fowler::match_repetition_20",
"fowler::match_repetition_18",
"fowler::match_repetition_24",
"fowler::match_repetition_163",
"fowler::match_repetition_131",
"fowler::match_repetition_130",
"fowler::match_repetition_127",
"fowler::match_repetition_143",
"fowler::match_repetition_145",
"fowler::match_repetition_11",
"fowler::match_repetition_154",
"fowler::match_repetition_110",
"fowler::match_repetition_108",
"fowler::match_repetition_16",
"fowler::match_repetition_159",
"fowler::match_repetition_149",
"fowler::match_repetition_129",
"fowler::match_repetition_126",
"fowler::match_repetition_102",
"fowler::match_repetition_156",
"fowler::match_repetition_133",
"fowler::match_repetition_22",
"fowler::match_repetition_46",
"fowler::match_repetition_32",
"fowler::match_repetition_21",
"fowler::match_repetition_147",
"fowler::match_repetition_132",
"fowler::match_repetition_31",
"fowler::match_repetition_30",
"fowler::match_repetition_44",
"fowler::match_repetition_36",
"fowler::match_repetition_134",
"fowler::match_repetition_67",
"fowler::match_repetition_57",
"fowler::match_repetition_52",
"fowler::match_repetition_158",
"fowler::match_repetition_47",
"fowler::match_repetition_59",
"fowler::match_repetition_161",
"fowler::match_repetition_25",
"fowler::match_repetition_73",
"fowler::match_repetition_26",
"fowler::match_repetition_56",
"fowler::match_repetition_76",
"fowler::match_repetition_28",
"fowler::match_repetition_35",
"fowler::match_repetition_40",
"fowler::match_repetition_90",
"fowler::match_repetition_77",
"fowler::match_repetition_38",
"fowler::match_repetition_81",
"fowler::match_repetition_65",
"fowler::match_repetition_34",
"fowler::match_repetition_95",
"fowler::match_repetition_41",
"fowler::match_repetition_42",
"fowler::match_repetition_50",
"multiline::match_multi_2",
"fowler::match_repetition_94",
"fowler::match_repetition_63",
"fowler::match_repetition_61",
"multiline::match_multi_7",
"fowler::match_repetition_68",
"multiline::match_multi_9",
"fowler::match_repetition_53",
"fowler::match_repetition_64",
"fowler::match_repetition_75",
"fowler::match_repetition_83",
"multiline::match_multi_rep_15",
"fowler::match_repetition_79",
"fowler::match_repetition_80",
"fowler::match_repetition_93",
"multiline::match_multi_rep_3",
"fowler::match_repetition_91",
"fowler::match_repetition_70",
"multiline::match_multi_rep_4",
"fowler::match_repetition_92",
"multiline::match_multi_rep_12",
"multiline::match_multi_rep_8",
"multiline::match_multi_4",
"fowler::match_repetition_54",
"fowler::match_repetition_97",
"multiline::match_multi_rep_1",
"noparse::fail_class_no_begin",
"fowler::match_repetition_96",
"fowler::match_repetition_98",
"multiline::match_multi_8",
"noparse::fail_class_incomplete",
"multiline::match_multi_3",
"multiline::match_multi_1",
"noparse::fail_counted_decreasing",
"multiline::match_multi_6",
"multiline::match_multi_rep_11",
"noparse::fail_class_no_boundary",
"noparse::fail_close_paren",
"multiline::match_multi_rep_5",
"multiline::match_multi_5",
"multiline::match_multi_rep_17",
"noparse::fail_class_not_closed",
"multiline::match_multi_rep_10",
"noparse::fail_counted_nonnegative",
"multiline::match_multi_rep_13",
"multiline::match_multi_rep_2",
"multiline::match_multi_rep_14",
"noparse::fail_counted_no_close",
"noparse::fail_bad_capture_name",
"multiline::match_multi_rep_9",
"multiline::match_multi_rep_16",
"multiline::match_multi_rep_6",
"noparse::fail_class_no_end",
"noparse::fail_bad_flag",
"multiline::match_multi_rep_7",
"regression::anchored_prefix1",
"noparse::fail_no_repeat_arg",
"noparse::fail_unfinished_escape",
"noparse::fail_neg_empty",
"noparse::fail_range_end_no_boundary",
"regression::anchored_prefix3",
"regression::empty_group_match",
"noparse::fail_empty_capture_name",
"noparse::fail_dupe_named",
"noparse::fail_hex_long_digits",
"noparse::fail_range_end_no_begin",
"regression::empty_group_find",
"noparse::fail_incomplete_escape",
"regression::anchored_prefix2",
"noparse::fail_range_end_no_class",
"noparse::fail_octal_digit",
"noparse::fail_range_end_no_end",
"regression::partial_anchor_alternate_end",
"noparse::fail_invalid_range",
"regression::blank_matches_nothing_between_space_and_tab",
"regression::flags_are_unset",
"regression::many_alternates",
"noparse::fail_hex_digit",
"noparse::fail_flag_bad",
"noparse::fail_open_paren",
"noparse::fail_flag_empty",
"noparse::fail_double_neg",
"noparse::fail_unfinished_cap",
"regression::captures_after_dfa_premature_end1",
"regression::ahocorasick1",
"regression::regression_ascii_word_underscore",
"noparse::fail_hex_short",
"regression::captures_after_dfa_premature_end3",
"regression::invalid_regexes_no_crash",
"regression::captures_after_dfa_premature_end2",
"regression::endl_or_wb",
"regression::regression_alt_in_alt2",
"regression::regression_leftmost_first_prefix",
"regression::lits_unambiguous2",
"regression::partial_anchor",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"regression::partial_anchor_alternate_begin",
"regression::lits_unambiguous1",
"regression::regression_alt_in_alt1",
"regression::literal_panic",
"regression::non_greedy_question_literal",
"regression::zero_or_end",
"regression::strange_anchor_non_complete_suffix",
"regression::regression_negated_char_class_1",
"regression::regression_invalid_flags_expression",
"regression::regression_bad_word_boundary",
"regression::strange_anchor_non_complete_prefix",
"replace::closure_returning_reference",
"regression::regression_invalid_repetition_expr",
"replace::impl_cow_slice_borrowed_ref",
"replace::double_dollar",
"regression::regression_nfa_stops1",
"replace::closure_returning_value",
"regression::reverse_suffix2",
"regression::reverse_suffix3",
"regression::regression_unsorted_binary_search_1",
"regression::regression_captures_rep",
"regression::word_boundary_dfa",
"replace::impl_cow_str_borrowed",
"regression::regression_unsorted_binary_search_2",
"regression::regression_negated_char_class_2",
"replace::all",
"replace::impl_cow_slice_owned_ref",
"replace::first",
"regression::uni_case_lower_nocase_flag",
"replace::impl_cow_str_owned",
"regression::split_on_word_boundary",
"replace::impl_string_ref",
"replace::impl_vec_u8_ref",
"regression::y_or_endl",
"replace::replacen_no_captures",
"regression::wb_start_x",
"replace::literal_dollar2",
"replace::number_hypen",
"searcher::searcher_empty_haystack",
"searcher::searcher_empty_regex",
"searcher::searcher_empty_regex_empty_haystack",
"regression::reverse_suffix1",
"replace::plus",
"replace::impl_vec_u8",
"replace::impl_cow_slice_owned",
"replace::capture_longest_possible_name",
"replace::groups",
"searcher::searcher_many_zero_length_matches",
"replace::replacen_with_captures",
"replace::impl_cow_slice_borrowed",
"replace::single_empty_match",
"replace::impl_string",
"replace::simple_expand",
"searcher::searcher_two_non_adjacent_matches",
"searcher::searcher_unicode",
"searcher::searcher_no_match",
"searcher::searcher_one_match",
"searcher::searcher_one_zero_length_matches",
"searcher::searcher_reject_first",
"searcher::searcher_two_adjacent_matches",
"set::nset4",
"replace::impl_cow_str_borrowed_ref",
"regression::regression_unicode_perl_not_enabled",
"replace::impl_cow_str_owned_ref",
"replace::trim",
"replace::named",
"set::set3",
"replace::match_at_start_replace_with_empty",
"replace::literal_dollar1",
"replace::no_expand2",
"set::set1",
"set::get_set_patterns",
"replace::no_expand1",
"set::set11",
"set::len_and_empty",
"set::setempty1",
"set::set7",
"set::default_set_is_empty",
"set::set13",
"set::set18",
"set::nset1",
"set::set15",
"set::set4",
"set::set17",
"set::nset2",
"set::setempty4",
"set::set8",
"set::nset3",
"set::set5",
"set::setempty6",
"unicode::uni_boundary_ogham",
"set::setempty2",
"set::setempty9",
"set::setempty7",
"suffix_reverse::t06",
"set::set10",
"unicode::uni_case",
"set::set14",
"unicode::uni_boundary_none",
"set::set12",
"set::set6",
"suffix_reverse::t04",
"set::set16",
"set::set2",
"set::setempty5",
"set::regression_subsequent_matches",
"set::set9",
"suffix_reverse::t02",
"unicode::uni_class_gcb_prepend",
"set::setempty3",
"suffix_reverse::t01",
"unicode::uni_class_gcb_ri2",
"unicode::uni_class_gencat_cased_letter",
"suffix_reverse::t03",
"unicode::uni_class_gencat_dash_punctuation",
"suffix_reverse::t05",
"unicode::uni_class_gencat_enclosing_mark",
"set::setempty8",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gcb_ri1",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_cased_letter2",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gcb_ri3",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_class_gencat_number",
"unicode::uni_class_gencat_decimal_numer",
"unicode::uni_class_gencat_format_abbrev2",
"unicode::uni_class_gencat_cased_letter3",
"unicode::uni_class_gencat_format_abbrev3",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_format",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_format_abbrev1",
"unicode::uni_class_gencat_private_use",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_case_upper",
"unicode::uni_class_plus",
"unicode::uni_class_gencat_math",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_prop_picto2",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_sb3",
"unicode::uni_class_wb2",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_wb3",
"unicode::uni_class_wb1",
"unicode::uni_case_lower",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_gencat_symbol",
"unicode::uni_class_gcb_lvt",
"unicode::uni_case_upper_nocase",
"unicode::uni_literal",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_perl_s_neg",
"unicode::uni_perl_s",
"unicode::uni_perl_d_not",
"unicode::uni_class_sb4",
"unicode::uni_perl_d_neg",
"unicode::uni_class_wb4",
"unicode::uni_class_sb5",
"unicode::uni_class_gencat_uppercase_letter",
"unicode::uni_class_wb5",
"unicode::uni_perl_s_not",
"unicode::uni_literal_plus",
"unicode::uni_vithkuqi_literal_upper",
"unicode::uni_not_boundary_ogham",
"unicode::uni_not_boundary_none",
"unicode::uni_literal_casei_plus",
"unicode::uni_not_class_neg",
"unicode::uni_class_gencat_other",
"unicode::uni_one",
"unicode::uni_perl_d",
"unicode::uni_mixed",
"word_boundary::nb10",
"word_boundary::nb19",
"word_boundary::nb13",
"word_boundary::nb21",
"unicode::uni_not",
"word_boundary::nb17",
"word_boundary::nb18",
"unicode::uni_class_gencat_letter",
"unicode::uni_class_gencat_lowercase_letter",
"unicode::uni_class_gencat_other_letter",
"word_boundary::nb27",
"word_boundary::nb12",
"unicode::uni_vithkuqi_literal_lower",
"word_boundary::nb11",
"word_boundary::nb24",
"word_boundary::nb1",
"unicode::uni_not_class",
"word_boundary::nb15",
"word_boundary::nb30",
"word_boundary::nb16",
"word_boundary::nb2",
"word_boundary::nb3",
"word_boundary::nb32",
"word_boundary::nb20",
"word_boundary::nb14",
"word_boundary::nb29",
"word_boundary::nb35",
"word_boundary::nb38",
"word_boundary::nb23",
"word_boundary::nb37",
"word_boundary::nb25",
"unicode::uni_class_sb2",
"word_boundary::nb22",
"unicode::uni_class_sb1",
"word_boundary::nb26",
"word_boundary::nb8",
"word_boundary::nb4",
"word_boundary::nb6",
"word_boundary::unicode1",
"unicode::uni_perl_w_not",
"word_boundary::nb31",
"word_boundary::nb9",
"word_boundary::nb28",
"word_boundary::wb20",
"word_boundary::nb33",
"word_boundary::nb34",
"word_boundary::nb36",
"word_boundary::unicode2",
"word_boundary::nb39",
"word_boundary::nb5",
"word_boundary::wb18",
"word_boundary::wb1",
"word_boundary::nb7",
"word_boundary::wb12",
"word_boundary::wb14",
"word_boundary::wb10",
"word_boundary::wb3",
"word_boundary::wb28",
"word_boundary::wb11",
"word_boundary::wb15",
"word_boundary::wb13",
"word_boundary::wb26",
"word_boundary::wb2",
"word_boundary::wb16",
"word_boundary::wb17",
"word_boundary::wb19",
"word_boundary::wb37",
"word_boundary::wb21",
"word_boundary::wb36",
"word_boundary::wb41",
"word_boundary::wb40",
"word_boundary::wb5",
"unicode::uni_class_gencat_unassigned",
"word_boundary::wb22",
"word_boundary::wb23",
"word_boundary::wb24",
"word_boundary::wb25",
"word_boundary::wb29",
"word_boundary::wb4",
"word_boundary::wb27",
"unicode::uni_perl_w_neg",
"word_boundary::wb7",
"word_boundary::wb6",
"word_boundary_unicode::ascii1",
"word_boundary::wb35",
"word_boundary::wb30",
"word_boundary::wb38",
"word_boundary::wb31",
"unicode::uni_vithkuqi_word_upper",
"word_boundary::wb32",
"word_boundary::wb33",
"word_boundary::wb34",
"word_boundary::wb39",
"word_boundary_unicode::unicode1",
"word_boundary::wb8",
"word_boundary::wb9",
"word_boundary_unicode::unicode2",
"crazy::nest_limit_makes_it_parse",
"unicode::uni_perl_w",
"unicode::uni_vithkuqi_word_lower",
"crazy::dfa_handles_pathological_case",
"regression::regression_many_repeat_stack_overflow",
"noparse::fail_too_big",
"regression::regression_big_regex_overflow",
"bytes::case_unicode",
"bytes::case_ascii_one",
"bytes::word_boundary_ascii1",
"bytes::case_not_unicode",
"bytes::perl_s_unicode",
"bytes::dotstar_prefix_not_unicode1",
"bytes::invalidutf8_anchor2",
"bytes::word_not_boundary_unicode",
"bytes::ascii_boundary_capture",
"bytes::dotstar_prefix_not_unicode2",
"bytes::negate_unicode",
"bytes::word_not_boundary",
"bytes::invalidutf8_anchor3",
"bytes::case_ascii_class",
"bytes::negate_not_unicode",
"bytes::negated_full_byte_range",
"bytes::ascii_boundary_no_capture",
"bytes::end_not_wb",
"bytes::invalidutf8_anchor1",
"bytes::word_boundary_ascii2",
"bytes::word_boundary_unicode",
"bytes::null_bytes",
"bytes::perl_d_ascii",
"bytes::perl_w_ascii",
"bytes::perl_s_ascii",
"bytes::mixed1",
"bytes::word_boundary",
"bytes::perl_d_unicode",
"bytes::perl_w_unicode",
"word_boundary_ascii::unicode2",
"word_boundary_ascii::ascii1",
"word_boundary_ascii::ascii2",
"word_boundary_ascii::ascii3",
"word_boundary_ascii::unicode1",
"crates_regex::actix_web_1",
"crates_regex::actix_web_0",
"crates_regex::aerial_0",
"crates_regex::aerial_1",
"crates_regex::afsort_0",
"crates_regex::afsort_1",
"crates_regex::afsort_2",
"crates_regex::afsort_3",
"crates_regex::afsort_4",
"crates_regex::afsort_5",
"crates_regex::afsort_6",
"crates_regex::afsort_7",
"crates_regex::airkorea_1",
"crates_regex::airkorea_0",
"crates_regex::airkorea_2",
"crates_regex::alcibiades_0",
"crates_regex::althea_kernel_interface_0",
"crates_regex::althea_kernel_interface_1",
"crates_regex::amethyst_tools_0",
"crates_regex::amigo_0",
"crates_regex::amigo_1",
"crates_regex::amigo_2",
"crates_regex::amigo_3",
"crates_regex::amigo_4",
"crates_regex::arpabet_0",
"crates_regex::arpabet_1",
"crates_regex::arthas_derive_0",
"crates_regex::arthas_derive_1",
"crates_regex::arthas_derive_2",
"crates_regex::arthas_plugin_0",
"crates_regex::arthas_plugin_1",
"crates_regex::arthas_plugin_2",
"crates_regex::arthas_plugin_3",
"crates_regex::article_date_extractor_0",
"crates_regex::article_date_extractor_1",
"crates_regex::askalono_0",
"crates_regex::askalono_1",
"crates_regex::askalono_10",
"crates_regex::askalono_2",
"crates_regex::askalono_3",
"crates_regex::askalono_4",
"crates_regex::askalono_5",
"crates_regex::askalono_6",
"crates_regex::askalono_7",
"crates_regex::askalono_8",
"crates_regex::askalono_9",
"crates_regex::assembunny_plus_0",
"crates_regex::assembunny_plus_1",
"crates_regex::atarashii_imap_0",
"crates_regex::atarashii_imap_1",
"crates_regex::atarashii_imap_2",
"crates_regex::atarashii_imap_3",
"crates_regex::atarashii_imap_4",
"crates_regex::atarashii_imap_5",
"crates_regex::atarashii_imap_6",
"crates_regex::atarashii_imap_7",
"crates_regex::aterm_0",
"crates_regex::aterm_1",
"crates_regex::autoshutdown_0",
"crates_regex::avm_0",
"crates_regex::avm_1",
"crates_regex::avro_0",
"crates_regex::avro_1",
"crates_regex::bakervm_0",
"crates_regex::bakervm_1",
"crates_regex::bakervm_10",
"crates_regex::bakervm_2",
"crates_regex::bakervm_3",
"crates_regex::bakervm_4",
"crates_regex::bakervm_5",
"crates_regex::bakervm_6",
"crates_regex::bakervm_7",
"crates_regex::bakervm_8",
"crates_regex::bakervm_9",
"crates_regex::banana_0",
"crates_regex::bbcode_0",
"crates_regex::bbcode_1",
"crates_regex::bbcode_10",
"crates_regex::bbcode_11",
"crates_regex::bbcode_12",
"crates_regex::bbcode_13",
"crates_regex::bbcode_14",
"crates_regex::bbcode_15",
"crates_regex::bbcode_16",
"crates_regex::bbcode_17",
"crates_regex::bbcode_18",
"crates_regex::bbcode_19",
"crates_regex::bbcode_2",
"crates_regex::bbcode_20",
"crates_regex::bbcode_21",
"crates_regex::bbcode_22",
"crates_regex::bbcode_23",
"crates_regex::bbcode_24",
"crates_regex::bbcode_25",
"crates_regex::bbcode_3",
"crates_regex::bbcode_4",
"crates_regex::bbcode_5",
"crates_regex::bbcode_6",
"crates_regex::bbcode_7",
"crates_regex::bbcode_8",
"crates_regex::bbcode_9",
"crates_regex::bindgen_0",
"crates_regex::block_utils_0",
"crates_regex::block_utils_1",
"crates_regex::block_utils_2",
"crates_regex::bobbin_cli_0",
"crates_regex::bobbin_cli_1",
"crates_regex::bobbin_cli_2",
"crates_regex::bobbin_cli_3",
"crates_regex::bobbin_cli_4",
"crates_regex::bobbin_cli_5",
"crates_regex::bobbin_cli_6",
"crates_regex::bobbin_cli_7",
"crates_regex::bobbin_cli_8",
"crates_regex::bobbin_cli_9",
"crates_regex::borsholder_0",
"crates_regex::borsholder_1",
"crates_regex::bullet_core_0",
"crates_regex::bullet_core_1",
"crates_regex::bullet_core_10",
"crates_regex::bullet_core_11",
"crates_regex::bullet_core_12",
"crates_regex::bullet_core_13",
"crates_regex::bullet_core_14",
"crates_regex::bullet_core_2",
"crates_regex::bullet_core_3",
"crates_regex::bullet_core_4",
"crates_regex::bullet_core_5",
"crates_regex::bullet_core_6",
"crates_regex::bullet_core_7",
"crates_regex::bullet_core_8",
"crates_regex::bullet_core_9",
"crates_regex::cabot_0",
"crates_regex::cabot_1",
"crates_regex::canteen_0",
"crates_regex::card_validate_0",
"crates_regex::card_validate_1",
"crates_regex::card_validate_2",
"crates_regex::card_validate_3",
"crates_regex::card_validate_4",
"crates_regex::card_validate_5",
"crates_regex::card_validate_6",
"crates_regex::card_validate_7",
"crates_regex::card_validate_8",
"crates_regex::card_validate_9",
"crates_regex::cargo_brew_0",
"crates_regex::cargo_coverage_annotations_0",
"crates_regex::cargo_culture_kit_0",
"crates_regex::cargo_demangle_0",
"crates_regex::cargo_disassemble_0",
"crates_regex::cargo_edit_0",
"crates_regex::cargo_edit_1",
"crates_regex::cargo_incremental_0",
"crates_regex::cargo_incremental_1",
"crates_regex::cargo_incremental_2",
"crates_regex::cargo_incremental_3",
"crates_regex::cargo_release_0",
"crates_regex::cargo_release_1",
"crates_regex::cargo_screeps_0",
"crates_regex::cargo_script_0",
"crates_regex::cargo_script_1",
"crates_regex::cargo_script_2",
"crates_regex::cargo_script_3",
"crates_regex::cargo_script_4",
"crates_regex::cargo_tarpaulin_0",
"crates_regex::cargo_tarpaulin_1",
"crates_regex::cargo_tarpaulin_2",
"crates_regex::cargo_testify_0",
"crates_regex::cargo_testify_1",
"crates_regex::cargo_testjs_0",
"crates_regex::cargo_update_0",
"crates_regex::cargo_urlcrate_0",
"crates_regex::cargo_wix_0",
"crates_regex::cargo_wix_1",
"crates_regex::cargo_wix_2",
"crates_regex::cargo_wix_3",
"crates_regex::carnix_0",
"crates_regex::carnix_1",
"crates_regex::carnix_2",
"crates_regex::carnix_3",
"crates_regex::caseless_0",
"crates_regex::caseless_1",
"crates_regex::cdbd_0",
"crates_regex::cellsplit_0",
"crates_regex::cellsplit_1",
"crates_regex::checkmail_0",
"crates_regex::chema_0",
"crates_regex::chema_1",
"crates_regex::chord3_0",
"crates_regex::chord3_1",
"crates_regex::chord3_2",
"crates_regex::chord3_3",
"crates_regex::cicada_0",
"crates_regex::cicada_1",
"crates_regex::cicada_2",
"crates_regex::cicada_3",
"crates_regex::cicada_4",
"crates_regex::cifar_10_loader_0",
"crates_regex::cifar_10_loader_1",
"crates_regex::circadian_0",
"crates_regex::circadian_1",
"crates_regex::circadian_2",
"crates_regex::clam_0",
"crates_regex::classifier_0",
"crates_regex::claude_0",
"crates_regex::click_0",
"crates_regex::click_1",
"crates_regex::cniguru_0",
"crates_regex::cntk_0",
"crates_regex::cntk_1",
"crates_regex::cobalt_bin_0",
"crates_regex::codeowners_0",
"crates_regex::codeowners_1",
"crates_regex::codeowners_2",
"crates_regex::colorizex_0",
"crates_regex::colorstring_0",
"crates_regex::colorstring_1",
"crates_regex::commodore_0",
"crates_regex::comrak_0",
"crates_regex::conserve_0",
"crates_regex::content_blocker_0",
"crates_regex::content_blocker_1",
"crates_regex::content_blocker_10",
"crates_regex::content_blocker_11",
"crates_regex::content_blocker_12",
"crates_regex::content_blocker_13",
"crates_regex::content_blocker_2",
"crates_regex::content_blocker_3",
"crates_regex::content_blocker_4",
"crates_regex::content_blocker_5",
"crates_regex::content_blocker_6",
"crates_regex::content_blocker_7",
"crates_regex::content_blocker_8",
"crates_regex::content_blocker_9",
"crates_regex::corollary_0",
"crates_regex::corollary_1",
"crates_regex::cosmogony_0",
"crates_regex::cpp_to_rust_0",
"crates_regex::cpp_to_rust_1",
"crates_regex::cpp_to_rust_2",
"crates_regex::cpp_to_rust_3",
"crates_regex::cpp_to_rust_4",
"crates_regex::cpp_to_rust_5",
"crates_regex::cpp_to_rust_generator_0",
"crates_regex::cpp_to_rust_generator_1",
"crates_regex::cpp_to_rust_generator_2",
"crates_regex::cpp_to_rust_generator_3",
"crates_regex::cpp_to_rust_generator_4",
"crates_regex::cpp_to_rust_generator_5",
"crates_regex::cron_rs_0",
"crates_regex::d20_0",
"crates_regex::dash2html_0",
"crates_regex::dash2html_1",
"crates_regex::db_accelerate_0",
"crates_regex::db_accelerate_1",
"crates_regex::deb_version_0",
"crates_regex::debcargo_0",
"crates_regex::debcargo_1",
"crates_regex::diesel_cli_0",
"crates_regex::dishub_0",
"crates_regex::djangohashers_0",
"crates_regex::dok_0",
"crates_regex::dono_0",
"crates_regex::dono_1",
"crates_regex::dono_2",
"crates_regex::drill_0",
"crates_regex::duration_parser_0",
"crates_regex::dutree_0",
"crates_regex::dvb_0",
"crates_regex::dvb_1",
"crates_regex::dvb_2",
"crates_regex::editorconfig_0",
"crates_regex::editorconfig_1",
"crates_regex::editorconfig_2",
"crates_regex::editorconfig_3",
"crates_regex::editorconfig_4",
"crates_regex::editorconfig_5",
"crates_regex::editorconfig_6",
"crates_regex::editorconfig_7",
"crates_regex::editorconfig_8",
"crates_regex::edmunge_0",
"crates_regex::egc_0",
"crates_regex::egg_mode_text_0",
"crates_regex::eliza_0",
"crates_regex::eliza_1",
"crates_regex::eliza_2",
"crates_regex::emojicons_0",
"crates_regex::emote_0",
"crates_regex::epub_0",
"crates_regex::ethcore_logger_0",
"crates_regex::evalrs_0",
"crates_regex::evalrs_1",
"crates_regex::evalrs_2",
"crates_regex::evalrs_3",
"crates_regex::eve_0",
"crates_regex::extrahop_0",
"crates_regex::faker_0",
"crates_regex::faker_1",
"crates_regex::faker_10",
"crates_regex::faker_11",
"crates_regex::faker_2",
"crates_regex::faker_3",
"crates_regex::faker_4",
"crates_regex::faker_5",
"crates_regex::faker_6",
"crates_regex::faker_7",
"crates_regex::faker_8",
"crates_regex::faker_9",
"crates_regex::fancy_prompt_0",
"crates_regex::fancy_prompt_1",
"crates_regex::fancy_regex_0",
"crates_regex::fancy_regex_1",
"crates_regex::fancy_regex_2",
"crates_regex::fanta_0",
"crates_regex::fanta_cli_0",
"crates_regex::fanta_cli_1",
"crates_regex::fblog_0",
"crates_regex::fblog_1",
"crates_regex::feaders_0",
"crates_regex::feaders_1",
"crates_regex::feaders_2",
"crates_regex::feaders_3",
"crates_regex::feaders_4",
"crates_regex::file_logger_0",
"crates_regex::file_scanner_0",
"crates_regex::file_scanner_1",
"crates_regex::file_scanner_2",
"crates_regex::file_scanner_3",
"crates_regex::file_scanner_4",
"crates_regex::file_sniffer_0",
"crates_regex::file_sniffer_1",
"crates_regex::file_sniffer_2",
"crates_regex::file_sniffer_3",
"crates_regex::file_sniffer_4",
"crates_regex::findr_0",
"crates_regex::findr_1",
"crates_regex::findr_2",
"crates_regex::flow_0",
"crates_regex::flow_1",
"crates_regex::flow_2",
"crates_regex::flow_3",
"crates_regex::form_checker_0",
"crates_regex::form_checker_1",
"crates_regex::fractal_matrix_api_0",
"crates_regex::fritzbox_logs_0",
"crates_regex::fselect_0",
"crates_regex::fs_eventbridge_0",
"crates_regex::fselect_1",
"crates_regex::ftp_0",
"crates_regex::ftp_1",
"crates_regex::ftp_2",
"crates_regex::fungi_lang_0",
"crates_regex::gate_build_0",
"crates_regex::genact_0",
"crates_regex::genact_1",
"crates_regex::generate_nix_pkg_0",
"crates_regex::generate_nix_pkg_1",
"crates_regex::generic_dns_update_0",
"crates_regex::generic_dns_update_1",
"crates_regex::generic_dns_update_2",
"crates_regex::generic_dns_update_3",
"crates_regex::generic_dns_update_4",
"crates_regex::generic_dns_update_5",
"crates_regex::geochunk_0",
"crates_regex::ger_0",
"crates_regex::ger_1",
"crates_regex::ggp_rs_0",
"crates_regex::ggp_rs_1",
"crates_regex::git2_codecommit_0",
"crates_regex::git_find_0",
"crates_regex::git_journal_0",
"crates_regex::git_shell_enforce_directory_0",
"crates_regex::git_workarea_0",
"crates_regex::gitlab_api_0",
"crates_regex::gl_helpers_0",
"crates_regex::gl_helpers_1",
"crates_regex::glossy_codegen_0",
"crates_regex::glossy_codegen_1",
"crates_regex::glossy_codegen_2",
"crates_regex::glossy_codegen_3",
"crates_regex::glossy_codegen_4",
"crates_regex::glr_parser_0",
"crates_regex::glr_parser_1",
"crates_regex::glr_parser_2",
"crates_regex::gluster_0",
"crates_regex::gluster_1",
"crates_regex::government_id_0",
"crates_regex::graphql_idl_parser_0",
"crates_regex::graphql_idl_parser_1",
"crates_regex::graphql_idl_parser_10",
"crates_regex::graphql_idl_parser_11",
"crates_regex::graphql_idl_parser_12",
"crates_regex::graphql_idl_parser_13",
"crates_regex::graphql_idl_parser_14",
"crates_regex::graphql_idl_parser_15",
"crates_regex::graphql_idl_parser_16",
"crates_regex::graphql_idl_parser_17",
"crates_regex::graphql_idl_parser_18",
"crates_regex::graphql_idl_parser_19",
"crates_regex::graphql_idl_parser_2",
"crates_regex::graphql_idl_parser_3",
"crates_regex::graphql_idl_parser_4",
"crates_regex::graphql_idl_parser_5",
"crates_regex::graphql_idl_parser_6",
"crates_regex::graphql_idl_parser_7",
"crates_regex::graphql_idl_parser_8",
"crates_regex::graphql_idl_parser_9",
"crates_regex::grimoire_0",
"crates_regex::haikunator_0",
"crates_regex::haikunator_1",
"crates_regex::haikunator_2",
"crates_regex::haikunator_3",
"crates_regex::haikunator_4",
"crates_regex::haikunator_5",
"crates_regex::haikunator_6",
"crates_regex::handlebars_0",
"crates_regex::hoodlum_0",
"crates_regex::html2md_0",
"crates_regex::html2md_1",
"crates_regex::html2md_2",
"crates_regex::html2md_3",
"crates_regex::hueclient_0",
"crates_regex::hueclient_1",
"crates_regex::hueclient_2",
"crates_regex::hueclient_3",
"crates_regex::hyperscan_0",
"crates_regex::hyperscan_1",
"crates_regex::hyperscan_2",
"crates_regex::hyperscan_3",
"crates_regex::iban_validate_0",
"crates_regex::ignore_0",
"crates_regex::image_base64_0",
"crates_regex::image_base64_1",
"crates_regex::image_base64_2",
"crates_regex::imap_0",
"crates_regex::indradb_lib_0",
"crates_regex::ipaddress_0",
"crates_regex::ipaddress_1",
"crates_regex::ipaddress_2",
"crates_regex::iptables_0",
"crates_regex::isbnid_0",
"crates_regex::isbnid_1",
"crates_regex::ispc_0",
"crates_regex::java_properties_0",
"crates_regex::java_properties_1",
"crates_regex::java_properties_2",
"crates_regex::jieba_rs_0",
"crates_regex::jieba_rs_1",
"crates_regex::jieba_rs_2",
"crates_regex::jieba_rs_3",
"crates_regex::jieba_rs_4",
"crates_regex::jieba_rs_5",
"crates_regex::joseki_0",
"crates_regex::json_pointer_0",
"crates_regex::json_pointer_1",
"crates_regex::just_0",
"crates_regex::kailua_syntax_0",
"crates_regex::kailua_syntax_1",
"crates_regex::karaconv_0",
"crates_regex::katana_0",
"crates_regex::katana_1",
"crates_regex::katana_10",
"crates_regex::katana_11",
"crates_regex::katana_12",
"crates_regex::katana_2",
"crates_regex::katana_3",
"crates_regex::katana_4",
"crates_regex::katana_5",
"crates_regex::katana_6",
"crates_regex::katana_7",
"crates_regex::katana_8",
"crates_regex::katana_9",
"crates_regex::kbgpg_0",
"crates_regex::kefia_0",
"crates_regex::kryptos_0",
"crates_regex::kvvliveapi_0",
"crates_regex::lalrpop_0",
"crates_regex::lalrpop_snap_0",
"crates_regex::libimaginteraction_0",
"crates_regex::libimagentrytag_0",
"crates_regex::libimaginteraction_1",
"crates_regex::libimagutil_0",
"crates_regex::libimagutil_1",
"crates_regex::limonite_0",
"crates_regex::linky_0",
"crates_regex::linky_1",
"crates_regex::linux_ip_0",
"crates_regex::linux_ip_1",
"crates_regex::linux_ip_2",
"crates_regex::linux_ip_3",
"crates_regex::linux_ip_4",
"crates_regex::linux_ip_5",
"crates_regex::linux_ip_6",
"crates_regex::linux_ip_7",
"crates_regex::linux_ip_8",
"crates_regex::linux_ip_9",
"crates_regex::lit_0",
"crates_regex::lit_1",
"crates_regex::lit_2",
"crates_regex::little_boxes_0",
"crates_regex::lorikeet_0",
"crates_regex::luther_0",
"crates_regex::magnet_app_0",
"crates_regex::magnet_more_0",
"crates_regex::mallumo_0",
"crates_regex::mallumo_1",
"crates_regex::mallumo_2",
"crates_regex::markifier_0",
"crates_regex::mbutiles_0",
"crates_regex::media_filename_0",
"crates_regex::media_filename_1",
"crates_regex::media_filename_2",
"crates_regex::media_filename_3",
"crates_regex::media_filename_4",
"crates_regex::media_filename_5",
"crates_regex::media_filename_6",
"crates_regex::media_filename_7",
"crates_regex::media_filename_8",
"crates_regex::media_filename_9",
"crates_regex::migrant_lib_0",
"crates_regex::migrant_lib_1",
"crates_regex::migrant_lib_2",
"crates_regex::minifier_0",
"crates_regex::minifier_1",
"crates_regex::minifier_2",
"crates_regex::minifier_3",
"crates_regex::minifier_4",
"crates_regex::minifier_5",
"crates_regex::minifier_6",
"crates_regex::minifier_7",
"crates_regex::minifier_8",
"crates_regex::minipre_0",
"crates_regex::mob_0",
"crates_regex::monger_0",
"crates_regex::mongo_rub_0",
"crates_regex::mozversion_0",
"crates_regex::multirust_rs_0",
"crates_regex::mysql_common_0",
"crates_regex::mysql_common_1",
"crates_regex::n5_0",
"crates_regex::nail_0",
"crates_regex::nail_1",
"crates_regex::nereon_0",
"crates_regex::next_episode_0",
"crates_regex::nginx_config_0",
"crates_regex::nickel_0",
"crates_regex::nickel_1",
"crates_regex::nlp_tokenize_0",
"crates_regex::nodes_0",
"crates_regex::nomi_0",
"crates_regex::not_stakkr_0",
"crates_regex::notetxt_0",
"crates_regex::numbat_0",
"crates_regex::oatie_0",
"crates_regex::ohmers_0",
"crates_regex::ommui_string_patterns_0",
"crates_regex::ommui_string_patterns_1",
"crates_regex::opcua_types_0",
"crates_regex::opcua_types_1",
"crates_regex::open_read_later_0",
"crates_regex::orm_0",
"crates_regex::os_type_0",
"crates_regex::os_type_1",
"crates_regex::os_type_2",
"crates_regex::os_type_3",
"crates_regex::os_type_4",
"crates_regex::os_type_5",
"crates_regex::os_type_6",
"crates_regex::os_type_7",
"crates_regex::ovpnfile_0",
"crates_regex::ovpnfile_1",
"crates_regex::ovpnfile_2",
"crates_regex::pact_matching_0",
"crates_regex::pact_matching_1",
"crates_regex::pact_matching_2",
"crates_regex::pact_verifier_0",
"crates_regex::pangu_0",
"crates_regex::pangu_1",
"crates_regex::parser_haskell_0",
"crates_regex::parser_haskell_1",
"crates_regex::parser_haskell_2",
"crates_regex::parser_haskell_3",
"crates_regex::parser_haskell_4",
"crates_regex::pew_0",
"crates_regex::pew_1",
"crates_regex::phile_0",
"crates_regex::phile_1",
"crates_regex::phile_2",
"crates_regex::phone_number_0",
"crates_regex::phone_number_1",
"crates_regex::phone_number_2",
"crates_regex::phone_number_3",
"crates_regex::phonenumber_0",
"crates_regex::phonenumber_1",
"crates_regex::phonenumber_2",
"crates_regex::phonenumber_3",
"crates_regex::phonenumber_4",
"crates_regex::phonenumber_5",
"crates_regex::phonenumber_6",
"crates_regex::phonenumber_7",
"crates_regex::pinyin_0",
"crates_regex::pinyin_1",
"crates_regex::pippin_0",
"crates_regex::pippin_1",
"crates_regex::pippin_2",
"crates_regex::pippin_3",
"crates_regex::pippin_4",
"crates_regex::pippin_5",
"crates_regex::pleingres_sql_plugin_0",
"crates_regex::pnet_macros_0",
"crates_regex::po_0",
"crates_regex::poe_superfilter_0",
"crates_regex::poke_a_mango_0",
"crates_regex::polk_0",
"crates_regex::pop3_0",
"crates_regex::pop3_1",
"crates_regex::pop3_2",
"crates_regex::pop3_3",
"crates_regex::pop3_4",
"crates_regex::pop3_5",
"crates_regex::pop3_6",
"crates_regex::pop3_7",
"crates_regex::pop3_rs_0",
"crates_regex::pop3_rs_1",
"crates_regex::pop3_rs_2",
"crates_regex::pop3_rs_3",
"crates_regex::process_queue_0",
"crates_regex::pronghorn_0",
"crates_regex::protocol_ftp_client_0",
"crates_regex::protocol_ftp_client_1",
"crates_regex::protocol_ftp_client_2",
"crates_regex::protocol_ftp_client_3",
"crates_regex::protocol_ftp_client_4",
"crates_regex::protocol_ftp_client_5",
"crates_regex::protocol_ftp_client_6",
"crates_regex::pusher_0",
"crates_regex::pusher_1",
"crates_regex::qasm_0",
"crates_regex::qt_generator_0",
"crates_regex::qt_generator_1",
"crates_regex::queryst_0",
"crates_regex::queryst_1",
"crates_regex::qui_vive_0",
"crates_regex::qui_vive_1",
"crates_regex::qui_vive_2",
"crates_regex::qui_vive_3",
"crates_regex::qui_vive_4",
"crates_regex::qui_vive_6",
"crates_regex::qui_vive_5",
"crates_regex::rafy_0",
"crates_regex::rake_0",
"crates_regex::rargs_0",
"crates_regex::rargs_1",
"crates_regex::rargs_2",
"crates_regex::rargs_3",
"crates_regex::rargs_4",
"crates_regex::raven_0",
"crates_regex::reaper_0",
"crates_regex::recursive_disassembler_0",
"crates_regex::regex_cache_0",
"crates_regex::regex_cache_1",
"crates_regex::regex_cache_2",
"crates_regex::regex_cache_3",
"crates_regex::regex_cache_4",
"crates_regex::regex_decode_0",
"crates_regex::regex_decode_1",
"crates_regex::regex_decode_10",
"crates_regex::regex_decode_11",
"crates_regex::regex_decode_12",
"crates_regex::regex_decode_13",
"crates_regex::regex_decode_2",
"crates_regex::regex_decode_3",
"crates_regex::regex_decode_4",
"crates_regex::regex_decode_5",
"crates_regex::regex_decode_6",
"crates_regex::regex_decode_7",
"crates_regex::regex_decode_8",
"crates_regex::regex_decode_9",
"crates_regex::regex_dfa_0",
"crates_regex::remake_0",
"crates_regex::renvsubst_0",
"crates_regex::renvsubst_1",
"crates_regex::renvsubst_2",
"crates_regex::retdec_0",
"crates_regex::rexpect_0",
"crates_regex::rexpect_1",
"crates_regex::rexpect_2",
"crates_regex::rfc822_sanitizer_0",
"crates_regex::rfc822_sanitizer_1",
"crates_regex::ripgrep_0",
"crates_regex::riquid_0",
"crates_regex::riquid_1",
"crates_regex::risp_0",
"crates_regex::risp_1",
"crates_regex::risp_2",
"crates_regex::risp_3",
"crates_regex::rogcat_0",
"crates_regex::rogcat_1",
"crates_regex::rogcat_2",
"crates_regex::rpi_info_0",
"crates_regex::rpi_info_1",
"crates_regex::rs_jsonpath_0",
"crates_regex::rsure_0",
"crates_regex::rtag_0",
"crates_regex::rtag_1",
"crates_regex::rtag_2",
"crates_regex::rtag_3",
"crates_regex::rtow_0",
"crates_regex::ruma_identifiers_0",
"crates_regex::rumblebars_0",
"crates_regex::rumblebars_1",
"crates_regex::rumblebars_2",
"crates_regex::rumblebars_3",
"crates_regex::rumblebars_4",
"crates_regex::rural_1",
"crates_regex::rural_0",
"crates_regex::rural_2",
"crates_regex::rural_3",
"crates_regex::rusoto_credential_0",
"crates_regex::rusqbin_0",
"crates_regex::rusqbin_1",
"crates_regex::rust_enum_derive_0",
"crates_regex::rust_enum_derive_1",
"crates_regex::rust_enum_derive_2",
"crates_regex::rust_enum_derive_3",
"crates_regex::rust_inbox_0",
"crates_regex::rust_inbox_1",
"crates_regex::rust_inbox_2",
"crates_regex::rust_inbox_3",
"crates_regex::rust_inbox_4",
"crates_regex::rust_inbox_5",
"crates_regex::rust_inbox_6",
"crates_regex::rust_inbox_7",
"crates_regex::rust_inbox_8",
"crates_regex::rust_inbox_9",
"crates_regex::rust_install_0",
"crates_regex::rustache_0",
"crates_regex::rustache_lists_0",
"crates_regex::rustfilt_0",
"crates_regex::rustfmt_0",
"crates_regex::rustfmt_core_0",
"crates_regex::rustfmt_core_1",
"crates_regex::rustfmt_core_2",
"crates_regex::rustfmt_core_3",
"crates_regex::rustfmt_nightly_0",
"crates_regex::rustfmt_nightly_1",
"crates_regex::rustml_0",
"crates_regex::rustml_1",
"crates_regex::rustml_2",
"crates_regex::rustsourcebundler_0",
"crates_regex::rustsourcebundler_1",
"crates_regex::rvsim_0",
"crates_regex::rvue_0",
"crates_regex::rvue_1",
"crates_regex::rvue_2",
"crates_regex::rvue_3",
"crates_regex::rvue_4",
"crates_regex::sabisabi_0",
"crates_regex::sabisabi_1",
"crates_regex::salt_compressor_0",
"crates_regex::sassers_0",
"crates_regex::scarlet_0",
"crates_regex::screenruster_saver_fractal_0",
"crates_regex::sentiment_0",
"crates_regex::sentiment_1",
"crates_regex::sentry_0",
"crates_regex::serde_hjson_0",
"crates_regex::serde_hjson_1",
"crates_regex::serde_hjson_2",
"crates_regex::serial_key_0",
"crates_regex::sgf_0",
"crates_regex::sgf_1",
"crates_regex::sgf_2",
"crates_regex::sgf_3",
"crates_regex::serde_odbc_0",
"crates_regex::shadowsocks_0",
"crates_regex::shellwords_0",
"crates_regex::shellwords_1",
"crates_regex::shkeleton_0",
"crates_regex::shush_0",
"crates_regex::skim_0",
"crates_regex::skim_1",
"crates_regex::skim_10",
"crates_regex::skim_11",
"crates_regex::skim_12",
"crates_regex::skim_2",
"crates_regex::skim_3",
"crates_regex::skim_5",
"crates_regex::skim_4",
"crates_regex::skim_6",
"crates_regex::skim_7",
"crates_regex::skim_8",
"crates_regex::skim_9",
"crates_regex::slippy_map_tiles_0",
"crates_regex::slippy_map_tiles_1",
"crates_regex::slippy_map_tiles_2",
"crates_regex::smtp2go_0",
"crates_regex::sonos_0",
"crates_regex::space_email_api_0",
"crates_regex::spaceslugs_0",
"crates_regex::spaceslugs_1",
"crates_regex::spaceslugs_2",
"crates_regex::spaceslugs_3",
"crates_regex::split_aud_0",
"crates_regex::split_aud_1",
"crates_regex::spotrust_0",
"crates_regex::spreadsheet_textconv_0",
"crates_regex::spreadsheet_textconv_2",
"crates_regex::spreadsheet_textconv_1",
"crates_regex::ssb_common_0",
"crates_regex::ssb_common_1",
"crates_regex::ssb_common_2",
"crates_regex::stache_0",
"crates_regex::steamid_ng_0",
"crates_regex::steamid_ng_1",
"crates_regex::sterling_0",
"crates_regex::strscan_0",
"crates_regex::strscan_1",
"crates_regex::strscan_2",
"crates_regex::strscan_3",
"crates_regex::strscan_4",
"crates_regex::strukt_0",
"crates_regex::substudy_0",
"crates_regex::substudy_1",
"crates_regex::substudy_2",
"crates_regex::substudy_3",
"crates_regex::substudy_4",
"crates_regex::svgrep_0",
"crates_regex::symbolic_debuginfo_0",
"crates_regex::symbolic_minidump_0",
"crates_regex::systemfd_0",
"crates_regex::td_client_0",
"crates_regex::teensy_0",
"crates_regex::telescreen_0",
"crates_regex::tempus_fugit_0",
"crates_regex::termimage_0",
"crates_regex::thieves_cant_0",
"crates_regex::thruster_cli_0",
"crates_regex::tight_0",
"crates_regex::tight_1",
"crates_regex::timespan_0",
"crates_regex::timespan_1",
"crates_regex::timespan_2",
"crates_regex::timespan_3",
"crates_regex::timespan_4",
"crates_regex::timmy_1",
"crates_regex::timmy_0",
"crates_regex::timmy_2",
"crates_regex::timmy_3",
"crates_regex::timmy_4",
"crates_regex::tin_drummer_0",
"crates_regex::tin_drummer_1",
"crates_regex::tin_drummer_2",
"crates_regex::tin_drummer_3",
"crates_regex::tin_drummer_4",
"crates_regex::tin_drummer_5",
"crates_regex::tin_drummer_6",
"crates_regex::tin_drummer_7",
"crates_regex::tin_summer_0",
"crates_regex::tinfo_0",
"crates_regex::tinfo_1",
"crates_regex::titlecase_0",
"crates_regex::tk_carbon_0",
"crates_regex::tk_carbon_1",
"crates_regex::todo_txt_0",
"crates_regex::toml_query_0",
"crates_regex::tsm_sys_0",
"crates_regex::tweetr_0",
"crates_regex::ubiquity_0",
"crates_regex::ubiquity_1",
"crates_regex::ubiquity_2",
"crates_regex::ucd_parse_0",
"crates_regex::ultrastar_txt_0",
"crates_regex::ultrastar_txt_1",
"crates_regex::ultrastar_txt_2",
"crates_regex::ultrastar_txt_3",
"crates_regex::ultrastar_txt_4",
"crates_regex::unicode_names2_macros_0",
"crates_regex::unidiff_0",
"crates_regex::unidiff_1",
"crates_regex::unidiff_2",
"crates_regex::unidiff_3",
"crates_regex::upm_lib_0",
"crates_regex::urdf_rs_0",
"crates_regex::uritemplate_0",
"crates_regex::url_match_0",
"crates_regex::url_match_1",
"crates_regex::validator_derive_0",
"crates_regex::validator_derive_1",
"crates_regex::validator_derive_2",
"crates_regex::vat_0",
"crates_regex::vat_1",
"crates_regex::vat_10",
"crates_regex::vat_11",
"crates_regex::vat_12",
"crates_regex::vat_13",
"crates_regex::vat_14",
"crates_regex::vat_15",
"crates_regex::vat_16",
"crates_regex::vat_17",
"crates_regex::vat_18",
"crates_regex::vat_19",
"crates_regex::vat_2",
"crates_regex::vat_20",
"crates_regex::vat_21",
"crates_regex::vat_22",
"crates_regex::vat_23",
"crates_regex::vat_24",
"crates_regex::vat_25",
"crates_regex::vat_26",
"crates_regex::vat_27",
"crates_regex::vat_28",
"crates_regex::vat_29",
"crates_regex::vat_3",
"crates_regex::vat_30",
"crates_regex::vat_31",
"crates_regex::vat_32",
"crates_regex::vat_4",
"crates_regex::vat_5",
"crates_regex::vat_6",
"crates_regex::vat_7",
"crates_regex::vat_8",
"crates_regex::vat_9",
"crates_regex::verex_0",
"crates_regex::verilog_0",
"crates_regex::victoria_dom_0",
"crates_regex::vobsub_0",
"crates_regex::voidmap_0",
"crates_regex::voidmap_1",
"crates_regex::voidmap_10",
"crates_regex::voidmap_11",
"crates_regex::voidmap_12",
"crates_regex::voidmap_13",
"crates_regex::voidmap_14",
"crates_regex::voidmap_15",
"crates_regex::voidmap_16",
"crates_regex::voidmap_17",
"crates_regex::voidmap_18",
"crates_regex::voidmap_19",
"crates_regex::voidmap_2",
"crates_regex::voidmap_3",
"crates_regex::voidmap_4",
"crates_regex::voidmap_5",
"crates_regex::voidmap_6",
"crates_regex::voidmap_7",
"crates_regex::voidmap_8",
"crates_regex::voidmap_9",
"crates_regex::vterm_sys_0",
"crates_regex::waltz_0",
"crates_regex::warheadhateus_0",
"crates_regex::warheadhateus_1",
"crates_regex::warheadhateus_2",
"crates_regex::warheadhateus_3",
"crates_regex::weave_0",
"crates_regex::webgl_generator_0",
"crates_regex::webgl_generator_1",
"crates_regex::webscale_0",
"crates_regex::weld_0",
"crates_regex::weld_1",
"crates_regex::weld_10",
"crates_regex::weld_2",
"crates_regex::weld_3",
"crates_regex::weld_4",
"crates_regex::weld_5",
"crates_regex::weld_6",
"crates_regex::weld_7",
"crates_regex::weld_8",
"crates_regex::weld_9",
"crates_regex::wemo_0",
"crates_regex::wifiscanner_0",
"crates_regex::wifiscanner_1",
"crates_regex::wifiscanner_2",
"crates_regex::wikibase_0",
"crates_regex::woothee_0",
"crates_regex::woothee_1",
"crates_regex::woothee_10",
"crates_regex::woothee_11",
"crates_regex::woothee_12",
"crates_regex::woothee_13",
"crates_regex::woothee_14",
"crates_regex::woothee_15",
"crates_regex::woothee_16",
"crates_regex::woothee_17",
"crates_regex::woothee_18",
"crates_regex::woothee_19",
"crates_regex::woothee_2",
"crates_regex::woothee_20",
"crates_regex::woothee_21",
"crates_regex::woothee_22",
"crates_regex::woothee_23",
"crates_regex::woothee_24",
"crates_regex::woothee_25",
"crates_regex::woothee_26",
"crates_regex::woothee_27",
"crates_regex::woothee_28",
"crates_regex::woothee_29",
"crates_regex::woothee_3",
"crates_regex::woothee_30",
"crates_regex::woothee_31",
"crates_regex::woothee_32",
"crates_regex::woothee_33",
"crates_regex::woothee_34",
"crates_regex::woothee_35",
"crates_regex::woothee_36",
"crates_regex::woothee_37",
"crates_regex::woothee_38",
"crates_regex::woothee_39",
"crates_regex::woothee_4",
"crates_regex::woothee_40",
"crates_regex::woothee_41",
"crates_regex::woothee_42",
"crates_regex::woothee_43",
"crates_regex::woothee_5",
"crates_regex::woothee_6",
"crates_regex::woothee_7",
"crates_regex::woothee_8",
"crates_regex::woothee_9",
"crates_regex::word_replace_0",
"crates_regex::wordcount_0",
"crates_regex::yaml_0",
"crates_regex::yaml_1",
"crates_regex::yaml_10",
"crates_regex::yaml_2",
"crates_regex::yaml_3",
"crates_regex::yaml_4",
"crates_regex::yaml_5",
"crates_regex::yaml_6",
"crates_regex::yaml_7",
"crates_regex::yaml_8",
"crates_regex::yaml_9",
"crates_regex::yobot_0",
"crates_regex::yobot_1",
"crates_regex::yobot_2",
"crates_regex::yobot_3",
"crates_regex::youtube_downloader_0",
"crates_regex::yubibomb_0",
"allow_octal",
"big_empty_regex_fails",
"big_zero_reps_regex_fails",
"big_empty_reps_chain_regex_fails",
"disallow_octal",
"disallow_non_utf8",
"misc::terminates",
"misc::prefix_literal_match",
"misc::prefix_literal_nomatch",
"misc::one_literal_edge",
"oibits",
"regex_is_reasonably_small",
"oibits_regression",
"regression_i969",
"regression_fuzz::empty_any_errors_no_panic",
"regression_fuzz::todo",
"shortest_match::t01",
"shortest_match::t02",
"empty_alt_regex_fails",
"regression_fuzz::big_regex_fails_to_compile"
] |
[] |
[] |
rust-lang/regex
|
2023-04-21T11:29:01Z
|
rust-lang__regex-984
|
diff --git a/regex-syntax/src/hir/translate.rs b/regex-syntax/src/hir/translate.rs
--- a/regex-syntax/src/hir/translate.rs
+++ b/regex-syntax/src/hir/translate.rs
@@ -3287,6 +3287,12 @@ mod tests {
assert_eq!(p.minimum_len(), Some(1));
}
+ #[test]
+ fn analysis_look_set_prefix_any() {
+ let p = props(r"(?-u)(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))");
+ assert!(p.look_set_prefix_any().contains(Look::WordAscii));
+ }
+
#[test]
fn analysis_is_anchored() {
let is_start = |p| props(p).look_set_prefix().contains(Look::Start);
diff --git a/tests/regression.rs b/tests/regression.rs
--- a/tests/regression.rs
+++ b/tests/regression.rs
@@ -220,3 +220,23 @@ matiter!(empty_group_find, r"()Ј01", "zЈ01", (1, 5));
// See: https://github.com/rust-lang/regex/issues/862
mat!(non_greedy_question_literal, r"ab??", "ab", Some((0, 1)));
+
+// See: https://github.com/rust-lang/regex/issues/981
+#[cfg(feature = "unicode")]
+#[test]
+fn regression_bad_word_boundary() {
+ let re = regex_new!(r#"(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))"#).unwrap();
+ let hay = "ubi-Darwin-x86_64.tar.gz";
+ assert!(!re.is_match(text!(hay)));
+ let hay = "ubi-Windows-x86_64.zip";
+ assert!(re.is_match(text!(hay)));
+}
+
+// See: https://github.com/rust-lang/regex/issues/982
+#[cfg(feature = "unicode-perl")]
+#[test]
+fn regression_unicode_perl_not_enabled() {
+ let pat = r"(\d+\s?(years|year|y))?\s?(\d+\s?(months|month|m))?\s?(\d+\s?(weeks|week|w))?\s?(\d+\s?(days|day|d))?\s?(\d+\s?(hours|hour|h))?";
+ let re = regex_new!(pat);
+ assert!(re.is_ok());
+}
|
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -1854,6 +1854,8 @@ struct PropertiesI {
look_set: LookSet,
look_set_prefix: LookSet,
look_set_suffix: LookSet,
+ look_set_prefix_any: LookSet,
+ look_set_suffix_any: LookSet,
utf8: bool,
explicit_captures_len: usize,
static_explicit_captures_len: Option<usize>,
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -1909,6 +1911,19 @@ impl Properties {
self.0.look_set_prefix
}
+ /// Returns a set of all look-around assertions that appear as a _possible_
+ /// prefix for this HIR value. That is, the set returned corresponds to the
+ /// set of assertions that _may_ be passed before matching any bytes in a
+ /// haystack.
+ ///
+ /// For example, `hir.look_set_prefix_any().contains(Look::Start)` returns
+ /// true if and only if it's possible for the regex to match through a
+ /// anchored assertion before consuming any input.
+ #[inline]
+ pub fn look_set_prefix_any(&self) -> LookSet {
+ self.0.look_set_prefix_any
+ }
+
/// Returns a set of all look-around assertions that appear as a suffix for
/// this HIR value. That is, the set returned corresponds to the set of
/// assertions that must be passed in order to be considered a match after
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -1921,6 +1936,19 @@ impl Properties {
self.0.look_set_suffix
}
+ /// Returns a set of all look-around assertions that appear as a _possible_
+ /// suffix for this HIR value. That is, the set returned corresponds to the
+ /// set of assertions that _may_ be passed before matching any bytes in a
+ /// haystack.
+ ///
+ /// For example, `hir.look_set_suffix_any().contains(Look::End)` returns
+ /// true if and only if it's possible for the regex to match through a
+ /// anchored assertion at the end of a match without consuming any input.
+ #[inline]
+ pub fn look_set_suffix_any(&self) -> LookSet {
+ self.0.look_set_suffix_any
+ }
+
/// Return true if and only if the corresponding HIR will always match
/// valid UTF-8.
///
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2188,6 +2216,8 @@ impl Properties {
look_set: LookSet::empty(),
look_set_prefix: fix,
look_set_suffix: fix,
+ look_set_prefix_any: LookSet::empty(),
+ look_set_suffix_any: LookSet::empty(),
utf8: true,
explicit_captures_len: 0,
static_explicit_captures_len,
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2201,6 +2231,8 @@ impl Properties {
props.look_set.set_union(p.look_set());
props.look_set_prefix.set_intersect(p.look_set_prefix());
props.look_set_suffix.set_intersect(p.look_set_suffix());
+ props.look_set_prefix_any.set_union(p.look_set_prefix_any());
+ props.look_set_suffix_any.set_union(p.look_set_suffix_any());
props.utf8 = props.utf8 && p.is_utf8();
props.explicit_captures_len = props
.explicit_captures_len
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2246,6 +2278,8 @@ impl Properties {
look_set: LookSet::empty(),
look_set_prefix: LookSet::empty(),
look_set_suffix: LookSet::empty(),
+ look_set_prefix_any: LookSet::empty(),
+ look_set_suffix_any: LookSet::empty(),
// It is debatable whether an empty regex always matches at valid
// UTF-8 boundaries. Strictly speaking, at a byte oriented view,
// it is clearly false. There are, for example, many empty strings
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2280,6 +2314,8 @@ impl Properties {
look_set: LookSet::empty(),
look_set_prefix: LookSet::empty(),
look_set_suffix: LookSet::empty(),
+ look_set_prefix_any: LookSet::empty(),
+ look_set_suffix_any: LookSet::empty(),
utf8: core::str::from_utf8(&lit.0).is_ok(),
explicit_captures_len: 0,
static_explicit_captures_len: Some(0),
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2297,6 +2333,8 @@ impl Properties {
look_set: LookSet::empty(),
look_set_prefix: LookSet::empty(),
look_set_suffix: LookSet::empty(),
+ look_set_prefix_any: LookSet::empty(),
+ look_set_suffix_any: LookSet::empty(),
utf8: class.is_utf8(),
explicit_captures_len: 0,
static_explicit_captures_len: Some(0),
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2314,6 +2352,8 @@ impl Properties {
look_set: LookSet::singleton(look),
look_set_prefix: LookSet::singleton(look),
look_set_suffix: LookSet::singleton(look),
+ look_set_prefix_any: LookSet::singleton(look),
+ look_set_suffix_any: LookSet::singleton(look),
// This requires a little explanation. Basically, we don't consider
// matching an empty string to be equivalent to matching invalid
// UTF-8, even though technically matching every empty string will
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2355,15 +2395,17 @@ impl Properties {
look_set: p.look_set(),
look_set_prefix: LookSet::empty(),
look_set_suffix: LookSet::empty(),
+ look_set_prefix_any: p.look_set_prefix_any(),
+ look_set_suffix_any: p.look_set_suffix_any(),
utf8: p.is_utf8(),
explicit_captures_len: p.explicit_captures_len(),
static_explicit_captures_len: p.static_explicit_captures_len(),
literal: false,
alternation_literal: false,
};
- // The repetition operator can match the empty string, then its lookset
- // prefix and suffixes themselves remain empty since they are no longer
- // required to match.
+ // If the repetition operator can match the empty string, then its
+ // lookset prefix and suffixes themselves remain empty since they are
+ // no longer required to match.
if rep.min > 0 {
inner.look_set_prefix = p.look_set_prefix();
inner.look_set_suffix = p.look_set_suffix();
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2414,6 +2456,8 @@ impl Properties {
look_set: LookSet::empty(),
look_set_prefix: LookSet::empty(),
look_set_suffix: LookSet::empty(),
+ look_set_prefix_any: LookSet::empty(),
+ look_set_suffix_any: LookSet::empty(),
utf8: true,
explicit_captures_len: 0,
static_explicit_captures_len: Some(0),
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2455,6 +2499,9 @@ impl Properties {
let mut it = concat.iter();
while let Some(x) = it.next() {
props.look_set_prefix.set_union(x.properties().look_set_prefix());
+ props
+ .look_set_prefix_any
+ .set_union(x.properties().look_set_prefix_any());
if x.properties().maximum_len().map_or(true, |x| x > 0) {
break;
}
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -2463,6 +2510,9 @@ impl Properties {
let mut it = concat.iter().rev();
while let Some(x) = it.next() {
props.look_set_suffix.set_union(x.properties().look_set_suffix());
+ props
+ .look_set_suffix_any
+ .set_union(x.properties().look_set_suffix_any());
if x.properties().maximum_len().map_or(true, |x| x > 0) {
break;
}
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -274,18 +274,18 @@ impl ExecBuilder {
// prefixes, so disable them.
prefixes = None;
} else if is_set
- && props.look_set_prefix().contains(Look::Start)
+ && props.look_set_prefix_any().contains(Look::Start)
{
// Regex sets with anchors do not go well with literal
// optimizations.
prefixes = None;
- } else if props.look_set_prefix().contains_word() {
+ } else if props.look_set_prefix_any().contains_word() {
// The new literal extractor ignores look-around while
// the old one refused to extract prefixes from regexes
// that began with a \b. These old creaky regex internals
// can't deal with it, so we drop it.
prefixes = None;
- } else if props.look_set().contains(Look::StartLF) {
+ } else if props.look_set_prefix_any().contains(Look::StartLF) {
// Similar to the reasoning for word boundaries, this old
// regex engine can't handle literal prefixes with '(?m:^)'
// at the beginning of a regex.
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -298,15 +298,16 @@ impl ExecBuilder {
// Partial anchors unfortunately make it hard to use
// suffixes, so disable them.
suffixes = None;
- } else if is_set && props.look_set_suffix().contains(Look::End)
+ } else if is_set
+ && props.look_set_suffix_any().contains(Look::End)
{
// Regex sets with anchors do not go well with literal
// optimizations.
suffixes = None;
- } else if props.look_set_suffix().contains_word() {
+ } else if props.look_set_suffix_any().contains_word() {
// See the prefix case for reasoning here.
suffixes = None;
- } else if props.look_set().contains(Look::EndLF) {
+ } else if props.look_set_suffix_any().contains(Look::EndLF) {
// See the prefix case for reasoning here.
suffixes = None;
}
|
[
"981"
] | 984
|
Regex matching changed in 1.8.0
#### What version of regex are you using?
This appears to be a bug in 1.8.0.
#### Describe the bug at a high level.
Something in the regex matching changed in 1.8.0. I suspect it might be a bug in the handling of word boundaries, `\b`.
#### What are the steps to reproduce the behavior?
```rust
use regex::Regex;
fn main() {
let re = Regex::new(r#"(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))"#).unwrap();
for s in ["ubi-Darwin-x86_64.tar.gz", "ubi-Windows-x86_64.zip"] {
println!("{s} =~ /{}/ => {}", re, re.is_match(s));
}
}
```
With `regex` 1.8.0 the given regex will match both strings, which is surprising. The "win" in "Darwin" is not preceded by a word boundary or underscore. In 1.7.3, this matches only the second string, as I'd expect.
#### What is the actual behavior?
With 1.8.0:
```
$> cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.00s
Running `target/debug/regex-issue`
ubi-Darwin-x86_64.tar.gz =~ /(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))/ => true
ubi-Windows-x86_64.zip =~ /(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))/ => true
```
With 1.7.3:
```
$> cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.00s
Running `target/debug/regex-issue`
ubi-Darwin-x86_64.tar.gz =~ /(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))/ => false
ubi-Windows-x86_64.zip =~ /(?i:(?:\b|_)win(?:32|64|dows)?(?:\b|_))/ => true
```
#### What is the expected behavior?
I expect this to work the way it does in 1.7.3.
|
1.8
|
93316a3b1adc43cc12fab6c73a59f646658cd984
|
d555d6122d1d1a354c45361d029571413beca8ef
|
[
"regression::regression_bad_word_boundary"
] |
[
"compile::tests::byte_classes",
"compile::tests::full_byte_classes",
"dfa::tests::prop_read_write_u32",
"dfa::tests::prop_read_write_i32",
"expand::tests::find_cap_ref1",
"expand::tests::find_cap_ref10",
"expand::tests::find_cap_ref11",
"exec::test::uppercut_s_backtracking_bytes_default_bytes_mismatch",
"exec::test::unicode_lit_star_backtracking_utf8bytes_default_utf8bytes_mismatch",
"expand::tests::find_cap_ref12",
"expand::tests::find_cap_ref13",
"expand::tests::find_cap_ref14",
"expand::tests::find_cap_ref15",
"expand::tests::find_cap_ref16",
"expand::tests::find_cap_ref17",
"expand::tests::find_cap_ref18",
"expand::tests::find_cap_ref19",
"expand::tests::find_cap_ref2",
"expand::tests::find_cap_ref20",
"expand::tests::find_cap_ref21",
"expand::tests::find_cap_ref22",
"expand::tests::find_cap_ref23",
"expand::tests::find_cap_ref24",
"expand::tests::find_cap_ref25",
"expand::tests::find_cap_ref26",
"expand::tests::find_cap_ref3",
"expand::tests::find_cap_ref4",
"expand::tests::find_cap_ref5",
"expand::tests::find_cap_ref6",
"expand::tests::find_cap_ref8",
"expand::tests::find_cap_ref7",
"expand::tests::find_cap_ref9",
"pool::tests::oibits",
"prog::test::test_size_of_inst",
"utf8::tests::prop_decode_last_matches_std",
"utf8::tests::prop_decode_matches_std",
"pool::tests::thread_owner_optimization",
"utf8::tests::prop_encode_matches_std",
"utf8::tests::prop_roundtrip",
"utf8::tests::reject_invalid",
"utf8::tests::reject_invalid_last",
"utf8::tests::prop_roundtrip_last",
"dfa::tests::prop_state_encode_decode",
"api::capture_index_lifetime",
"api::capture_index",
"api::capture_index_panic_name - should panic",
"api::capture_index_panic_usize - should panic",
"api::empty_match_captures_iter",
"api::capture_names",
"api::empty_match_find_iter",
"api::capture_misc",
"api::empty_regex_empty_match",
"api::empty_regex_nonempty_match",
"api::expand1",
"api::expand2",
"api::expand10",
"api::expand5",
"api::expand3",
"api::expand4",
"api::expand6",
"api::expand7",
"api::expand9",
"api::expand8",
"api::expand_name1",
"api::expand_name10",
"api::expand_name11",
"api::expand_name2",
"api::expand_name5",
"api::expand_name3",
"api::expand_name4",
"api::expand_name6",
"api::expand_name8",
"api::expand_name7",
"api::expand_name9",
"api::many_zero_length_match",
"api::one_zero_length_match",
"api::many_sequential_zero_length_match",
"api::first_range_starts_with_left_bracket",
"api::quoted_bracket_set",
"api::split3",
"api::split_trailing_blanks",
"api::split_trailing_blank",
"api::split2",
"crazy::lazy_range_many",
"api::split_none",
"api::split_empty",
"crazy::greedy_one_many_many",
"api::range_ends_with_escape",
"api::regex_string",
"crazy::greedy_many_optional",
"api::splitn_above_limit",
"api::splitn_below_limit",
"api::splitn_at_limit",
"api::sub_capture_matches",
"crazy::lazy_range_min_many",
"crazy::match_email_big",
"api::split1",
"api::splitn_trailing_separator",
"api_str::empty_match_unicode_captures_iter",
"crazy::match_empty12",
"api::splitn_zero_limit",
"crazy::match_empty11",
"crazy::match_empty10",
"crazy::match_empty15",
"api::splitn_trailing_blank",
"crazy::match_empty17",
"api_str::match_as_str",
"api_str::empty_match_unicode_find_iter",
"crazy::match_empty2",
"crazy::match_empty1",
"crazy::ascii_literal",
"crazy::match_email",
"crazy::match_empty16",
"crazy::match_empty18",
"crazy::match_empty21",
"crazy::lazy_one_many_many",
"crazy::match_empty6",
"crazy::match_empty9",
"crazy::greedy_one_many_optional",
"crazy::match_email_not",
"crazy::match_empty8",
"crazy::match_empty7",
"api::splitn_empty",
"crazy::match_empty4",
"crazy::greedy_range_min_many",
"crazy::lazy_many_many",
"crazy::lazy_many_optional",
"crazy::greedy_range_many",
"crazy::match_empty13",
"crazy::lazy_one_many_optional",
"crazy::match_empty14",
"crazy::match_start_end_empty_many_1",
"crazy::match_float2",
"crazy::match_start_end_empty_rep_rev",
"crazy::match_start_end_empty_rep",
"crazy::negclass_letters",
"crazy::match_empty5",
"crazy::match_ranges_not",
"crazy::match_empty23",
"crazy::negclass_ascii",
"crazy::match_ranges",
"crazy::match_date3",
"crazy::match_empty19",
"crazy::greedy_many_many",
"crazy::match_empty20",
"crazy::match_empty3",
"flags::match_flag_multi",
"crazy::negclass_letter_space",
"crazy::match_empty22",
"crazy::match_start_end_empty_rev",
"crazy::negclass_space",
"crazy::negclass_space_comma",
"crazy::match_date2",
"crazy::match_float3",
"crazy::match_date1",
"flags::match_flag_case",
"fowler::match_basic_103",
"crazy::match_float4",
"flags::match_flag_ungreedy",
"crazy::match_start_end_empty_many_2",
"crazy::match_float1",
"flags::match_flag_weird_case",
"crazy::match_start_end_empty",
"fowler::match_basic_114",
"crazy::negclass_comma",
"flags::match_flag_case_dotnl",
"fowler::match_basic_110",
"crazy::negclass_comma_space",
"crazy::negclass_letter_comma",
"fowler::match_basic_118",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_108",
"fowler::match_basic_113",
"fowler::match_basic_119",
"fowler::match_basic_111",
"flags::match_flag_ungreedy_greedy",
"flags::match_flag_case_dotnl_toggle_not",
"flags::match_flag_case_dotnl_toggle",
"fowler::match_basic_10",
"flags::match_flag_case_dotnl_toggle_ok",
"fowler::match_basic_121",
"fowler::match_basic_100",
"fowler::match_basic_131",
"fowler::match_basic_101",
"fowler::match_basic_115",
"flags::match_flag_weird_case_not",
"fowler::match_basic_135",
"fowler::match_basic_104",
"fowler::match_basic_102",
"fowler::match_basic_105",
"fowler::match_basic_106",
"fowler::match_basic_107",
"fowler::match_basic_134",
"fowler::match_basic_112",
"fowler::match_basic_139",
"fowler::match_basic_12",
"fowler::match_basic_117",
"fowler::match_basic_122",
"fowler::match_basic_120",
"fowler::match_basic_124",
"fowler::match_basic_109",
"fowler::match_basic_145",
"fowler::match_basic_116",
"fowler::match_basic_149",
"fowler::match_basic_142",
"fowler::match_basic_15",
"fowler::match_basic_152",
"fowler::match_basic_123",
"fowler::match_basic_129",
"fowler::match_basic_126",
"fowler::match_basic_138",
"fowler::match_basic_159",
"fowler::match_basic_156",
"fowler::match_basic_141",
"fowler::match_basic_132",
"fowler::match_basic_125",
"fowler::match_basic_166",
"fowler::match_basic_160",
"fowler::match_basic_128",
"fowler::match_basic_133",
"fowler::match_basic_144",
"fowler::match_basic_169",
"fowler::match_basic_147",
"fowler::match_basic_168",
"fowler::match_basic_140",
"fowler::match_basic_148",
"fowler::match_basic_155",
"fowler::match_basic_151",
"fowler::match_basic_137",
"fowler::match_basic_146",
"fowler::match_basic_16",
"fowler::match_basic_158",
"fowler::match_basic_150",
"fowler::match_basic_163",
"fowler::match_basic_157",
"fowler::match_basic_153",
"fowler::match_basic_161",
"fowler::match_basic_165",
"fowler::match_basic_170",
"fowler::match_basic_167",
"fowler::match_basic_164",
"fowler::match_basic_188",
"fowler::match_basic_154",
"fowler::match_basic_17",
"fowler::match_basic_173",
"fowler::match_basic_162",
"fowler::match_basic_182",
"fowler::match_basic_176",
"fowler::match_basic_191",
"fowler::match_basic_20",
"fowler::match_basic_184",
"fowler::match_basic_19",
"fowler::match_basic_193",
"fowler::match_basic_187",
"fowler::match_basic_192",
"fowler::match_basic_177",
"fowler::match_basic_201",
"fowler::match_basic_18",
"fowler::match_basic_181",
"fowler::match_basic_185",
"fowler::match_basic_186",
"fowler::match_basic_172",
"fowler::match_basic_198",
"fowler::match_basic_200",
"fowler::match_basic_190",
"fowler::match_basic_179",
"fowler::match_basic_171",
"fowler::match_basic_175",
"fowler::match_basic_205",
"fowler::match_basic_207",
"fowler::match_basic_189",
"fowler::match_basic_204",
"fowler::match_basic_174",
"fowler::match_basic_178",
"fowler::match_basic_180",
"fowler::match_basic_194",
"fowler::match_basic_218",
"fowler::match_basic_216",
"fowler::match_basic_209",
"fowler::match_basic_195",
"fowler::match_basic_197",
"fowler::match_basic_183",
"fowler::match_basic_214",
"fowler::match_basic_213",
"fowler::match_basic_25",
"fowler::match_basic_215",
"fowler::match_basic_206",
"fowler::match_basic_27",
"fowler::match_basic_208",
"fowler::match_basic_22",
"fowler::match_basic_199",
"fowler::match_basic_23",
"fowler::match_basic_202",
"fowler::match_basic_196",
"fowler::match_basic_33",
"fowler::match_basic_32",
"fowler::match_basic_203",
"fowler::match_basic_21",
"fowler::match_basic_217",
"fowler::match_basic_3",
"fowler::match_basic_30",
"fowler::match_basic_212",
"fowler::match_basic_47",
"fowler::match_basic_36",
"fowler::match_basic_26",
"fowler::match_basic_221",
"fowler::match_basic_210",
"fowler::match_basic_211",
"fowler::match_basic_41",
"fowler::match_basic_49",
"fowler::match_basic_5",
"fowler::match_basic_45",
"fowler::match_basic_220",
"fowler::match_basic_48",
"fowler::match_basic_219",
"fowler::match_basic_42",
"fowler::match_basic_4",
"fowler::match_basic_37",
"fowler::match_basic_44",
"fowler::match_basic_28",
"fowler::match_basic_46",
"fowler::match_basic_54",
"fowler::match_basic_34",
"fowler::match_basic_53",
"fowler::match_basic_50",
"fowler::match_basic_24",
"fowler::match_basic_35",
"fowler::match_basic_29",
"fowler::match_basic_7",
"fowler::match_basic_72",
"fowler::match_basic_38",
"fowler::match_basic_43",
"fowler::match_basic_52",
"fowler::match_basic_6",
"fowler::match_basic_70",
"fowler::match_basic_73",
"fowler::match_basic_65",
"fowler::match_basic_39",
"fowler::match_basic_40",
"fowler::match_basic_71",
"fowler::match_basic_77",
"fowler::match_basic_85",
"fowler::match_basic_58",
"fowler::match_basic_80",
"fowler::match_basic_86",
"fowler::match_basic_9",
"fowler::match_basic_83",
"fowler::match_basic_88",
"fowler::match_basic_66",
"fowler::match_basic_81",
"fowler::match_basic_57",
"fowler::match_basic_68",
"fowler::match_basic_59",
"fowler::match_basic_98",
"fowler::match_basic_67",
"fowler::match_basic_69",
"fowler::match_basic_95",
"fowler::match_basic_97",
"fowler::match_basic_51",
"fowler::match_nullsubexpr_14",
"fowler::match_basic_55",
"fowler::match_basic_56",
"fowler::match_basic_79",
"fowler::match_nullsubexpr_10",
"fowler::match_basic_84",
"fowler::match_basic_89",
"fowler::match_nullsubexpr_13",
"fowler::match_basic_76",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_16",
"fowler::match_basic_94",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_3",
"fowler::match_basic_78",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_30",
"fowler::match_basic_90",
"fowler::match_basic_87",
"fowler::match_nullsubexpr_12",
"fowler::match_nullsubexpr_33",
"fowler::match_basic_96",
"fowler::match_basic_91",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_34",
"fowler::match_basic_99",
"fowler::match_basic_92",
"fowler::match_basic_93",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_15",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_19",
"fowler::match_nullsubexpr_18",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_77",
"fowler::match_nullsubexpr_7",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_70",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_74",
"fowler::match_basic_74",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_43",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_45",
"fowler::match_repetition_106",
"fowler::match_basic_75",
"fowler::match_repetition_102",
"fowler::match_repetition_114",
"fowler::match_nullsubexpr_42",
"fowler::match_repetition_108",
"fowler::match_nullsubexpr_71",
"fowler::match_repetition_12",
"fowler::match_nullsubexpr_50",
"fowler::match_repetition_115",
"fowler::match_repetition_10",
"fowler::match_repetition_127",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_9",
"fowler::match_nullsubexpr_69",
"fowler::match_repetition_130",
"fowler::match_nullsubexpr_78",
"fowler::match_nullsubexpr_8",
"fowler::match_repetition_134",
"fowler::match_nullsubexpr_79",
"fowler::match_repetition_129",
"fowler::match_repetition_143",
"fowler::match_repetition_104",
"fowler::match_repetition_112",
"fowler::match_repetition_159",
"fowler::match_repetition_16",
"fowler::match_repetition_132",
"fowler::match_repetition_100",
"fowler::match_repetition_149",
"fowler::match_repetition_21",
"fowler::match_repetition_11",
"fowler::match_repetition_147",
"fowler::match_repetition_163",
"fowler::match_repetition_126",
"fowler::match_repetition_133",
"fowler::match_repetition_26",
"fowler::match_repetition_128",
"fowler::match_repetition_158",
"fowler::match_repetition_110",
"fowler::match_repetition_131",
"fowler::match_repetition_24",
"fowler::match_repetition_40",
"fowler::match_repetition_50",
"fowler::match_repetition_46",
"fowler::match_repetition_28",
"fowler::match_repetition_41",
"fowler::match_repetition_35",
"fowler::match_repetition_156",
"fowler::match_repetition_34",
"fowler::match_repetition_31",
"fowler::match_repetition_136",
"fowler::match_repetition_14",
"fowler::match_repetition_137",
"fowler::match_repetition_145",
"fowler::match_repetition_152",
"fowler::match_repetition_15",
"fowler::match_repetition_42",
"fowler::match_repetition_150",
"fowler::match_repetition_44",
"fowler::match_repetition_135",
"fowler::match_repetition_154",
"fowler::match_repetition_161",
"fowler::match_repetition_32",
"fowler::match_repetition_20",
"fowler::match_repetition_52",
"fowler::match_repetition_18",
"fowler::match_repetition_25",
"fowler::match_repetition_30",
"fowler::match_repetition_38",
"fowler::match_repetition_76",
"fowler::match_repetition_73",
"fowler::match_repetition_83",
"fowler::match_repetition_92",
"fowler::match_repetition_65",
"fowler::match_repetition_22",
"fowler::match_repetition_53",
"fowler::match_repetition_94",
"fowler::match_repetition_97",
"fowler::match_repetition_59",
"fowler::match_repetition_95",
"fowler::match_repetition_36",
"fowler::match_repetition_47",
"fowler::match_repetition_77",
"multiline::match_multi_2",
"fowler::match_repetition_63",
"fowler::match_repetition_80",
"multiline::match_multi_5",
"multiline::match_multi_9",
"fowler::match_repetition_64",
"multiline::match_multi_rep_12",
"multiline::match_multi_6",
"multiline::match_multi_1",
"multiline::match_multi_3",
"fowler::match_repetition_67",
"fowler::match_repetition_56",
"fowler::match_repetition_57",
"fowler::match_repetition_68",
"fowler::match_repetition_96",
"fowler::match_repetition_61",
"fowler::match_repetition_79",
"fowler::match_repetition_75",
"fowler::match_repetition_70",
"multiline::match_multi_8",
"fowler::match_repetition_91",
"fowler::match_repetition_98",
"multiline::match_multi_rep_11",
"multiline::match_multi_rep_17",
"fowler::match_repetition_90",
"fowler::match_repetition_93",
"multiline::match_multi_rep_6",
"fowler::match_repetition_81",
"multiline::match_multi_rep_15",
"multiline::match_multi_rep_7",
"noparse::fail_counted_no_close",
"fowler::match_repetition_54",
"noparse::fail_class_incomplete",
"noparse::fail_class_no_begin",
"noparse::fail_class_no_boundary",
"noparse::fail_counted_nonnegative",
"noparse::fail_counted_decreasing",
"multiline::match_multi_rep_1",
"multiline::match_multi_4",
"noparse::fail_flag_empty",
"multiline::match_multi_rep_10",
"multiline::match_multi_7",
"multiline::match_multi_rep_8",
"noparse::fail_incomplete_escape",
"noparse::fail_hex_digit",
"noparse::fail_invalid_range",
"noparse::fail_bad_flag",
"noparse::fail_no_repeat_arg",
"noparse::fail_range_end_no_begin",
"multiline::match_multi_rep_2",
"multiline::match_multi_rep_13",
"multiline::match_multi_rep_9",
"multiline::match_multi_rep_14",
"multiline::match_multi_rep_5",
"noparse::fail_bad_capture_name",
"multiline::match_multi_rep_16",
"noparse::fail_close_paren",
"multiline::match_multi_rep_4",
"multiline::match_multi_rep_3",
"noparse::fail_hex_long_digits",
"noparse::fail_unfinished_cap",
"noparse::fail_class_not_closed",
"noparse::fail_class_no_end",
"noparse::fail_range_end_no_boundary",
"regression::captures_after_dfa_premature_end1",
"noparse::fail_octal_digit",
"regression::empty_group_find",
"regression::anchored_prefix1",
"regression::empty_group_match",
"noparse::fail_dupe_named",
"noparse::fail_hex_short",
"regression::blank_matches_nothing_between_space_and_tab",
"regression::partial_anchor_alternate_end",
"noparse::fail_empty_capture_name",
"regression::literal_panic",
"noparse::fail_double_neg",
"regression::partial_anchor_alternate_begin",
"regression::partial_anchor",
"noparse::fail_open_paren",
"noparse::fail_flag_bad",
"regression::ahocorasick1",
"regression::regression_alt_in_alt1",
"noparse::fail_range_end_no_class",
"regression::regression_negated_char_class_1",
"regression::anchored_prefix2",
"regression::flags_are_unset",
"noparse::fail_neg_empty",
"regression::lits_unambiguous2",
"noparse::fail_unfinished_escape",
"regression::regression_invalid_repetition_expr",
"noparse::fail_range_end_no_end",
"regression::anchored_prefix3",
"regression::captures_after_dfa_premature_end2",
"regression::captures_after_dfa_premature_end3",
"regression::regression_nfa_stops1",
"regression::regression_unsorted_binary_search_2",
"regression::regression_negated_char_class_2",
"regression::endl_or_wb",
"regression::regression_unsorted_binary_search_1",
"regression::invalid_regexes_no_crash",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"regression::many_alternates",
"regression::regression_ascii_word_underscore",
"regression::wb_start_x",
"regression::non_greedy_question_literal",
"replace::capture_longest_possible_name",
"regression::regression_invalid_flags_expression",
"regression::regression_alt_in_alt2",
"regression::lits_unambiguous1",
"regression::strange_anchor_non_complete_prefix",
"regression::reverse_suffix1",
"regression::zero_or_end",
"regression::split_on_word_boundary",
"replace::groups",
"replace::impl_cow_slice_owned_ref",
"regression::regression_leftmost_first_prefix",
"regression::regression_captures_rep",
"replace::impl_cow_str_borrowed",
"replace::impl_vec_u8_ref",
"replace::all",
"replace::closure_returning_value",
"replace::first",
"regression::strange_anchor_non_complete_suffix",
"replace::impl_cow_str_owned",
"regression::reverse_suffix3",
"regression::word_boundary_dfa",
"regression::y_or_endl",
"replace::number_hypen",
"replace::impl_cow_slice_borrowed_ref",
"searcher::searcher_empty_regex",
"replace::double_dollar",
"replace::closure_returning_reference",
"regression::reverse_suffix2",
"replace::match_at_start_replace_with_empty",
"searcher::searcher_empty_haystack",
"searcher::searcher_empty_regex_empty_haystack",
"replace::simple_expand",
"replace::impl_cow_slice_borrowed",
"replace::impl_cow_slice_owned",
"replace::named",
"searcher::searcher_many_zero_length_matches",
"searcher::searcher_no_match",
"replace::impl_cow_str_borrowed_ref",
"replace::replacen_no_captures",
"replace::no_expand2",
"regression::uni_case_lower_nocase_flag",
"replace::impl_cow_str_owned_ref",
"replace::impl_string",
"replace::trim",
"searcher::searcher_two_non_adjacent_matches",
"searcher::searcher_unicode",
"searcher::searcher_one_match",
"replace::impl_string_ref",
"searcher::searcher_one_zero_length_matches",
"set::get_set_patterns",
"searcher::searcher_reject_first",
"searcher::searcher_two_adjacent_matches",
"replace::impl_vec_u8",
"set::nset3",
"replace::no_expand1",
"set::nset2",
"replace::literal_dollar2",
"set::set10",
"set::set14",
"replace::literal_dollar1",
"replace::replacen_with_captures",
"set::set16",
"replace::plus",
"set::set12",
"regression::regression_unicode_perl_not_enabled",
"set::set9",
"replace::single_empty_match",
"set::setempty3",
"set::set4",
"set::setempty5",
"set::len_and_empty",
"set::set1",
"set::set13",
"set::nset1",
"set::set17",
"set::set7",
"set::regression_subsequent_matches",
"set::default_set_is_empty",
"set::setempty8",
"set::setempty9",
"set::nset4",
"set::set2",
"set::set18",
"set::set3",
"suffix_reverse::t04",
"set::setempty4",
"set::set15",
"set::setempty2",
"set::set11",
"unicode::uni_boundary_none",
"suffix_reverse::t05",
"unicode::uni_class_gcb_prepend",
"set::set8",
"set::setempty6",
"set::setempty1",
"set::setempty7",
"set::set5",
"set::set6",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_cased_letter3",
"unicode::uni_class_gencat_final_punctuation",
"suffix_reverse::t01",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gencat_decimal_numer",
"suffix_reverse::t06",
"unicode::uni_class_gcb_ri2",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_format",
"suffix_reverse::t03",
"suffix_reverse::t02",
"unicode::uni_case",
"unicode::uni_boundary_ogham",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_number",
"unicode::uni_class_gcb_ri3",
"unicode::uni_class_gencat_cased_letter",
"unicode::uni_class_gcb_ri1",
"unicode::uni_class_gencat_format_abbrev3",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_gencat_format_abbrev2",
"unicode::uni_class_gencat_cased_letter2",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_format_abbrev1",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_prop_picto2",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_class_gencat_math",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_gencat_private_use",
"unicode::uni_case_upper",
"unicode::uni_class_sb3",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_gencat_symbol",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_wb4",
"unicode::uni_class_wb5",
"unicode::uni_class_wb2",
"unicode::uni_class_gcb_lvt",
"unicode::uni_class_plus",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_not_boundary_ogham",
"unicode::uni_perl_d_not",
"unicode::uni_class_sb4",
"unicode::uni_class_sb5",
"unicode::uni_class_wb1",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_perl_d_neg",
"unicode::uni_class_prop_emoji2",
"unicode::uni_literal",
"unicode::uni_class_wb3",
"unicode::uni_literal_casei_plus",
"unicode::uni_case_lower",
"unicode::uni_perl_s_not",
"unicode::uni_vithkuqi_literal_upper",
"unicode::uni_perl_s",
"unicode::uni_literal_plus",
"unicode::uni_mixed",
"unicode::uni_vithkuqi_literal_lower",
"unicode::uni_not_class",
"unicode::uni_perl_d",
"unicode::uni_not",
"unicode::uni_case_upper_nocase",
"word_boundary::nb10",
"word_boundary::nb15",
"unicode::uni_not_boundary_none",
"unicode::uni_one",
"word_boundary::nb1",
"unicode::uni_class_gencat_letter",
"unicode::uni_class_sb1",
"word_boundary::nb21",
"unicode::uni_not_class_neg",
"word_boundary::nb20",
"word_boundary::nb2",
"unicode::uni_perl_s_neg",
"word_boundary::nb23",
"word_boundary::nb18",
"word_boundary::nb28",
"word_boundary::nb16",
"unicode::uni_class_sb2",
"unicode::uni_class_gencat_lowercase_letter",
"word_boundary::nb12",
"word_boundary::nb14",
"word_boundary::nb31",
"unicode::uni_class_gencat_other_letter",
"word_boundary::nb11",
"word_boundary::nb13",
"word_boundary::nb33",
"word_boundary::nb37",
"word_boundary::nb4",
"word_boundary::nb19",
"word_boundary::nb34",
"word_boundary::nb17",
"word_boundary::nb36",
"unicode::uni_class_gencat_uppercase_letter",
"word_boundary::nb35",
"word_boundary::nb27",
"word_boundary::nb38",
"word_boundary::nb7",
"word_boundary::nb25",
"word_boundary::nb24",
"word_boundary::nb22",
"word_boundary::nb6",
"word_boundary::nb26",
"word_boundary::wb1",
"unicode::uni_class_gencat_other",
"unicode::uni_class_gencat_unassigned",
"word_boundary::nb5",
"word_boundary::wb10",
"word_boundary::wb17",
"word_boundary::nb3",
"word_boundary::wb12",
"word_boundary::wb11",
"word_boundary::nb29",
"word_boundary::nb30",
"word_boundary::nb32",
"word_boundary::wb24",
"word_boundary::unicode2",
"word_boundary::wb2",
"word_boundary::wb27",
"word_boundary::nb39",
"word_boundary::nb8",
"word_boundary::wb13",
"word_boundary::wb18",
"word_boundary::wb21",
"word_boundary::nb9",
"word_boundary::wb19",
"word_boundary::unicode1",
"word_boundary::wb33",
"word_boundary::wb25",
"word_boundary::wb23",
"word_boundary::wb26",
"word_boundary::wb20",
"word_boundary::wb37",
"word_boundary::wb6",
"word_boundary::wb3",
"word_boundary::wb7",
"word_boundary::wb40",
"word_boundary::wb29",
"word_boundary::wb14",
"word_boundary::wb15",
"word_boundary::wb36",
"unicode::uni_perl_w_neg",
"word_boundary::wb16",
"word_boundary::wb8",
"word_boundary::wb41",
"word_boundary_unicode::unicode2",
"word_boundary_unicode::ascii1",
"word_boundary::wb9",
"word_boundary::wb4",
"word_boundary::wb22",
"word_boundary::wb31",
"word_boundary::wb28",
"word_boundary::wb30",
"word_boundary::wb32",
"word_boundary::wb38",
"word_boundary::wb34",
"word_boundary::wb35",
"word_boundary::wb39",
"word_boundary::wb5",
"crazy::nest_limit_makes_it_parse",
"word_boundary_unicode::unicode1",
"unicode::uni_perl_w_not",
"unicode::uni_perl_w",
"unicode::uni_vithkuqi_word_upper",
"unicode::uni_vithkuqi_word_lower",
"crazy::dfa_handles_pathological_case",
"regression::regression_many_repeat_stack_overflow",
"noparse::fail_too_big",
"bytes::negated_full_byte_range",
"bytes::case_ascii_class",
"bytes::case_ascii_one",
"bytes::perl_s_ascii",
"bytes::null_bytes",
"bytes::dotstar_prefix_not_unicode2",
"bytes::perl_s_unicode",
"bytes::ascii_boundary_no_capture",
"bytes::invalidutf8_anchor3",
"bytes::ascii_boundary_capture",
"bytes::case_unicode",
"bytes::perl_d_ascii",
"bytes::mixed1",
"bytes::perl_w_ascii",
"bytes::word_boundary",
"bytes::dotstar_prefix_not_unicode1",
"bytes::negate_unicode",
"bytes::word_boundary_ascii2",
"bytes::end_not_wb",
"bytes::word_boundary_unicode",
"bytes::word_not_boundary_unicode",
"bytes::negate_not_unicode",
"bytes::invalidutf8_anchor1",
"bytes::case_not_unicode",
"bytes::perl_d_unicode",
"bytes::invalidutf8_anchor2",
"bytes::word_not_boundary",
"bytes::word_boundary_ascii1",
"bytes::perl_w_unicode",
"word_boundary_ascii::unicode2",
"word_boundary_ascii::unicode1",
"word_boundary_ascii::ascii1",
"word_boundary_ascii::ascii3",
"word_boundary_ascii::ascii2",
"crates_regex::actix_web_0",
"crates_regex::actix_web_1",
"crates_regex::aerial_0",
"crates_regex::aerial_1",
"crates_regex::afsort_0",
"crates_regex::afsort_1",
"crates_regex::afsort_2",
"crates_regex::afsort_3",
"crates_regex::afsort_4",
"crates_regex::afsort_5",
"crates_regex::afsort_6",
"crates_regex::afsort_7",
"crates_regex::airkorea_0",
"crates_regex::airkorea_1",
"crates_regex::airkorea_2",
"crates_regex::alcibiades_0",
"crates_regex::althea_kernel_interface_0",
"crates_regex::althea_kernel_interface_1",
"crates_regex::amethyst_tools_0",
"crates_regex::amigo_0",
"crates_regex::amigo_1",
"crates_regex::amigo_2",
"crates_regex::amigo_3",
"crates_regex::amigo_4",
"crates_regex::arpabet_0",
"crates_regex::arpabet_1",
"crates_regex::arthas_derive_0",
"crates_regex::arthas_derive_1",
"crates_regex::arthas_derive_2",
"crates_regex::arthas_plugin_0",
"crates_regex::arthas_plugin_1",
"crates_regex::arthas_plugin_2",
"crates_regex::article_date_extractor_0",
"crates_regex::arthas_plugin_3",
"crates_regex::article_date_extractor_1",
"crates_regex::askalono_0",
"crates_regex::askalono_1",
"crates_regex::askalono_10",
"crates_regex::askalono_2",
"crates_regex::askalono_3",
"crates_regex::askalono_4",
"crates_regex::askalono_5",
"crates_regex::askalono_6",
"crates_regex::askalono_7",
"crates_regex::askalono_8",
"crates_regex::askalono_9",
"crates_regex::assembunny_plus_0",
"crates_regex::assembunny_plus_1",
"crates_regex::atarashii_imap_0",
"crates_regex::atarashii_imap_1",
"crates_regex::atarashii_imap_2",
"crates_regex::atarashii_imap_3",
"crates_regex::atarashii_imap_4",
"crates_regex::atarashii_imap_5",
"crates_regex::atarashii_imap_6",
"crates_regex::atarashii_imap_7",
"crates_regex::aterm_0",
"crates_regex::aterm_1",
"crates_regex::autoshutdown_0",
"crates_regex::avm_0",
"crates_regex::avm_1",
"crates_regex::avro_0",
"crates_regex::avro_1",
"crates_regex::bakervm_0",
"crates_regex::bakervm_1",
"crates_regex::bakervm_10",
"crates_regex::bakervm_2",
"crates_regex::bakervm_3",
"crates_regex::bakervm_4",
"crates_regex::bakervm_5",
"crates_regex::bakervm_6",
"crates_regex::bakervm_7",
"crates_regex::bakervm_8",
"crates_regex::bakervm_9",
"crates_regex::banana_0",
"crates_regex::bbcode_0",
"crates_regex::bbcode_1",
"crates_regex::bbcode_10",
"crates_regex::bbcode_11",
"crates_regex::bbcode_12",
"crates_regex::bbcode_13",
"crates_regex::bbcode_14",
"crates_regex::bbcode_15",
"crates_regex::bbcode_16",
"crates_regex::bbcode_17",
"crates_regex::bbcode_18",
"crates_regex::bbcode_19",
"crates_regex::bbcode_2",
"crates_regex::bbcode_20",
"crates_regex::bbcode_21",
"crates_regex::bbcode_22",
"crates_regex::bbcode_23",
"crates_regex::bbcode_24",
"crates_regex::bbcode_25",
"crates_regex::bbcode_3",
"crates_regex::bbcode_4",
"crates_regex::bbcode_5",
"crates_regex::bbcode_6",
"crates_regex::bbcode_7",
"crates_regex::bbcode_8",
"crates_regex::bbcode_9",
"crates_regex::bindgen_0",
"crates_regex::block_utils_0",
"crates_regex::block_utils_1",
"crates_regex::block_utils_2",
"crates_regex::bobbin_cli_0",
"crates_regex::bobbin_cli_1",
"crates_regex::bobbin_cli_3",
"crates_regex::bobbin_cli_2",
"crates_regex::bobbin_cli_4",
"crates_regex::bobbin_cli_6",
"crates_regex::bobbin_cli_5",
"crates_regex::bobbin_cli_7",
"crates_regex::bobbin_cli_8",
"crates_regex::bobbin_cli_9",
"crates_regex::borsholder_0",
"crates_regex::borsholder_1",
"crates_regex::bullet_core_0",
"crates_regex::bullet_core_1",
"crates_regex::bullet_core_10",
"crates_regex::bullet_core_11",
"crates_regex::bullet_core_12",
"crates_regex::bullet_core_13",
"crates_regex::bullet_core_14",
"crates_regex::bullet_core_3",
"crates_regex::bullet_core_2",
"crates_regex::bullet_core_4",
"crates_regex::bullet_core_5",
"crates_regex::bullet_core_6",
"crates_regex::bullet_core_7",
"crates_regex::bullet_core_8",
"crates_regex::bullet_core_9",
"crates_regex::cabot_0",
"crates_regex::cabot_1",
"crates_regex::canteen_0",
"crates_regex::card_validate_0",
"crates_regex::card_validate_1",
"crates_regex::card_validate_2",
"crates_regex::card_validate_3",
"crates_regex::card_validate_4",
"crates_regex::card_validate_5",
"crates_regex::card_validate_6",
"crates_regex::card_validate_7",
"crates_regex::card_validate_8",
"crates_regex::card_validate_9",
"crates_regex::cargo_brew_0",
"crates_regex::cargo_coverage_annotations_0",
"crates_regex::cargo_culture_kit_0",
"crates_regex::cargo_demangle_0",
"crates_regex::cargo_disassemble_0",
"crates_regex::cargo_edit_0",
"crates_regex::cargo_edit_1",
"crates_regex::cargo_incremental_0",
"crates_regex::cargo_incremental_1",
"crates_regex::cargo_incremental_2",
"crates_regex::cargo_incremental_3",
"crates_regex::cargo_release_0",
"crates_regex::cargo_release_1",
"crates_regex::cargo_screeps_0",
"crates_regex::cargo_script_0",
"crates_regex::cargo_script_1",
"crates_regex::cargo_script_2",
"crates_regex::cargo_script_3",
"crates_regex::cargo_script_4",
"crates_regex::cargo_tarpaulin_0",
"crates_regex::cargo_tarpaulin_1",
"crates_regex::cargo_tarpaulin_2",
"crates_regex::cargo_testify_0",
"crates_regex::cargo_testify_1",
"crates_regex::cargo_testjs_0",
"crates_regex::cargo_update_0",
"crates_regex::cargo_urlcrate_0",
"crates_regex::cargo_wix_0",
"crates_regex::cargo_wix_1",
"crates_regex::cargo_wix_2",
"crates_regex::cargo_wix_3",
"crates_regex::carnix_0",
"crates_regex::carnix_1",
"crates_regex::carnix_2",
"crates_regex::carnix_3",
"crates_regex::caseless_0",
"crates_regex::caseless_1",
"crates_regex::cdbd_0",
"crates_regex::cellsplit_0",
"crates_regex::cellsplit_1",
"crates_regex::checkmail_0",
"crates_regex::chema_0",
"crates_regex::chema_1",
"crates_regex::chord3_0",
"crates_regex::chord3_1",
"crates_regex::chord3_2",
"crates_regex::chord3_3",
"crates_regex::cicada_0",
"crates_regex::cicada_1",
"crates_regex::cicada_2",
"crates_regex::cicada_3",
"crates_regex::cicada_4",
"crates_regex::cifar_10_loader_0",
"crates_regex::cifar_10_loader_1",
"crates_regex::circadian_0",
"crates_regex::circadian_1",
"crates_regex::circadian_2",
"crates_regex::clam_0",
"crates_regex::classifier_0",
"crates_regex::claude_0",
"crates_regex::click_0",
"crates_regex::click_1",
"crates_regex::cniguru_0",
"crates_regex::cntk_0",
"crates_regex::cntk_1",
"crates_regex::cobalt_bin_0",
"crates_regex::codeowners_0",
"crates_regex::codeowners_1",
"crates_regex::codeowners_2",
"crates_regex::colorizex_0",
"crates_regex::colorstring_0",
"crates_regex::colorstring_1",
"crates_regex::commodore_0",
"crates_regex::comrak_0",
"crates_regex::conserve_0",
"crates_regex::content_blocker_0",
"crates_regex::content_blocker_1",
"crates_regex::content_blocker_10",
"crates_regex::content_blocker_11",
"crates_regex::content_blocker_12",
"crates_regex::content_blocker_13",
"crates_regex::content_blocker_2",
"crates_regex::content_blocker_3",
"crates_regex::content_blocker_4",
"crates_regex::content_blocker_5",
"crates_regex::content_blocker_6",
"crates_regex::content_blocker_7",
"crates_regex::content_blocker_9",
"crates_regex::content_blocker_8",
"crates_regex::corollary_0",
"crates_regex::corollary_1",
"crates_regex::cosmogony_0",
"crates_regex::cpp_to_rust_0",
"crates_regex::cpp_to_rust_1",
"crates_regex::cpp_to_rust_2",
"crates_regex::cpp_to_rust_3",
"crates_regex::cpp_to_rust_4",
"crates_regex::cpp_to_rust_5",
"crates_regex::cpp_to_rust_generator_0",
"crates_regex::cpp_to_rust_generator_1",
"crates_regex::cpp_to_rust_generator_2",
"crates_regex::cpp_to_rust_generator_3",
"crates_regex::cpp_to_rust_generator_4",
"crates_regex::cpp_to_rust_generator_5",
"crates_regex::cron_rs_0",
"crates_regex::d20_0",
"crates_regex::dash2html_0",
"crates_regex::dash2html_1",
"crates_regex::db_accelerate_0",
"crates_regex::db_accelerate_1",
"crates_regex::deb_version_0",
"crates_regex::debcargo_0",
"crates_regex::debcargo_1",
"crates_regex::diesel_cli_0",
"crates_regex::dishub_0",
"crates_regex::djangohashers_0",
"crates_regex::dok_0",
"crates_regex::dono_0",
"crates_regex::dono_1",
"crates_regex::dono_2",
"crates_regex::drill_0",
"crates_regex::duration_parser_0",
"crates_regex::dutree_0",
"crates_regex::dvb_1",
"crates_regex::dvb_0",
"crates_regex::dvb_2",
"crates_regex::editorconfig_0",
"crates_regex::editorconfig_1",
"crates_regex::editorconfig_2",
"crates_regex::editorconfig_3",
"crates_regex::editorconfig_4",
"crates_regex::editorconfig_5",
"crates_regex::editorconfig_6",
"crates_regex::editorconfig_7",
"crates_regex::editorconfig_8",
"crates_regex::edmunge_0",
"crates_regex::egc_0",
"crates_regex::egg_mode_text_0",
"crates_regex::eliza_0",
"crates_regex::eliza_1",
"crates_regex::eliza_2",
"crates_regex::emojicons_0",
"crates_regex::emote_0",
"crates_regex::epub_0",
"crates_regex::ethcore_logger_0",
"crates_regex::evalrs_0",
"crates_regex::evalrs_1",
"crates_regex::evalrs_2",
"crates_regex::evalrs_3",
"crates_regex::eve_0",
"crates_regex::extrahop_0",
"crates_regex::faker_0",
"crates_regex::faker_1",
"crates_regex::faker_10",
"crates_regex::faker_11",
"crates_regex::faker_2",
"crates_regex::faker_3",
"crates_regex::faker_4",
"crates_regex::faker_5",
"crates_regex::faker_6",
"crates_regex::faker_7",
"crates_regex::faker_8",
"crates_regex::faker_9",
"crates_regex::fancy_prompt_0",
"crates_regex::fancy_prompt_1",
"crates_regex::fancy_regex_0",
"crates_regex::fancy_regex_1",
"crates_regex::fancy_regex_2",
"crates_regex::fanta_0",
"crates_regex::fanta_cli_0",
"crates_regex::fanta_cli_1",
"crates_regex::fblog_0",
"crates_regex::fblog_1",
"crates_regex::feaders_0",
"crates_regex::feaders_1",
"crates_regex::feaders_2",
"crates_regex::feaders_3",
"crates_regex::feaders_4",
"crates_regex::file_logger_0",
"crates_regex::file_scanner_0",
"crates_regex::file_scanner_1",
"crates_regex::file_scanner_2",
"crates_regex::file_scanner_3",
"crates_regex::file_scanner_4",
"crates_regex::file_sniffer_0",
"crates_regex::file_sniffer_1",
"crates_regex::file_sniffer_2",
"crates_regex::file_sniffer_3",
"crates_regex::file_sniffer_4",
"crates_regex::findr_0",
"crates_regex::findr_1",
"crates_regex::findr_2",
"crates_regex::flow_0",
"crates_regex::flow_1",
"crates_regex::flow_2",
"crates_regex::flow_3",
"crates_regex::form_checker_0",
"crates_regex::form_checker_1",
"crates_regex::fractal_matrix_api_0",
"crates_regex::fritzbox_logs_0",
"crates_regex::fs_eventbridge_0",
"crates_regex::fselect_0",
"crates_regex::fselect_1",
"crates_regex::ftp_0",
"crates_regex::ftp_1",
"crates_regex::ftp_2",
"crates_regex::fungi_lang_0",
"crates_regex::gate_build_0",
"crates_regex::genact_0",
"crates_regex::genact_1",
"crates_regex::generate_nix_pkg_0",
"crates_regex::generate_nix_pkg_1",
"crates_regex::generic_dns_update_0",
"crates_regex::generic_dns_update_1",
"crates_regex::generic_dns_update_2",
"crates_regex::generic_dns_update_3",
"crates_regex::generic_dns_update_4",
"crates_regex::generic_dns_update_5",
"crates_regex::geochunk_0",
"crates_regex::ger_0",
"crates_regex::ger_1",
"crates_regex::ggp_rs_0",
"crates_regex::ggp_rs_1",
"crates_regex::git2_codecommit_0",
"crates_regex::git_find_0",
"crates_regex::git_journal_0",
"crates_regex::git_shell_enforce_directory_0",
"crates_regex::git_workarea_0",
"crates_regex::gitlab_api_0",
"crates_regex::gl_helpers_0",
"crates_regex::gl_helpers_1",
"crates_regex::glossy_codegen_0",
"crates_regex::glossy_codegen_1",
"crates_regex::glossy_codegen_2",
"crates_regex::glossy_codegen_3",
"crates_regex::glossy_codegen_4",
"crates_regex::glr_parser_0",
"crates_regex::glr_parser_1",
"crates_regex::glr_parser_2",
"crates_regex::gluster_0",
"crates_regex::gluster_1",
"crates_regex::government_id_0",
"crates_regex::graphql_idl_parser_0",
"crates_regex::graphql_idl_parser_1",
"crates_regex::graphql_idl_parser_10",
"crates_regex::graphql_idl_parser_11",
"crates_regex::graphql_idl_parser_12",
"crates_regex::graphql_idl_parser_13",
"crates_regex::graphql_idl_parser_14",
"crates_regex::graphql_idl_parser_15",
"crates_regex::graphql_idl_parser_16",
"crates_regex::graphql_idl_parser_17",
"crates_regex::graphql_idl_parser_18",
"crates_regex::graphql_idl_parser_19",
"crates_regex::graphql_idl_parser_2",
"crates_regex::graphql_idl_parser_3",
"crates_regex::graphql_idl_parser_4",
"crates_regex::graphql_idl_parser_5",
"crates_regex::graphql_idl_parser_6",
"crates_regex::graphql_idl_parser_7",
"crates_regex::graphql_idl_parser_8",
"crates_regex::graphql_idl_parser_9",
"crates_regex::grimoire_0",
"crates_regex::haikunator_0",
"crates_regex::haikunator_1",
"crates_regex::haikunator_2",
"crates_regex::haikunator_3",
"crates_regex::haikunator_4",
"crates_regex::haikunator_5",
"crates_regex::haikunator_6",
"crates_regex::handlebars_0",
"crates_regex::hoodlum_0",
"crates_regex::html2md_0",
"crates_regex::html2md_1",
"crates_regex::html2md_2",
"crates_regex::html2md_3",
"crates_regex::hueclient_0",
"crates_regex::hueclient_1",
"crates_regex::hueclient_2",
"crates_regex::hueclient_3",
"crates_regex::hyperscan_0",
"crates_regex::hyperscan_1",
"crates_regex::hyperscan_2",
"crates_regex::hyperscan_3",
"crates_regex::iban_validate_0",
"crates_regex::ignore_0",
"crates_regex::image_base64_0",
"crates_regex::image_base64_1",
"crates_regex::image_base64_2",
"crates_regex::imap_0",
"crates_regex::indradb_lib_0",
"crates_regex::ipaddress_0",
"crates_regex::ipaddress_1",
"crates_regex::ipaddress_2",
"crates_regex::iptables_0",
"crates_regex::isbnid_0",
"crates_regex::isbnid_1",
"crates_regex::ispc_0",
"crates_regex::java_properties_0",
"crates_regex::java_properties_1",
"crates_regex::java_properties_2",
"crates_regex::jieba_rs_0",
"crates_regex::jieba_rs_1",
"crates_regex::jieba_rs_2",
"crates_regex::jieba_rs_3",
"crates_regex::jieba_rs_4",
"crates_regex::jieba_rs_5",
"crates_regex::joseki_0",
"crates_regex::json_pointer_0",
"crates_regex::json_pointer_1",
"crates_regex::just_0",
"crates_regex::kailua_syntax_0",
"crates_regex::kailua_syntax_1",
"crates_regex::karaconv_0",
"crates_regex::katana_0",
"crates_regex::katana_1",
"crates_regex::katana_10",
"crates_regex::katana_11",
"crates_regex::katana_12",
"crates_regex::katana_2",
"crates_regex::katana_3",
"crates_regex::katana_4",
"crates_regex::katana_5",
"crates_regex::katana_6",
"crates_regex::katana_7",
"crates_regex::katana_8",
"crates_regex::katana_9",
"crates_regex::kbgpg_0",
"crates_regex::kefia_0",
"crates_regex::kryptos_0",
"crates_regex::kvvliveapi_0",
"crates_regex::lalrpop_0",
"crates_regex::lalrpop_snap_0",
"crates_regex::libimagentrytag_0",
"crates_regex::libimaginteraction_0",
"crates_regex::libimaginteraction_1",
"crates_regex::libimagutil_0",
"crates_regex::libimagutil_1",
"crates_regex::limonite_0",
"crates_regex::linky_0",
"crates_regex::linky_1",
"crates_regex::linux_ip_0",
"crates_regex::linux_ip_1",
"crates_regex::linux_ip_2",
"crates_regex::linux_ip_3",
"crates_regex::linux_ip_4",
"crates_regex::linux_ip_5",
"crates_regex::linux_ip_6",
"crates_regex::linux_ip_7",
"crates_regex::linux_ip_8",
"crates_regex::linux_ip_9",
"crates_regex::lit_0",
"crates_regex::lit_1",
"crates_regex::lit_2",
"crates_regex::little_boxes_0",
"crates_regex::lorikeet_0",
"crates_regex::luther_0",
"crates_regex::magnet_app_0",
"crates_regex::magnet_more_0",
"crates_regex::mallumo_0",
"crates_regex::mallumo_1",
"crates_regex::mallumo_2",
"crates_regex::markifier_0",
"crates_regex::mbutiles_0",
"crates_regex::media_filename_0",
"crates_regex::media_filename_1",
"crates_regex::media_filename_2",
"crates_regex::media_filename_3",
"crates_regex::media_filename_4",
"crates_regex::media_filename_5",
"crates_regex::media_filename_6",
"crates_regex::media_filename_7",
"crates_regex::media_filename_8",
"crates_regex::media_filename_9",
"crates_regex::migrant_lib_0",
"crates_regex::migrant_lib_1",
"crates_regex::migrant_lib_2",
"crates_regex::minifier_0",
"crates_regex::minifier_1",
"crates_regex::minifier_2",
"crates_regex::minifier_3",
"crates_regex::minifier_4",
"crates_regex::minifier_5",
"crates_regex::minifier_7",
"crates_regex::minifier_6",
"crates_regex::minifier_8",
"crates_regex::minipre_0",
"crates_regex::mob_0",
"crates_regex::mongo_rub_0",
"crates_regex::monger_0",
"crates_regex::mozversion_0",
"crates_regex::multirust_rs_0",
"crates_regex::mysql_common_0",
"crates_regex::mysql_common_1",
"crates_regex::n5_0",
"crates_regex::nail_0",
"crates_regex::nail_1",
"crates_regex::nereon_0",
"crates_regex::next_episode_0",
"crates_regex::nginx_config_0",
"crates_regex::nickel_0",
"crates_regex::nickel_1",
"crates_regex::nlp_tokenize_0",
"crates_regex::nodes_0",
"crates_regex::nomi_0",
"crates_regex::not_stakkr_0",
"crates_regex::notetxt_0",
"crates_regex::numbat_0",
"crates_regex::oatie_0",
"crates_regex::ohmers_0",
"crates_regex::ommui_string_patterns_0",
"crates_regex::ommui_string_patterns_1",
"crates_regex::opcua_types_0",
"crates_regex::opcua_types_1",
"crates_regex::open_read_later_0",
"crates_regex::orm_0",
"crates_regex::os_type_0",
"crates_regex::os_type_1",
"crates_regex::os_type_2",
"crates_regex::os_type_3",
"crates_regex::os_type_4",
"crates_regex::os_type_5",
"crates_regex::os_type_6",
"crates_regex::os_type_7",
"crates_regex::ovpnfile_0",
"crates_regex::ovpnfile_1",
"crates_regex::ovpnfile_2",
"crates_regex::pact_matching_0",
"crates_regex::pact_matching_1",
"crates_regex::pact_matching_2",
"crates_regex::pact_verifier_0",
"crates_regex::pangu_0",
"crates_regex::pangu_1",
"crates_regex::parser_haskell_0",
"crates_regex::parser_haskell_1",
"crates_regex::parser_haskell_2",
"crates_regex::parser_haskell_3",
"crates_regex::parser_haskell_4",
"crates_regex::pew_0",
"crates_regex::pew_1",
"crates_regex::phile_0",
"crates_regex::phile_1",
"crates_regex::phile_2",
"crates_regex::phone_number_0",
"crates_regex::phone_number_1",
"crates_regex::phone_number_2",
"crates_regex::phone_number_3",
"crates_regex::phonenumber_0",
"crates_regex::phonenumber_1",
"crates_regex::phonenumber_2",
"crates_regex::phonenumber_3",
"crates_regex::phonenumber_4",
"crates_regex::phonenumber_5",
"crates_regex::phonenumber_6",
"crates_regex::phonenumber_7",
"crates_regex::pinyin_0",
"crates_regex::pinyin_1",
"crates_regex::pippin_0",
"crates_regex::pippin_1",
"crates_regex::pippin_2",
"crates_regex::pippin_3",
"crates_regex::pippin_4",
"crates_regex::pippin_5",
"crates_regex::pleingres_sql_plugin_0",
"crates_regex::pnet_macros_0",
"crates_regex::po_0",
"crates_regex::poe_superfilter_0",
"crates_regex::poke_a_mango_0",
"crates_regex::polk_0",
"crates_regex::pop3_0",
"crates_regex::pop3_1",
"crates_regex::pop3_2",
"crates_regex::pop3_3",
"crates_regex::pop3_4",
"crates_regex::pop3_5",
"crates_regex::pop3_6",
"crates_regex::pop3_7",
"crates_regex::pop3_rs_0",
"crates_regex::pop3_rs_1",
"crates_regex::pop3_rs_2",
"crates_regex::pop3_rs_3",
"crates_regex::process_queue_0",
"crates_regex::pronghorn_0",
"crates_regex::protocol_ftp_client_0",
"crates_regex::protocol_ftp_client_1",
"crates_regex::protocol_ftp_client_2",
"crates_regex::protocol_ftp_client_3",
"crates_regex::protocol_ftp_client_4",
"crates_regex::protocol_ftp_client_5",
"crates_regex::protocol_ftp_client_6",
"crates_regex::pusher_0",
"crates_regex::pusher_1",
"crates_regex::qasm_0",
"crates_regex::qt_generator_0",
"crates_regex::qt_generator_1",
"crates_regex::queryst_0",
"crates_regex::queryst_1",
"crates_regex::qui_vive_0",
"crates_regex::qui_vive_1",
"crates_regex::qui_vive_2",
"crates_regex::qui_vive_3",
"crates_regex::qui_vive_4",
"crates_regex::qui_vive_5",
"crates_regex::qui_vive_6",
"crates_regex::rafy_0",
"crates_regex::rake_0",
"crates_regex::rargs_0",
"crates_regex::rargs_1",
"crates_regex::rargs_2",
"crates_regex::rargs_3",
"crates_regex::rargs_4",
"crates_regex::raven_0",
"crates_regex::reaper_0",
"crates_regex::recursive_disassembler_0",
"crates_regex::regex_cache_0",
"crates_regex::regex_cache_1",
"crates_regex::regex_cache_2",
"crates_regex::regex_cache_3",
"crates_regex::regex_cache_4",
"crates_regex::regex_decode_0",
"crates_regex::regex_decode_1",
"crates_regex::regex_decode_10",
"crates_regex::regex_decode_11",
"crates_regex::regex_decode_12",
"crates_regex::regex_decode_13",
"crates_regex::regex_decode_2",
"crates_regex::regex_decode_3",
"crates_regex::regex_decode_4",
"crates_regex::regex_decode_5",
"crates_regex::regex_decode_6",
"crates_regex::regex_decode_7",
"crates_regex::regex_decode_8",
"crates_regex::regex_decode_9",
"crates_regex::regex_dfa_0",
"crates_regex::remake_0",
"crates_regex::renvsubst_0",
"crates_regex::renvsubst_1",
"crates_regex::renvsubst_2",
"crates_regex::retdec_0",
"crates_regex::rexpect_0",
"crates_regex::rexpect_1",
"crates_regex::rexpect_2",
"crates_regex::rfc822_sanitizer_0",
"crates_regex::rfc822_sanitizer_1",
"crates_regex::ripgrep_0",
"crates_regex::riquid_0",
"crates_regex::riquid_1",
"crates_regex::risp_0",
"crates_regex::risp_1",
"crates_regex::risp_2",
"crates_regex::risp_3",
"crates_regex::rogcat_0",
"crates_regex::rogcat_1",
"crates_regex::rogcat_2",
"crates_regex::rpi_info_0",
"crates_regex::rpi_info_1",
"crates_regex::rs_jsonpath_0",
"crates_regex::rsure_0",
"crates_regex::rtag_0",
"crates_regex::rtag_1",
"crates_regex::rtag_2",
"crates_regex::rtag_3",
"crates_regex::rtow_0",
"crates_regex::ruma_identifiers_0",
"crates_regex::rumblebars_0",
"crates_regex::rumblebars_1",
"crates_regex::rumblebars_2",
"crates_regex::rumblebars_3",
"crates_regex::rumblebars_4",
"crates_regex::rural_0",
"crates_regex::rural_1",
"crates_regex::rural_2",
"crates_regex::rural_3",
"crates_regex::rusoto_credential_0",
"crates_regex::rusqbin_0",
"crates_regex::rusqbin_1",
"crates_regex::rust_enum_derive_0",
"crates_regex::rust_enum_derive_1",
"crates_regex::rust_enum_derive_2",
"crates_regex::rust_enum_derive_3",
"crates_regex::rust_inbox_0",
"crates_regex::rust_inbox_1",
"crates_regex::rust_inbox_2",
"crates_regex::rust_inbox_3",
"crates_regex::rust_inbox_4",
"crates_regex::rust_inbox_5",
"crates_regex::rust_inbox_6",
"crates_regex::rust_inbox_7",
"crates_regex::rust_inbox_8",
"crates_regex::rust_inbox_9",
"crates_regex::rust_install_0",
"crates_regex::rustache_0",
"crates_regex::rustache_lists_0",
"crates_regex::rustfilt_0",
"crates_regex::rustfmt_0",
"crates_regex::rustfmt_core_0",
"crates_regex::rustfmt_core_1",
"crates_regex::rustfmt_core_2",
"crates_regex::rustfmt_core_3",
"crates_regex::rustfmt_nightly_0",
"crates_regex::rustfmt_nightly_1",
"crates_regex::rustml_0",
"crates_regex::rustml_1",
"crates_regex::rustml_2",
"crates_regex::rustsourcebundler_0",
"crates_regex::rustsourcebundler_1",
"crates_regex::rvsim_0",
"crates_regex::rvue_0",
"crates_regex::rvue_1",
"crates_regex::rvue_2",
"crates_regex::rvue_3",
"crates_regex::rvue_4",
"crates_regex::sabisabi_0",
"crates_regex::sabisabi_1",
"crates_regex::salt_compressor_0",
"crates_regex::sassers_0",
"crates_regex::scarlet_0",
"crates_regex::screenruster_saver_fractal_0",
"crates_regex::sentiment_0",
"crates_regex::sentiment_1",
"crates_regex::sentry_0",
"crates_regex::serde_hjson_0",
"crates_regex::serde_hjson_1",
"crates_regex::serde_hjson_2",
"crates_regex::serde_odbc_0",
"crates_regex::serial_key_0",
"crates_regex::sgf_0",
"crates_regex::sgf_1",
"crates_regex::sgf_2",
"crates_regex::sgf_3",
"crates_regex::shadowsocks_0",
"crates_regex::shellwords_0",
"crates_regex::shellwords_1",
"crates_regex::shkeleton_0",
"crates_regex::shush_0",
"crates_regex::skim_0",
"crates_regex::skim_1",
"crates_regex::skim_10",
"crates_regex::skim_11",
"crates_regex::skim_12",
"crates_regex::skim_2",
"crates_regex::skim_3",
"crates_regex::skim_4",
"crates_regex::skim_5",
"crates_regex::skim_6",
"crates_regex::skim_7",
"crates_regex::skim_8",
"crates_regex::skim_9",
"crates_regex::slippy_map_tiles_0",
"crates_regex::slippy_map_tiles_1",
"crates_regex::slippy_map_tiles_2",
"crates_regex::smtp2go_0",
"crates_regex::sonos_0",
"crates_regex::space_email_api_0",
"crates_regex::spaceslugs_0",
"crates_regex::spaceslugs_1",
"crates_regex::spaceslugs_2",
"crates_regex::spaceslugs_3",
"crates_regex::split_aud_0",
"crates_regex::split_aud_1",
"crates_regex::spotrust_0",
"crates_regex::spreadsheet_textconv_0",
"crates_regex::spreadsheet_textconv_1",
"crates_regex::spreadsheet_textconv_2",
"crates_regex::ssb_common_0",
"crates_regex::ssb_common_1",
"crates_regex::ssb_common_2",
"crates_regex::stache_0",
"crates_regex::steamid_ng_0",
"crates_regex::steamid_ng_1",
"crates_regex::sterling_0",
"crates_regex::strscan_0",
"crates_regex::strscan_1",
"crates_regex::strscan_2",
"crates_regex::strscan_3",
"crates_regex::strscan_4",
"crates_regex::strukt_0",
"crates_regex::substudy_0",
"crates_regex::substudy_1",
"crates_regex::substudy_2",
"crates_regex::substudy_3",
"crates_regex::substudy_4",
"crates_regex::svgrep_0",
"crates_regex::symbolic_debuginfo_0",
"crates_regex::symbolic_minidump_0",
"crates_regex::systemfd_0",
"crates_regex::td_client_0",
"crates_regex::teensy_0",
"crates_regex::telescreen_0",
"crates_regex::tempus_fugit_0",
"crates_regex::termimage_0",
"crates_regex::thieves_cant_0",
"crates_regex::thruster_cli_0",
"crates_regex::tight_0",
"crates_regex::tight_1",
"crates_regex::timespan_0",
"crates_regex::timespan_2",
"crates_regex::timespan_1",
"crates_regex::timespan_3",
"crates_regex::timespan_4",
"crates_regex::timmy_0",
"crates_regex::timmy_1",
"crates_regex::timmy_2",
"crates_regex::timmy_3",
"crates_regex::timmy_4",
"crates_regex::tin_drummer_0",
"crates_regex::tin_drummer_1",
"crates_regex::tin_drummer_2",
"crates_regex::tin_drummer_3",
"crates_regex::tin_drummer_4",
"crates_regex::tin_drummer_5",
"crates_regex::tin_drummer_6",
"crates_regex::tin_drummer_7",
"crates_regex::tin_summer_0",
"crates_regex::tinfo_0",
"crates_regex::tinfo_1",
"crates_regex::titlecase_0",
"crates_regex::tk_carbon_0",
"crates_regex::tk_carbon_1",
"crates_regex::todo_txt_0",
"crates_regex::toml_query_0",
"crates_regex::tsm_sys_0",
"crates_regex::tweetr_0",
"crates_regex::ubiquity_0",
"crates_regex::ubiquity_1",
"crates_regex::ubiquity_2",
"crates_regex::ucd_parse_0",
"crates_regex::ultrastar_txt_0",
"crates_regex::ultrastar_txt_1",
"crates_regex::ultrastar_txt_2",
"crates_regex::ultrastar_txt_3",
"crates_regex::ultrastar_txt_4",
"crates_regex::unicode_names2_macros_0",
"crates_regex::unidiff_0",
"crates_regex::unidiff_1",
"crates_regex::unidiff_2",
"crates_regex::unidiff_3",
"crates_regex::upm_lib_0",
"crates_regex::urdf_rs_0",
"crates_regex::uritemplate_0",
"crates_regex::url_match_0",
"crates_regex::url_match_1",
"crates_regex::validator_derive_0",
"crates_regex::validator_derive_1",
"crates_regex::validator_derive_2",
"crates_regex::vat_0",
"crates_regex::vat_1",
"crates_regex::vat_10",
"crates_regex::vat_11",
"crates_regex::vat_12",
"crates_regex::vat_13",
"crates_regex::vat_14",
"crates_regex::vat_15",
"crates_regex::vat_16",
"crates_regex::vat_17",
"crates_regex::vat_18",
"crates_regex::vat_19",
"crates_regex::vat_2",
"crates_regex::vat_20",
"crates_regex::vat_21",
"crates_regex::vat_22",
"crates_regex::vat_23",
"crates_regex::vat_24",
"crates_regex::vat_25",
"crates_regex::vat_26",
"crates_regex::vat_27",
"crates_regex::vat_28",
"crates_regex::vat_29",
"crates_regex::vat_3",
"crates_regex::vat_30",
"crates_regex::vat_31",
"crates_regex::vat_32",
"crates_regex::vat_4",
"crates_regex::vat_5",
"crates_regex::vat_6",
"crates_regex::vat_7",
"crates_regex::vat_8",
"crates_regex::vat_9",
"crates_regex::verex_0",
"crates_regex::verilog_0",
"crates_regex::victoria_dom_0",
"crates_regex::vobsub_0",
"crates_regex::voidmap_0",
"crates_regex::voidmap_1",
"crates_regex::voidmap_10",
"crates_regex::voidmap_11",
"crates_regex::voidmap_12",
"crates_regex::voidmap_13",
"crates_regex::voidmap_14",
"crates_regex::voidmap_15",
"crates_regex::voidmap_16",
"crates_regex::voidmap_17",
"crates_regex::voidmap_18",
"crates_regex::voidmap_19",
"crates_regex::voidmap_2",
"crates_regex::voidmap_3",
"crates_regex::voidmap_4",
"crates_regex::voidmap_5",
"crates_regex::voidmap_6",
"crates_regex::voidmap_7",
"crates_regex::voidmap_8",
"crates_regex::voidmap_9",
"crates_regex::vterm_sys_0",
"crates_regex::waltz_0",
"crates_regex::warheadhateus_0",
"crates_regex::warheadhateus_1",
"crates_regex::warheadhateus_2",
"crates_regex::warheadhateus_3",
"crates_regex::weave_0",
"crates_regex::webgl_generator_0",
"crates_regex::webgl_generator_1",
"crates_regex::webscale_0",
"crates_regex::weld_0",
"crates_regex::weld_1",
"crates_regex::weld_10",
"crates_regex::weld_2",
"crates_regex::weld_3",
"crates_regex::weld_4",
"crates_regex::weld_5",
"crates_regex::weld_6",
"crates_regex::weld_7",
"crates_regex::weld_8",
"crates_regex::weld_9",
"crates_regex::wemo_0",
"crates_regex::wifiscanner_0",
"crates_regex::wifiscanner_1",
"crates_regex::wifiscanner_2",
"crates_regex::wikibase_0",
"crates_regex::woothee_0",
"crates_regex::woothee_1",
"crates_regex::woothee_10",
"crates_regex::woothee_11",
"crates_regex::woothee_12",
"crates_regex::woothee_13",
"crates_regex::woothee_14",
"crates_regex::woothee_15",
"crates_regex::woothee_16",
"crates_regex::woothee_17",
"crates_regex::woothee_18",
"crates_regex::woothee_19",
"crates_regex::woothee_2",
"crates_regex::woothee_20",
"crates_regex::woothee_21",
"crates_regex::woothee_22",
"crates_regex::woothee_23",
"crates_regex::woothee_24",
"crates_regex::woothee_25",
"crates_regex::woothee_26",
"crates_regex::woothee_27",
"crates_regex::woothee_28",
"crates_regex::woothee_29",
"crates_regex::woothee_3",
"crates_regex::woothee_30",
"crates_regex::woothee_31",
"crates_regex::woothee_32",
"crates_regex::woothee_33",
"crates_regex::woothee_34",
"crates_regex::woothee_35",
"crates_regex::woothee_36",
"crates_regex::woothee_37",
"crates_regex::woothee_38",
"crates_regex::woothee_39",
"crates_regex::woothee_4",
"crates_regex::woothee_40",
"crates_regex::woothee_41",
"crates_regex::woothee_42",
"crates_regex::woothee_43",
"crates_regex::woothee_5",
"crates_regex::woothee_6",
"crates_regex::woothee_7",
"crates_regex::woothee_8",
"crates_regex::woothee_9",
"crates_regex::word_replace_0",
"crates_regex::wordcount_0",
"crates_regex::yaml_0",
"crates_regex::yaml_1",
"crates_regex::yaml_10",
"crates_regex::yaml_2",
"crates_regex::yaml_3",
"crates_regex::yaml_4",
"crates_regex::yaml_5",
"crates_regex::yaml_6",
"crates_regex::yaml_7",
"crates_regex::yaml_8",
"crates_regex::yaml_9",
"crates_regex::yobot_0",
"crates_regex::yobot_1",
"crates_regex::yobot_2",
"crates_regex::yobot_3",
"crates_regex::youtube_downloader_0",
"crates_regex::yubibomb_0",
"allow_octal",
"big_empty_reps_chain_regex_fails",
"big_empty_regex_fails",
"big_zero_reps_regex_fails",
"disallow_octal",
"disallow_non_utf8",
"misc::prefix_literal_nomatch",
"misc::prefix_literal_match",
"misc::terminates",
"misc::one_literal_edge",
"oibits",
"regex_is_reasonably_small",
"oibits_regression",
"regression_i969",
"regression_fuzz::empty_any_errors_no_panic",
"regression_fuzz::todo",
"shortest_match::t02",
"shortest_match::t01",
"empty_alt_regex_fails",
"regression_fuzz::big_regex_fails_to_compile"
] |
[] |
[] |
|
rust-lang/regex
|
2023-03-24T23:57:50Z
|
rust-lang__regex-970
|
diff --git a/tests/test_default.rs b/tests/test_default.rs
--- a/tests/test_default.rs
+++ b/tests/test_default.rs
@@ -220,3 +220,13 @@ fn empty_alt_regex_fails() {
let result = Regex::new(r"(?:|){4294967295}");
assert!(result.is_err());
}
+
+// Regression test for: https://github.com/rust-lang/regex/issues/969
+#[test]
+fn regression_i969() {
+ use regex::Regex;
+
+ let re = Regex::new(r"c.*d\z").unwrap();
+ assert_eq!(Some(6), re.shortest_match_at("ababcd", 4));
+ assert_eq!(Some(6), re.find_at("ababcd", 4).map(|m| m.end()));
+}
|
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -459,7 +459,7 @@ impl<'c> RegularExpression for ExecNoSync<'c> {
self.cache.value(),
true,
&text[start..],
- text.len(),
+ text.len() - start,
) {
dfa::Result::Match(_) => Some(text.len()),
dfa::Result::NoMatch(_) => None,
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -511,7 +511,7 @@ impl<'c> RegularExpression for ExecNoSync<'c> {
self.cache.value(),
true,
&text[start..],
- text.len(),
+ text.len() - start,
) {
dfa::Result::Match(_) => true,
dfa::Result::NoMatch(_) => false,
|
[
"969"
] | 970
|
Index out of bounds panic when using `shortest_match_at`, `is_match_at` with end-anchored regex
#### What version of regex are you using?
1.7.2, 1.7.1
#### Describe the bug at a high level.
`Regex::shortest_match_at` panics for certain regex patterns when given seemingly valid inputs. From the stack trace it looks like it might be specific to patterns that generate reversed FSMs.
#### What are the steps to reproduce the behavior?
([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=c5acc1c26181d7fb67f7d053d8920e63))
```rs
fn main() {
let re = regex::Regex::new(r"c.*d\z").unwrap();
println!("{:?}", re.shortest_match_at("ababcd", 4));
}
```
The same backtrace occurs if `shortest_match_at` is replaced with `is_match_at`.
#### What is the actual behavior?
```
Compiling playground v0.0.1 (/playground)
Finished dev [unoptimized + debuginfo] target(s) in 0.96s
Running `target/debug/playground`
thread 'main' panicked at 'index out of bounds: the len is 2 but the index is 6', /playground/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.1/src/dfa.rs:1444:54
stack backtrace:
0: rust_begin_unwind
at /rustc/8460ca823e8367a30dda430efda790588b8c84d3/library/std/src/panicking.rs:575:5
1: core::panicking::panic_fmt
at /rustc/8460ca823e8367a30dda430efda790588b8c84d3/library/core/src/panicking.rs:64:14
2: core::panicking::panic_bounds_check
at /rustc/8460ca823e8367a30dda430efda790588b8c84d3/library/core/src/panicking.rs:159:5
3: regex::dfa::Fsm::start_flags_reverse
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.1/src/dfa.rs:1444:54
4: regex::dfa::Fsm::reverse
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.1/src/dfa.rs:495:42
5: <regex::exec::ExecNoSync as regex::re_trait::RegularExpression>::shortest_match_at
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.1/src/exec.rs:457:23
6: <regex::exec::ExecNoSyncStr as regex::re_trait::RegularExpression>::shortest_match_at
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.1/src/exec.rs:397:9
7: regex::re_unicode::Regex::shortest_match_at
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.1/src/re_unicode.rs:629:9
8: playground::main
at ./src/main.rs:3:22
9: core::ops::function::FnOnce::call_once
at /rustc/8460ca823e8367a30dda430efda790588b8c84d3/library/core/src/ops/function.rs:250:5
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
```
#### What is the expected behavior?
I believe the output should be `Some(6)` in this case. Since 4 is the index of a character boundary in the input text I think that it certainly shouldn't panic.
|
1.7
|
32fed9429eafba0ae92a64b01796a0c5a75b88c8
|
fd1d95b1bd15db8a31efa82585a1842ad34091f1
|
[
"regression_i969"
] |
[
"compile::tests::byte_classes",
"compile::tests::full_byte_classes",
"dfa::tests::prop_read_write_i32",
"dfa::tests::prop_read_write_u32",
"expand::tests::find_cap_ref1",
"expand::tests::find_cap_ref10",
"expand::tests::find_cap_ref11",
"expand::tests::find_cap_ref12",
"exec::test::unicode_lit_star_backtracking_utf8bytes_default_utf8bytes_mismatch",
"expand::tests::find_cap_ref13",
"expand::tests::find_cap_ref14",
"exec::test::uppercut_s_backtracking_bytes_default_bytes_mismatch",
"expand::tests::find_cap_ref15",
"expand::tests::find_cap_ref16",
"expand::tests::find_cap_ref17",
"expand::tests::find_cap_ref18",
"expand::tests::find_cap_ref19",
"expand::tests::find_cap_ref2",
"expand::tests::find_cap_ref3",
"expand::tests::find_cap_ref4",
"expand::tests::find_cap_ref5",
"expand::tests::find_cap_ref6",
"expand::tests::find_cap_ref7",
"expand::tests::find_cap_ref8",
"expand::tests::find_cap_ref9",
"pool::tests::oibits",
"prog::test::test_size_of_inst",
"utf8::tests::prop_decode_matches_std",
"pool::tests::thread_owner_optimization",
"utf8::tests::prop_decode_last_matches_std",
"utf8::tests::prop_encode_matches_std",
"utf8::tests::prop_roundtrip",
"utf8::tests::reject_invalid",
"utf8::tests::prop_roundtrip_last",
"utf8::tests::reject_invalid_last",
"dfa::tests::prop_state_encode_decode",
"api::capture_index_lifetime",
"api::capture_misc",
"api::capture_index",
"api::empty_match_captures_iter",
"api::capture_names",
"api::empty_match_find_iter",
"api::empty_regex_nonempty_match",
"api::capture_index_panic_usize - should panic",
"api::capture_index_panic_name - should panic",
"api::expand2",
"api::expand1",
"api::empty_regex_empty_match",
"api::expand10",
"api::expand3",
"api::expand6",
"api::expand5",
"api::expand4",
"api::expand9",
"api::expand7",
"api::expand8",
"api::expand_name1",
"api::expand_name10",
"api::expand_name11",
"api::expand_name2",
"api::expand_name3",
"api::expand_name4",
"api::expand_name5",
"api::expand_name6",
"api::expand_name7",
"api::expand_name8",
"api::many_sequential_zero_length_match",
"api::expand_name9",
"api::first_range_starts_with_left_bracket",
"api::many_zero_length_match",
"api::split1",
"api::split_empty",
"api::one_zero_length_match",
"api::quoted_bracket_set",
"api::split_trailing_blank",
"api::splitn_zero_limit",
"crazy::greedy_one_many_many",
"api::range_ends_with_escape",
"api::split3",
"crazy::greedy_range_many",
"api::split2",
"api::regex_string",
"api::split_none",
"api::split_trailing_blanks",
"api::splitn_trailing_separator",
"api::splitn_empty",
"crazy::match_empty10",
"crazy::match_empty14",
"api::splitn_below_limit",
"api::sub_capture_matches",
"api::splitn_at_limit",
"api_str::empty_match_unicode_captures_iter",
"crazy::greedy_many_optional",
"crazy::match_empty12",
"crazy::match_email_not",
"crazy::match_date1",
"api_str::empty_match_unicode_find_iter",
"crazy::match_empty21",
"api::splitn_above_limit",
"crazy::match_empty19",
"crazy::ascii_literal",
"crazy::match_empty15",
"api_str::match_as_str",
"crazy::match_empty17",
"crazy::match_date2",
"crazy::lazy_one_many_optional",
"crazy::lazy_range_many",
"crazy::match_empty3",
"crazy::match_email_big",
"crazy::lazy_one_many_many",
"crazy::greedy_one_many_optional",
"crazy::greedy_range_min_many",
"crazy::match_empty16",
"crazy::match_empty11",
"crazy::match_empty18",
"crazy::match_empty23",
"crazy::match_empty1",
"crazy::match_empty5",
"crazy::lazy_range_min_many",
"crazy::greedy_many_many",
"crazy::match_email",
"crazy::match_float1",
"crazy::lazy_many_many",
"crazy::lazy_many_optional",
"crazy::match_start_end_empty_many_2",
"crazy::match_start_end_empty_rep_rev",
"crazy::negclass_comma_space",
"crazy::match_start_end_empty_rev",
"crazy::match_empty6",
"crazy::match_float4",
"api::splitn_trailing_blank",
"crazy::match_empty7",
"crazy::negclass_ascii",
"crazy::match_empty13",
"crazy::match_empty22",
"crazy::match_date3",
"crazy::negclass_comma",
"flags::match_flag_multi",
"crazy::match_empty2",
"crazy::match_empty20",
"flags::match_flag_case_dotnl_toggle_not",
"flags::match_flag_ungreedy_greedy",
"crazy::match_empty4",
"crazy::match_float2",
"crazy::match_start_end_empty",
"crazy::match_empty8",
"crazy::match_empty9",
"crazy::negclass_letters",
"crazy::match_float3",
"crazy::match_start_end_empty_many_1",
"fowler::match_basic_103",
"fowler::match_basic_100",
"crazy::match_ranges",
"crazy::match_ranges_not",
"fowler::match_basic_104",
"fowler::match_basic_110",
"crazy::match_start_end_empty_rep",
"fowler::match_basic_113",
"fowler::match_basic_114",
"fowler::match_basic_108",
"crazy::negclass_letter_comma",
"crazy::negclass_space_comma",
"fowler::match_basic_115",
"fowler::match_basic_116",
"fowler::match_basic_106",
"fowler::match_basic_105",
"fowler::match_basic_111",
"fowler::match_basic_112",
"crazy::negclass_space",
"fowler::match_basic_109",
"flags::match_flag_case_dotnl_toggle_ok",
"flags::match_flag_case_dotnl",
"crazy::negclass_letter_space",
"flags::match_flag_case_dotnl_toggle",
"flags::match_flag_case",
"flags::match_flag_weird_case_not",
"fowler::match_basic_128",
"flags::match_flag_weird_case",
"fowler::match_basic_102",
"fowler::match_basic_107",
"fowler::match_basic_135",
"fowler::match_basic_141",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_101",
"flags::match_flag_ungreedy",
"fowler::match_basic_125",
"fowler::match_basic_144",
"fowler::match_basic_10",
"fowler::match_basic_118",
"fowler::match_basic_117",
"fowler::match_basic_137",
"fowler::match_basic_12",
"fowler::match_basic_151",
"fowler::match_basic_119",
"fowler::match_basic_124",
"fowler::match_basic_120",
"fowler::match_basic_126",
"fowler::match_basic_138",
"fowler::match_basic_132",
"fowler::match_basic_121",
"fowler::match_basic_157",
"fowler::match_basic_122",
"fowler::match_basic_139",
"fowler::match_basic_129",
"fowler::match_basic_133",
"fowler::match_basic_152",
"fowler::match_basic_134",
"fowler::match_basic_146",
"fowler::match_basic_159",
"fowler::match_basic_123",
"fowler::match_basic_131",
"fowler::match_basic_149",
"fowler::match_basic_140",
"fowler::match_basic_150",
"fowler::match_basic_147",
"fowler::match_basic_142",
"fowler::match_basic_145",
"fowler::match_basic_167",
"fowler::match_basic_16",
"fowler::match_basic_15",
"fowler::match_basic_161",
"fowler::match_basic_148",
"fowler::match_basic_169",
"fowler::match_basic_163",
"fowler::match_basic_162",
"fowler::match_basic_173",
"fowler::match_basic_154",
"fowler::match_basic_153",
"fowler::match_basic_176",
"fowler::match_basic_181",
"fowler::match_basic_183",
"fowler::match_basic_171",
"fowler::match_basic_18",
"fowler::match_basic_156",
"fowler::match_basic_184",
"fowler::match_basic_19",
"fowler::match_basic_182",
"fowler::match_basic_180",
"fowler::match_basic_158",
"fowler::match_basic_185",
"fowler::match_basic_174",
"fowler::match_basic_165",
"fowler::match_basic_155",
"fowler::match_basic_166",
"fowler::match_basic_178",
"fowler::match_basic_160",
"fowler::match_basic_198",
"fowler::match_basic_164",
"fowler::match_basic_168",
"fowler::match_basic_196",
"fowler::match_basic_17",
"fowler::match_basic_195",
"fowler::match_basic_194",
"fowler::match_basic_177",
"fowler::match_basic_186",
"fowler::match_basic_20",
"fowler::match_basic_189",
"fowler::match_basic_179",
"fowler::match_basic_199",
"fowler::match_basic_205",
"fowler::match_basic_172",
"fowler::match_basic_190",
"fowler::match_basic_188",
"fowler::match_basic_170",
"fowler::match_basic_187",
"fowler::match_basic_211",
"fowler::match_basic_175",
"fowler::match_basic_209",
"fowler::match_basic_206",
"fowler::match_basic_217",
"fowler::match_basic_219",
"fowler::match_basic_191",
"fowler::match_basic_193",
"fowler::match_basic_192",
"fowler::match_basic_216",
"fowler::match_basic_204",
"fowler::match_basic_27",
"fowler::match_basic_197",
"fowler::match_basic_35",
"fowler::match_basic_203",
"fowler::match_basic_200",
"fowler::match_basic_202",
"fowler::match_basic_32",
"fowler::match_basic_201",
"fowler::match_basic_21",
"fowler::match_basic_215",
"fowler::match_basic_29",
"fowler::match_basic_25",
"fowler::match_basic_34",
"fowler::match_basic_210",
"fowler::match_basic_208",
"fowler::match_basic_220",
"fowler::match_basic_26",
"fowler::match_basic_42",
"fowler::match_basic_214",
"fowler::match_basic_221",
"fowler::match_basic_218",
"fowler::match_basic_212",
"fowler::match_basic_23",
"fowler::match_basic_24",
"fowler::match_basic_46",
"fowler::match_basic_22",
"fowler::match_basic_3",
"fowler::match_basic_207",
"fowler::match_basic_213",
"fowler::match_basic_30",
"fowler::match_basic_33",
"fowler::match_basic_49",
"fowler::match_basic_28",
"fowler::match_basic_36",
"fowler::match_basic_37",
"fowler::match_basic_55",
"fowler::match_basic_4",
"fowler::match_basic_38",
"fowler::match_basic_45",
"fowler::match_basic_40",
"fowler::match_basic_68",
"fowler::match_basic_39",
"fowler::match_basic_54",
"fowler::match_basic_43",
"fowler::match_basic_7",
"fowler::match_basic_47",
"fowler::match_basic_5",
"fowler::match_basic_52",
"fowler::match_basic_41",
"fowler::match_basic_48",
"fowler::match_basic_44",
"fowler::match_basic_77",
"fowler::match_basic_70",
"fowler::match_basic_72",
"fowler::match_basic_65",
"fowler::match_basic_76",
"fowler::match_basic_85",
"fowler::match_basic_58",
"fowler::match_basic_51",
"fowler::match_basic_73",
"fowler::match_basic_57",
"fowler::match_basic_90",
"fowler::match_basic_59",
"fowler::match_basic_66",
"fowler::match_basic_50",
"fowler::match_basic_53",
"fowler::match_basic_87",
"fowler::match_basic_56",
"fowler::match_basic_81",
"fowler::match_basic_95",
"fowler::match_basic_94",
"fowler::match_basic_67",
"fowler::match_basic_6",
"fowler::match_basic_69",
"fowler::match_basic_98",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_10",
"fowler::match_basic_96",
"fowler::match_basic_89",
"fowler::match_nullsubexpr_16",
"fowler::match_basic_91",
"fowler::match_basic_83",
"fowler::match_basic_78",
"fowler::match_basic_79",
"fowler::match_basic_80",
"fowler::match_basic_97",
"fowler::match_basic_71",
"fowler::match_basic_84",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_32",
"fowler::match_basic_86",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_35",
"fowler::match_basic_9",
"fowler::match_basic_88",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_19",
"fowler::match_nullsubexpr_18",
"fowler::match_basic_92",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_15",
"fowler::match_basic_93",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_69",
"fowler::match_basic_99",
"fowler::match_nullsubexpr_30",
"fowler::match_nullsubexpr_7",
"fowler::match_nullsubexpr_14",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_13",
"fowler::match_nullsubexpr_12",
"fowler::match_nullsubexpr_36",
"fowler::match_basic_74",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_79",
"fowler::match_nullsubexpr_78",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_9",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_34",
"fowler::match_nullsubexpr_33",
"fowler::match_repetition_11",
"fowler::match_repetition_100",
"fowler::match_nullsubexpr_8",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_77",
"fowler::match_basic_75",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_43",
"fowler::match_repetition_110",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_45",
"fowler::match_repetition_12",
"fowler::match_nullsubexpr_71",
"fowler::match_nullsubexpr_70",
"fowler::match_repetition_102",
"fowler::match_repetition_128",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_74",
"fowler::match_repetition_135",
"fowler::match_repetition_10",
"fowler::match_repetition_127",
"fowler::match_repetition_129",
"fowler::match_repetition_154",
"fowler::match_repetition_104",
"fowler::match_repetition_143",
"fowler::match_repetition_106",
"fowler::match_repetition_136",
"fowler::match_repetition_126",
"fowler::match_repetition_14",
"fowler::match_repetition_137",
"fowler::match_repetition_159",
"fowler::match_repetition_112",
"fowler::match_repetition_132",
"fowler::match_repetition_147",
"fowler::match_repetition_150",
"fowler::match_repetition_145",
"fowler::match_repetition_115",
"fowler::match_repetition_15",
"fowler::match_repetition_131",
"fowler::match_repetition_163",
"fowler::match_repetition_108",
"fowler::match_repetition_18",
"fowler::match_repetition_156",
"fowler::match_repetition_34",
"fowler::match_repetition_130",
"fowler::match_repetition_161",
"fowler::match_repetition_134",
"fowler::match_repetition_38",
"fowler::match_repetition_133",
"fowler::match_repetition_114",
"fowler::match_repetition_41",
"fowler::match_repetition_30",
"fowler::match_repetition_35",
"fowler::match_repetition_158",
"fowler::match_repetition_149",
"fowler::match_repetition_57",
"fowler::match_repetition_47",
"fowler::match_repetition_24",
"fowler::match_repetition_53",
"fowler::match_repetition_22",
"fowler::match_repetition_28",
"fowler::match_repetition_152",
"fowler::match_repetition_25",
"fowler::match_repetition_75",
"fowler::match_repetition_63",
"fowler::match_repetition_26",
"fowler::match_repetition_46",
"fowler::match_repetition_79",
"fowler::match_repetition_54",
"fowler::match_repetition_21",
"fowler::match_repetition_20",
"fowler::match_repetition_31",
"fowler::match_repetition_56",
"fowler::match_repetition_90",
"fowler::match_repetition_44",
"fowler::match_repetition_40",
"fowler::match_repetition_16",
"fowler::match_repetition_65",
"fowler::match_repetition_36",
"fowler::match_repetition_83",
"multiline::match_multi_4",
"fowler::match_repetition_50",
"fowler::match_repetition_61",
"fowler::match_repetition_32",
"fowler::match_repetition_67",
"fowler::match_repetition_52",
"fowler::match_repetition_98",
"multiline::match_multi_5",
"fowler::match_repetition_73",
"multiline::match_multi_2",
"fowler::match_repetition_42",
"multiline::match_multi_3",
"fowler::match_repetition_70",
"multiline::match_multi_rep_1",
"multiline::match_multi_rep_14",
"fowler::match_repetition_76",
"fowler::match_repetition_64",
"fowler::match_repetition_59",
"fowler::match_repetition_96",
"fowler::match_repetition_68",
"fowler::match_repetition_97",
"multiline::match_multi_9",
"fowler::match_repetition_81",
"fowler::match_repetition_80",
"multiline::match_multi_8",
"fowler::match_repetition_91",
"multiline::match_multi_rep_13",
"fowler::match_repetition_92",
"multiline::match_multi_rep_9",
"fowler::match_repetition_94",
"noparse::fail_class_no_end",
"fowler::match_repetition_95",
"multiline::match_multi_rep_2",
"fowler::match_repetition_77",
"noparse::fail_class_no_boundary",
"noparse::fail_class_no_begin",
"multiline::match_multi_1",
"fowler::match_repetition_93",
"multiline::match_multi_6",
"multiline::match_multi_7",
"noparse::fail_counted_nonnegative",
"multiline::match_multi_rep_10",
"noparse::fail_counted_no_close",
"multiline::match_multi_rep_11",
"multiline::match_multi_rep_12",
"multiline::match_multi_rep_15",
"multiline::match_multi_rep_4",
"multiline::match_multi_rep_8",
"multiline::match_multi_rep_3",
"multiline::match_multi_rep_17",
"noparse::fail_empty_capture_name",
"noparse::fail_neg_empty",
"noparse::fail_bad_capture_name",
"multiline::match_multi_rep_6",
"multiline::match_multi_rep_5",
"multiline::match_multi_rep_16",
"noparse::fail_counted_decreasing",
"multiline::match_multi_rep_7",
"noparse::fail_flag_bad",
"noparse::fail_close_paren",
"noparse::fail_class_not_closed",
"noparse::fail_hex_long_digits",
"noparse::fail_class_incomplete",
"noparse::fail_bad_flag",
"regression::anchored_prefix2",
"noparse::fail_unfinished_escape",
"noparse::fail_no_repeat_arg",
"regression::empty_group_find",
"noparse::fail_octal_digit",
"regression::empty_group_match",
"noparse::fail_open_paren",
"regression::endl_or_wb",
"regression::blank_matches_nothing_between_space_and_tab",
"regression::captures_after_dfa_premature_end2",
"regression::literal_panic",
"noparse::fail_hex_digit",
"noparse::fail_double_neg",
"noparse::fail_incomplete_escape",
"noparse::fail_hex_short",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"regression::regression_alt_in_alt1",
"noparse::fail_unfinished_cap",
"noparse::fail_dupe_named",
"noparse::fail_range_end_no_begin",
"noparse::fail_flag_empty",
"noparse::fail_invalid_range",
"regression::regression_ascii_word_underscore",
"noparse::fail_range_end_no_class",
"noparse::fail_range_end_no_boundary",
"regression::anchored_prefix1",
"noparse::fail_range_end_no_end",
"regression::anchored_prefix3",
"regression::regression_unsorted_binary_search_1",
"regression::captures_after_dfa_premature_end1",
"regression::regression_alt_in_alt2",
"regression::regression_captures_rep",
"regression::reverse_suffix1",
"regression::regression_negated_char_class_2",
"regression::lits_unambiguous1",
"regression::regression_invalid_repetition_expr",
"regression::captures_after_dfa_premature_end3",
"regression::many_alternates",
"regression::invalid_regexes_no_crash",
"regression::flags_are_unset",
"regression::ahocorasick1",
"regression::zero_or_end",
"regression::partial_anchor_alternate_begin",
"regression::partial_anchor_alternate_end",
"regression::non_greedy_question_literal",
"regression::word_boundary_dfa",
"regression::lits_unambiguous2",
"replace::groups",
"replace::closure_returning_reference",
"regression::partial_anchor",
"regression::reverse_suffix2",
"regression::regression_nfa_stops1",
"regression::regression_invalid_flags_expression",
"regression::split_on_word_boundary",
"replace::impl_cow_slice_owned_ref",
"regression::regression_leftmost_first_prefix",
"regression::strange_anchor_non_complete_suffix",
"replace::impl_cow_str_owned",
"regression::regression_unsorted_binary_search_2",
"regression::regression_negated_char_class_1",
"replace::impl_cow_slice_borrowed_ref",
"replace::impl_string",
"regression::uni_case_lower_nocase_flag",
"regression::strange_anchor_non_complete_prefix",
"replace::capture_longest_possible_name",
"replace::impl_vec_u8_ref",
"regression::y_or_endl",
"replace::plus",
"regression::reverse_suffix3",
"replace::match_at_start_replace_with_empty",
"replace::all",
"regression::wb_start_x",
"replace::named",
"replace::simple_expand",
"searcher::searcher_empty_regex_empty_haystack",
"replace::closure_returning_value",
"searcher::searcher_empty_haystack",
"searcher::searcher_empty_regex",
"replace::first",
"replace::double_dollar",
"replace::impl_cow_slice_owned",
"searcher::searcher_many_zero_length_matches",
"searcher::searcher_no_match",
"searcher::searcher_one_zero_length_matches",
"searcher::searcher_one_match",
"replace::impl_cow_str_borrowed",
"searcher::searcher_reject_first",
"replace::impl_cow_str_borrowed_ref",
"replace::impl_cow_str_owned_ref",
"searcher::searcher_two_adjacent_matches",
"searcher::searcher_two_non_adjacent_matches",
"replace::impl_cow_slice_borrowed",
"replace::impl_string_ref",
"set::get_set_patterns",
"set::set10",
"replace::impl_vec_u8",
"searcher::searcher_unicode",
"replace::single_empty_match",
"replace::literal_dollar2",
"set::nset1",
"replace::literal_dollar1",
"replace::replacen_no_captures",
"set::set15",
"replace::no_expand2",
"replace::number_hypen",
"set::set3",
"set::set18",
"replace::no_expand1",
"set::set13",
"set::set5",
"set::set6",
"replace::replacen_with_captures",
"replace::trim",
"set::setempty2",
"set::setempty5",
"set::nset4",
"set::set12",
"set::set9",
"set::set1",
"set::set14",
"set::setempty4",
"set::set8",
"set::nset3",
"set::len_and_empty",
"suffix_reverse::t06",
"set::set17",
"set::set2",
"set::regression_subsequent_matches",
"set::setempty6",
"set::nset2",
"unicode::uni_class_gcb_prepend",
"set::set11",
"suffix_reverse::t01",
"set::set16",
"set::set7",
"set::setempty8",
"suffix_reverse::t02",
"set::set4",
"unicode::uni_class_gcb_ri3",
"set::setempty1",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gencat_currency_symbol",
"set::setempty3",
"unicode::uni_class_gencat_decimal_numer",
"suffix_reverse::t04",
"unicode::uni_class_gcb_ri2",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_format_abbrev1",
"unicode::uni_class_gcb_ri1",
"suffix_reverse::t03",
"unicode::uni_class_gencat_line_separator",
"set::setempty9",
"unicode::uni_boundary_none",
"suffix_reverse::t05",
"unicode::uni_case",
"unicode::uni_boundary_ogham",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_gencat_modifier_letter",
"set::setempty7",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_class_gcb_lvt",
"unicode::uni_class_gencat_math",
"unicode::uni_class_gencat_format",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gencat_cased_letter",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_number",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_gencat_format_abbrev2",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_class_plus",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gencat_separator",
"unicode::uni_case_upper",
"unicode::uni_class_prop_picto2",
"unicode::uni_class_wb2",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_gencat_private_use",
"unicode::uni_class_gencat_symbol",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_wb3",
"unicode::uni_class_sb5",
"unicode::uni_class_wb4",
"unicode::uni_literal",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_sb3",
"unicode::uni_class_wb5",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_wb1",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_sb4",
"unicode::uni_not_class",
"unicode::uni_class_gencat_other_letter",
"unicode::uni_perl_s",
"unicode::uni_one",
"unicode::uni_case_lower",
"unicode::uni_vithkuqi_literal_upper",
"unicode::uni_literal_casei_plus",
"unicode::uni_mixed",
"unicode::uni_class_sb1",
"unicode::uni_vithkuqi_literal_lower",
"unicode::uni_case_upper_nocase",
"unicode::uni_perl_d_neg",
"unicode::uni_not_boundary_ogham",
"unicode::uni_literal_plus",
"unicode::uni_not_boundary_none",
"unicode::uni_not_class_neg",
"unicode::uni_class_gencat_uppercase_letter",
"unicode::uni_perl_d",
"unicode::uni_perl_d_not",
"unicode::uni_class_sb2",
"unicode::uni_class_gencat_lowercase_letter",
"unicode::uni_perl_s_neg",
"word_boundary::nb23",
"word_boundary::nb11",
"unicode::uni_not",
"word_boundary::nb21",
"word_boundary::nb19",
"unicode::uni_perl_s_not",
"word_boundary::nb15",
"word_boundary::nb2",
"word_boundary::nb26",
"word_boundary::nb28",
"word_boundary::nb1",
"word_boundary::nb27",
"word_boundary::nb14",
"word_boundary::nb3",
"word_boundary::nb30",
"word_boundary::nb22",
"word_boundary::nb17",
"word_boundary::nb10",
"unicode::uni_class_gencat_letter",
"word_boundary::nb38",
"word_boundary::nb16",
"word_boundary::nb12",
"word_boundary::nb20",
"word_boundary::nb18",
"word_boundary::nb13",
"word_boundary::nb37",
"word_boundary::nb24",
"word_boundary::nb6",
"word_boundary::nb9",
"word_boundary::nb25",
"word_boundary::nb34",
"word_boundary::nb7",
"word_boundary::wb15",
"word_boundary::nb29",
"word_boundary::nb33",
"word_boundary::wb12",
"word_boundary::nb31",
"word_boundary::nb8",
"word_boundary::nb32",
"word_boundary::wb17",
"word_boundary::nb39",
"word_boundary::nb36",
"word_boundary::nb35",
"word_boundary::unicode1",
"word_boundary::wb18",
"word_boundary::wb19",
"word_boundary::wb11",
"word_boundary::wb20",
"word_boundary::unicode2",
"word_boundary::wb1",
"word_boundary::nb4",
"word_boundary::wb16",
"word_boundary::nb5",
"unicode::uni_class_gencat_unassigned",
"word_boundary::wb10",
"word_boundary::wb28",
"word_boundary::wb29",
"word_boundary::wb27",
"unicode::uni_perl_w",
"word_boundary::wb35",
"word_boundary::wb32",
"word_boundary::wb25",
"word_boundary::wb31",
"unicode::uni_class_gencat_other",
"word_boundary::wb21",
"word_boundary::wb13",
"word_boundary::wb4",
"word_boundary::wb36",
"word_boundary::wb14",
"word_boundary::wb2",
"word_boundary::wb7",
"word_boundary::wb40",
"word_boundary::wb22",
"word_boundary::wb24",
"word_boundary::wb23",
"unicode::uni_vithkuqi_word_lower",
"word_boundary::wb3",
"word_boundary::wb26",
"word_boundary::wb9",
"word_boundary_unicode::unicode1",
"word_boundary::wb6",
"word_boundary::wb5",
"word_boundary::wb37",
"word_boundary::wb38",
"word_boundary::wb34",
"word_boundary::wb41",
"word_boundary::wb33",
"word_boundary::wb39",
"unicode::uni_perl_w_neg",
"word_boundary::wb30",
"word_boundary::wb8",
"word_boundary_unicode::unicode2",
"word_boundary_unicode::ascii1",
"unicode::uni_perl_w_not",
"unicode::uni_vithkuqi_word_upper",
"crazy::nest_limit_makes_it_parse",
"crazy::dfa_handles_pathological_case",
"noparse::fail_too_big",
"regression::regression_many_repeat_stack_overflow",
"bytes::invalidutf8_anchor1",
"bytes::negate_not_unicode",
"bytes::dotstar_prefix_not_unicode1",
"bytes::invalidutf8_anchor3",
"bytes::invalidutf8_anchor2",
"bytes::ascii_boundary_capture",
"bytes::case_unicode",
"bytes::null_bytes",
"bytes::perl_s_ascii",
"bytes::mixed1",
"bytes::negate_unicode",
"bytes::perl_s_unicode",
"bytes::word_not_boundary",
"bytes::word_boundary_unicode",
"bytes::dotstar_prefix_not_unicode2",
"bytes::word_boundary_ascii2",
"bytes::case_not_unicode",
"bytes::ascii_boundary_no_capture",
"bytes::end_not_wb",
"bytes::case_ascii_class",
"bytes::case_ascii_one",
"bytes::word_boundary_ascii1",
"bytes::negated_full_byte_range",
"bytes::perl_d_unicode",
"bytes::perl_d_ascii",
"bytes::perl_w_ascii",
"bytes::word_not_boundary_unicode",
"bytes::word_boundary",
"bytes::perl_w_unicode",
"word_boundary_ascii::unicode1",
"word_boundary_ascii::ascii1",
"word_boundary_ascii::unicode2",
"word_boundary_ascii::ascii2",
"word_boundary_ascii::ascii3",
"crates_regex::actix_web_0",
"crates_regex::actix_web_1",
"crates_regex::aerial_0",
"crates_regex::aerial_1",
"crates_regex::afsort_0",
"crates_regex::afsort_1",
"crates_regex::afsort_2",
"crates_regex::afsort_3",
"crates_regex::afsort_4",
"crates_regex::afsort_5",
"crates_regex::afsort_6",
"crates_regex::afsort_7",
"crates_regex::airkorea_0",
"crates_regex::airkorea_1",
"crates_regex::airkorea_2",
"crates_regex::alcibiades_0",
"crates_regex::althea_kernel_interface_0",
"crates_regex::althea_kernel_interface_1",
"crates_regex::amethyst_tools_0",
"crates_regex::amigo_0",
"crates_regex::amigo_1",
"crates_regex::amigo_2",
"crates_regex::amigo_3",
"crates_regex::amigo_4",
"crates_regex::arpabet_0",
"crates_regex::arpabet_1",
"crates_regex::arthas_derive_0",
"crates_regex::arthas_derive_1",
"crates_regex::arthas_derive_2",
"crates_regex::arthas_plugin_0",
"crates_regex::arthas_plugin_1",
"crates_regex::arthas_plugin_2",
"crates_regex::arthas_plugin_3",
"crates_regex::article_date_extractor_0",
"crates_regex::article_date_extractor_1",
"crates_regex::askalono_0",
"crates_regex::askalono_1",
"crates_regex::askalono_2",
"crates_regex::askalono_10",
"crates_regex::askalono_3",
"crates_regex::askalono_4",
"crates_regex::askalono_5",
"crates_regex::askalono_7",
"crates_regex::askalono_6",
"crates_regex::askalono_8",
"crates_regex::assembunny_plus_0",
"crates_regex::askalono_9",
"crates_regex::atarashii_imap_0",
"crates_regex::atarashii_imap_1",
"crates_regex::atarashii_imap_2",
"crates_regex::assembunny_plus_1",
"crates_regex::atarashii_imap_3",
"crates_regex::atarashii_imap_4",
"crates_regex::atarashii_imap_5",
"crates_regex::atarashii_imap_6",
"crates_regex::atarashii_imap_7",
"crates_regex::aterm_0",
"crates_regex::aterm_1",
"crates_regex::autoshutdown_0",
"crates_regex::avm_0",
"crates_regex::avm_1",
"crates_regex::avro_0",
"crates_regex::avro_1",
"crates_regex::bakervm_0",
"crates_regex::bakervm_1",
"crates_regex::bakervm_10",
"crates_regex::bakervm_2",
"crates_regex::bakervm_3",
"crates_regex::bakervm_4",
"crates_regex::bakervm_5",
"crates_regex::bakervm_6",
"crates_regex::bakervm_7",
"crates_regex::bakervm_8",
"crates_regex::bakervm_9",
"crates_regex::banana_0",
"crates_regex::bbcode_0",
"crates_regex::bbcode_1",
"crates_regex::bbcode_10",
"crates_regex::bbcode_11",
"crates_regex::bbcode_12",
"crates_regex::bbcode_13",
"crates_regex::bbcode_14",
"crates_regex::bbcode_15",
"crates_regex::bbcode_16",
"crates_regex::bbcode_17",
"crates_regex::bbcode_18",
"crates_regex::bbcode_19",
"crates_regex::bbcode_2",
"crates_regex::bbcode_20",
"crates_regex::bbcode_21",
"crates_regex::bbcode_22",
"crates_regex::bbcode_23",
"crates_regex::bbcode_24",
"crates_regex::bbcode_25",
"crates_regex::bbcode_3",
"crates_regex::bbcode_4",
"crates_regex::bbcode_5",
"crates_regex::bbcode_6",
"crates_regex::bbcode_8",
"crates_regex::bbcode_7",
"crates_regex::bbcode_9",
"crates_regex::bindgen_0",
"crates_regex::block_utils_0",
"crates_regex::block_utils_1",
"crates_regex::block_utils_2",
"crates_regex::bobbin_cli_0",
"crates_regex::bobbin_cli_1",
"crates_regex::bobbin_cli_2",
"crates_regex::bobbin_cli_3",
"crates_regex::bobbin_cli_4",
"crates_regex::bobbin_cli_5",
"crates_regex::bobbin_cli_6",
"crates_regex::bobbin_cli_7",
"crates_regex::bobbin_cli_8",
"crates_regex::bobbin_cli_9",
"crates_regex::borsholder_0",
"crates_regex::borsholder_1",
"crates_regex::bullet_core_0",
"crates_regex::bullet_core_1",
"crates_regex::bullet_core_10",
"crates_regex::bullet_core_11",
"crates_regex::bullet_core_12",
"crates_regex::bullet_core_13",
"crates_regex::bullet_core_14",
"crates_regex::bullet_core_2",
"crates_regex::bullet_core_3",
"crates_regex::bullet_core_4",
"crates_regex::bullet_core_5",
"crates_regex::bullet_core_6",
"crates_regex::bullet_core_7",
"crates_regex::bullet_core_8",
"crates_regex::bullet_core_9",
"crates_regex::cabot_0",
"crates_regex::cabot_1",
"crates_regex::canteen_0",
"crates_regex::card_validate_0",
"crates_regex::card_validate_2",
"crates_regex::card_validate_1",
"crates_regex::card_validate_3",
"crates_regex::card_validate_4",
"crates_regex::card_validate_5",
"crates_regex::card_validate_6",
"crates_regex::card_validate_7",
"crates_regex::card_validate_8",
"crates_regex::card_validate_9",
"crates_regex::cargo_brew_0",
"crates_regex::cargo_coverage_annotations_0",
"crates_regex::cargo_culture_kit_0",
"crates_regex::cargo_demangle_0",
"crates_regex::cargo_disassemble_0",
"crates_regex::cargo_edit_0",
"crates_regex::cargo_edit_1",
"crates_regex::cargo_incremental_1",
"crates_regex::cargo_incremental_0",
"crates_regex::cargo_incremental_2",
"crates_regex::cargo_incremental_3",
"crates_regex::cargo_release_0",
"crates_regex::cargo_release_1",
"crates_regex::cargo_screeps_0",
"crates_regex::cargo_script_0",
"crates_regex::cargo_script_1",
"crates_regex::cargo_script_2",
"crates_regex::cargo_script_3",
"crates_regex::cargo_tarpaulin_0",
"crates_regex::cargo_script_4",
"crates_regex::cargo_tarpaulin_1",
"crates_regex::cargo_tarpaulin_2",
"crates_regex::cargo_testify_0",
"crates_regex::cargo_testify_1",
"crates_regex::cargo_testjs_0",
"crates_regex::cargo_update_0",
"crates_regex::cargo_urlcrate_0",
"crates_regex::cargo_wix_0",
"crates_regex::cargo_wix_1",
"crates_regex::cargo_wix_2",
"crates_regex::cargo_wix_3",
"crates_regex::carnix_0",
"crates_regex::carnix_1",
"crates_regex::carnix_2",
"crates_regex::carnix_3",
"crates_regex::caseless_1",
"crates_regex::caseless_0",
"crates_regex::cdbd_0",
"crates_regex::cellsplit_0",
"crates_regex::cellsplit_1",
"crates_regex::checkmail_0",
"crates_regex::chema_0",
"crates_regex::chema_1",
"crates_regex::chord3_0",
"crates_regex::chord3_1",
"crates_regex::chord3_2",
"crates_regex::chord3_3",
"crates_regex::cicada_0",
"crates_regex::cicada_1",
"crates_regex::cicada_2",
"crates_regex::cicada_3",
"crates_regex::cicada_4",
"crates_regex::cifar_10_loader_0",
"crates_regex::cifar_10_loader_1",
"crates_regex::circadian_0",
"crates_regex::circadian_1",
"crates_regex::circadian_2",
"crates_regex::classifier_0",
"crates_regex::clam_0",
"crates_regex::claude_0",
"crates_regex::click_1",
"crates_regex::click_0",
"crates_regex::cniguru_0",
"crates_regex::cntk_0",
"crates_regex::cntk_1",
"crates_regex::codeowners_0",
"crates_regex::cobalt_bin_0",
"crates_regex::codeowners_1",
"crates_regex::codeowners_2",
"crates_regex::colorizex_0",
"crates_regex::colorstring_0",
"crates_regex::colorstring_1",
"crates_regex::commodore_0",
"crates_regex::comrak_0",
"crates_regex::content_blocker_0",
"crates_regex::conserve_0",
"crates_regex::content_blocker_1",
"crates_regex::content_blocker_10",
"crates_regex::content_blocker_11",
"crates_regex::content_blocker_12",
"crates_regex::content_blocker_13",
"crates_regex::content_blocker_2",
"crates_regex::content_blocker_3",
"crates_regex::content_blocker_4",
"crates_regex::content_blocker_5",
"crates_regex::content_blocker_6",
"crates_regex::content_blocker_7",
"crates_regex::content_blocker_8",
"crates_regex::content_blocker_9",
"crates_regex::corollary_0",
"crates_regex::corollary_1",
"crates_regex::cosmogony_0",
"crates_regex::cpp_to_rust_0",
"crates_regex::cpp_to_rust_1",
"crates_regex::cpp_to_rust_2",
"crates_regex::cpp_to_rust_3",
"crates_regex::cpp_to_rust_4",
"crates_regex::cpp_to_rust_5",
"crates_regex::cpp_to_rust_generator_0",
"crates_regex::cpp_to_rust_generator_1",
"crates_regex::cpp_to_rust_generator_2",
"crates_regex::cpp_to_rust_generator_3",
"crates_regex::cpp_to_rust_generator_4",
"crates_regex::cpp_to_rust_generator_5",
"crates_regex::cron_rs_0",
"crates_regex::d20_0",
"crates_regex::dash2html_0",
"crates_regex::dash2html_1",
"crates_regex::db_accelerate_0",
"crates_regex::db_accelerate_1",
"crates_regex::deb_version_0",
"crates_regex::debcargo_0",
"crates_regex::debcargo_1",
"crates_regex::diesel_cli_0",
"crates_regex::dishub_0",
"crates_regex::djangohashers_0",
"crates_regex::dok_0",
"crates_regex::dono_0",
"crates_regex::dono_1",
"crates_regex::dono_2",
"crates_regex::drill_0",
"crates_regex::duration_parser_0",
"crates_regex::dutree_0",
"crates_regex::dvb_0",
"crates_regex::dvb_2",
"crates_regex::dvb_1",
"crates_regex::editorconfig_0",
"crates_regex::editorconfig_1",
"crates_regex::editorconfig_2",
"crates_regex::editorconfig_3",
"crates_regex::editorconfig_4",
"crates_regex::editorconfig_5",
"crates_regex::editorconfig_6",
"crates_regex::editorconfig_7",
"crates_regex::editorconfig_8",
"crates_regex::edmunge_0",
"crates_regex::egc_0",
"crates_regex::egg_mode_text_0",
"crates_regex::eliza_0",
"crates_regex::eliza_1",
"crates_regex::eliza_2",
"crates_regex::emojicons_0",
"crates_regex::emote_0",
"crates_regex::epub_0",
"crates_regex::ethcore_logger_0",
"crates_regex::evalrs_0",
"crates_regex::evalrs_1",
"crates_regex::evalrs_2",
"crates_regex::evalrs_3",
"crates_regex::eve_0",
"crates_regex::extrahop_0",
"crates_regex::faker_0",
"crates_regex::faker_1",
"crates_regex::faker_10",
"crates_regex::faker_11",
"crates_regex::faker_2",
"crates_regex::faker_3",
"crates_regex::faker_4",
"crates_regex::faker_5",
"crates_regex::faker_6",
"crates_regex::faker_7",
"crates_regex::faker_8",
"crates_regex::faker_9",
"crates_regex::fancy_prompt_0",
"crates_regex::fancy_prompt_1",
"crates_regex::fancy_regex_0",
"crates_regex::fancy_regex_1",
"crates_regex::fancy_regex_2",
"crates_regex::fanta_0",
"crates_regex::fanta_cli_0",
"crates_regex::fanta_cli_1",
"crates_regex::fblog_0",
"crates_regex::fblog_1",
"crates_regex::feaders_0",
"crates_regex::feaders_1",
"crates_regex::feaders_2",
"crates_regex::feaders_3",
"crates_regex::feaders_4",
"crates_regex::file_logger_0",
"crates_regex::file_scanner_0",
"crates_regex::file_scanner_1",
"crates_regex::file_scanner_2",
"crates_regex::file_scanner_3",
"crates_regex::file_scanner_4",
"crates_regex::file_sniffer_0",
"crates_regex::file_sniffer_1",
"crates_regex::file_sniffer_2",
"crates_regex::file_sniffer_3",
"crates_regex::file_sniffer_4",
"crates_regex::findr_0",
"crates_regex::findr_1",
"crates_regex::findr_2",
"crates_regex::flow_0",
"crates_regex::flow_1",
"crates_regex::flow_2",
"crates_regex::flow_3",
"crates_regex::form_checker_0",
"crates_regex::form_checker_1",
"crates_regex::fractal_matrix_api_0",
"crates_regex::fritzbox_logs_0",
"crates_regex::fs_eventbridge_0",
"crates_regex::fselect_0",
"crates_regex::fselect_1",
"crates_regex::ftp_0",
"crates_regex::ftp_1",
"crates_regex::ftp_2",
"crates_regex::fungi_lang_0",
"crates_regex::gate_build_0",
"crates_regex::genact_0",
"crates_regex::genact_1",
"crates_regex::generate_nix_pkg_0",
"crates_regex::generate_nix_pkg_1",
"crates_regex::generic_dns_update_0",
"crates_regex::generic_dns_update_1",
"crates_regex::generic_dns_update_2",
"crates_regex::generic_dns_update_3",
"crates_regex::generic_dns_update_4",
"crates_regex::generic_dns_update_5",
"crates_regex::geochunk_0",
"crates_regex::ger_0",
"crates_regex::ger_1",
"crates_regex::ggp_rs_0",
"crates_regex::ggp_rs_1",
"crates_regex::git2_codecommit_0",
"crates_regex::git_journal_0",
"crates_regex::git_find_0",
"crates_regex::git_shell_enforce_directory_0",
"crates_regex::git_workarea_0",
"crates_regex::gitlab_api_0",
"crates_regex::gl_helpers_0",
"crates_regex::gl_helpers_1",
"crates_regex::glossy_codegen_0",
"crates_regex::glossy_codegen_1",
"crates_regex::glossy_codegen_2",
"crates_regex::glossy_codegen_3",
"crates_regex::glossy_codegen_4",
"crates_regex::glr_parser_0",
"crates_regex::glr_parser_1",
"crates_regex::glr_parser_2",
"crates_regex::gluster_0",
"crates_regex::government_id_0",
"crates_regex::gluster_1",
"crates_regex::graphql_idl_parser_0",
"crates_regex::graphql_idl_parser_1",
"crates_regex::graphql_idl_parser_10",
"crates_regex::graphql_idl_parser_11",
"crates_regex::graphql_idl_parser_12",
"crates_regex::graphql_idl_parser_13",
"crates_regex::graphql_idl_parser_14",
"crates_regex::graphql_idl_parser_15",
"crates_regex::graphql_idl_parser_16",
"crates_regex::graphql_idl_parser_17",
"crates_regex::graphql_idl_parser_18",
"crates_regex::graphql_idl_parser_19",
"crates_regex::graphql_idl_parser_2",
"crates_regex::graphql_idl_parser_3",
"crates_regex::graphql_idl_parser_4",
"crates_regex::graphql_idl_parser_5",
"crates_regex::graphql_idl_parser_6",
"crates_regex::graphql_idl_parser_7",
"crates_regex::graphql_idl_parser_8",
"crates_regex::graphql_idl_parser_9",
"crates_regex::grimoire_0",
"crates_regex::haikunator_0",
"crates_regex::haikunator_1",
"crates_regex::haikunator_2",
"crates_regex::haikunator_3",
"crates_regex::haikunator_4",
"crates_regex::haikunator_5",
"crates_regex::haikunator_6",
"crates_regex::handlebars_0",
"crates_regex::hoodlum_0",
"crates_regex::html2md_0",
"crates_regex::html2md_1",
"crates_regex::html2md_2",
"crates_regex::html2md_3",
"crates_regex::hueclient_0",
"crates_regex::hueclient_1",
"crates_regex::hueclient_2",
"crates_regex::hueclient_3",
"crates_regex::hyperscan_0",
"crates_regex::hyperscan_1",
"crates_regex::hyperscan_2",
"crates_regex::hyperscan_3",
"crates_regex::iban_validate_0",
"crates_regex::image_base64_0",
"crates_regex::ignore_0",
"crates_regex::image_base64_1",
"crates_regex::image_base64_2",
"crates_regex::imap_0",
"crates_regex::indradb_lib_0",
"crates_regex::ipaddress_0",
"crates_regex::ipaddress_1",
"crates_regex::ipaddress_2",
"crates_regex::iptables_0",
"crates_regex::isbnid_0",
"crates_regex::isbnid_1",
"crates_regex::ispc_0",
"crates_regex::java_properties_0",
"crates_regex::java_properties_2",
"crates_regex::java_properties_1",
"crates_regex::jieba_rs_0",
"crates_regex::jieba_rs_1",
"crates_regex::jieba_rs_2",
"crates_regex::jieba_rs_3",
"crates_regex::jieba_rs_4",
"crates_regex::jieba_rs_5",
"crates_regex::joseki_0",
"crates_regex::json_pointer_0",
"crates_regex::json_pointer_1",
"crates_regex::just_0",
"crates_regex::kailua_syntax_0",
"crates_regex::kailua_syntax_1",
"crates_regex::karaconv_0",
"crates_regex::katana_0",
"crates_regex::katana_1",
"crates_regex::katana_10",
"crates_regex::katana_11",
"crates_regex::katana_12",
"crates_regex::katana_2",
"crates_regex::katana_3",
"crates_regex::katana_4",
"crates_regex::katana_5",
"crates_regex::katana_6",
"crates_regex::katana_7",
"crates_regex::katana_8",
"crates_regex::katana_9",
"crates_regex::kbgpg_0",
"crates_regex::kefia_0",
"crates_regex::kryptos_0",
"crates_regex::kvvliveapi_0",
"crates_regex::lalrpop_0",
"crates_regex::lalrpop_snap_0",
"crates_regex::libimagentrytag_0",
"crates_regex::libimaginteraction_0",
"crates_regex::libimaginteraction_1",
"crates_regex::libimagutil_0",
"crates_regex::libimagutil_1",
"crates_regex::limonite_0",
"crates_regex::linky_0",
"crates_regex::linky_1",
"crates_regex::linux_ip_0",
"crates_regex::linux_ip_1",
"crates_regex::linux_ip_2",
"crates_regex::linux_ip_3",
"crates_regex::linux_ip_4",
"crates_regex::linux_ip_5",
"crates_regex::linux_ip_6",
"crates_regex::linux_ip_7",
"crates_regex::linux_ip_8",
"crates_regex::linux_ip_9",
"crates_regex::lit_0",
"crates_regex::lit_1",
"crates_regex::lit_2",
"crates_regex::little_boxes_0",
"crates_regex::lorikeet_0",
"crates_regex::luther_0",
"crates_regex::magnet_app_0",
"crates_regex::magnet_more_0",
"crates_regex::mallumo_0",
"crates_regex::mallumo_1",
"crates_regex::mallumo_2",
"crates_regex::markifier_0",
"crates_regex::mbutiles_0",
"crates_regex::media_filename_0",
"crates_regex::media_filename_1",
"crates_regex::media_filename_2",
"crates_regex::media_filename_3",
"crates_regex::media_filename_4",
"crates_regex::media_filename_5",
"crates_regex::media_filename_6",
"crates_regex::media_filename_7",
"crates_regex::media_filename_8",
"crates_regex::media_filename_9",
"crates_regex::migrant_lib_0",
"crates_regex::migrant_lib_1",
"crates_regex::migrant_lib_2",
"crates_regex::minifier_1",
"crates_regex::minifier_0",
"crates_regex::minifier_3",
"crates_regex::minifier_2",
"crates_regex::minifier_4",
"crates_regex::minifier_5",
"crates_regex::minifier_6",
"crates_regex::minifier_7",
"crates_regex::minifier_8",
"crates_regex::minipre_0",
"crates_regex::mob_0",
"crates_regex::monger_0",
"crates_regex::mongo_rub_0",
"crates_regex::mozversion_0",
"crates_regex::multirust_rs_0",
"crates_regex::mysql_common_0",
"crates_regex::mysql_common_1",
"crates_regex::n5_0",
"crates_regex::nail_0",
"crates_regex::nail_1",
"crates_regex::nereon_0",
"crates_regex::next_episode_0",
"crates_regex::nginx_config_0",
"crates_regex::nickel_0",
"crates_regex::nickel_1",
"crates_regex::nlp_tokenize_0",
"crates_regex::nodes_0",
"crates_regex::nomi_0",
"crates_regex::not_stakkr_0",
"crates_regex::notetxt_0",
"crates_regex::numbat_0",
"crates_regex::oatie_0",
"crates_regex::ohmers_0",
"crates_regex::ommui_string_patterns_0",
"crates_regex::ommui_string_patterns_1",
"crates_regex::opcua_types_0",
"crates_regex::opcua_types_1",
"crates_regex::open_read_later_0",
"crates_regex::orm_0",
"crates_regex::os_type_0",
"crates_regex::os_type_1",
"crates_regex::os_type_2",
"crates_regex::os_type_3",
"crates_regex::os_type_4",
"crates_regex::os_type_5",
"crates_regex::os_type_6",
"crates_regex::os_type_7",
"crates_regex::ovpnfile_0",
"crates_regex::ovpnfile_1",
"crates_regex::ovpnfile_2",
"crates_regex::pact_matching_0",
"crates_regex::pact_matching_1",
"crates_regex::pact_verifier_0",
"crates_regex::pact_matching_2",
"crates_regex::pangu_0",
"crates_regex::pangu_1",
"crates_regex::parser_haskell_0",
"crates_regex::parser_haskell_1",
"crates_regex::parser_haskell_2",
"crates_regex::parser_haskell_3",
"crates_regex::parser_haskell_4",
"crates_regex::pew_0",
"crates_regex::pew_1",
"crates_regex::phile_0",
"crates_regex::phile_1",
"crates_regex::phile_2",
"crates_regex::phone_number_0",
"crates_regex::phone_number_1",
"crates_regex::phone_number_2",
"crates_regex::phone_number_3",
"crates_regex::phonenumber_0",
"crates_regex::phonenumber_1",
"crates_regex::phonenumber_2",
"crates_regex::phonenumber_3",
"crates_regex::phonenumber_4",
"crates_regex::phonenumber_5",
"crates_regex::phonenumber_6",
"crates_regex::phonenumber_7",
"crates_regex::pinyin_0",
"crates_regex::pinyin_1",
"crates_regex::pippin_0",
"crates_regex::pippin_1",
"crates_regex::pippin_2",
"crates_regex::pippin_3",
"crates_regex::pippin_4",
"crates_regex::pippin_5",
"crates_regex::pleingres_sql_plugin_0",
"crates_regex::pnet_macros_0",
"crates_regex::po_0",
"crates_regex::poe_superfilter_0",
"crates_regex::poke_a_mango_0",
"crates_regex::polk_0",
"crates_regex::pop3_0",
"crates_regex::pop3_1",
"crates_regex::pop3_2",
"crates_regex::pop3_3",
"crates_regex::pop3_4",
"crates_regex::pop3_5",
"crates_regex::pop3_6",
"crates_regex::pop3_7",
"crates_regex::pop3_rs_0",
"crates_regex::pop3_rs_1",
"crates_regex::pop3_rs_2",
"crates_regex::pop3_rs_3",
"crates_regex::process_queue_0",
"crates_regex::pronghorn_0",
"crates_regex::protocol_ftp_client_0",
"crates_regex::protocol_ftp_client_1",
"crates_regex::protocol_ftp_client_2",
"crates_regex::protocol_ftp_client_3",
"crates_regex::protocol_ftp_client_4",
"crates_regex::protocol_ftp_client_5",
"crates_regex::protocol_ftp_client_6",
"crates_regex::pusher_0",
"crates_regex::pusher_1",
"crates_regex::qasm_0",
"crates_regex::qt_generator_0",
"crates_regex::qt_generator_1",
"crates_regex::queryst_0",
"crates_regex::queryst_1",
"crates_regex::qui_vive_0",
"crates_regex::qui_vive_1",
"crates_regex::qui_vive_2",
"crates_regex::qui_vive_3",
"crates_regex::qui_vive_4",
"crates_regex::qui_vive_5",
"crates_regex::qui_vive_6",
"crates_regex::rafy_0",
"crates_regex::rake_0",
"crates_regex::rargs_0",
"crates_regex::rargs_1",
"crates_regex::rargs_2",
"crates_regex::rargs_3",
"crates_regex::rargs_4",
"crates_regex::raven_0",
"crates_regex::reaper_0",
"crates_regex::regex_cache_0",
"crates_regex::recursive_disassembler_0",
"crates_regex::regex_cache_1",
"crates_regex::regex_cache_2",
"crates_regex::regex_cache_3",
"crates_regex::regex_cache_4",
"crates_regex::regex_decode_0",
"crates_regex::regex_decode_1",
"crates_regex::regex_decode_10",
"crates_regex::regex_decode_11",
"crates_regex::regex_decode_12",
"crates_regex::regex_decode_13",
"crates_regex::regex_decode_2",
"crates_regex::regex_decode_3",
"crates_regex::regex_decode_4",
"crates_regex::regex_decode_5",
"crates_regex::regex_decode_6",
"crates_regex::regex_decode_7",
"crates_regex::regex_decode_8",
"crates_regex::regex_decode_9",
"crates_regex::regex_dfa_0",
"crates_regex::remake_0",
"crates_regex::renvsubst_0",
"crates_regex::renvsubst_1",
"crates_regex::renvsubst_2",
"crates_regex::retdec_0",
"crates_regex::rexpect_1",
"crates_regex::rexpect_0",
"crates_regex::rexpect_2",
"crates_regex::rfc822_sanitizer_0",
"crates_regex::rfc822_sanitizer_1",
"crates_regex::ripgrep_0",
"crates_regex::riquid_0",
"crates_regex::riquid_1",
"crates_regex::risp_0",
"crates_regex::risp_1",
"crates_regex::risp_2",
"crates_regex::risp_3",
"crates_regex::rogcat_0",
"crates_regex::rogcat_1",
"crates_regex::rogcat_2",
"crates_regex::rpi_info_0",
"crates_regex::rpi_info_1",
"crates_regex::rs_jsonpath_0",
"crates_regex::rsure_0",
"crates_regex::rtag_0",
"crates_regex::rtag_1",
"crates_regex::rtag_2",
"crates_regex::rtag_3",
"crates_regex::rtow_0",
"crates_regex::ruma_identifiers_0",
"crates_regex::rumblebars_0",
"crates_regex::rumblebars_1",
"crates_regex::rumblebars_2",
"crates_regex::rumblebars_3",
"crates_regex::rumblebars_4",
"crates_regex::rural_0",
"crates_regex::rural_1",
"crates_regex::rural_2",
"crates_regex::rural_3",
"crates_regex::rusoto_credential_0",
"crates_regex::rusqbin_0",
"crates_regex::rusqbin_1",
"crates_regex::rust_enum_derive_0",
"crates_regex::rust_enum_derive_1",
"crates_regex::rust_enum_derive_2",
"crates_regex::rust_enum_derive_3",
"crates_regex::rust_inbox_0",
"crates_regex::rust_inbox_1",
"crates_regex::rust_inbox_2",
"crates_regex::rust_inbox_3",
"crates_regex::rust_inbox_4",
"crates_regex::rust_inbox_5",
"crates_regex::rust_inbox_6",
"crates_regex::rust_inbox_7",
"crates_regex::rust_inbox_8",
"crates_regex::rust_inbox_9",
"crates_regex::rust_install_0",
"crates_regex::rustache_0",
"crates_regex::rustache_lists_0",
"crates_regex::rustfilt_0",
"crates_regex::rustfmt_0",
"crates_regex::rustfmt_core_0",
"crates_regex::rustfmt_core_1",
"crates_regex::rustfmt_core_2",
"crates_regex::rustfmt_core_3",
"crates_regex::rustfmt_nightly_0",
"crates_regex::rustfmt_nightly_1",
"crates_regex::rustml_0",
"crates_regex::rustml_1",
"crates_regex::rustml_2",
"crates_regex::rustsourcebundler_0",
"crates_regex::rustsourcebundler_1",
"crates_regex::rvsim_0",
"crates_regex::rvue_0",
"crates_regex::rvue_1",
"crates_regex::rvue_2",
"crates_regex::rvue_3",
"crates_regex::rvue_4",
"crates_regex::sabisabi_0",
"crates_regex::sabisabi_1",
"crates_regex::salt_compressor_0",
"crates_regex::sassers_0",
"crates_regex::scarlet_0",
"crates_regex::screenruster_saver_fractal_0",
"crates_regex::sentiment_0",
"crates_regex::sentiment_1",
"crates_regex::sentry_0",
"crates_regex::serde_hjson_0",
"crates_regex::serde_hjson_1",
"crates_regex::serde_hjson_2",
"crates_regex::serde_odbc_0",
"crates_regex::serial_key_0",
"crates_regex::sgf_0",
"crates_regex::sgf_1",
"crates_regex::sgf_2",
"crates_regex::sgf_3",
"crates_regex::shadowsocks_0",
"crates_regex::shellwords_0",
"crates_regex::shellwords_1",
"crates_regex::shkeleton_0",
"crates_regex::shush_0",
"crates_regex::skim_0",
"crates_regex::skim_1",
"crates_regex::skim_10",
"crates_regex::skim_11",
"crates_regex::skim_12",
"crates_regex::skim_2",
"crates_regex::skim_3",
"crates_regex::skim_4",
"crates_regex::skim_5",
"crates_regex::skim_6",
"crates_regex::skim_7",
"crates_regex::skim_8",
"crates_regex::skim_9",
"crates_regex::slippy_map_tiles_0",
"crates_regex::slippy_map_tiles_1",
"crates_regex::slippy_map_tiles_2",
"crates_regex::smtp2go_0",
"crates_regex::sonos_0",
"crates_regex::space_email_api_0",
"crates_regex::spaceslugs_0",
"crates_regex::spaceslugs_1",
"crates_regex::spaceslugs_2",
"crates_regex::spaceslugs_3",
"crates_regex::split_aud_0",
"crates_regex::split_aud_1",
"crates_regex::spotrust_0",
"crates_regex::spreadsheet_textconv_0",
"crates_regex::spreadsheet_textconv_1",
"crates_regex::spreadsheet_textconv_2",
"crates_regex::ssb_common_0",
"crates_regex::ssb_common_1",
"crates_regex::ssb_common_2",
"crates_regex::stache_0",
"crates_regex::steamid_ng_0",
"crates_regex::steamid_ng_1",
"crates_regex::sterling_0",
"crates_regex::strscan_0",
"crates_regex::strscan_1",
"crates_regex::strscan_2",
"crates_regex::strscan_3",
"crates_regex::strscan_4",
"crates_regex::strukt_0",
"crates_regex::substudy_0",
"crates_regex::substudy_1",
"crates_regex::substudy_2",
"crates_regex::substudy_3",
"crates_regex::substudy_4",
"crates_regex::svgrep_0",
"crates_regex::symbolic_debuginfo_0",
"crates_regex::symbolic_minidump_0",
"crates_regex::systemfd_0",
"crates_regex::td_client_0",
"crates_regex::teensy_0",
"crates_regex::telescreen_0",
"crates_regex::tempus_fugit_0",
"crates_regex::termimage_0",
"crates_regex::thieves_cant_0",
"crates_regex::thruster_cli_0",
"crates_regex::tight_0",
"crates_regex::tight_1",
"crates_regex::timespan_0",
"crates_regex::timespan_1",
"crates_regex::timespan_2",
"crates_regex::timespan_3",
"crates_regex::timespan_4",
"crates_regex::timmy_0",
"crates_regex::timmy_2",
"crates_regex::timmy_1",
"crates_regex::timmy_3",
"crates_regex::timmy_4",
"crates_regex::tin_drummer_0",
"crates_regex::tin_drummer_1",
"crates_regex::tin_drummer_2",
"crates_regex::tin_drummer_3",
"crates_regex::tin_drummer_4",
"crates_regex::tin_drummer_5",
"crates_regex::tin_drummer_6",
"crates_regex::tin_drummer_7",
"crates_regex::tin_summer_0",
"crates_regex::tinfo_0",
"crates_regex::tinfo_1",
"crates_regex::titlecase_0",
"crates_regex::tk_carbon_0",
"crates_regex::tk_carbon_1",
"crates_regex::todo_txt_0",
"crates_regex::toml_query_0",
"crates_regex::tsm_sys_0",
"crates_regex::tweetr_0",
"crates_regex::ubiquity_0",
"crates_regex::ubiquity_1",
"crates_regex::ubiquity_2",
"crates_regex::ucd_parse_0",
"crates_regex::ultrastar_txt_0",
"crates_regex::ultrastar_txt_1",
"crates_regex::ultrastar_txt_2",
"crates_regex::ultrastar_txt_3",
"crates_regex::ultrastar_txt_4",
"crates_regex::unicode_names2_macros_0",
"crates_regex::unidiff_0",
"crates_regex::unidiff_1",
"crates_regex::unidiff_2",
"crates_regex::unidiff_3",
"crates_regex::upm_lib_0",
"crates_regex::urdf_rs_0",
"crates_regex::uritemplate_0",
"crates_regex::url_match_0",
"crates_regex::url_match_1",
"crates_regex::validator_derive_0",
"crates_regex::validator_derive_1",
"crates_regex::validator_derive_2",
"crates_regex::vat_0",
"crates_regex::vat_1",
"crates_regex::vat_10",
"crates_regex::vat_11",
"crates_regex::vat_12",
"crates_regex::vat_13",
"crates_regex::vat_14",
"crates_regex::vat_15",
"crates_regex::vat_16",
"crates_regex::vat_17",
"crates_regex::vat_18",
"crates_regex::vat_19",
"crates_regex::vat_2",
"crates_regex::vat_20",
"crates_regex::vat_21",
"crates_regex::vat_23",
"crates_regex::vat_22",
"crates_regex::vat_24",
"crates_regex::vat_25",
"crates_regex::vat_26",
"crates_regex::vat_27",
"crates_regex::vat_28",
"crates_regex::vat_29",
"crates_regex::vat_3",
"crates_regex::vat_30",
"crates_regex::vat_31",
"crates_regex::vat_32",
"crates_regex::vat_4",
"crates_regex::vat_5",
"crates_regex::vat_6",
"crates_regex::vat_7",
"crates_regex::vat_9",
"crates_regex::vat_8",
"crates_regex::verex_0",
"crates_regex::verilog_0",
"crates_regex::victoria_dom_0",
"crates_regex::vobsub_0",
"crates_regex::voidmap_0",
"crates_regex::voidmap_1",
"crates_regex::voidmap_10",
"crates_regex::voidmap_11",
"crates_regex::voidmap_12",
"crates_regex::voidmap_13",
"crates_regex::voidmap_14",
"crates_regex::voidmap_15",
"crates_regex::voidmap_16",
"crates_regex::voidmap_17",
"crates_regex::voidmap_18",
"crates_regex::voidmap_19",
"crates_regex::voidmap_2",
"crates_regex::voidmap_3",
"crates_regex::voidmap_4",
"crates_regex::voidmap_5",
"crates_regex::voidmap_6",
"crates_regex::voidmap_7",
"crates_regex::voidmap_8",
"crates_regex::voidmap_9",
"crates_regex::vterm_sys_0",
"crates_regex::waltz_0",
"crates_regex::warheadhateus_0",
"crates_regex::warheadhateus_1",
"crates_regex::warheadhateus_2",
"crates_regex::warheadhateus_3",
"crates_regex::weave_0",
"crates_regex::webgl_generator_0",
"crates_regex::webgl_generator_1",
"crates_regex::webscale_0",
"crates_regex::weld_0",
"crates_regex::weld_1",
"crates_regex::weld_10",
"crates_regex::weld_2",
"crates_regex::weld_3",
"crates_regex::weld_4",
"crates_regex::weld_5",
"crates_regex::weld_6",
"crates_regex::weld_7",
"crates_regex::weld_8",
"crates_regex::weld_9",
"crates_regex::wemo_0",
"crates_regex::wifiscanner_0",
"crates_regex::wifiscanner_1",
"crates_regex::wifiscanner_2",
"crates_regex::wikibase_0",
"crates_regex::woothee_0",
"crates_regex::woothee_1",
"crates_regex::woothee_10",
"crates_regex::woothee_11",
"crates_regex::woothee_12",
"crates_regex::woothee_13",
"crates_regex::woothee_14",
"crates_regex::woothee_15",
"crates_regex::woothee_16",
"crates_regex::woothee_17",
"crates_regex::woothee_18",
"crates_regex::woothee_19",
"crates_regex::woothee_2",
"crates_regex::woothee_20",
"crates_regex::woothee_21",
"crates_regex::woothee_22",
"crates_regex::woothee_23",
"crates_regex::woothee_24",
"crates_regex::woothee_25",
"crates_regex::woothee_26",
"crates_regex::woothee_27",
"crates_regex::woothee_28",
"crates_regex::woothee_29",
"crates_regex::woothee_3",
"crates_regex::woothee_30",
"crates_regex::woothee_31",
"crates_regex::woothee_32",
"crates_regex::woothee_34",
"crates_regex::woothee_33",
"crates_regex::woothee_35",
"crates_regex::woothee_36",
"crates_regex::woothee_37",
"crates_regex::woothee_38",
"crates_regex::woothee_39",
"crates_regex::woothee_4",
"crates_regex::woothee_40",
"crates_regex::woothee_41",
"crates_regex::woothee_43",
"crates_regex::woothee_42",
"crates_regex::woothee_5",
"crates_regex::woothee_6",
"crates_regex::woothee_7",
"crates_regex::woothee_8",
"crates_regex::woothee_9",
"crates_regex::word_replace_0",
"crates_regex::wordcount_0",
"crates_regex::yaml_0",
"crates_regex::yaml_1",
"crates_regex::yaml_10",
"crates_regex::yaml_2",
"crates_regex::yaml_3",
"crates_regex::yaml_4",
"crates_regex::yaml_5",
"crates_regex::yaml_6",
"crates_regex::yaml_7",
"crates_regex::yaml_8",
"crates_regex::yaml_9",
"crates_regex::yobot_0",
"crates_regex::yobot_1",
"crates_regex::yobot_2",
"crates_regex::youtube_downloader_0",
"crates_regex::yobot_3",
"crates_regex::yubibomb_0",
"allow_octal",
"big_zero_reps_regex_fails",
"disallow_non_utf8",
"big_empty_regex_fails",
"disallow_octal",
"big_empty_reps_chain_regex_fails",
"misc::one_literal_edge",
"misc::prefix_literal_nomatch",
"misc::prefix_literal_match",
"misc::terminates",
"oibits",
"regex_is_reasonably_small",
"oibits_regression",
"regression_fuzz::empty_any_errors_no_panic",
"shortest_match::t02",
"shortest_match::t01",
"empty_alt_regex_fails",
"regression_fuzz::big_regex_fails_to_compile"
] |
[] |
[] |
|
rust-lang/regex
|
2022-07-05T16:35:20Z
|
rust-lang__regex-879
|
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,47 +30,45 @@ jobs:
- win-gnu
include:
- build: pinned
- os: ubuntu-18.04
+ os: ubuntu-latest
rust: 1.41.1
- build: stable
- os: ubuntu-18.04
+ os: ubuntu-latest
rust: stable
- build: stable-32
- os: ubuntu-18.04
+ os: ubuntu-latest
rust: stable
target: i686-unknown-linux-gnu
- build: stable-mips
- os: ubuntu-18.04
+ os: ubuntu-latest
rust: stable
target: mips64-unknown-linux-gnuabi64
- build: beta
- os: ubuntu-18.04
+ os: ubuntu-latest
rust: beta
- build: nightly
- os: ubuntu-18.04
+ os: ubuntu-latest
rust: nightly
- build: macos
os: macos-latest
rust: stable
- build: win-msvc
- os: windows-2019
+ os: windows-latest
rust: stable
- build: win-gnu
- os: windows-2019
+ os: windows-latest
rust: stable-x86_64-gnu
steps:
- name: Checkout repository
- uses: actions/checkout@v1
- with:
- fetch-depth: 1
+ uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
+ override: true
toolchain: ${{ matrix.rust }}
profile: minimal
- override: true
- name: Install and configure Cross
if: matrix.target != ''
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -89,7 +87,7 @@ jobs:
echo "target flag is: ${{ env.TARGET }}"
- name: Show CPU info for debugging
- if: matrix.os == 'ubuntu-18.04'
+ if: matrix.os == 'ubuntu-latest'
run: lscpu
- name: Basic build
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2013,6 +2076,7 @@ pub const MARK: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e94a}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2507,6 +2588,7 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e94a}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -386,6 +394,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e94a}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1297,6 +1341,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '𞄽'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4263,13 +4372,19 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('\u{16af0}', '\u{16af4}'),
('\u{16b30}', '\u{16b36}'),
('\u{16f8f}', '𖾟'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d167}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
('\u{1d185}', '\u{1d18b}'),
('\u{1d1aa}', '\u{1d1ad}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e946}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5864,6 +6020,7 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e94a}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -364,6 +373,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e94a}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -870,6 +901,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1e023}', '\u{1e024}'),
('\u{1e026}', '\u{1e02a}'),
('\u{1e130}', '\u{1e136}'),
+ ('\u{1e2ae}', '\u{1e2ae}'),
('\u{1e2ec}', '\u{1e2ef}'),
('\u{1e8d0}', '\u{1e8d6}'),
('\u{1e944}', '\u{1e94a}'),
diff --git a/tests/unicode.rs b/tests/unicode.rs
--- a/tests/unicode.rs
+++ b/tests/unicode.rs
@@ -232,3 +232,20 @@ mat!(uni_class_sb2, r"\p{sb=lower}", "\u{0469}", Some((0, 2)));
mat!(uni_class_sb3, r"\p{sb=Close}", "\u{FF60}", Some((0, 3)));
mat!(uni_class_sb4, r"\p{sb=Close}", "\u{1F677}", Some((0, 4)));
mat!(uni_class_sb5, r"\p{sb=SContinue}", "\u{FF64}", Some((0, 3)));
+
+// Test 'Vithkuqi' support, which was added in Unicode 14.
+// See: https://github.com/rust-lang/regex/issues/877
+mat!(
+ uni_vithkuqi_literal_upper,
+ r"(?i)^\u{10570}$",
+ "\u{10570}",
+ Some((0, 4))
+);
+mat!(
+ uni_vithkuqi_literal_lower,
+ r"(?i)^\u{10570}$",
+ "\u{10597}",
+ Some((0, 4))
+);
+mat!(uni_vithkuqi_word_upper, r"^\w$", "\u{10570}", Some((0, 4)));
+mat!(uni_vithkuqi_word_lower, r"^\w$", "\u{10597}", Some((0, 4)));
|
If this was really added in Unicode 14, then this makes sense since I don't believe the regex crate has had its Unicode tables updated to 14 yet. They're still on 13. No real reason for it. Just hasn't been done yet.
Also, FWIW, the regex crate does not expose any direct way to access Unicode blocks. But if Unicode's definition of word changed and new casing rules were added, then those will get automatically pulled in by updating to 14.
I see, thanks for your quick reply. Unicode 14.0 was already released in September 2021, so I think it would be a good idea to update the regex crate accordingly.
|
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -163,18 +161,14 @@ jobs:
runs-on: ubuntu-18.04
steps:
- name: Checkout repository
- uses: actions/checkout@v1
- with:
- fetch-depth: 1
+ uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
+ override: true
toolchain: stable
profile: minimal
- override: true
components: rustfmt
- - name: Install rustfmt
- run: rustup component add rustfmt
- name: Check formatting
run: |
cargo fmt --all -- --check
diff --git a/regex-syntax/src/unicode.rs b/regex-syntax/src/unicode.rs
--- a/regex-syntax/src/unicode.rs
+++ b/regex-syntax/src/unicode.rs
@@ -604,6 +604,7 @@ fn ages(canonical_age: &str) -> Result<impl Iterator<Item = Range>> {
("V12_0", age::V12_0),
("V12_1", age::V12_1),
("V13_0", age::V13_0),
+ ("V14_0", age::V14_0),
];
assert_eq!(AGES.len(), age::BY_NAME.len(), "ages are out of sync");
diff --git a/regex-syntax/src/unicode_tables/age.rs b/regex-syntax/src/unicode_tables/age.rs
--- a/regex-syntax/src/unicode_tables/age.rs
+++ b/regex-syntax/src/unicode_tables/age.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate age ucd-13.0.0 --chars
+// ucd-generate age /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("V10_0", V10_0),
diff --git a/regex-syntax/src/unicode_tables/age.rs b/regex-syntax/src/unicode_tables/age.rs
--- a/regex-syntax/src/unicode_tables/age.rs
+++ b/regex-syntax/src/unicode_tables/age.rs
@@ -12,6 +12,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("V12_0", V12_0),
("V12_1", V12_1),
("V13_0", V13_0),
+ ("V14_0", V14_0),
("V1_1", V1_1),
("V2_0", V2_0),
("V2_1", V2_1),
diff --git a/regex-syntax/src/unicode_tables/age.rs b/regex-syntax/src/unicode_tables/age.rs
--- a/regex-syntax/src/unicode_tables/age.rs
+++ b/regex-syntax/src/unicode_tables/age.rs
@@ -203,69 +204,150 @@ pub const V12_0: &'static [(char, char)] = &[
pub const V12_1: &'static [(char, char)] = &[('㋿', '㋿')];
pub const V13_0: &'static [(char, char)] = &[
- ('\u{8be}', '\u{8c7}'),
+ ('ࢾ', 'ࣇ'),
('\u{b55}', '\u{b55}'),
- ('\u{d04}', '\u{d04}'),
+ ('ഄ', 'ഄ'),
('\u{d81}', '\u{d81}'),
('\u{1abf}', '\u{1ac0}'),
- ('\u{2b97}', '\u{2b97}'),
- ('\u{2e50}', '\u{2e52}'),
- ('\u{31bb}', '\u{31bf}'),
- ('\u{4db6}', '\u{4dbf}'),
- ('\u{9ff0}', '\u{9ffc}'),
- ('\u{a7c7}', '\u{a7ca}'),
- ('\u{a7f5}', '\u{a7f6}'),
+ ('⮗', '⮗'),
+ ('⹐', '⹒'),
+ ('ㆻ', 'ㆿ'),
+ ('䶶', '䶿'),
+ ('鿰', '鿼'),
+ ('Ꟈ', 'ꟊ'),
+ ('Ꟶ', 'ꟶ'),
('\u{a82c}', '\u{a82c}'),
- ('\u{ab68}', '\u{ab6b}'),
- ('\u{1019c}', '\u{1019c}'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eab}', '\u{10ead}'),
- ('\u{10eb0}', '\u{10eb1}'),
- ('\u{10fb0}', '\u{10fcb}'),
- ('\u{11147}', '\u{11147}'),
- ('\u{111ce}', '\u{111cf}'),
- ('\u{1145a}', '\u{1145a}'),
- ('\u{11460}', '\u{11461}'),
- ('\u{11900}', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
- ('\u{1193b}', '\u{11946}'),
- ('\u{11950}', '\u{11959}'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('ꭨ', '꭫'),
+ ('𐆜', '𐆜'),
+ ('𐺀', '𐺩'),
+ ('\u{10eab}', '𐺭'),
+ ('𐺰', '𐺱'),
+ ('𐾰', '𐿋'),
+ ('𑅇', '𑅇'),
+ ('𑇎', '\u{111cf}'),
+ ('𑑚', '𑑚'),
+ ('𑑠', '𑑡'),
+ ('𑤀', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
+ ('\u{1193b}', '𑥆'),
+ ('𑥐', '𑥙'),
+ ('𑾰', '𑾰'),
('\u{16fe4}', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
- ('\u{18af3}', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('\u{1f10d}', '\u{1f10f}'),
- ('\u{1f16d}', '\u{1f16f}'),
- ('\u{1f1ad}', '\u{1f1ad}'),
- ('\u{1f6d6}', '\u{1f6d7}'),
- ('\u{1f6fb}', '\u{1f6fc}'),
- ('\u{1f8b0}', '\u{1f8b1}'),
- ('\u{1f90c}', '\u{1f90c}'),
- ('\u{1f972}', '\u{1f972}'),
- ('\u{1f977}', '\u{1f978}'),
- ('\u{1f9a3}', '\u{1f9a4}'),
- ('\u{1f9ab}', '\u{1f9ad}'),
- ('\u{1f9cb}', '\u{1f9cb}'),
- ('\u{1fa74}', '\u{1fa74}'),
- ('\u{1fa83}', '\u{1fa86}'),
- ('\u{1fa96}', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
- ('\u{1fb00}', '\u{1fb92}'),
- ('\u{1fb94}', '\u{1fbca}'),
- ('\u{1fbf0}', '\u{1fbf9}'),
- ('\u{2a6d7}', '\u{2a6dd}'),
- ('\u{30000}', '\u{3134a}'),
+ ('𖿰', '𖿱'),
+ ('𘫳', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('🄍', '🄏'),
+ ('🅭', '🅯'),
+ ('🆭', '🆭'),
+ ('🛖', '🛗'),
+ ('🛻', '🛼'),
+ ('🢰', '🢱'),
+ ('🤌', '🤌'),
+ ('🥲', '🥲'),
+ ('🥷', '🥸'),
+ ('🦣', '🦤'),
+ ('🦫', '🦭'),
+ ('🧋', '🧋'),
+ ('🩴', '🩴'),
+ ('🪃', '🪆'),
+ ('🪖', '🪨'),
+ ('🪰', '🪶'),
+ ('🫀', '🫂'),
+ ('🫐', '🫖'),
+ ('🬀', '🮒'),
+ ('🮔', '🯊'),
+ ('🯰', '🯹'),
+ ('𪛗', '𪛝'),
+ ('𰀀', '𱍊'),
+];
+
+pub const V14_0: &'static [(char, char)] = &[
+ ('؝', '؝'),
+ ('ࡰ', 'ࢎ'),
+ ('\u{890}', '\u{891}'),
+ ('\u{898}', '\u{89f}'),
+ ('ࢵ', 'ࢵ'),
+ ('ࣈ', '\u{8d2}'),
+ ('\u{c3c}', '\u{c3c}'),
+ ('ౝ', 'ౝ'),
+ ('ೝ', 'ೝ'),
+ ('ᜍ', 'ᜍ'),
+ ('᜕', '᜕'),
+ ('ᜟ', 'ᜟ'),
+ ('\u{180f}', '\u{180f}'),
+ ('\u{1ac1}', '\u{1ace}'),
+ ('ᭌ', 'ᭌ'),
+ ('᭽', '᭾'),
+ ('\u{1dfa}', '\u{1dfa}'),
+ ('⃀', '⃀'),
+ ('Ⱟ', 'Ⱟ'),
+ ('ⱟ', 'ⱟ'),
+ ('⹓', '⹝'),
+ ('鿽', '鿿'),
+ ('Ꟁ', 'ꟁ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꟴ'),
+ ('﯂', '﯂'),
+ ('﵀', '﵏'),
+ ('﷏', '﷏'),
+ ('﷾', '﷿'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
+ ('𐽰', '𐾉'),
+ ('\u{11070}', '𑁵'),
+ ('\u{110c2}', '\u{110c2}'),
+ ('𑚹', '𑚹'),
+ ('𑝀', '𑝆'),
+ ('𑪰', '𑪿'),
+ ('𒾐', '𒿲'),
+ ('𖩰', '𖪾'),
+ ('𖫀', '𖫉'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛄟', '𛄢'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
+ ('𜽐', '𜿃'),
+ ('𝇩', '𝇪'),
+ ('𝼀', '𝼞'),
+ ('𞊐', '\u{1e2ae}'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
+ ('🛝', '🛟'),
+ ('🟰', '🟰'),
+ ('🥹', '🥹'),
+ ('🧌', '🧌'),
+ ('🩻', '🩼'),
+ ('🪩', '🪬'),
+ ('🪷', '🪺'),
+ ('🫃', '🫅'),
+ ('🫗', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
+ ('𪛞', '𪛟'),
+ ('𫜵', '𫜸'),
];
pub const V1_1: &'static [(char, char)] = &[
- ('\u{0}', 'ǵ'),
+ ('\0', 'ǵ'),
('Ǻ', 'ȗ'),
('ɐ', 'ʨ'),
('ʰ', '˞'),
diff --git a/regex-syntax/src/unicode_tables/case_folding_simple.rs b/regex-syntax/src/unicode_tables/case_folding_simple.rs
--- a/regex-syntax/src/unicode_tables/case_folding_simple.rs
+++ b/regex-syntax/src/unicode_tables/case_folding_simple.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate case-folding-simple ucd-13.0.0 --chars --all-pairs
+// ucd-generate case-folding-simple /tmp/ucd --chars --all-pairs
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const CASE_FOLDING_SIMPLE: &'static [(char, &'static [char])] = &[
('A', &['a']),
diff --git a/regex-syntax/src/unicode_tables/case_folding_simple.rs b/regex-syntax/src/unicode_tables/case_folding_simple.rs
--- a/regex-syntax/src/unicode_tables/case_folding_simple.rs
+++ b/regex-syntax/src/unicode_tables/case_folding_simple.rs
@@ -1781,6 +1781,7 @@ pub const CASE_FOLDING_SIMPLE: &'static [(char, &'static [char])] = &[
('Ⱜ', &['ⱜ']),
('Ⱝ', &['ⱝ']),
('Ⱞ', &['ⱞ']),
+ ('Ⱟ', &['ⱟ']),
('ⰰ', &['Ⰰ']),
('ⰱ', &['Ⰱ']),
('ⰲ', &['Ⰲ']),
diff --git a/regex-syntax/src/unicode_tables/case_folding_simple.rs b/regex-syntax/src/unicode_tables/case_folding_simple.rs
--- a/regex-syntax/src/unicode_tables/case_folding_simple.rs
+++ b/regex-syntax/src/unicode_tables/case_folding_simple.rs
@@ -1828,6 +1829,7 @@ pub const CASE_FOLDING_SIMPLE: &'static [(char, &'static [char])] = &[
('ⱜ', &['Ⱜ']),
('ⱝ', &['Ⱝ']),
('ⱞ', &['Ⱞ']),
+ ('ⱟ', &['Ⱟ']),
('Ⱡ', &['ⱡ']),
('ⱡ', &['Ⱡ']),
('Ɫ', &['ɫ']),
diff --git a/regex-syntax/src/unicode_tables/case_folding_simple.rs b/regex-syntax/src/unicode_tables/case_folding_simple.rs
--- a/regex-syntax/src/unicode_tables/case_folding_simple.rs
+++ b/regex-syntax/src/unicode_tables/case_folding_simple.rs
@@ -2211,17 +2213,25 @@ pub const CASE_FOLDING_SIMPLE: &'static [(char, &'static [char])] = &[
('ꞽ', &['Ꞽ']),
('Ꞿ', &['ꞿ']),
('ꞿ', &['Ꞿ']),
+ ('Ꟁ', &['ꟁ']),
+ ('ꟁ', &['Ꟁ']),
('Ꟃ', &['ꟃ']),
('ꟃ', &['Ꟃ']),
('Ꞔ', &['ꞔ']),
('Ʂ', &['ʂ']),
('Ᶎ', &['ᶎ']),
- ('\u{a7c7}', &['\u{a7c8}']),
- ('\u{a7c8}', &['\u{a7c7}']),
- ('\u{a7c9}', &['\u{a7ca}']),
- ('\u{a7ca}', &['\u{a7c9}']),
- ('\u{a7f5}', &['\u{a7f6}']),
- ('\u{a7f6}', &['\u{a7f5}']),
+ ('Ꟈ', &['ꟈ']),
+ ('ꟈ', &['Ꟈ']),
+ ('Ꟊ', &['ꟊ']),
+ ('ꟊ', &['Ꟊ']),
+ ('Ꟑ', &['ꟑ']),
+ ('ꟑ', &['Ꟑ']),
+ ('Ꟗ', &['ꟗ']),
+ ('ꟗ', &['Ꟗ']),
+ ('Ꟙ', &['ꟙ']),
+ ('ꟙ', &['Ꟙ']),
+ ('Ꟶ', &['ꟶ']),
+ ('ꟶ', &['Ꟶ']),
('ꭓ', &['Ꭓ']),
('ꭰ', &['Ꭰ']),
('ꭱ', &['Ꭱ']),
diff --git a/regex-syntax/src/unicode_tables/case_folding_simple.rs b/regex-syntax/src/unicode_tables/case_folding_simple.rs
--- a/regex-syntax/src/unicode_tables/case_folding_simple.rs
+++ b/regex-syntax/src/unicode_tables/case_folding_simple.rs
@@ -2507,6 +2517,76 @@ pub const CASE_FOLDING_SIMPLE: &'static [(char, &'static [char])] = &[
('𐓹', &['𐓑']),
('𐓺', &['𐓒']),
('𐓻', &['𐓓']),
+ ('𐕰', &['𐖗']),
+ ('𐕱', &['𐖘']),
+ ('𐕲', &['𐖙']),
+ ('𐕳', &['𐖚']),
+ ('𐕴', &['𐖛']),
+ ('𐕵', &['𐖜']),
+ ('𐕶', &['𐖝']),
+ ('𐕷', &['𐖞']),
+ ('𐕸', &['𐖟']),
+ ('𐕹', &['𐖠']),
+ ('𐕺', &['𐖡']),
+ ('𐕼', &['𐖣']),
+ ('𐕽', &['𐖤']),
+ ('𐕾', &['𐖥']),
+ ('𐕿', &['𐖦']),
+ ('𐖀', &['𐖧']),
+ ('𐖁', &['𐖨']),
+ ('𐖂', &['𐖩']),
+ ('𐖃', &['𐖪']),
+ ('𐖄', &['𐖫']),
+ ('𐖅', &['𐖬']),
+ ('𐖆', &['𐖭']),
+ ('𐖇', &['𐖮']),
+ ('𐖈', &['𐖯']),
+ ('𐖉', &['𐖰']),
+ ('𐖊', &['𐖱']),
+ ('𐖌', &['𐖳']),
+ ('𐖍', &['𐖴']),
+ ('𐖎', &['𐖵']),
+ ('𐖏', &['𐖶']),
+ ('𐖐', &['𐖷']),
+ ('𐖑', &['𐖸']),
+ ('𐖒', &['𐖹']),
+ ('𐖔', &['𐖻']),
+ ('𐖕', &['𐖼']),
+ ('𐖗', &['𐕰']),
+ ('𐖘', &['𐕱']),
+ ('𐖙', &['𐕲']),
+ ('𐖚', &['𐕳']),
+ ('𐖛', &['𐕴']),
+ ('𐖜', &['𐕵']),
+ ('𐖝', &['𐕶']),
+ ('𐖞', &['𐕷']),
+ ('𐖟', &['𐕸']),
+ ('𐖠', &['𐕹']),
+ ('𐖡', &['𐕺']),
+ ('𐖣', &['𐕼']),
+ ('𐖤', &['𐕽']),
+ ('𐖥', &['𐕾']),
+ ('𐖦', &['𐕿']),
+ ('𐖧', &['𐖀']),
+ ('𐖨', &['𐖁']),
+ ('𐖩', &['𐖂']),
+ ('𐖪', &['𐖃']),
+ ('𐖫', &['𐖄']),
+ ('𐖬', &['𐖅']),
+ ('𐖭', &['𐖆']),
+ ('𐖮', &['𐖇']),
+ ('𐖯', &['𐖈']),
+ ('𐖰', &['𐖉']),
+ ('𐖱', &['𐖊']),
+ ('𐖳', &['𐖌']),
+ ('𐖴', &['𐖍']),
+ ('𐖵', &['𐖎']),
+ ('𐖶', &['𐖏']),
+ ('𐖷', &['𐖐']),
+ ('𐖸', &['𐖑']),
+ ('𐖹', &['𐖒']),
+ ('𐖻', &['𐖔']),
+ ('𐖼', &['𐖕']),
('𐲀', &['𐳀']),
('𐲁', &['𐳁']),
('𐲂', &['𐳂']),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate general-category ucd-13.0.0 --chars --exclude surrogate
+// ucd-generate general-category /tmp/ucd --chars --exclude surrogate
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Cased_Letter", CASED_LETTER),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -116,9 +116,7 @@ pub const CASED_LETTER: &'static [(char, char)] = &[
('ⅅ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('Ↄ', 'ↄ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⱻ'),
+ ('Ⰰ', 'ⱻ'),
('Ȿ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -130,12 +128,14 @@ pub const CASED_LETTER: &'static [(char, char)] = &[
('Ꜣ', 'ꝯ'),
('ꝱ', 'ꞇ'),
('Ꞌ', 'ꞎ'),
- ('Ꞑ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', '\u{a7f6}'),
+ ('Ꞑ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('Ꟶ', 'ꟶ'),
('ꟺ', 'ꟺ'),
('ꬰ', 'ꭚ'),
- ('ꭠ', '\u{ab68}'),
+ ('ꭠ', 'ꭨ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
('ﬓ', 'ﬗ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -144,6 +144,14 @@ pub const CASED_LETTER: &'static [(char, char)] = &[
('𐐀', '𐑏'),
('𐒰', '𐓓'),
('𐓘', '𐓻'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𑢠', '𑣟'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -178,6 +186,8 @@ pub const CASED_LETTER: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼉'),
+ ('𝼋', '𝼞'),
('𞤀', '𞥃'),
];
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -225,6 +235,10 @@ pub const CLOSE_PUNCTUATION: &'static [(char, char)] = &[
('⸥', '⸥'),
('⸧', '⸧'),
('⸩', '⸩'),
+ ('⹖', '⹖'),
+ ('⹘', '⹘'),
+ ('⹚', '⹚'),
+ ('⹜', '⹜'),
('〉', '〉'),
('》', '》'),
('」', '」'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -266,7 +280,7 @@ pub const CONNECTOR_PUNCTUATION: &'static [(char, char)] = &[
];
pub const CONTROL: &'static [(char, char)] =
- &[('\u{0}', '\u{1f}'), ('\u{7f}', '\u{9f}')];
+ &[('\0', '\u{1f}'), ('\u{7f}', '\u{9f}')];
pub const CURRENCY_SYMBOL: &'static [(char, char)] = &[
('$', '$'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -280,7 +294,7 @@ pub const CURRENCY_SYMBOL: &'static [(char, char)] = &[
('௹', '௹'),
('฿', '฿'),
('៛', '៛'),
- ('₠', '₿'),
+ ('₠', '⃀'),
('꠸', '꠸'),
('﷼', '﷼'),
('﹩', '﹩'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -303,6 +317,7 @@ pub const DASH_PUNCTUATION: &'static [(char, char)] = &[
('⸚', '⸚'),
('⸺', '⸻'),
('⹀', '⹀'),
+ ('⹝', '⹝'),
('〜', '〜'),
('〰', '〰'),
('゠', '゠'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -310,7 +325,7 @@ pub const DASH_PUNCTUATION: &'static [(char, char)] = &[
('﹘', '﹘'),
('﹣', '﹣'),
('-', '-'),
- ('\u{10ead}', '\u{10ead}'),
+ ('𐺭', '𐺭'),
];
pub const DECIMAL_NUMBER: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -364,17 +379,18 @@ pub const DECIMAL_NUMBER: &'static [(char, char)] = &[
('𑛀', '𑛉'),
('𑜰', '𑜹'),
('𑣠', '𑣩'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑱐', '𑱙'),
('𑵐', '𑵙'),
('𑶠', '𑶩'),
('𖩠', '𖩩'),
+ ('𖫀', '𖫉'),
('𖭐', '𖭙'),
('𝟎', '𝟿'),
('𞅀', '𞅉'),
('𞋰', '𞋹'),
('𞥐', '𞥙'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🯰', '🯹'),
];
pub const ENCLOSING_MARK: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -404,6 +420,7 @@ pub const FORMAT: &'static [(char, char)] = &[
('\u{61c}', '\u{61c}'),
('\u{6dd}', '\u{6dd}'),
('\u{70f}', '\u{70f}'),
+ ('\u{890}', '\u{891}'),
('\u{8e2}', '\u{8e2}'),
('\u{180e}', '\u{180e}'),
('\u{200b}', '\u{200f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -485,8 +502,9 @@ pub const LETTER: &'static [(char, char)] = &[
('ࠨ', 'ࠨ'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('ऄ', 'ह'),
('ऽ', 'ऽ'),
('ॐ', 'ॐ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -551,6 +569,7 @@ pub const LETTER: &'static [(char, char)] = &[
('ప', 'హ'),
('ఽ', 'ఽ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('ಀ', 'ಀ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -559,10 +578,10 @@ pub const LETTER: &'static [(char, char)] = &[
('ಪ', 'ಳ'),
('ವ', 'ಹ'),
('ಽ', 'ಽ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('ೱ', 'ೲ'),
- ('\u{d04}', 'ഌ'),
+ ('ഄ', 'ഌ'),
('എ', 'ഐ'),
('ഒ', 'ഺ'),
('ഽ', 'ഽ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -630,9 +649,8 @@ pub const LETTER: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛱ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
+ ('ᜀ', 'ᜑ'),
+ ('ᜟ', 'ᜱ'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -653,7 +671,7 @@ pub const LETTER: &'static [(char, char)] = &[
('ᨠ', 'ᩔ'),
('ᪧ', 'ᪧ'),
('ᬅ', 'ᬳ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('ᮃ', 'ᮠ'),
('ᮮ', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -704,9 +722,7 @@ pub const LETTER: &'static [(char, char)] = &[
('ⅅ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('Ↄ', 'ↄ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('ⴀ', 'ⴥ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -733,11 +749,10 @@ pub const LETTER: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘟ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -747,9 +762,11 @@ pub const LETTER: &'static [(char, char)] = &[
('ꚠ', 'ꛥ'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠁ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠁ'),
('ꠃ', 'ꠅ'),
('ꠇ', 'ꠊ'),
('ꠌ', 'ꠢ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -786,7 +803,7 @@ pub const LETTER: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯢ'),
('가', '힣'),
('ힰ', 'ퟆ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -837,9 +854,20 @@ pub const LETTER: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -870,19 +898,22 @@ pub const LETTER: &'static [(char, char)] = &[
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𐴀', '𐴣'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀃', '𑀷'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂃', '𑂯'),
('𑃐', '𑃨'),
('𑄃', '𑄦'),
('𑅄', '𑅄'),
- ('\u{11147}', '\u{11147}'),
+ ('𑅇', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('𑆃', '𑆲'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -908,7 +939,7 @@ pub const LETTER: &'static [(char, char)] = &[
('𑍝', '𑍡'),
('𑐀', '𑐴'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -919,15 +950,16 @@ pub const LETTER: &'static [(char, char)] = &[
('𑚀', '𑚪'),
('𑚸', '𑚸'),
('𑜀', '𑜚'),
+ ('𑝀', '𑝆'),
('𑠀', '𑠫'),
('𑢠', '𑣟'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑦠', '𑦧'),
('𑦪', '𑧐'),
('𑧡', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -938,7 +970,7 @@ pub const LETTER: &'static [(char, char)] = &[
('𑩐', '𑩐'),
('𑩜', '𑪉'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰮'),
('𑱀', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -952,13 +984,15 @@ pub const LETTER: &'static [(char, char)] = &[
('𑵪', '𑶉'),
('𑶘', '𑶘'),
('𑻠', '𑻲'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭀', '𖭃'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -971,9 +1005,12 @@ pub const LETTER: &'static [(char, char)] = &[
('𖿠', '𖿡'),
('𖿣', '𖿣'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1011,10 +1048,16 @@ pub const LETTER: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼞'),
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞤀', '𞥃'),
('𞥋', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1051,13 +1094,13 @@ pub const LETTER: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const LETTER_NUMBER: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1510,7 +1553,7 @@ pub const LOWERCASE_LETTER: &'static [(char, char)] = &[
('ⅆ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('ↄ', 'ↄ'),
- ('ⰰ', 'ⱞ'),
+ ('ⰰ', 'ⱟ'),
('ⱡ', 'ⱡ'),
('ⱥ', 'ⱦ'),
('ⱨ', 'ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1679,19 +1722,29 @@ pub const LOWERCASE_LETTER: &'static [(char, char)] = &[
('ꞻ', 'ꞻ'),
('ꞽ', 'ꞽ'),
('ꞿ', 'ꞿ'),
+ ('ꟁ', 'ꟁ'),
('ꟃ', 'ꟃ'),
- ('\u{a7c8}', '\u{a7c8}'),
- ('\u{a7ca}', '\u{a7ca}'),
- ('\u{a7f6}', '\u{a7f6}'),
+ ('ꟈ', 'ꟈ'),
+ ('ꟊ', 'ꟊ'),
+ ('ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟕ'),
+ ('ꟗ', 'ꟗ'),
+ ('ꟙ', 'ꟙ'),
+ ('ꟶ', 'ꟶ'),
('ꟺ', 'ꟺ'),
('ꬰ', 'ꭚ'),
- ('ꭠ', '\u{ab68}'),
+ ('ꭠ', 'ꭨ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
('ﬓ', 'ﬗ'),
('a', 'z'),
('𐐨', '𐑏'),
('𐓘', '𐓻'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐳀', '𐳲'),
('𑣀', '𑣟'),
('𖹠', '𖹿'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1723,6 +1776,8 @@ pub const LOWERCASE_LETTER: &'static [(char, char)] = &[
('𝞪', '𝟂'),
('𝟄', '𝟉'),
('𝟋', '𝟋'),
+ ('𝼀', '𝼉'),
+ ('𝼋', '𝼞'),
('𞤢', '𞥃'),
];
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1751,7 +1806,8 @@ pub const MARK: &'static [(char, char)] = &[
('\u{825}', '\u{827}'),
('\u{829}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('\u{898}', '\u{89f}'),
+ ('\u{8ca}', '\u{8e1}'),
('\u{8e3}', 'ः'),
('\u{93a}', '\u{93c}'),
('ा', 'ॏ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1793,6 +1849,7 @@ pub const MARK: &'static [(char, char)] = &[
('ொ', '\u{bcd}'),
('\u{bd7}', '\u{bd7}'),
('\u{c00}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1844,13 +1901,14 @@ pub const MARK: &'static [(char, char)] = &[
('ႏ', 'ႏ'),
('ႚ', '\u{109d}'),
('\u{135d}', '\u{135f}'),
- ('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1712}', '᜕'),
+ ('\u{1732}', '᜴'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
('\u{1920}', 'ᤫ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1859,7 +1917,7 @@ pub const MARK: &'static [(char, char)] = &[
('ᩕ', '\u{1a5e}'),
('\u{1a60}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1b00}', 'ᬄ'),
('\u{1b34}', '᭄'),
('\u{1b6b}', '\u{1b73}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1872,8 +1930,7 @@ pub const MARK: &'static [(char, char)] = &[
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('᳷', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{20d0}', '\u{20f0}'),
('\u{2cef}', '\u{2cf1}'),
('\u{2d7f}', '\u{2d7f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1926,10 +1983,14 @@ pub const MARK: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('𑀀', '𑀂'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '𑂂'),
('𑂰', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{11134}'),
('𑅅', '𑅆'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1937,7 +1998,7 @@ pub const MARK: &'static [(char, char)] = &[
('\u{11180}', '𑆂'),
('𑆳', '𑇀'),
('\u{111c9}', '\u{111cc}'),
- ('\u{111ce}', '\u{111cf}'),
+ ('𑇎', '\u{111cf}'),
('𑈬', '\u{11237}'),
('\u{1123e}', '\u{1123e}'),
('\u{112df}', '\u{112ea}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1960,11 +2021,11 @@ pub const MARK: &'static [(char, char)] = &[
('\u{116ab}', '\u{116b7}'),
('\u{1171d}', '\u{1172b}'),
('𑠬', '\u{1183a}'),
- ('\u{11930}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('\u{11930}', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{1193e}'),
- ('\u{11940}', '\u{11940}'),
- ('\u{11942}', '\u{11943}'),
+ ('𑥀', '𑥀'),
+ ('𑥂', '\u{11943}'),
('𑧑', '\u{119d7}'),
('\u{119da}', '\u{119e0}'),
('𑧤', '𑧤'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -1993,8 +2054,10 @@ pub const MARK: &'static [(char, char)] = &[
('𖽑', '𖾇'),
('\u{16f8f}', '\u{16f92}'),
('\u{16fe4}', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2102,6 +2166,7 @@ pub const MODIFIER_LETTER: &'static [(char, char)] = &[
('ࠚ', 'ࠚ'),
('ࠤ', 'ࠤ'),
('ࠨ', 'ࠨ'),
+ ('ࣉ', 'ࣉ'),
('ॱ', 'ॱ'),
('ๆ', 'ๆ'),
('ໆ', 'ໆ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2132,6 +2197,7 @@ pub const MODIFIER_LETTER: &'static [(char, char)] = &[
('ꜗ', 'ꜟ'),
('ꝰ', 'ꝰ'),
('ꞈ', 'ꞈ'),
+ ('ꟲ', 'ꟴ'),
('ꟸ', 'ꟹ'),
('ꧏ', 'ꧏ'),
('ꧦ', 'ꧦ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2139,13 +2205,19 @@ pub const MODIFIER_LETTER: &'static [(char, char)] = &[
('ꫝ', 'ꫝ'),
('ꫳ', 'ꫴ'),
('ꭜ', 'ꭟ'),
- ('\u{ab69}', '\u{ab69}'),
+ ('ꭩ', 'ꭩ'),
('ー', 'ー'),
('\u{ff9e}', '\u{ff9f}'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𖭀', '𖭃'),
('𖾓', '𖾟'),
('𖿠', '𖿡'),
('𖿣', '𖿣'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
('𞄷', '𞄽'),
('𞥋', '𞥋'),
];
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2164,6 +2236,7 @@ pub const MODIFIER_SYMBOL: &'static [(char, char)] = &[
('˯', '˿'),
('͵', '͵'),
('΄', '΅'),
+ ('࢈', '࢈'),
('᾽', '᾽'),
('᾿', '῁'),
('῍', '῏'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2175,8 +2248,8 @@ pub const MODIFIER_SYMBOL: &'static [(char, char)] = &[
('꜠', '꜡'),
('꞉', '꞊'),
('꭛', '꭛'),
- ('\u{ab6a}', '\u{ab6b}'),
- ('﮲', '﯁'),
+ ('꭪', '꭫'),
+ ('﮲', '﯂'),
('^', '^'),
('`', '`'),
(' ̄', ' ̄'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2208,7 +2281,8 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{825}', '\u{827}'),
('\u{829}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('\u{898}', '\u{89f}'),
+ ('\u{8ca}', '\u{8e1}'),
('\u{8e3}', '\u{902}'),
('\u{93a}', '\u{93a}'),
('\u{93c}', '\u{93c}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2249,6 +2323,7 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{bcd}', '\u{bcd}'),
('\u{c00}', '\u{c00}'),
('\u{c04}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', '\u{c40}'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2298,7 +2373,7 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{109d}', '\u{109d}'),
('\u{135d}', '\u{135f}'),
('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1732}', '\u{1733}'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17b5}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2307,6 +2382,7 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{17c9}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
('\u{1920}', '\u{1922}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2323,7 +2399,7 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{1a73}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
('\u{1ab0}', '\u{1abd}'),
- ('\u{1abf}', '\u{1ac0}'),
+ ('\u{1abf}', '\u{1ace}'),
('\u{1b00}', '\u{1b03}'),
('\u{1b34}', '\u{1b34}'),
('\u{1b36}', '\u{1b3a}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2346,8 +2422,7 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('\u{1cf8}', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{20d0}', '\u{20dc}'),
('\u{20e1}', '\u{20e1}'),
('\u{20e5}', '\u{20f0}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2406,11 +2481,15 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('\u{11001}', '\u{11001}'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '\u{11081}'),
('\u{110b3}', '\u{110b6}'),
('\u{110b9}', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{1112b}'),
('\u{1112d}', '\u{11134}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2490,6 +2569,8 @@ pub const NONSPACING_MARK: &'static [(char, char)] = &[
('\u{16f8f}', '\u{16f92}'),
('\u{16fe4}', '\u{16fe4}'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d167}', '\u{1d169}'),
('\u{1d17b}', '\u{1d182}'),
('\u{1d185}', '\u{1d18b}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2610,7 +2692,7 @@ pub const NUMBER: &'static [(char, char)] = &[
('𐹠', '𐹾'),
('𐼝', '𐼦'),
('𐽑', '𐽔'),
- ('\u{10fc5}', '\u{10fcb}'),
+ ('𐿅', '𐿋'),
('𑁒', '𑁯'),
('𑃰', '𑃹'),
('𑄶', '𑄿'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2623,13 +2705,14 @@ pub const NUMBER: &'static [(char, char)] = &[
('𑛀', '𑛉'),
('𑜰', '𑜻'),
('𑣠', '𑣲'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑱐', '𑱬'),
('𑵐', '𑵙'),
('𑶠', '𑶩'),
('𑿀', '𑿔'),
('𒐀', '𒑮'),
('𖩠', '𖩩'),
+ ('𖫀', '𖫉'),
('𖭐', '𖭙'),
('𖭛', '𖭡'),
('𖺀', '𖺖'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2646,7 +2729,7 @@ pub const NUMBER: &'static [(char, char)] = &[
('𞴁', '𞴭'),
('𞴯', '𞴽'),
('🄀', '🄌'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🯰', '🯹'),
];
pub const OPEN_PUNCTUATION: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2696,6 +2779,10 @@ pub const OPEN_PUNCTUATION: &'static [(char, char)] = &[
('⸦', '⸦'),
('⸨', '⸨'),
('⹂', '⹂'),
+ ('⹕', '⹕'),
+ ('⹗', '⹗'),
+ ('⹙', '⹙'),
+ ('⹛', '⹛'),
('〈', '〈'),
('《', '《'),
('「', '「'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2728,7 +2815,7 @@ pub const OPEN_PUNCTUATION: &'static [(char, char)] = &[
];
pub const OTHER: &'static [(char, char)] = &[
- ('\u{0}', '\u{1f}'),
+ ('\0', '\u{1f}'),
('\u{7f}', '\u{9f}'),
('\u{ad}', '\u{ad}'),
('\u{378}', '\u{379}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2743,7 +2830,7 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{5c8}', '\u{5cf}'),
('\u{5eb}', '\u{5ee}'),
('\u{5f5}', '\u{605}'),
- ('\u{61c}', '\u{61d}'),
+ ('\u{61c}', '\u{61c}'),
('\u{6dd}', '\u{6dd}'),
('\u{70e}', '\u{70f}'),
('\u{74b}', '\u{74c}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2753,9 +2840,8 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{83f}', '\u{83f}'),
('\u{85c}', '\u{85d}'),
('\u{85f}', '\u{85f}'),
- ('\u{86b}', '\u{89f}'),
- ('\u{8b5}', '\u{8b5}'),
- ('\u{8c8}', '\u{8d2}'),
+ ('\u{86b}', '\u{86f}'),
+ ('\u{88f}', '\u{897}'),
('\u{8e2}', '\u{8e2}'),
('\u{984}', '\u{984}'),
('\u{98d}', '\u{98e}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2834,12 +2920,13 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{c0d}', '\u{c0d}'),
('\u{c11}', '\u{c11}'),
('\u{c29}', '\u{c29}'),
- ('\u{c3a}', '\u{c3c}'),
+ ('\u{c3a}', '\u{c3b}'),
('\u{c45}', '\u{c45}'),
('\u{c49}', '\u{c49}'),
('\u{c4e}', '\u{c54}'),
('\u{c57}', '\u{c57}'),
- ('\u{c5b}', '\u{c5f}'),
+ ('\u{c5b}', '\u{c5c}'),
+ ('\u{c5e}', '\u{c5f}'),
('\u{c64}', '\u{c65}'),
('\u{c70}', '\u{c76}'),
('\u{c8d}', '\u{c8d}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2850,7 +2937,7 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{cc5}', '\u{cc5}'),
('\u{cc9}', '\u{cc9}'),
('\u{cce}', '\u{cd4}'),
- ('\u{cd7}', '\u{cdd}'),
+ ('\u{cd7}', '\u{cdc}'),
('\u{cdf}', '\u{cdf}'),
('\u{ce4}', '\u{ce5}'),
('\u{cf0}', '\u{cf0}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2918,8 +3005,7 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{13fe}', '\u{13ff}'),
('\u{169d}', '\u{169f}'),
('\u{16f9}', '\u{16ff}'),
- ('\u{170d}', '\u{170d}'),
- ('\u{1715}', '\u{171f}'),
+ ('\u{1716}', '\u{171e}'),
('\u{1737}', '\u{173f}'),
('\u{1754}', '\u{175f}'),
('\u{176d}', '\u{176d}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2928,7 +3014,7 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{17de}', '\u{17df}'),
('\u{17ea}', '\u{17ef}'),
('\u{17fa}', '\u{17ff}'),
- ('\u{180e}', '\u{180f}'),
+ ('\u{180e}', '\u{180e}'),
('\u{181a}', '\u{181f}'),
('\u{1879}', '\u{187f}'),
('\u{18ab}', '\u{18af}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2948,9 +3034,9 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1a8a}', '\u{1a8f}'),
('\u{1a9a}', '\u{1a9f}'),
('\u{1aae}', '\u{1aaf}'),
- ('\u{1ac1}', '\u{1aff}'),
- ('\u{1b4c}', '\u{1b4f}'),
- ('\u{1b7d}', '\u{1b7f}'),
+ ('\u{1acf}', '\u{1aff}'),
+ ('\u{1b4d}', '\u{1b4f}'),
+ ('\u{1b7f}', '\u{1b7f}'),
('\u{1bf4}', '\u{1bfb}'),
('\u{1c38}', '\u{1c3a}'),
('\u{1c4a}', '\u{1c4c}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2958,7 +3044,6 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1cbb}', '\u{1cbc}'),
('\u{1cc8}', '\u{1ccf}'),
('\u{1cfb}', '\u{1cff}'),
- ('\u{1dfa}', '\u{1dfa}'),
('\u{1f16}', '\u{1f17}'),
('\u{1f1e}', '\u{1f1f}'),
('\u{1f46}', '\u{1f47}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -2981,15 +3066,13 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{2072}', '\u{2073}'),
('\u{208f}', '\u{208f}'),
('\u{209d}', '\u{209f}'),
- ('\u{20c0}', '\u{20cf}'),
+ ('\u{20c1}', '\u{20cf}'),
('\u{20f1}', '\u{20ff}'),
('\u{218c}', '\u{218f}'),
('\u{2427}', '\u{243f}'),
('\u{244b}', '\u{245f}'),
('\u{2b74}', '\u{2b75}'),
('\u{2b96}', '\u{2b96}'),
- ('\u{2c2f}', '\u{2c2f}'),
- ('\u{2c5f}', '\u{2c5f}'),
('\u{2cf4}', '\u{2cf8}'),
('\u{2d26}', '\u{2d26}'),
('\u{2d28}', '\u{2d2c}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3005,7 +3088,7 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{2dcf}', '\u{2dcf}'),
('\u{2dd7}', '\u{2dd7}'),
('\u{2ddf}', '\u{2ddf}'),
- ('\u{2e53}', '\u{2e7f}'),
+ ('\u{2e5e}', '\u{2e7f}'),
('\u{2e9a}', '\u{2e9a}'),
('\u{2ef4}', '\u{2eff}'),
('\u{2fd6}', '\u{2fef}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3017,13 +3100,14 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{318f}', '\u{318f}'),
('\u{31e4}', '\u{31ef}'),
('\u{321f}', '\u{321f}'),
- ('\u{9ffd}', '\u{9fff}'),
('\u{a48d}', '\u{a48f}'),
('\u{a4c7}', '\u{a4cf}'),
('\u{a62c}', '\u{a63f}'),
('\u{a6f8}', '\u{a6ff}'),
- ('\u{a7c0}', '\u{a7c1}'),
- ('\u{a7cb}', '\u{a7f4}'),
+ ('\u{a7cb}', '\u{a7cf}'),
+ ('\u{a7d2}', '\u{a7d2}'),
+ ('\u{a7d4}', '\u{a7d4}'),
+ ('\u{a7da}', '\u{a7f1}'),
('\u{a82d}', '\u{a82f}'),
('\u{a83a}', '\u{a83f}'),
('\u{a878}', '\u{a87f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3059,11 +3143,10 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{fb3f}', '\u{fb3f}'),
('\u{fb42}', '\u{fb42}'),
('\u{fb45}', '\u{fb45}'),
- ('\u{fbc2}', '\u{fbd2}'),
- ('\u{fd40}', '\u{fd4f}'),
+ ('\u{fbc3}', '\u{fbd2}'),
('\u{fd90}', '\u{fd91}'),
- ('\u{fdc8}', '\u{fdef}'),
- ('\u{fdfe}', '\u{fdff}'),
+ ('\u{fdc8}', '\u{fdce}'),
+ ('\u{fdd0}', '\u{fdef}'),
('\u{fe1a}', '\u{fe1f}'),
('\u{fe53}', '\u{fe53}'),
('\u{fe67}', '\u{fe67}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3106,10 +3189,20 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{104fc}', '\u{104ff}'),
('\u{10528}', '\u{1052f}'),
('\u{10564}', '\u{1056e}'),
- ('\u{10570}', '\u{105ff}'),
+ ('\u{1057b}', '\u{1057b}'),
+ ('\u{1058b}', '\u{1058b}'),
+ ('\u{10593}', '\u{10593}'),
+ ('\u{10596}', '\u{10596}'),
+ ('\u{105a2}', '\u{105a2}'),
+ ('\u{105b2}', '\u{105b2}'),
+ ('\u{105ba}', '\u{105ba}'),
+ ('\u{105bd}', '\u{105ff}'),
('\u{10737}', '\u{1073f}'),
('\u{10756}', '\u{1075f}'),
- ('\u{10768}', '\u{107ff}'),
+ ('\u{10768}', '\u{1077f}'),
+ ('\u{10786}', '\u{10786}'),
+ ('\u{107b1}', '\u{107b1}'),
+ ('\u{107bb}', '\u{107ff}'),
('\u{10806}', '\u{10807}'),
('\u{10809}', '\u{10809}'),
('\u{10836}', '\u{10836}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3152,13 +3245,14 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{10eae}', '\u{10eaf}'),
('\u{10eb2}', '\u{10eff}'),
('\u{10f28}', '\u{10f2f}'),
- ('\u{10f5a}', '\u{10faf}'),
+ ('\u{10f5a}', '\u{10f6f}'),
+ ('\u{10f8a}', '\u{10faf}'),
('\u{10fcc}', '\u{10fdf}'),
('\u{10ff7}', '\u{10fff}'),
('\u{1104e}', '\u{11051}'),
- ('\u{11070}', '\u{1107e}'),
+ ('\u{11076}', '\u{1107e}'),
('\u{110bd}', '\u{110bd}'),
- ('\u{110c2}', '\u{110cf}'),
+ ('\u{110c3}', '\u{110cf}'),
('\u{110e9}', '\u{110ef}'),
('\u{110fa}', '\u{110ff}'),
('\u{11135}', '\u{11135}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3199,11 +3293,11 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{11645}', '\u{1164f}'),
('\u{1165a}', '\u{1165f}'),
('\u{1166d}', '\u{1167f}'),
- ('\u{116b9}', '\u{116bf}'),
+ ('\u{116ba}', '\u{116bf}'),
('\u{116ca}', '\u{116ff}'),
('\u{1171b}', '\u{1171c}'),
('\u{1172c}', '\u{1172f}'),
- ('\u{11740}', '\u{117ff}'),
+ ('\u{11747}', '\u{117ff}'),
('\u{1183c}', '\u{1189f}'),
('\u{118f3}', '\u{118fe}'),
('\u{11907}', '\u{11908}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3218,7 +3312,7 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{119d8}', '\u{119d9}'),
('\u{119e5}', '\u{119ff}'),
('\u{11a48}', '\u{11a4f}'),
- ('\u{11aa3}', '\u{11abf}'),
+ ('\u{11aa3}', '\u{11aaf}'),
('\u{11af9}', '\u{11bff}'),
('\u{11c09}', '\u{11c09}'),
('\u{11c37}', '\u{11c37}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3246,13 +3340,15 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1239a}', '\u{123ff}'),
('\u{1246f}', '\u{1246f}'),
('\u{12475}', '\u{1247f}'),
- ('\u{12544}', '\u{12fff}'),
+ ('\u{12544}', '\u{12f8f}'),
+ ('\u{12ff3}', '\u{12fff}'),
('\u{1342f}', '\u{143ff}'),
('\u{14647}', '\u{167ff}'),
('\u{16a39}', '\u{16a3f}'),
('\u{16a5f}', '\u{16a5f}'),
('\u{16a6a}', '\u{16a6d}'),
- ('\u{16a70}', '\u{16acf}'),
+ ('\u{16abf}', '\u{16abf}'),
+ ('\u{16aca}', '\u{16acf}'),
('\u{16aee}', '\u{16aef}'),
('\u{16af6}', '\u{16aff}'),
('\u{16b46}', '\u{16b4f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3268,8 +3364,11 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{16ff2}', '\u{16fff}'),
('\u{187f8}', '\u{187ff}'),
('\u{18cd6}', '\u{18cff}'),
- ('\u{18d09}', '\u{1afff}'),
- ('\u{1b11f}', '\u{1b14f}'),
+ ('\u{18d09}', '\u{1afef}'),
+ ('\u{1aff4}', '\u{1aff4}'),
+ ('\u{1affc}', '\u{1affc}'),
+ ('\u{1afff}', '\u{1afff}'),
+ ('\u{1b123}', '\u{1b14f}'),
('\u{1b153}', '\u{1b163}'),
('\u{1b168}', '\u{1b16f}'),
('\u{1b2fc}', '\u{1bbff}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3277,11 +3376,14 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1bc7d}', '\u{1bc7f}'),
('\u{1bc89}', '\u{1bc8f}'),
('\u{1bc9a}', '\u{1bc9b}'),
- ('\u{1bca0}', '\u{1cfff}'),
+ ('\u{1bca0}', '\u{1ceff}'),
+ ('\u{1cf2e}', '\u{1cf2f}'),
+ ('\u{1cf47}', '\u{1cf4f}'),
+ ('\u{1cfc4}', '\u{1cfff}'),
('\u{1d0f6}', '\u{1d0ff}'),
('\u{1d127}', '\u{1d128}'),
('\u{1d173}', '\u{1d17a}'),
- ('\u{1d1e9}', '\u{1d1ff}'),
+ ('\u{1d1eb}', '\u{1d1ff}'),
('\u{1d246}', '\u{1d2df}'),
('\u{1d2f4}', '\u{1d2ff}'),
('\u{1d357}', '\u{1d35f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3308,7 +3410,8 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1d7cc}', '\u{1d7cd}'),
('\u{1da8c}', '\u{1da9a}'),
('\u{1daa0}', '\u{1daa0}'),
- ('\u{1dab0}', '\u{1dfff}'),
+ ('\u{1dab0}', '\u{1deff}'),
+ ('\u{1df1f}', '\u{1dfff}'),
('\u{1e007}', '\u{1e007}'),
('\u{1e019}', '\u{1e01a}'),
('\u{1e022}', '\u{1e022}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3317,9 +3420,14 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1e12d}', '\u{1e12f}'),
('\u{1e13e}', '\u{1e13f}'),
('\u{1e14a}', '\u{1e14d}'),
- ('\u{1e150}', '\u{1e2bf}'),
+ ('\u{1e150}', '\u{1e28f}'),
+ ('\u{1e2af}', '\u{1e2bf}'),
('\u{1e2fa}', '\u{1e2fe}'),
- ('\u{1e300}', '\u{1e7ff}'),
+ ('\u{1e300}', '\u{1e7df}'),
+ ('\u{1e7e7}', '\u{1e7e7}'),
+ ('\u{1e7ec}', '\u{1e7ec}'),
+ ('\u{1e7ef}', '\u{1e7ef}'),
+ ('\u{1e7ff}', '\u{1e7ff}'),
('\u{1e8c5}', '\u{1e8c6}'),
('\u{1e8d7}', '\u{1e8ff}'),
('\u{1e94c}', '\u{1e94f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3373,34 +3481,35 @@ pub const OTHER: &'static [(char, char)] = &[
('\u{1f249}', '\u{1f24f}'),
('\u{1f252}', '\u{1f25f}'),
('\u{1f266}', '\u{1f2ff}'),
- ('\u{1f6d8}', '\u{1f6df}'),
+ ('\u{1f6d8}', '\u{1f6dc}'),
('\u{1f6ed}', '\u{1f6ef}'),
('\u{1f6fd}', '\u{1f6ff}'),
('\u{1f774}', '\u{1f77f}'),
('\u{1f7d9}', '\u{1f7df}'),
- ('\u{1f7ec}', '\u{1f7ff}'),
+ ('\u{1f7ec}', '\u{1f7ef}'),
+ ('\u{1f7f1}', '\u{1f7ff}'),
('\u{1f80c}', '\u{1f80f}'),
('\u{1f848}', '\u{1f84f}'),
('\u{1f85a}', '\u{1f85f}'),
('\u{1f888}', '\u{1f88f}'),
('\u{1f8ae}', '\u{1f8af}'),
('\u{1f8b2}', '\u{1f8ff}'),
- ('\u{1f979}', '\u{1f979}'),
- ('\u{1f9cc}', '\u{1f9cc}'),
('\u{1fa54}', '\u{1fa5f}'),
('\u{1fa6e}', '\u{1fa6f}'),
('\u{1fa75}', '\u{1fa77}'),
- ('\u{1fa7b}', '\u{1fa7f}'),
+ ('\u{1fa7d}', '\u{1fa7f}'),
('\u{1fa87}', '\u{1fa8f}'),
- ('\u{1faa9}', '\u{1faaf}'),
- ('\u{1fab7}', '\u{1fabf}'),
- ('\u{1fac3}', '\u{1facf}'),
- ('\u{1fad7}', '\u{1faff}'),
+ ('\u{1faad}', '\u{1faaf}'),
+ ('\u{1fabb}', '\u{1fabf}'),
+ ('\u{1fac6}', '\u{1facf}'),
+ ('\u{1fada}', '\u{1fadf}'),
+ ('\u{1fae8}', '\u{1faef}'),
+ ('\u{1faf7}', '\u{1faff}'),
('\u{1fb93}', '\u{1fb93}'),
('\u{1fbcb}', '\u{1fbef}'),
('\u{1fbfa}', '\u{1ffff}'),
- ('\u{2a6de}', '\u{2a6ff}'),
- ('\u{2b735}', '\u{2b73f}'),
+ ('\u{2a6e0}', '\u{2a6ff}'),
+ ('\u{2b739}', '\u{2b73f}'),
('\u{2b81e}', '\u{2b81f}'),
('\u{2cea2}', '\u{2ceaf}'),
('\u{2ebe1}', '\u{2f7ff}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3433,8 +3542,9 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('ࠀ', 'ࠕ'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣈ'),
('ऄ', 'ह'),
('ऽ', 'ऽ'),
('ॐ', 'ॐ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3499,6 +3609,7 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('ప', 'హ'),
('ఽ', 'ఽ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('ಀ', 'ಀ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3507,10 +3618,10 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('ಪ', 'ಳ'),
('ವ', 'ಹ'),
('ಽ', 'ಽ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('ೱ', 'ೲ'),
- ('\u{d04}', 'ഌ'),
+ ('ഄ', 'ഌ'),
('എ', 'ഐ'),
('ഒ', 'ഺ'),
('ഽ', 'ഽ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3571,9 +3682,8 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛱ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
+ ('ᜀ', 'ᜑ'),
+ ('ᜟ', 'ᜱ'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3593,7 +3703,7 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('ᨀ', 'ᨖ'),
('ᨠ', 'ᩔ'),
('ᬅ', 'ᬳ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('ᮃ', 'ᮠ'),
('ᮮ', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3623,11 +3733,10 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('ヿ', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꀔ'),
+ ('㐀', '䶿'),
+ ('一', 'ꀔ'),
('ꀖ', 'ꒌ'),
('ꓐ', 'ꓷ'),
('ꔀ', 'ꘋ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3750,19 +3859,22 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𐮀', '𐮑'),
('𐰀', '𐱈'),
('𐴀', '𐴣'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀃', '𑀷'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂃', '𑂯'),
('𑃐', '𑃨'),
('𑄃', '𑄦'),
('𑅄', '𑅄'),
- ('\u{11147}', '\u{11147}'),
+ ('𑅇', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('𑆃', '𑆲'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3788,7 +3900,7 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𑍝', '𑍡'),
('𑐀', '𑐴'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3799,14 +3911,15 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𑚀', '𑚪'),
('𑚸', '𑚸'),
('𑜀', '𑜚'),
+ ('𑝀', '𑝆'),
('𑠀', '𑠫'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑦠', '𑦧'),
('𑦪', '𑧐'),
('𑧡', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3817,7 +3930,7 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𑩐', '𑩐'),
('𑩜', '𑪉'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰮'),
('𑱀', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3831,13 +3944,15 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𑵪', '𑶉'),
('𑶘', '𑶘'),
('𑻠', '𑻲'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭣', '𖭷'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3845,9 +3960,9 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𖼀', '𖽊'),
('𖽐', '𖽐'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3855,9 +3970,15 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𛱰', '𛱼'),
('𛲀', '𛲈'),
('𛲐', '𛲙'),
+ ('𝼊', '𝼊'),
('𞄀', '𞄬'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞸀', '𞸃'),
('𞸅', '𞸟'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3892,13 +4013,13 @@ pub const OTHER_LETTER: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const OTHER_NUMBER: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3955,7 +4076,7 @@ pub const OTHER_NUMBER: &'static [(char, char)] = &[
('𐹠', '𐹾'),
('𐼝', '𐼦'),
('𐽑', '𐽔'),
- ('\u{10fc5}', '\u{10fcb}'),
+ ('𐿅', '𐿋'),
('𑁒', '𑁥'),
('𑇡', '𑇴'),
('𑜺', '𑜻'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -3999,7 +4120,7 @@ pub const OTHER_PUNCTUATION: &'static [(char, char)] = &[
('؉', '؊'),
('،', '؍'),
('؛', '؛'),
- ('؞', '؟'),
+ ('؝', '؟'),
('٪', '٭'),
('۔', '۔'),
('܀', '܍'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4036,6 +4157,7 @@ pub const OTHER_PUNCTUATION: &'static [(char, char)] = &[
('᪠', '᪦'),
('᪨', '᪭'),
('᭚', '᭠'),
+ ('᭽', '᭾'),
('᯼', '᯿'),
('᰻', '᰿'),
('᱾', '᱿'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4064,7 +4186,7 @@ pub const OTHER_PUNCTUATION: &'static [(char, char)] = &[
('⸼', '⸿'),
('⹁', '⹁'),
('⹃', '⹏'),
- ('\u{2e52}', '\u{2e52}'),
+ ('⹒', '⹔'),
('、', '〃'),
('〽', '〽'),
('・', '・'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4118,6 +4240,7 @@ pub const OTHER_PUNCTUATION: &'static [(char, char)] = &[
('𐬹', '𐬿'),
('𐮙', '𐮜'),
('𐽕', '𐽙'),
+ ('𐾆', '𐾉'),
('𑁇', '𑁍'),
('𑂻', '𑂼'),
('𑂾', '𑃁'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4130,15 +4253,16 @@ pub const OTHER_PUNCTUATION: &'static [(char, char)] = &[
('𑈸', '𑈽'),
('𑊩', '𑊩'),
('𑑋', '𑑏'),
- ('\u{1145a}', '𑑛'),
+ ('𑑚', '𑑛'),
('𑑝', '𑑝'),
('𑓆', '𑓆'),
('𑗁', '𑗗'),
('𑙁', '𑙃'),
('𑙠', '𑙬'),
+ ('𑚹', '𑚹'),
('𑜼', '𑜾'),
('𑠻', '𑠻'),
- ('\u{11944}', '\u{11946}'),
+ ('𑥄', '𑥆'),
('𑧢', '𑧢'),
('𑨿', '𑩆'),
('𑪚', '𑪜'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4148,6 +4272,7 @@ pub const OTHER_PUNCTUATION: &'static [(char, char)] = &[
('𑻷', '𑻸'),
('𑿿', '𑿿'),
('𒑰', '𒑴'),
+ ('𒿱', '𒿲'),
('𖩮', '𖩯'),
('𖫵', '𖫵'),
('𖬷', '𖬻'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4240,9 +4365,9 @@ pub const OTHER_SYMBOL: &'static [(char, char)] = &[
('⭅', '⭆'),
('⭍', '⭳'),
('⭶', '⮕'),
- ('\u{2b97}', '⯿'),
+ ('⮗', '⯿'),
('⳥', '⳪'),
- ('\u{2e50}', '\u{2e51}'),
+ ('⹐', '⹑'),
('⺀', '⺙'),
('⺛', '⻳'),
('⼀', '⿕'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4267,7 +4392,9 @@ pub const OTHER_SYMBOL: &'static [(char, char)] = &[
('꠶', '꠷'),
('꠹', '꠹'),
('꩷', '꩹'),
- ('﷽', '﷽'),
+ ('﵀', '﵏'),
+ ('﷏', '﷏'),
+ ('﷽', '﷿'),
('¦', '¦'),
('│', '│'),
('■', '○'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4275,7 +4402,7 @@ pub const OTHER_SYMBOL: &'static [(char, char)] = &[
('𐄷', '𐄿'),
('𐅹', '𐆉'),
('𐆌', '𐆎'),
- ('𐆐', '\u{1019c}'),
+ ('𐆐', '𐆜'),
('𐆠', '𐆠'),
('𐇐', '𐇼'),
('𐡷', '𐡸'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4286,13 +4413,14 @@ pub const OTHER_SYMBOL: &'static [(char, char)] = &[
('𖬼', '𖬿'),
('𖭅', '𖭅'),
('𛲜', '𛲜'),
+ ('𜽐', '𜿃'),
('𝀀', '𝃵'),
('𝄀', '𝄦'),
('𝄩', '𝅘𝅥𝅲'),
('𝅪', '𝅬'),
('𝆃', '𝆄'),
('𝆌', '𝆩'),
- ('𝆮', '𝇨'),
+ ('𝆮', '𝇪'),
('𝈀', '𝉁'),
('𝉅', '𝉅'),
('𝌀', '𝍖'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4310,38 +4438,39 @@ pub const OTHER_SYMBOL: &'static [(char, char)] = &[
('🂱', '🂿'),
('🃁', '🃏'),
('🃑', '🃵'),
- ('\u{1f10d}', '\u{1f1ad}'),
+ ('🄍', '🆭'),
('🇦', '🈂'),
('🈐', '🈻'),
('🉀', '🉈'),
('🉐', '🉑'),
('🉠', '🉥'),
('🌀', '🏺'),
- ('🐀', '\u{1f6d7}'),
- ('🛠', '🛬'),
- ('🛰', '\u{1f6fc}'),
+ ('🐀', '🛗'),
+ ('🛝', '🛬'),
+ ('🛰', '🛼'),
('🜀', '🝳'),
('🞀', '🟘'),
('🟠', '🟫'),
+ ('🟰', '🟰'),
('🠀', '🠋'),
('🠐', '🡇'),
('🡐', '🡙'),
('🡠', '🢇'),
('🢐', '🢭'),
- ('\u{1f8b0}', '\u{1f8b1}'),
- ('🤀', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🩓'),
+ ('🢰', '🢱'),
+ ('🤀', '🩓'),
('🩠', '🩭'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
- ('\u{1fb00}', '\u{1fb92}'),
- ('\u{1fb94}', '\u{1fbca}'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
+ ('🬀', '🮒'),
+ ('🮔', '🯊'),
];
pub const PARAGRAPH_SEPARATOR: &'static [(char, char)] =
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4381,7 +4510,7 @@ pub const PUNCTUATION: &'static [(char, char)] = &[
('؉', '؊'),
('،', '؍'),
('؛', '؛'),
- ('؞', '؟'),
+ ('؝', '؟'),
('٪', '٭'),
('۔', '۔'),
('܀', '܍'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4420,6 +4549,7 @@ pub const PUNCTUATION: &'static [(char, char)] = &[
('᪠', '᪦'),
('᪨', '᪭'),
('᭚', '᭠'),
+ ('᭽', '᭾'),
('᯼', '᯿'),
('᰻', '᰿'),
('᱾', '᱿'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4444,7 +4574,7 @@ pub const PUNCTUATION: &'static [(char, char)] = &[
('⵰', '⵰'),
('⸀', '⸮'),
('⸰', '⹏'),
- ('\u{2e52}', '\u{2e52}'),
+ ('⹒', '⹝'),
('、', '〃'),
('〈', '】'),
('〔', '〟'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4498,8 +4628,9 @@ pub const PUNCTUATION: &'static [(char, char)] = &[
('𐫰', '𐫶'),
('𐬹', '𐬿'),
('𐮙', '𐮜'),
- ('\u{10ead}', '\u{10ead}'),
+ ('𐺭', '𐺭'),
('𐽕', '𐽙'),
+ ('𐾆', '𐾉'),
('𑁇', '𑁍'),
('𑂻', '𑂼'),
('𑂾', '𑃁'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4512,15 +4643,16 @@ pub const PUNCTUATION: &'static [(char, char)] = &[
('𑈸', '𑈽'),
('𑊩', '𑊩'),
('𑑋', '𑑏'),
- ('\u{1145a}', '𑑛'),
+ ('𑑚', '𑑛'),
('𑑝', '𑑝'),
('𑓆', '𑓆'),
('𑗁', '𑗗'),
('𑙁', '𑙃'),
('𑙠', '𑙬'),
+ ('𑚹', '𑚹'),
('𑜼', '𑜾'),
('𑠻', '𑠻'),
- ('\u{11944}', '\u{11946}'),
+ ('𑥄', '𑥆'),
('𑧢', '𑧢'),
('𑨿', '𑩆'),
('𑪚', '𑪜'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4530,6 +4662,7 @@ pub const PUNCTUATION: &'static [(char, char)] = &[
('𑻷', '𑻸'),
('𑿿', '𑿿'),
('𒑰', '𒑴'),
+ ('𒿱', '𒿲'),
('𖩮', '𖩯'),
('𖫵', '𖫵'),
('𖬷', '𖬻'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4620,6 +4753,8 @@ pub const SPACING_MARK: &'static [(char, char)] = &[
('ႇ', 'ႌ'),
('ႏ', 'ႏ'),
('ႚ', 'ႜ'),
+ ('᜕', '᜕'),
+ ('᜴', '᜴'),
('ា', 'ា'),
('ើ', 'ៅ'),
('ះ', 'ៈ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4682,7 +4817,7 @@ pub const SPACING_MARK: &'static [(char, char)] = &[
('𑆂', '𑆂'),
('𑆳', '𑆵'),
('𑆿', '𑇀'),
- ('\u{111ce}', '\u{111ce}'),
+ ('𑇎', '𑇎'),
('𑈬', '𑈮'),
('𑈲', '𑈳'),
('𑈵', '𑈵'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4714,11 +4849,11 @@ pub const SPACING_MARK: &'static [(char, char)] = &[
('𑜦', '𑜦'),
('𑠬', '𑠮'),
('𑠸', '𑠸'),
- ('\u{11930}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
- ('\u{1193d}', '\u{1193d}'),
- ('\u{11940}', '\u{11940}'),
- ('\u{11942}', '\u{11942}'),
+ ('\u{11930}', '𑤵'),
+ ('𑤷', '𑤸'),
+ ('𑤽', '𑤽'),
+ ('𑥀', '𑥀'),
+ ('𑥂', '𑥂'),
('𑧑', '𑧓'),
('𑧜', '𑧟'),
('𑧤', '𑧤'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4735,7 +4870,7 @@ pub const SPACING_MARK: &'static [(char, char)] = &[
('𑶖', '𑶖'),
('𑻵', '𑻶'),
('𖽑', '𖾇'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('\u{1d165}', '𝅦'),
('𝅭', '\u{1d172}'),
];
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4774,6 +4909,7 @@ pub const SYMBOL: &'static [(char, char)] = &[
('۽', '۾'),
('߶', '߶'),
('߾', '߿'),
+ ('࢈', '࢈'),
('৲', '৳'),
('৺', '৻'),
('૱', '૱'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4812,7 +4948,7 @@ pub const SYMBOL: &'static [(char, char)] = &[
('⁒', '⁒'),
('⁺', '⁼'),
('₊', '₌'),
- ('₠', '₿'),
+ ('₠', '⃀'),
('℀', '℁'),
('℃', '℆'),
('℈', '℉'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4841,9 +4977,9 @@ pub const SYMBOL: &'static [(char, char)] = &[
('⧜', '⧻'),
('⧾', '⭳'),
('⭶', '⮕'),
- ('\u{2b97}', '⯿'),
+ ('⮗', '⯿'),
('⳥', '⳪'),
- ('\u{2e50}', '\u{2e51}'),
+ ('⹐', '⹑'),
('⺀', '⺙'),
('⺛', '⻳'),
('⼀', '⿕'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4872,10 +5008,12 @@ pub const SYMBOL: &'static [(char, char)] = &[
('꠶', '꠹'),
('꩷', '꩹'),
('꭛', '꭛'),
- ('\u{ab6a}', '\u{ab6b}'),
+ ('꭪', '꭫'),
('﬩', '﬩'),
- ('﮲', '﯁'),
- ('﷼', '﷽'),
+ ('﮲', '﯂'),
+ ('﵀', '﵏'),
+ ('﷏', '﷏'),
+ ('﷼', '﷿'),
('﹢', '﹢'),
('﹤', '﹦'),
('﹩', '﹩'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4892,7 +5030,7 @@ pub const SYMBOL: &'static [(char, char)] = &[
('𐄷', '𐄿'),
('𐅹', '𐆉'),
('𐆌', '𐆎'),
- ('𐆐', '\u{1019c}'),
+ ('𐆐', '𐆜'),
('𐆠', '𐆠'),
('𐇐', '𐇼'),
('𐡷', '𐡸'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4902,13 +5040,14 @@ pub const SYMBOL: &'static [(char, char)] = &[
('𖬼', '𖬿'),
('𖭅', '𖭅'),
('𛲜', '𛲜'),
+ ('𜽐', '𜿃'),
('𝀀', '𝃵'),
('𝄀', '𝄦'),
('𝄩', '𝅘𝅥𝅲'),
('𝅪', '𝅬'),
('𝆃', '𝆄'),
('𝆌', '𝆩'),
- ('𝆮', '𝇨'),
+ ('𝆮', '𝇪'),
('𝈀', '𝉁'),
('𝉅', '𝉅'),
('𝌀', '𝍖'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4939,37 +5078,38 @@ pub const SYMBOL: &'static [(char, char)] = &[
('🂱', '🂿'),
('🃁', '🃏'),
('🃑', '🃵'),
- ('\u{1f10d}', '\u{1f1ad}'),
+ ('🄍', '🆭'),
('🇦', '🈂'),
('🈐', '🈻'),
('🉀', '🉈'),
('🉐', '🉑'),
('🉠', '🉥'),
- ('🌀', '\u{1f6d7}'),
- ('🛠', '🛬'),
- ('🛰', '\u{1f6fc}'),
+ ('🌀', '🛗'),
+ ('🛝', '🛬'),
+ ('🛰', '🛼'),
('🜀', '🝳'),
('🞀', '🟘'),
('🟠', '🟫'),
+ ('🟰', '🟰'),
('🠀', '🠋'),
('🠐', '🡇'),
('🡐', '🡙'),
('🡠', '🢇'),
('🢐', '🢭'),
- ('\u{1f8b0}', '\u{1f8b1}'),
- ('🤀', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🩓'),
+ ('🢰', '🢱'),
+ ('🤀', '🩓'),
('🩠', '🩭'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
- ('\u{1fb00}', '\u{1fb92}'),
- ('\u{1fb94}', '\u{1fbca}'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
+ ('🬀', '🮒'),
+ ('🮔', '🯊'),
];
pub const TITLECASE_LETTER: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -4998,7 +5138,6 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{5c8}', '\u{5cf}'),
('\u{5eb}', '\u{5ee}'),
('\u{5f5}', '\u{5ff}'),
- ('\u{61d}', '\u{61d}'),
('\u{70e}', '\u{70e}'),
('\u{74b}', '\u{74c}'),
('\u{7b2}', '\u{7bf}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5007,9 +5146,9 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{83f}', '\u{83f}'),
('\u{85c}', '\u{85d}'),
('\u{85f}', '\u{85f}'),
- ('\u{86b}', '\u{89f}'),
- ('\u{8b5}', '\u{8b5}'),
- ('\u{8c8}', '\u{8d2}'),
+ ('\u{86b}', '\u{86f}'),
+ ('\u{88f}', '\u{88f}'),
+ ('\u{892}', '\u{897}'),
('\u{984}', '\u{984}'),
('\u{98d}', '\u{98e}'),
('\u{991}', '\u{992}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5087,12 +5226,13 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{c0d}', '\u{c0d}'),
('\u{c11}', '\u{c11}'),
('\u{c29}', '\u{c29}'),
- ('\u{c3a}', '\u{c3c}'),
+ ('\u{c3a}', '\u{c3b}'),
('\u{c45}', '\u{c45}'),
('\u{c49}', '\u{c49}'),
('\u{c4e}', '\u{c54}'),
('\u{c57}', '\u{c57}'),
- ('\u{c5b}', '\u{c5f}'),
+ ('\u{c5b}', '\u{c5c}'),
+ ('\u{c5e}', '\u{c5f}'),
('\u{c64}', '\u{c65}'),
('\u{c70}', '\u{c76}'),
('\u{c8d}', '\u{c8d}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5103,7 +5243,7 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{cc5}', '\u{cc5}'),
('\u{cc9}', '\u{cc9}'),
('\u{cce}', '\u{cd4}'),
- ('\u{cd7}', '\u{cdd}'),
+ ('\u{cd7}', '\u{cdc}'),
('\u{cdf}', '\u{cdf}'),
('\u{ce4}', '\u{ce5}'),
('\u{cf0}', '\u{cf0}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5171,8 +5311,7 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{13fe}', '\u{13ff}'),
('\u{169d}', '\u{169f}'),
('\u{16f9}', '\u{16ff}'),
- ('\u{170d}', '\u{170d}'),
- ('\u{1715}', '\u{171f}'),
+ ('\u{1716}', '\u{171e}'),
('\u{1737}', '\u{173f}'),
('\u{1754}', '\u{175f}'),
('\u{176d}', '\u{176d}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5181,7 +5320,6 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{17de}', '\u{17df}'),
('\u{17ea}', '\u{17ef}'),
('\u{17fa}', '\u{17ff}'),
- ('\u{180f}', '\u{180f}'),
('\u{181a}', '\u{181f}'),
('\u{1879}', '\u{187f}'),
('\u{18ab}', '\u{18af}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5201,9 +5339,9 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1a8a}', '\u{1a8f}'),
('\u{1a9a}', '\u{1a9f}'),
('\u{1aae}', '\u{1aaf}'),
- ('\u{1ac1}', '\u{1aff}'),
- ('\u{1b4c}', '\u{1b4f}'),
- ('\u{1b7d}', '\u{1b7f}'),
+ ('\u{1acf}', '\u{1aff}'),
+ ('\u{1b4d}', '\u{1b4f}'),
+ ('\u{1b7f}', '\u{1b7f}'),
('\u{1bf4}', '\u{1bfb}'),
('\u{1c38}', '\u{1c3a}'),
('\u{1c4a}', '\u{1c4c}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5211,7 +5349,6 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1cbb}', '\u{1cbc}'),
('\u{1cc8}', '\u{1ccf}'),
('\u{1cfb}', '\u{1cff}'),
- ('\u{1dfa}', '\u{1dfa}'),
('\u{1f16}', '\u{1f17}'),
('\u{1f1e}', '\u{1f1f}'),
('\u{1f46}', '\u{1f47}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5232,15 +5369,13 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{2072}', '\u{2073}'),
('\u{208f}', '\u{208f}'),
('\u{209d}', '\u{209f}'),
- ('\u{20c0}', '\u{20cf}'),
+ ('\u{20c1}', '\u{20cf}'),
('\u{20f1}', '\u{20ff}'),
('\u{218c}', '\u{218f}'),
('\u{2427}', '\u{243f}'),
('\u{244b}', '\u{245f}'),
('\u{2b74}', '\u{2b75}'),
('\u{2b96}', '\u{2b96}'),
- ('\u{2c2f}', '\u{2c2f}'),
- ('\u{2c5f}', '\u{2c5f}'),
('\u{2cf4}', '\u{2cf8}'),
('\u{2d26}', '\u{2d26}'),
('\u{2d28}', '\u{2d2c}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5256,7 +5391,7 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{2dcf}', '\u{2dcf}'),
('\u{2dd7}', '\u{2dd7}'),
('\u{2ddf}', '\u{2ddf}'),
- ('\u{2e53}', '\u{2e7f}'),
+ ('\u{2e5e}', '\u{2e7f}'),
('\u{2e9a}', '\u{2e9a}'),
('\u{2ef4}', '\u{2eff}'),
('\u{2fd6}', '\u{2fef}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5268,13 +5403,14 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{318f}', '\u{318f}'),
('\u{31e4}', '\u{31ef}'),
('\u{321f}', '\u{321f}'),
- ('\u{9ffd}', '\u{9fff}'),
('\u{a48d}', '\u{a48f}'),
('\u{a4c7}', '\u{a4cf}'),
('\u{a62c}', '\u{a63f}'),
('\u{a6f8}', '\u{a6ff}'),
- ('\u{a7c0}', '\u{a7c1}'),
- ('\u{a7cb}', '\u{a7f4}'),
+ ('\u{a7cb}', '\u{a7cf}'),
+ ('\u{a7d2}', '\u{a7d2}'),
+ ('\u{a7d4}', '\u{a7d4}'),
+ ('\u{a7da}', '\u{a7f1}'),
('\u{a82d}', '\u{a82f}'),
('\u{a83a}', '\u{a83f}'),
('\u{a878}', '\u{a87f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5310,11 +5446,10 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{fb3f}', '\u{fb3f}'),
('\u{fb42}', '\u{fb42}'),
('\u{fb45}', '\u{fb45}'),
- ('\u{fbc2}', '\u{fbd2}'),
- ('\u{fd40}', '\u{fd4f}'),
+ ('\u{fbc3}', '\u{fbd2}'),
('\u{fd90}', '\u{fd91}'),
- ('\u{fdc8}', '\u{fdef}'),
- ('\u{fdfe}', '\u{fdff}'),
+ ('\u{fdc8}', '\u{fdce}'),
+ ('\u{fdd0}', '\u{fdef}'),
('\u{fe1a}', '\u{fe1f}'),
('\u{fe53}', '\u{fe53}'),
('\u{fe67}', '\u{fe67}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5358,10 +5493,20 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{104fc}', '\u{104ff}'),
('\u{10528}', '\u{1052f}'),
('\u{10564}', '\u{1056e}'),
- ('\u{10570}', '\u{105ff}'),
+ ('\u{1057b}', '\u{1057b}'),
+ ('\u{1058b}', '\u{1058b}'),
+ ('\u{10593}', '\u{10593}'),
+ ('\u{10596}', '\u{10596}'),
+ ('\u{105a2}', '\u{105a2}'),
+ ('\u{105b2}', '\u{105b2}'),
+ ('\u{105ba}', '\u{105ba}'),
+ ('\u{105bd}', '\u{105ff}'),
('\u{10737}', '\u{1073f}'),
('\u{10756}', '\u{1075f}'),
- ('\u{10768}', '\u{107ff}'),
+ ('\u{10768}', '\u{1077f}'),
+ ('\u{10786}', '\u{10786}'),
+ ('\u{107b1}', '\u{107b1}'),
+ ('\u{107bb}', '\u{107ff}'),
('\u{10806}', '\u{10807}'),
('\u{10809}', '\u{10809}'),
('\u{10836}', '\u{10836}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5404,12 +5549,13 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{10eae}', '\u{10eaf}'),
('\u{10eb2}', '\u{10eff}'),
('\u{10f28}', '\u{10f2f}'),
- ('\u{10f5a}', '\u{10faf}'),
+ ('\u{10f5a}', '\u{10f6f}'),
+ ('\u{10f8a}', '\u{10faf}'),
('\u{10fcc}', '\u{10fdf}'),
('\u{10ff7}', '\u{10fff}'),
('\u{1104e}', '\u{11051}'),
- ('\u{11070}', '\u{1107e}'),
- ('\u{110c2}', '\u{110cc}'),
+ ('\u{11076}', '\u{1107e}'),
+ ('\u{110c3}', '\u{110cc}'),
('\u{110ce}', '\u{110cf}'),
('\u{110e9}', '\u{110ef}'),
('\u{110fa}', '\u{110ff}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5451,11 +5597,11 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{11645}', '\u{1164f}'),
('\u{1165a}', '\u{1165f}'),
('\u{1166d}', '\u{1167f}'),
- ('\u{116b9}', '\u{116bf}'),
+ ('\u{116ba}', '\u{116bf}'),
('\u{116ca}', '\u{116ff}'),
('\u{1171b}', '\u{1171c}'),
('\u{1172c}', '\u{1172f}'),
- ('\u{11740}', '\u{117ff}'),
+ ('\u{11747}', '\u{117ff}'),
('\u{1183c}', '\u{1189f}'),
('\u{118f3}', '\u{118fe}'),
('\u{11907}', '\u{11908}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5470,7 +5616,7 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{119d8}', '\u{119d9}'),
('\u{119e5}', '\u{119ff}'),
('\u{11a48}', '\u{11a4f}'),
- ('\u{11aa3}', '\u{11abf}'),
+ ('\u{11aa3}', '\u{11aaf}'),
('\u{11af9}', '\u{11bff}'),
('\u{11c09}', '\u{11c09}'),
('\u{11c37}', '\u{11c37}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5498,14 +5644,16 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1239a}', '\u{123ff}'),
('\u{1246f}', '\u{1246f}'),
('\u{12475}', '\u{1247f}'),
- ('\u{12544}', '\u{12fff}'),
+ ('\u{12544}', '\u{12f8f}'),
+ ('\u{12ff3}', '\u{12fff}'),
('\u{1342f}', '\u{1342f}'),
('\u{13439}', '\u{143ff}'),
('\u{14647}', '\u{167ff}'),
('\u{16a39}', '\u{16a3f}'),
('\u{16a5f}', '\u{16a5f}'),
('\u{16a6a}', '\u{16a6d}'),
- ('\u{16a70}', '\u{16acf}'),
+ ('\u{16abf}', '\u{16abf}'),
+ ('\u{16aca}', '\u{16acf}'),
('\u{16aee}', '\u{16aef}'),
('\u{16af6}', '\u{16aff}'),
('\u{16b46}', '\u{16b4f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5521,8 +5669,11 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{16ff2}', '\u{16fff}'),
('\u{187f8}', '\u{187ff}'),
('\u{18cd6}', '\u{18cff}'),
- ('\u{18d09}', '\u{1afff}'),
- ('\u{1b11f}', '\u{1b14f}'),
+ ('\u{18d09}', '\u{1afef}'),
+ ('\u{1aff4}', '\u{1aff4}'),
+ ('\u{1affc}', '\u{1affc}'),
+ ('\u{1afff}', '\u{1afff}'),
+ ('\u{1b123}', '\u{1b14f}'),
('\u{1b153}', '\u{1b163}'),
('\u{1b168}', '\u{1b16f}'),
('\u{1b2fc}', '\u{1bbff}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5530,10 +5681,13 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1bc7d}', '\u{1bc7f}'),
('\u{1bc89}', '\u{1bc8f}'),
('\u{1bc9a}', '\u{1bc9b}'),
- ('\u{1bca4}', '\u{1cfff}'),
+ ('\u{1bca4}', '\u{1ceff}'),
+ ('\u{1cf2e}', '\u{1cf2f}'),
+ ('\u{1cf47}', '\u{1cf4f}'),
+ ('\u{1cfc4}', '\u{1cfff}'),
('\u{1d0f6}', '\u{1d0ff}'),
('\u{1d127}', '\u{1d128}'),
- ('\u{1d1e9}', '\u{1d1ff}'),
+ ('\u{1d1eb}', '\u{1d1ff}'),
('\u{1d246}', '\u{1d2df}'),
('\u{1d2f4}', '\u{1d2ff}'),
('\u{1d357}', '\u{1d35f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5560,7 +5714,8 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1d7cc}', '\u{1d7cd}'),
('\u{1da8c}', '\u{1da9a}'),
('\u{1daa0}', '\u{1daa0}'),
- ('\u{1dab0}', '\u{1dfff}'),
+ ('\u{1dab0}', '\u{1deff}'),
+ ('\u{1df1f}', '\u{1dfff}'),
('\u{1e007}', '\u{1e007}'),
('\u{1e019}', '\u{1e01a}'),
('\u{1e022}', '\u{1e022}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5569,9 +5724,14 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1e12d}', '\u{1e12f}'),
('\u{1e13e}', '\u{1e13f}'),
('\u{1e14a}', '\u{1e14d}'),
- ('\u{1e150}', '\u{1e2bf}'),
+ ('\u{1e150}', '\u{1e28f}'),
+ ('\u{1e2af}', '\u{1e2bf}'),
('\u{1e2fa}', '\u{1e2fe}'),
- ('\u{1e300}', '\u{1e7ff}'),
+ ('\u{1e300}', '\u{1e7df}'),
+ ('\u{1e7e7}', '\u{1e7e7}'),
+ ('\u{1e7ec}', '\u{1e7ec}'),
+ ('\u{1e7ef}', '\u{1e7ef}'),
+ ('\u{1e7ff}', '\u{1e7ff}'),
('\u{1e8c5}', '\u{1e8c6}'),
('\u{1e8d7}', '\u{1e8ff}'),
('\u{1e94c}', '\u{1e94f}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -5625,34 +5785,35 @@ pub const UNASSIGNED: &'static [(char, char)] = &[
('\u{1f249}', '\u{1f24f}'),
('\u{1f252}', '\u{1f25f}'),
('\u{1f266}', '\u{1f2ff}'),
- ('\u{1f6d8}', '\u{1f6df}'),
+ ('\u{1f6d8}', '\u{1f6dc}'),
('\u{1f6ed}', '\u{1f6ef}'),
('\u{1f6fd}', '\u{1f6ff}'),
('\u{1f774}', '\u{1f77f}'),
('\u{1f7d9}', '\u{1f7df}'),
- ('\u{1f7ec}', '\u{1f7ff}'),
+ ('\u{1f7ec}', '\u{1f7ef}'),
+ ('\u{1f7f1}', '\u{1f7ff}'),
('\u{1f80c}', '\u{1f80f}'),
('\u{1f848}', '\u{1f84f}'),
('\u{1f85a}', '\u{1f85f}'),
('\u{1f888}', '\u{1f88f}'),
('\u{1f8ae}', '\u{1f8af}'),
('\u{1f8b2}', '\u{1f8ff}'),
- ('\u{1f979}', '\u{1f979}'),
- ('\u{1f9cc}', '\u{1f9cc}'),
('\u{1fa54}', '\u{1fa5f}'),
('\u{1fa6e}', '\u{1fa6f}'),
('\u{1fa75}', '\u{1fa77}'),
- ('\u{1fa7b}', '\u{1fa7f}'),
+ ('\u{1fa7d}', '\u{1fa7f}'),
('\u{1fa87}', '\u{1fa8f}'),
- ('\u{1faa9}', '\u{1faaf}'),
- ('\u{1fab7}', '\u{1fabf}'),
- ('\u{1fac3}', '\u{1facf}'),
- ('\u{1fad7}', '\u{1faff}'),
+ ('\u{1faad}', '\u{1faaf}'),
+ ('\u{1fabb}', '\u{1fabf}'),
+ ('\u{1fac6}', '\u{1facf}'),
+ ('\u{1fada}', '\u{1fadf}'),
+ ('\u{1fae8}', '\u{1faef}'),
+ ('\u{1faf7}', '\u{1faff}'),
('\u{1fb93}', '\u{1fb93}'),
('\u{1fbcb}', '\u{1fbef}'),
('\u{1fbfa}', '\u{1ffff}'),
- ('\u{2a6de}', '\u{2a6ff}'),
- ('\u{2b735}', '\u{2b73f}'),
+ ('\u{2a6e0}', '\u{2a6ff}'),
+ ('\u{2b739}', '\u{2b73f}'),
('\u{2b81e}', '\u{2b81f}'),
('\u{2cea2}', '\u{2ceaf}'),
('\u{2ebe1}', '\u{2f7ff}'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -6097,7 +6258,7 @@ pub const UPPERCASE_LETTER: &'static [(char, char)] = &[
('ℾ', 'ℿ'),
('ⅅ', 'ⅅ'),
('Ↄ', 'Ↄ'),
- ('Ⰰ', 'Ⱞ'),
+ ('Ⰰ', 'Ⱟ'),
('Ⱡ', 'Ⱡ'),
('Ɫ', 'Ɽ'),
('Ⱨ', 'Ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/general_category.rs b/regex-syntax/src/unicode_tables/general_category.rs
--- a/regex-syntax/src/unicode_tables/general_category.rs
+++ b/regex-syntax/src/unicode_tables/general_category.rs
@@ -6262,13 +6423,21 @@ pub const UPPERCASE_LETTER: &'static [(char, char)] = &[
('Ꞻ', 'Ꞻ'),
('Ꞽ', 'Ꞽ'),
('Ꞿ', 'Ꞿ'),
+ ('Ꟁ', 'Ꟁ'),
('Ꟃ', 'Ꟃ'),
- ('Ꞔ', '\u{a7c7}'),
- ('\u{a7c9}', '\u{a7c9}'),
- ('\u{a7f5}', '\u{a7f5}'),
+ ('Ꞔ', 'Ꟈ'),
+ ('Ꟊ', 'Ꟊ'),
+ ('Ꟑ', 'Ꟑ'),
+ ('Ꟗ', 'Ꟗ'),
+ ('Ꟙ', 'Ꟙ'),
+ ('Ꟶ', 'Ꟶ'),
('A', 'Z'),
('𐐀', '𐐧'),
('𐒰', '𐓓'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
('𐲀', '𐲲'),
('𑢠', '𑢿'),
('𖹀', '𖹟'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate grapheme-cluster-break ucd-13.0.0 --chars
+// ucd-generate grapheme-cluster-break /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("CR", CR),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -25,7 +25,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
pub const CR: &'static [(char, char)] = &[('\r', '\r')];
pub const CONTROL: &'static [(char, char)] = &[
- ('\u{0}', '\t'),
+ ('\0', '\t'),
('\u{b}', '\u{c}'),
('\u{e}', '\u{1f}'),
('\u{7f}', '\u{9f}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -71,7 +71,8 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{825}', '\u{827}'),
('\u{829}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('\u{898}', '\u{89f}'),
+ ('\u{8ca}', '\u{8e1}'),
('\u{8e3}', '\u{902}'),
('\u{93a}', '\u{93a}'),
('\u{93c}', '\u{93c}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -116,6 +117,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{bd7}', '\u{bd7}'),
('\u{c00}', '\u{c00}'),
('\u{c04}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', '\u{c40}'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -171,7 +173,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{109d}', '\u{109d}'),
('\u{135d}', '\u{135f}'),
('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1732}', '\u{1733}'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17b5}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -180,6 +182,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{17c9}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
('\u{1920}', '\u{1922}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -195,7 +198,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1a65}', '\u{1a6c}'),
('\u{1a73}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1b00}', '\u{1b03}'),
('\u{1b34}', '\u{1b3a}'),
('\u{1b3c}', '\u{1b3c}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -217,8 +220,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('\u{1cf8}', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{200c}', '\u{200c}'),
('\u{20d0}', '\u{20f0}'),
('\u{2cef}', '\u{2cf1}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -277,11 +279,15 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('\u{11001}', '\u{11001}'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '\u{11081}'),
('\u{110b3}', '\u{110b6}'),
('\u{110b9}', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{1112b}'),
('\u{1112d}', '\u{11134}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -367,6 +373,8 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{16f8f}', '\u{16f92}'),
('\u{16fe4}', '\u{16fe4}'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d165}'),
('\u{1d167}', '\u{1d169}'),
('\u{1d16e}', '\u{1d172}'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -1206,13 +1215,14 @@ pub const PREPEND: &'static [(char, char)] = &[
('\u{600}', '\u{605}'),
('\u{6dd}', '\u{6dd}'),
('\u{70f}', '\u{70f}'),
+ ('\u{890}', '\u{891}'),
('\u{8e2}', '\u{8e2}'),
('ൎ', 'ൎ'),
('\u{110bd}', '\u{110bd}'),
('\u{110cd}', '\u{110cd}'),
('𑇂', '𑇃'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑨺', '𑨺'),
('𑪄', '𑪉'),
('𑵆', '𑵆'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -1268,6 +1278,8 @@ pub const SPACINGMARK: &'static [(char, char)] = &[
('ျ', 'ြ'),
('ၖ', 'ၗ'),
('ႄ', 'ႄ'),
+ ('᜕', '᜕'),
+ ('᜴', '᜴'),
('ា', 'ា'),
('ើ', 'ៅ'),
('ះ', 'ៈ'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -1324,7 +1336,7 @@ pub const SPACINGMARK: &'static [(char, char)] = &[
('𑆂', '𑆂'),
('𑆳', '𑆵'),
('𑆿', '𑇀'),
- ('\u{111ce}', '\u{111ce}'),
+ ('𑇎', '𑇎'),
('𑈬', '𑈮'),
('𑈲', '𑈳'),
('𑈵', '𑈵'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -1352,15 +1364,14 @@ pub const SPACINGMARK: &'static [(char, char)] = &[
('𑚬', '𑚬'),
('𑚮', '𑚯'),
('𑚶', '𑚶'),
- ('𑜠', '𑜡'),
('𑜦', '𑜦'),
('𑠬', '𑠮'),
('𑠸', '𑠸'),
- ('\u{11931}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
- ('\u{1193d}', '\u{1193d}'),
- ('\u{11940}', '\u{11940}'),
- ('\u{11942}', '\u{11942}'),
+ ('𑤱', '𑤵'),
+ ('𑤷', '𑤸'),
+ ('𑤽', '𑤽'),
+ ('𑥀', '𑥀'),
+ ('𑥂', '𑥂'),
('𑧑', '𑧓'),
('𑧜', '𑧟'),
('𑧤', '𑧤'),
diff --git a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
--- a/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
+++ b/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
@@ -1377,7 +1388,7 @@ pub const SPACINGMARK: &'static [(char, char)] = &[
('𑶖', '𑶖'),
('𑻵', '𑻶'),
('𖽑', '𖾇'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('𝅦', '𝅦'),
('𝅭', '𝅭'),
];
diff --git a/regex-syntax/src/unicode_tables/perl_decimal.rs b/regex-syntax/src/unicode_tables/perl_decimal.rs
--- a/regex-syntax/src/unicode_tables/perl_decimal.rs
+++ b/regex-syntax/src/unicode_tables/perl_decimal.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate general-category ucd-13.0.0 --chars --include decimalnumber
+// ucd-generate general-category /tmp/ucd --chars --include decimalnumber
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] =
&[("Decimal_Number", DECIMAL_NUMBER)];
diff --git a/regex-syntax/src/unicode_tables/perl_decimal.rs b/regex-syntax/src/unicode_tables/perl_decimal.rs
--- a/regex-syntax/src/unicode_tables/perl_decimal.rs
+++ b/regex-syntax/src/unicode_tables/perl_decimal.rs
@@ -60,15 +60,16 @@ pub const DECIMAL_NUMBER: &'static [(char, char)] = &[
('𑛀', '𑛉'),
('𑜰', '𑜹'),
('𑣠', '𑣩'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑱐', '𑱙'),
('𑵐', '𑵙'),
('𑶠', '𑶩'),
('𖩠', '𖩩'),
+ ('𖫀', '𖫉'),
('𖭐', '𖭙'),
('𝟎', '𝟿'),
('𞅀', '𞅉'),
('𞋰', '𞋹'),
('𞥐', '𞥙'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🯰', '🯹'),
];
diff --git a/regex-syntax/src/unicode_tables/perl_space.rs b/regex-syntax/src/unicode_tables/perl_space.rs
--- a/regex-syntax/src/unicode_tables/perl_space.rs
+++ b/regex-syntax/src/unicode_tables/perl_space.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate property-bool ucd-13.0.0 --chars --include whitespace
+// ucd-generate property-bool /tmp/ucd --chars --include whitespace
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] =
&[("White_Space", WHITE_SPACE)];
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate perl-word ucd-13.0.0 --chars
+// ucd-generate perl-word /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const PERL_WORD: &'static [(char, char)] = &[
('0', '9'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -57,9 +57,9 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ࠀ', '\u{82d}'),
('ࡀ', '\u{85b}'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('\u{898}', '\u{8e1}'),
('\u{8e3}', '\u{963}'),
('०', '९'),
('ॱ', 'ঃ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -143,11 +143,12 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ఎ', 'ఐ'),
('ఒ', 'న'),
('ప', 'హ'),
- ('ఽ', 'ౄ'),
+ ('\u{c3c}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
('\u{c55}', '\u{c56}'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', '\u{c63}'),
('౦', '౯'),
('ಀ', 'ಃ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -160,7 +161,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{cc6}', 'ೈ'),
('ೊ', '\u{ccd}'),
('\u{cd5}', '\u{cd6}'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', '\u{ce3}'),
('೦', '೯'),
('ೱ', 'ೲ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -242,9 +243,8 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', '\u{1714}'),
- ('ᜠ', '\u{1734}'),
+ ('ᜀ', '᜕'),
+ ('ᜟ', '᜴'),
('ᝀ', '\u{1753}'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -254,7 +254,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ៜ', '\u{17dd}'),
('០', '៩'),
('\u{180b}', '\u{180d}'),
- ('᠐', '᠙'),
+ ('\u{180f}', '᠙'),
('ᠠ', 'ᡸ'),
('ᢀ', 'ᢪ'),
('ᢰ', 'ᣵ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -272,8 +272,8 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{1a7f}', '᪉'),
('᪐', '᪙'),
('ᪧ', 'ᪧ'),
- ('\u{1ab0}', '\u{1ac0}'),
- ('\u{1b00}', 'ᭋ'),
+ ('\u{1ab0}', '\u{1ace}'),
+ ('\u{1b00}', 'ᭌ'),
('᭐', '᭙'),
('\u{1b6b}', '\u{1b73}'),
('\u{1b80}', '᯳'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -285,8 +285,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('Ჽ', 'Ჿ'),
('\u{1cd0}', '\u{1cd2}'),
('\u{1cd4}', 'ᳺ'),
- ('ᴀ', '\u{1df9}'),
- ('\u{1dfb}', 'ἕ'),
+ ('ᴀ', 'ἕ'),
('Ἐ', 'Ἕ'),
('ἠ', 'ὅ'),
('Ὀ', 'Ὅ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -327,9 +326,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
('Ⓐ', 'ⓩ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳳ'),
('ⴀ', 'ⴥ'),
('ⴧ', 'ⴧ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -358,11 +355,10 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘫ'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -371,9 +367,11 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ꙿ', '\u{a6f1}'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠧ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠧ'),
('\u{a82c}', '\u{a82c}'),
('ꡀ', 'ꡳ'),
('ꢀ', '\u{a8c5}'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -400,7 +398,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯪ'),
('꯬', '\u{abed}'),
('꯰', '꯹'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -462,9 +460,20 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -499,27 +508,29 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('𐳀', '𐳲'),
('𐴀', '\u{10d27}'),
('𐴰', '𐴹'),
- ('\u{10e80}', '\u{10ea9}'),
+ ('𐺀', '𐺩'),
('\u{10eab}', '\u{10eac}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '\u{10f50}'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '\u{10f85}'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀀', '\u{11046}'),
- ('𑁦', '𑁯'),
+ ('𑁦', '𑁵'),
('\u{1107f}', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('𑃐', '𑃨'),
('𑃰', '𑃹'),
('\u{11100}', '\u{11134}'),
('𑄶', '𑄿'),
- ('𑅄', '\u{11147}'),
+ ('𑅄', '𑅇'),
('𑅐', '\u{11173}'),
('𑅶', '𑅶'),
('\u{11180}', '𑇄'),
('\u{111c9}', '\u{111cc}'),
- ('\u{111ce}', '𑇚'),
+ ('𑇎', '𑇚'),
('𑇜', '𑇜'),
('𑈀', '𑈑'),
('𑈓', '\u{11237}'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -548,7 +559,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{11370}', '\u{11374}'),
('𑐀', '𑑊'),
('𑑐', '𑑙'),
- ('\u{1145e}', '\u{11461}'),
+ ('\u{1145e}', '𑑡'),
('𑒀', '𑓅'),
('𑓇', '𑓇'),
('𑓐', '𑓙'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -563,16 +574,17 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('𑜀', '𑜚'),
('\u{1171d}', '\u{1172b}'),
('𑜰', '𑜹'),
+ ('𑝀', '𑝆'),
('𑠀', '\u{1183a}'),
('𑢠', '𑣩'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{11943}'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑦠', '𑦧'),
('𑦪', '\u{119d7}'),
('\u{119da}', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -581,7 +593,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{11a47}', '\u{11a47}'),
('𑩐', '\u{11a99}'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '\u{11c36}'),
('\u{11c38}', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -603,15 +615,18 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('𑶓', '𑶘'),
('𑶠', '𑶩'),
('𑻠', '𑻶'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
('𖩠', '𖩩'),
+ ('𖩰', '𖪾'),
+ ('𖫀', '𖫉'),
('𖫐', '𖫭'),
('\u{16af0}', '\u{16af4}'),
('𖬀', '\u{16b36}'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -625,11 +640,14 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{16f8f}', '𖾟'),
('𖿠', '𖿡'),
('𖿣', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -638,6 +656,8 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('𛲀', '𛲈'),
('𛲐', '𛲙'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -681,6 +701,7 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{1da84}', '\u{1da84}'),
('\u{1da9b}', '\u{1da9f}'),
('\u{1daa1}', '\u{1daaf}'),
+ ('𝼀', '𝼞'),
('\u{1e000}', '\u{1e006}'),
('\u{1e008}', '\u{1e018}'),
('\u{1e01b}', '\u{1e021}'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -690,7 +711,12 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('\u{1e130}', '𞄽'),
('𞅀', '𞅉'),
('𞅎', '𞅎'),
+ ('𞊐', '\u{1e2ae}'),
('𞋀', '𞋹'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('\u{1e8d0}', '\u{1e8d6}'),
('𞤀', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/perl_word.rs b/regex-syntax/src/unicode_tables/perl_word.rs
--- a/regex-syntax/src/unicode_tables/perl_word.rs
+++ b/regex-syntax/src/unicode_tables/perl_word.rs
@@ -731,13 +757,13 @@ pub const PERL_WORD: &'static [(char, char)] = &[
('🄰', '🅉'),
('🅐', '🅩'),
('🅰', '🆉'),
- ('\u{1fbf0}', '\u{1fbf9}'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('🯰', '🯹'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
('\u{e0100}', '\u{e01ef}'),
];
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate property-bool ucd-13.0.0 --chars
+// ucd-generate property-bool /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("ASCII_Hex_Digit", ASCII_HEX_DIGIT),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -125,8 +125,9 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ࠚ', '\u{82c}'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('\u{8d4}', '\u{8df}'),
('\u{8e3}', '\u{8e9}'),
('\u{8f0}', 'ऻ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -216,6 +217,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('\u{c4a}', '\u{c4c}'),
('\u{c55}', '\u{c56}'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', '\u{c63}'),
('ಀ', 'ಃ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -227,7 +229,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('\u{cc6}', 'ೈ'),
('ೊ', '\u{ccc}'),
('\u{cd5}', '\u{cd6}'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', '\u{ce3}'),
('ೱ', 'ೲ'),
('\u{d00}', 'ഌ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -303,9 +305,8 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', '\u{1713}'),
- ('ᜠ', '\u{1733}'),
+ ('ᜀ', '\u{1713}'),
+ ('ᜟ', '\u{1733}'),
('ᝀ', '\u{1753}'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -329,9 +330,10 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ᩡ', '\u{1a74}'),
('ᪧ', 'ᪧ'),
('\u{1abf}', '\u{1ac0}'),
+ ('\u{1acc}', '\u{1ace}'),
('\u{1b00}', 'ᬳ'),
('\u{1b35}', 'ᭃ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('\u{1b80}', '\u{1ba9}'),
('\u{1bac}', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -385,9 +387,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
('Ⓐ', 'ⓩ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('ⴀ', 'ⴥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -416,11 +416,10 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘟ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -430,9 +429,11 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ꙿ', 'ꛯ'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠅ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠅ'),
('ꠇ', 'ꠧ'),
('ꡀ', 'ꡳ'),
('ꢀ', 'ꣃ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -463,7 +464,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯪ'),
('가', '힣'),
('ힰ', 'ퟆ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -514,9 +515,20 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -548,24 +560,27 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𐴀', '\u{10d27}'),
- ('\u{10e80}', '\u{10ea9}'),
+ ('𐺀', '𐺩'),
('\u{10eab}', '\u{10eac}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀀', '\u{11045}'),
+ ('𑁱', '𑁵'),
('𑂂', '𑂸'),
+ ('\u{110c2}', '\u{110c2}'),
('𑃐', '𑃨'),
('\u{11100}', '\u{11132}'),
- ('𑅄', '\u{11147}'),
+ ('𑅄', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('\u{11180}', '𑆿'),
('𑇁', '𑇄'),
- ('\u{111ce}', '\u{111cf}'),
+ ('𑇎', '\u{111cf}'),
('𑇚', '𑇚'),
('𑇜', '𑇜'),
('𑈀', '𑈑'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -594,7 +609,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𑐀', '𑑁'),
('\u{11443}', '𑑅'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑓁'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -608,16 +623,17 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𑚸', '𑚸'),
('𑜀', '𑜚'),
('\u{1171d}', '\u{1172a}'),
+ ('𑝀', '𑝆'),
('𑠀', '𑠸'),
('𑢠', '𑣟'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{1193c}'),
- ('\u{1193f}', '\u{11942}'),
+ ('𑤿', '𑥂'),
('𑦠', '𑦧'),
('𑦪', '\u{119d7}'),
('\u{119da}', '𑧟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -627,7 +643,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('\u{11a35}', '\u{11a3e}'),
('𑩐', '𑪗'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '\u{11c36}'),
('\u{11c38}', '𑰾'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -650,14 +666,16 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𑶓', '𑶖'),
('𑶘', '𑶘'),
('𑻠', '𑻶'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭀', '𖭃'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -669,11 +687,14 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('\u{16f8f}', '𖾟'),
('𖿠', '𖿡'),
('𖿣', '𖿣'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -712,6 +733,7 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼞'),
('\u{1e000}', '\u{1e006}'),
('\u{1e008}', '\u{1e018}'),
('\u{1e01b}', '\u{1e021}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -720,7 +742,12 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞤀', '𞥃'),
('\u{1e947}', '\u{1e947}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -761,13 +788,13 @@ pub const ALPHABETIC: &'static [(char, char)] = &[
('🄰', '🅉'),
('🅐', '🅩'),
('🅰', '🆉'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const BIDI_CONTROL: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -873,6 +900,7 @@ pub const BIDI_MIRRORED: &'static [(char, char)] = &[
('⸌', '⸍'),
('⸜', '⸝'),
('⸠', '⸩'),
+ ('⹕', '⹜'),
('〈', '】'),
('〔', '〛'),
('﹙', '﹞'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -936,7 +964,10 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{7fd}', '\u{7fd}'),
('\u{816}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{902}'),
+ ('࢈', '࢈'),
+ ('\u{890}', '\u{891}'),
+ ('\u{898}', '\u{89f}'),
+ ('ࣉ', '\u{902}'),
('\u{93a}', '\u{93a}'),
('\u{93c}', '\u{93c}'),
('\u{941}', '\u{948}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -977,6 +1008,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{bcd}', '\u{bcd}'),
('\u{c00}', '\u{c00}'),
('\u{c04}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', '\u{c40}'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1028,7 +1060,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('ჼ', 'ჼ'),
('\u{135d}', '\u{135f}'),
('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1732}', '\u{1733}'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17b5}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1037,7 +1069,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{17c9}', '\u{17d3}'),
('ៗ', 'ៗ'),
('\u{17dd}', '\u{17dd}'),
- ('\u{180b}', '\u{180e}'),
+ ('\u{180b}', '\u{180f}'),
('ᡃ', 'ᡃ'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1055,7 +1087,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{1a73}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
('ᪧ', 'ᪧ'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1b00}', '\u{1b03}'),
('\u{1b34}', '\u{1b34}'),
('\u{1b36}', '\u{1b3a}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1081,8 +1113,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{1cf8}', '\u{1cf9}'),
('ᴬ', 'ᵪ'),
('ᵸ', 'ᵸ'),
- ('ᶛ', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('ᶛ', '\u{1dff}'),
('᾽', '᾽'),
('᾿', '῁'),
('῍', '῏'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1123,6 +1154,7 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('꜀', '꜡'),
('ꝰ', 'ꝰ'),
('ꞈ', '꞊'),
+ ('ꟲ', 'ꟴ'),
('ꟸ', 'ꟹ'),
('\u{a802}', '\u{a802}'),
('\u{a806}', '\u{a806}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1157,12 +1189,12 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('ꫳ', 'ꫴ'),
('\u{aaf6}', '\u{aaf6}'),
('꭛', 'ꭟ'),
- ('\u{ab69}', '\u{ab6b}'),
+ ('ꭩ', '꭫'),
('\u{abe5}', '\u{abe5}'),
('\u{abe8}', '\u{abe8}'),
('\u{abed}', '\u{abed}'),
('\u{fb1e}', '\u{fb1e}'),
- ('﮲', '﯁'),
+ ('﮲', '﯂'),
('\u{fe00}', '\u{fe0f}'),
('︓', '︓'),
('\u{fe20}', '\u{fe2f}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1181,6 +1213,9 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{101fd}', '\u{101fd}'),
('\u{102e0}', '\u{102e0}'),
('\u{10376}', '\u{1037a}'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('\u{10a01}', '\u{10a03}'),
('\u{10a05}', '\u{10a06}'),
('\u{10a0c}', '\u{10a0f}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1190,12 +1225,16 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('\u{11001}', '\u{11001}'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '\u{11081}'),
('\u{110b3}', '\u{110b6}'),
('\u{110b9}', '\u{110ba}'),
('\u{110bd}', '\u{110bd}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{110cd}', '\u{110cd}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{1112b}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1278,8 +1317,13 @@ pub const CASE_IGNORABLE: &'static [(char, char)] = &[
('\u{16f8f}', '𖾟'),
('𖿠', '𖿡'),
('𖿣', '\u{16fe4}'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
('\u{1bc9d}', '\u{1bc9e}'),
('\u{1bca0}', '\u{1bca3}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d167}', '\u{1d169}'),
('\u{1d173}', '\u{1d182}'),
('\u{1d185}', '\u{1d18b}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1384,9 +1429,7 @@ pub const CASED: &'static [(char, char)] = &[
('Ⅰ', 'ⅿ'),
('Ↄ', 'ↄ'),
('Ⓐ', 'ⓩ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('ⴀ', 'ⴥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1396,12 +1439,14 @@ pub const CASED: &'static [(char, char)] = &[
('Ꚁ', 'ꚝ'),
('Ꜣ', 'ꞇ'),
('Ꞌ', 'ꞎ'),
- ('Ꞑ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', '\u{a7f6}'),
+ ('Ꞑ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('Ꟶ', 'ꟶ'),
('ꟸ', 'ꟺ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab68}'),
+ ('ꭜ', 'ꭨ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
('ﬓ', 'ﬗ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1410,6 +1455,18 @@ pub const CASED: &'static [(char, char)] = &[
('𐐀', '𐑏'),
('𐒰', '𐓓'),
('𐓘', '𐓻'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
+ ('𐞀', '𐞀'),
+ ('𐞃', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𑢠', '𑣟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1444,6 +1501,8 @@ pub const CASED: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼉'),
+ ('𝼋', '𝼞'),
('𞤀', '𞥃'),
('🄰', '🅉'),
('🅐', '🅩'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -1886,7 +1945,7 @@ pub const CHANGES_WHEN_CASEFOLDED: &'static [(char, char)] = &[
('Ⅰ', 'Ⅿ'),
('Ↄ', 'Ↄ'),
('Ⓐ', 'Ⓩ'),
- ('Ⰰ', 'Ⱞ'),
+ ('Ⰰ', 'Ⱟ'),
('Ⱡ', 'Ⱡ'),
('Ɫ', 'Ɽ'),
('Ⱨ', 'Ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -2051,16 +2110,24 @@ pub const CHANGES_WHEN_CASEFOLDED: &'static [(char, char)] = &[
('Ꞻ', 'Ꞻ'),
('Ꞽ', 'Ꞽ'),
('Ꞿ', 'Ꞿ'),
+ ('Ꟁ', 'Ꟁ'),
('Ꟃ', 'Ꟃ'),
- ('Ꞔ', '\u{a7c7}'),
- ('\u{a7c9}', '\u{a7c9}'),
- ('\u{a7f5}', '\u{a7f5}'),
+ ('Ꞔ', 'Ꟈ'),
+ ('Ꟊ', 'Ꟊ'),
+ ('Ꟑ', 'Ꟑ'),
+ ('Ꟗ', 'Ꟗ'),
+ ('Ꟙ', 'Ꟙ'),
+ ('Ꟶ', 'Ꟶ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
('ﬓ', 'ﬗ'),
('A', 'Z'),
('𐐀', '𐐧'),
('𐒰', '𐓓'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
('𐲀', '𐲲'),
('𑢠', '𑢿'),
('𖹀', '𖹟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -2156,9 +2223,7 @@ pub const CHANGES_WHEN_CASEMAPPED: &'static [(char, char)] = &[
('Ⅰ', 'ⅿ'),
('Ↄ', 'ↄ'),
('Ⓐ', 'ⓩ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'Ɒ'),
+ ('Ⰰ', 'Ɒ'),
('Ⱳ', 'ⱳ'),
('Ⱶ', 'ⱶ'),
('Ȿ', 'ⳣ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -2175,9 +2240,10 @@ pub const CHANGES_WHEN_CASEMAPPED: &'static [(char, char)] = &[
('Ꞌ', 'Ɥ'),
('Ꞑ', 'ꞔ'),
('Ꞗ', 'Ɪ'),
- ('Ʞ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', '\u{a7f6}'),
+ ('Ʞ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('Ꟗ', 'ꟙ'),
+ ('Ꟶ', 'ꟶ'),
('ꭓ', 'ꭓ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -2187,6 +2253,14 @@ pub const CHANGES_WHEN_CASEMAPPED: &'static [(char, char)] = &[
('𐐀', '𐑏'),
('𐒰', '𐓓'),
('𐓘', '𐓻'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𑢠', '𑣟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -2620,7 +2694,7 @@ pub const CHANGES_WHEN_LOWERCASED: &'static [(char, char)] = &[
('Ⅰ', 'Ⅿ'),
('Ↄ', 'Ↄ'),
('Ⓐ', 'Ⓩ'),
- ('Ⰰ', 'Ⱞ'),
+ ('Ⰰ', 'Ⱟ'),
('Ⱡ', 'Ⱡ'),
('Ɫ', 'Ɽ'),
('Ⱨ', 'Ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -2785,13 +2859,21 @@ pub const CHANGES_WHEN_LOWERCASED: &'static [(char, char)] = &[
('Ꞻ', 'Ꞻ'),
('Ꞽ', 'Ꞽ'),
('Ꞿ', 'Ꞿ'),
+ ('Ꟁ', 'Ꟁ'),
('Ꟃ', 'Ꟃ'),
- ('Ꞔ', '\u{a7c7}'),
- ('\u{a7c9}', '\u{a7c9}'),
- ('\u{a7f5}', '\u{a7f5}'),
+ ('Ꞔ', 'Ꟈ'),
+ ('Ꟊ', 'Ꟊ'),
+ ('Ꟑ', 'Ꟑ'),
+ ('Ꟗ', 'Ꟗ'),
+ ('Ꟙ', 'Ꟙ'),
+ ('Ꟶ', 'Ꟶ'),
('A', 'Z'),
('𐐀', '𐐧'),
('𐒰', '𐓓'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
('𐲀', '𐲲'),
('𑢠', '𑢿'),
('𖹀', '𖹟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -3237,7 +3319,7 @@ pub const CHANGES_WHEN_TITLECASED: &'static [(char, char)] = &[
('ⅰ', 'ⅿ'),
('ↄ', 'ↄ'),
('ⓐ', 'ⓩ'),
- ('ⰰ', 'ⱞ'),
+ ('ⰰ', 'ⱟ'),
('ⱡ', 'ⱡ'),
('ⱥ', 'ⱦ'),
('ⱨ', 'ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -3402,10 +3484,14 @@ pub const CHANGES_WHEN_TITLECASED: &'static [(char, char)] = &[
('ꞻ', 'ꞻ'),
('ꞽ', 'ꞽ'),
('ꞿ', 'ꞿ'),
+ ('ꟁ', 'ꟁ'),
('ꟃ', 'ꟃ'),
- ('\u{a7c8}', '\u{a7c8}'),
- ('\u{a7ca}', '\u{a7ca}'),
- ('\u{a7f6}', '\u{a7f6}'),
+ ('ꟈ', 'ꟈ'),
+ ('ꟊ', 'ꟊ'),
+ ('ꟑ', 'ꟑ'),
+ ('ꟗ', 'ꟗ'),
+ ('ꟙ', 'ꟙ'),
+ ('ꟶ', 'ꟶ'),
('ꭓ', 'ꭓ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -3413,6 +3499,10 @@ pub const CHANGES_WHEN_TITLECASED: &'static [(char, char)] = &[
('a', 'z'),
('𐐨', '𐑏'),
('𐓘', '𐓻'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐳀', '𐳲'),
('𑣀', '𑣟'),
('𖹠', '𖹿'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -3859,7 +3949,7 @@ pub const CHANGES_WHEN_UPPERCASED: &'static [(char, char)] = &[
('ⅰ', 'ⅿ'),
('ↄ', 'ↄ'),
('ⓐ', 'ⓩ'),
- ('ⰰ', 'ⱞ'),
+ ('ⰰ', 'ⱟ'),
('ⱡ', 'ⱡ'),
('ⱥ', 'ⱦ'),
('ⱨ', 'ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4024,10 +4114,14 @@ pub const CHANGES_WHEN_UPPERCASED: &'static [(char, char)] = &[
('ꞻ', 'ꞻ'),
('ꞽ', 'ꞽ'),
('ꞿ', 'ꞿ'),
+ ('ꟁ', 'ꟁ'),
('ꟃ', 'ꟃ'),
- ('\u{a7c8}', '\u{a7c8}'),
- ('\u{a7ca}', '\u{a7ca}'),
- ('\u{a7f6}', '\u{a7f6}'),
+ ('ꟈ', 'ꟈ'),
+ ('ꟊ', 'ꟊ'),
+ ('ꟑ', 'ꟑ'),
+ ('ꟗ', 'ꟗ'),
+ ('ꟙ', 'ꟙ'),
+ ('ꟶ', 'ꟶ'),
('ꭓ', 'ꭓ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4035,6 +4129,10 @@ pub const CHANGES_WHEN_UPPERCASED: &'static [(char, char)] = &[
('a', 'z'),
('𐐨', '𐑏'),
('𐓘', '𐓻'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐳀', '𐳲'),
('𑣀', '𑣟'),
('𖹠', '𖹿'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4056,6 +4154,7 @@ pub const DASH: &'static [(char, char)] = &[
('⸚', '⸚'),
('⸺', '⸻'),
('⹀', '⹀'),
+ ('⹝', '⹝'),
('〜', '〜'),
('〰', '〰'),
('゠', '゠'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4063,7 +4162,7 @@ pub const DASH: &'static [(char, char)] = &[
('﹘', '﹘'),
('﹣', '﹣'),
('-', '-'),
- ('\u{10ead}', '\u{10ead}'),
+ ('𐺭', '𐺭'),
];
pub const DEFAULT_IGNORABLE_CODE_POINT: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4072,7 +4171,7 @@ pub const DEFAULT_IGNORABLE_CODE_POINT: &'static [(char, char)] = &[
('\u{61c}', '\u{61c}'),
('ᅟ', 'ᅠ'),
('\u{17b4}', '\u{17b5}'),
- ('\u{180b}', '\u{180e}'),
+ ('\u{180b}', '\u{180f}'),
('\u{200b}', '\u{200f}'),
('\u{202a}', '\u{202e}'),
('\u{2060}', '\u{206f}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4126,6 +4225,8 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('\u{7a6}', '\u{7b0}'),
('\u{7eb}', 'ߵ'),
('\u{818}', '\u{819}'),
+ ('\u{898}', '\u{89f}'),
+ ('ࣉ', '\u{8d2}'),
('\u{8e3}', '\u{8fe}'),
('\u{93c}', '\u{93c}'),
('\u{94d}', '\u{94d}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4142,6 +4243,7 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('\u{b4d}', '\u{b4d}'),
('\u{b55}', '\u{b55}'),
('\u{bcd}', '\u{bcd}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c4d}', '\u{c4d}'),
('\u{cbc}', '\u{cbc}'),
('\u{ccd}', '\u{ccd}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4168,12 +4270,14 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('ႏ', 'ႏ'),
('ႚ', 'ႛ'),
('\u{135d}', '\u{135f}'),
+ ('\u{1714}', '᜕'),
('\u{17c9}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{1939}', '\u{193b}'),
('\u{1a75}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
- ('\u{1ab0}', '\u{1abd}'),
+ ('\u{1ab0}', '\u{1abe}'),
+ ('\u{1ac1}', '\u{1acb}'),
('\u{1b34}', '\u{1b34}'),
('᭄', '᭄'),
('\u{1b6b}', '\u{1b73}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4186,8 +4290,7 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('᳷', '\u{1cf9}'),
('ᴬ', 'ᵪ'),
('\u{1dc4}', '\u{1dcf}'),
- ('\u{1df5}', '\u{1df9}'),
- ('\u{1dfd}', '\u{1dff}'),
+ ('\u{1df5}', '\u{1dff}'),
('᾽', '᾽'),
('᾿', '῁'),
('῍', '῏'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4218,7 +4321,7 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('\u{aabf}', 'ꫂ'),
('\u{aaf6}', '\u{aaf6}'),
('꭛', 'ꭟ'),
- ('\u{ab69}', '\u{ab6b}'),
+ ('ꭩ', '꭫'),
('꯬', '\u{abed}'),
('\u{fb1e}', '\u{fb1e}'),
('\u{fe20}', '\u{fe2f}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4228,9 +4331,15 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('\u{ff9e}', '\u{ff9f}'),
(' ̄', ' ̄'),
('\u{102e0}', '\u{102e0}'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('\u{10ae5}', '\u{10ae6}'),
('𐴢', '\u{10d27}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
+ ('\u{11046}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
('\u{110b9}', '\u{110ba}'),
('\u{11133}', '\u{11134}'),
('\u{11173}', '\u{11173}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4250,7 +4359,7 @@ pub const DIACRITIC: &'static [(char, char)] = &[
('𑚶', '\u{116b7}'),
('\u{1172b}', '\u{1172b}'),
('\u{11839}', '\u{1183a}'),
- ('\u{1193d}', '\u{1193e}'),
+ ('𑤽', '\u{1193e}'),
('\u{11943}', '\u{11943}'),
('\u{119e0}', '\u{119e0}'),
('\u{11a34}', '\u{11a34}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4410,25 +4525,26 @@ pub const EMOJI: &'static [(char, char)] = &[
('🗺', '🙏'),
('🚀', '🛅'),
('🛋', '🛒'),
- ('🛕', '\u{1f6d7}'),
- ('🛠', '🛥'),
+ ('🛕', '🛗'),
+ ('🛝', '🛥'),
('🛩', '🛩'),
('🛫', '🛬'),
('🛰', '🛰'),
- ('🛳', '\u{1f6fc}'),
+ ('🛳', '🛼'),
('🟠', '🟫'),
- ('\u{1f90c}', '🤺'),
+ ('🟰', '🟰'),
+ ('🤌', '🤺'),
('🤼', '🥅'),
- ('🥇', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🧿'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
+ ('🥇', '🧿'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
];
pub const EMOJI_COMPONENT: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4473,18 +4589,20 @@ pub const EMOJI_MODIFIER_BASE: &'static [(char, char)] = &[
('🚴', '🚶'),
('🛀', '🛀'),
('🛌', '🛌'),
- ('\u{1f90c}', '\u{1f90c}'),
+ ('🤌', '🤌'),
('🤏', '🤏'),
('🤘', '🤟'),
('🤦', '🤦'),
('🤰', '🤹'),
('🤼', '🤾'),
- ('\u{1f977}', '\u{1f977}'),
+ ('🥷', '🥷'),
('🦵', '🦶'),
('🦸', '🦹'),
('🦻', '🦻'),
('🧍', '🧏'),
('🧑', '🧝'),
+ ('🫃', '🫅'),
+ ('🫰', '🫶'),
];
pub const EMOJI_PRESENTATION: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4553,22 +4671,24 @@ pub const EMOJI_PRESENTATION: &'static [(char, char)] = &[
('🚀', '🛅'),
('🛌', '🛌'),
('🛐', '🛒'),
- ('🛕', '\u{1f6d7}'),
+ ('🛕', '🛗'),
+ ('🛝', '🛟'),
('🛫', '🛬'),
- ('🛴', '\u{1f6fc}'),
+ ('🛴', '🛼'),
('🟠', '🟫'),
- ('\u{1f90c}', '🤺'),
+ ('🟰', '🟰'),
+ ('🤌', '🤺'),
('🤼', '🥅'),
- ('🥇', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🧿'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
+ ('🥇', '🧿'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
];
pub const EXTENDED_PICTOGRAPHIC: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4623,13 +4743,13 @@ pub const EXTENDED_PICTOGRAPHIC: &'static [(char, char)] = &[
('㊗', '㊗'),
('㊙', '㊙'),
('🀀', '\u{1f0ff}'),
- ('\u{1f10d}', '\u{1f10f}'),
+ ('🄍', '🄏'),
('🄯', '🄯'),
('🅬', '🅱'),
('🅾', '🅿'),
('🆎', '🆎'),
('🆑', '🆚'),
- ('\u{1f1ad}', '\u{1f1e5}'),
+ ('🆭', '\u{1f1e5}'),
('🈁', '\u{1f20f}'),
('🈚', '🈚'),
('🈯', '🈯'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4646,7 +4766,7 @@ pub const EXTENDED_PICTOGRAPHIC: &'static [(char, char)] = &[
('\u{1f85a}', '\u{1f85f}'),
('\u{1f888}', '\u{1f88f}'),
('\u{1f8ae}', '\u{1f8ff}'),
- ('\u{1f90c}', '🤺'),
+ ('🤌', '🤺'),
('🤼', '🥅'),
('🥇', '\u{1faff}'),
('\u{1fc00}', '\u{1fffd}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4677,6 +4797,7 @@ pub const EXTENDER: &'static [(char, char)] = &[
('ꫝ', 'ꫝ'),
('ꫳ', 'ꫴ'),
('ー', 'ー'),
+ ('𐞁', '𐞂'),
('𑍝', '𑍝'),
('𑗆', '𑗈'),
('\u{11a98}', '\u{11a98}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4709,7 +4830,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ׯ', '״'),
('؆', '؏'),
('؛', '؛'),
- ('؞', 'ي'),
+ ('؝', 'ي'),
('٠', 'ٯ'),
('ٱ', 'ە'),
('۞', '۞'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4730,8 +4851,8 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ࡀ', 'ࡘ'),
('࡞', '࡞'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('ः', 'ह'),
('ऻ', 'ऻ'),
('ऽ', 'ी'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4820,6 +4941,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ఽ', 'ఽ'),
('ు', 'ౄ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('౦', '౯'),
('౷', 'ಀ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4833,7 +4955,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ೃ', 'ೄ'),
('ೇ', 'ೈ'),
('ೊ', 'ೋ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('೦', '೯'),
('ೱ', 'ೲ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4922,10 +5044,10 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ᏸ', 'ᏽ'),
('᐀', '᚜'),
('ᚠ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
- ('᜵', '᜶'),
+ ('ᜀ', 'ᜑ'),
+ ('᜕', '᜕'),
+ ('ᜟ', 'ᜱ'),
+ ('᜴', '᜶'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -4967,9 +5089,9 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ᬄ', 'ᬳ'),
('ᬻ', 'ᬻ'),
('ᬽ', 'ᭁ'),
- ('ᭃ', 'ᭋ'),
+ ('ᭃ', 'ᭌ'),
('᭐', '᭪'),
- ('᭴', '᭼'),
+ ('᭴', '᭾'),
('ᮂ', 'ᮡ'),
('ᮦ', 'ᮧ'),
('᮪', '᮪'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5013,15 +5135,13 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('⁰', 'ⁱ'),
('⁴', '₎'),
('ₐ', 'ₜ'),
- ('₠', '₿'),
+ ('₠', '⃀'),
('℀', '↋'),
('←', '␦'),
('⑀', '⑊'),
('①', '⭳'),
('⭶', '⮕'),
- ('\u{2b97}', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳮ'),
+ ('⮗', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('⳹', 'ⴥ'),
('ⴧ', 'ⴧ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5037,7 +5157,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ⷈ', 'ⷎ'),
('ⷐ', 'ⷖ'),
('ⷘ', 'ⷞ'),
- ('⸀', '\u{2e52}'),
+ ('⸀', '⹝'),
('⺀', '⺙'),
('⺛', '⻳'),
('⼀', '⿕'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5050,8 +5170,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ㄱ', 'ㆎ'),
('㆐', '㇣'),
('ㇰ', '㈞'),
- ('㈠', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㈠', 'ꒌ'),
('꒐', '꓆'),
('ꓐ', 'ꘫ'),
('Ꙁ', 'ꙮ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5059,9 +5178,11 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('꙾', 'ꚝ'),
('ꚠ', 'ꛯ'),
('꛲', '꛷'),
- ('꜀', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠁ'),
+ ('꜀', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠁ'),
('ꠃ', 'ꠅ'),
('ꠇ', 'ꠊ'),
('ꠌ', 'ꠤ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5103,7 +5224,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('ꬑ', 'ꬖ'),
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
- ('ꬰ', '\u{ab6b}'),
+ ('ꬰ', '꭫'),
('ꭰ', 'ꯤ'),
('ꯦ', 'ꯧ'),
('ꯩ', '꯬'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5121,11 +5242,11 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('מּ', 'מּ'),
('נּ', 'סּ'),
('ףּ', 'פּ'),
- ('צּ', '﯁'),
- ('ﯓ', '﴿'),
- ('ﵐ', 'ﶏ'),
+ ('צּ', '﯂'),
+ ('ﯓ', 'ﶏ'),
('ﶒ', 'ﷇ'),
- ('ﷰ', '﷽'),
+ ('﷏', '﷏'),
+ ('ﷰ', '﷿'),
('︐', '︙'),
('︰', '﹒'),
('﹔', '﹦'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5151,7 +5272,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𐄀', '𐄂'),
('𐄇', '𐄳'),
('𐄷', '𐆎'),
- ('𐆐', '\u{1019c}'),
+ ('𐆐', '𐆜'),
('𐆠', '𐆠'),
('𐇐', '𐇼'),
('𐊀', '𐊜'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5169,10 +5290,20 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
- ('𐕯', '𐕯'),
+ ('𐕯', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5209,18 +5340,22 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𐳺', '𐴣'),
('𐴰', '𐴹'),
('𐹠', '𐹾'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10ead}', '\u{10ead}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺭', '𐺭'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼧'),
('𐼰', '𐽅'),
('𐽑', '𐽙'),
- ('\u{10fb0}', '\u{10fcb}'),
+ ('𐽰', '𐾁'),
+ ('𐾆', '𐾉'),
+ ('𐾰', '𐿋'),
('𐿠', '𐿶'),
('𑀀', '𑀀'),
('𑀂', '𑀷'),
('𑁇', '𑁍'),
('𑁒', '𑁯'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂂', '𑂲'),
('𑂷', '𑂸'),
('𑂻', '𑂼'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5229,12 +5364,12 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𑃰', '𑃹'),
('𑄃', '𑄦'),
('𑄬', '𑄬'),
- ('𑄶', '\u{11147}'),
+ ('𑄶', '𑅇'),
('𑅐', '𑅲'),
('𑅴', '𑅶'),
('𑆂', '𑆵'),
('𑆿', '𑇈'),
- ('𑇍', '\u{111ce}'),
+ ('𑇍', '𑇎'),
('𑇐', '𑇟'),
('𑇡', '𑇴'),
('𑈀', '𑈑'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5269,7 +5404,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𑑅', '𑑅'),
('𑑇', '𑑛'),
('𑑝', '𑑝'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑒱', '𑒲'),
('𑒹', '𑒹'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5293,27 +5428,27 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𑚬', '𑚬'),
('𑚮', '𑚯'),
('𑚶', '𑚶'),
- ('𑚸', '𑚸'),
+ ('𑚸', '𑚹'),
('𑛀', '𑛉'),
('𑜀', '𑜚'),
('𑜠', '𑜡'),
('𑜦', '𑜦'),
- ('𑜰', '𑜿'),
+ ('𑜰', '𑝆'),
('𑠀', '𑠮'),
('𑠸', '𑠸'),
('𑠻', '𑠻'),
('𑢠', '𑣲'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{11931}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
- ('\u{1193d}', '\u{1193d}'),
- ('\u{1193f}', '\u{11942}'),
- ('\u{11944}', '\u{11946}'),
- ('\u{11950}', '\u{11959}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤱', '𑤵'),
+ ('𑤷', '𑤸'),
+ ('𑤽', '𑤽'),
+ ('𑤿', '𑥂'),
+ ('𑥄', '𑥆'),
+ ('𑥐', '𑥙'),
('𑦠', '𑦧'),
('𑦪', '𑧓'),
('𑧜', '𑧟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5327,7 +5462,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𑩜', '𑪉'),
('𑪗', '𑪗'),
('𑪚', '𑪢'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰯'),
('𑰾', '𑰾'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5351,18 +5486,20 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𑶠', '𑶩'),
('𑻠', '𑻲'),
('𑻵', '𑻸'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𑿀', '𑿱'),
('𑿿', '𒎙'),
('𒐀', '𒑮'),
('𒑰', '𒑴'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿲'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
('𖩠', '𖩩'),
- ('𖩮', '𖩯'),
+ ('𖩮', '𖪾'),
+ ('𖫀', '𖫉'),
('𖫐', '𖫭'),
('𖫵', '𖫵'),
('𖬀', '𖬯'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5376,11 +5513,14 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𖽐', '𖾇'),
('𖾓', '𖾟'),
('𖿠', '𖿣'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5390,6 +5530,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𛲐', '𛲙'),
('𛲜', '𛲜'),
('𛲟', '𛲟'),
+ ('𜽐', '𜿃'),
('𝀀', '𝃵'),
('𝄀', '𝄦'),
('𝄩', '𝅘𝅥𝅲'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5397,7 +5538,7 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𝅪', '𝅭'),
('𝆃', '𝆄'),
('𝆌', '𝆩'),
- ('𝆮', '𝇨'),
+ ('𝆮', '𝇪'),
('𝈀', '𝉁'),
('𝉅', '𝉅'),
('𝋠', '𝋳'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5428,13 +5569,19 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('𝩭', '𝩴'),
('𝩶', '𝪃'),
('𝪅', '𝪋'),
+ ('𝼀', '𝼞'),
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅀', '𞅉'),
('𞅎', '𞅏'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
('𞋰', '𞋹'),
('𞋿', '𞋿'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞣇', '𞣏'),
('𞤀', '𞥃'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5483,45 +5630,46 @@ pub const GRAPHEME_BASE: &'static [(char, char)] = &[
('🂱', '🂿'),
('🃁', '🃏'),
('🃑', '🃵'),
- ('🄀', '\u{1f1ad}'),
+ ('🄀', '🆭'),
('🇦', '🈂'),
('🈐', '🈻'),
('🉀', '🉈'),
('🉐', '🉑'),
('🉠', '🉥'),
- ('🌀', '\u{1f6d7}'),
- ('🛠', '🛬'),
- ('🛰', '\u{1f6fc}'),
+ ('🌀', '🛗'),
+ ('🛝', '🛬'),
+ ('🛰', '🛼'),
('🜀', '🝳'),
('🞀', '🟘'),
('🟠', '🟫'),
+ ('🟰', '🟰'),
('🠀', '🠋'),
('🠐', '🡇'),
('🡐', '🡙'),
('🡠', '🢇'),
('🢐', '🢭'),
- ('\u{1f8b0}', '\u{1f8b1}'),
- ('🤀', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🩓'),
+ ('🢰', '🢱'),
+ ('🤀', '🩓'),
('🩠', '🩭'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
- ('\u{1fb00}', '\u{1fb92}'),
- ('\u{1fb94}', '\u{1fbca}'),
- ('\u{1fbf0}', '\u{1fbf9}'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
+ ('🬀', '🮒'),
+ ('🮔', '🯊'),
+ ('🯰', '🯹'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5549,7 +5697,8 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{825}', '\u{827}'),
('\u{829}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('\u{898}', '\u{89f}'),
+ ('\u{8ca}', '\u{8e1}'),
('\u{8e3}', '\u{902}'),
('\u{93a}', '\u{93a}'),
('\u{93c}', '\u{93c}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5594,6 +5743,7 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{bd7}', '\u{bd7}'),
('\u{c00}', '\u{c00}'),
('\u{c04}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', '\u{c40}'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5649,7 +5799,7 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{109d}', '\u{109d}'),
('\u{135d}', '\u{135f}'),
('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1732}', '\u{1733}'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17b5}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5658,6 +5808,7 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{17c9}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
('\u{1920}', '\u{1922}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5673,7 +5824,7 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{1a65}', '\u{1a6c}'),
('\u{1a73}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1b00}', '\u{1b03}'),
('\u{1b34}', '\u{1b3a}'),
('\u{1b3c}', '\u{1b3c}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5695,8 +5846,7 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('\u{1cf8}', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{200c}', '\u{200c}'),
('\u{20d0}', '\u{20f0}'),
('\u{2cef}', '\u{2cf1}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5755,11 +5905,15 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('\u{11001}', '\u{11001}'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '\u{11081}'),
('\u{110b3}', '\u{110b6}'),
('\u{110b9}', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{1112b}'),
('\u{1112d}', '\u{11134}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5845,6 +5999,8 @@ pub const GRAPHEME_EXTEND: &'static [(char, char)] = &[
('\u{16f8f}', '\u{16f92}'),
('\u{16fe4}', '\u{16fe4}'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d165}'),
('\u{1d167}', '\u{1d169}'),
('\u{1d16e}', '\u{1d172}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5887,8 +6044,8 @@ pub const GRAPHEME_LINK: &'static [(char, char)] = &[
('\u{eba}', '\u{eba}'),
('\u{f84}', '\u{f84}'),
('\u{1039}', '\u{103a}'),
- ('\u{1714}', '\u{1714}'),
- ('\u{1734}', '\u{1734}'),
+ ('\u{1714}', '᜕'),
+ ('᜴', '᜴'),
('\u{17d2}', '\u{17d2}'),
('\u{1a60}', '\u{1a60}'),
('᭄', '᭄'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5904,6 +6061,7 @@ pub const GRAPHEME_LINK: &'static [(char, char)] = &[
('\u{abed}', '\u{abed}'),
('\u{10a3f}', '\u{10a3f}'),
('\u{11046}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
('\u{1107f}', '\u{1107f}'),
('\u{110b9}', '\u{110b9}'),
('\u{11133}', '\u{11134}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -5918,7 +6076,7 @@ pub const GRAPHEME_LINK: &'static [(char, char)] = &[
('𑚶', '𑚶'),
('\u{1172b}', '\u{1172b}'),
('\u{11839}', '\u{11839}'),
- ('\u{1193d}', '\u{1193e}'),
+ ('𑤽', '\u{1193e}'),
('\u{119e0}', '\u{119e0}'),
('\u{11a34}', '\u{11a34}'),
('\u{11a47}', '\u{11a47}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6007,9 +6165,9 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ࠀ', '\u{82d}'),
('ࡀ', '\u{85b}'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('\u{898}', '\u{8e1}'),
('\u{8e3}', '\u{963}'),
('०', '९'),
('ॱ', 'ঃ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6093,11 +6251,12 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ఎ', 'ఐ'),
('ఒ', 'న'),
('ప', 'హ'),
- ('ఽ', 'ౄ'),
+ ('\u{c3c}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
('\u{c55}', '\u{c56}'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', '\u{c63}'),
('౦', '౯'),
('ಀ', 'ಃ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6110,7 +6269,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('\u{cc6}', 'ೈ'),
('ೊ', '\u{ccd}'),
('\u{cd5}', '\u{cd6}'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', '\u{ce3}'),
('೦', '೯'),
('ೱ', 'ೲ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6193,9 +6352,8 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', '\u{1714}'),
- ('ᜠ', '\u{1734}'),
+ ('ᜀ', '᜕'),
+ ('ᜟ', '᜴'),
('ᝀ', '\u{1753}'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6205,7 +6363,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ៜ', '\u{17dd}'),
('០', '៩'),
('\u{180b}', '\u{180d}'),
- ('᠐', '᠙'),
+ ('\u{180f}', '᠙'),
('ᠠ', 'ᡸ'),
('ᢀ', 'ᢪ'),
('ᢰ', 'ᣵ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6224,8 +6382,8 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('᪐', '᪙'),
('ᪧ', 'ᪧ'),
('\u{1ab0}', '\u{1abd}'),
- ('\u{1abf}', '\u{1ac0}'),
- ('\u{1b00}', 'ᭋ'),
+ ('\u{1abf}', '\u{1ace}'),
+ ('\u{1b00}', 'ᭌ'),
('᭐', '᭙'),
('\u{1b6b}', '\u{1b73}'),
('\u{1b80}', '᯳'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6237,8 +6395,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('Ჽ', 'Ჿ'),
('\u{1cd0}', '\u{1cd2}'),
('\u{1cd4}', 'ᳺ'),
- ('ᴀ', '\u{1df9}'),
- ('\u{1dfb}', 'ἕ'),
+ ('ᴀ', 'ἕ'),
('Ἐ', 'Ἕ'),
('ἠ', 'ὅ'),
('Ὀ', 'Ὅ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6278,9 +6435,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ⅅ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳳ'),
('ⴀ', 'ⴥ'),
('ⴧ', 'ⴧ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6307,11 +6462,10 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘫ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6320,9 +6474,11 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ꙿ', '\u{a6f1}'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠧ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠧ'),
('\u{a82c}', '\u{a82c}'),
('ꡀ', 'ꡳ'),
('ꢀ', '\u{a8c5}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6349,7 +6505,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯪ'),
('꯬', '\u{abed}'),
('꯰', '꯹'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6411,9 +6567,20 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6448,27 +6615,29 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('𐳀', '𐳲'),
('𐴀', '\u{10d27}'),
('𐴰', '𐴹'),
- ('\u{10e80}', '\u{10ea9}'),
+ ('𐺀', '𐺩'),
('\u{10eab}', '\u{10eac}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '\u{10f50}'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '\u{10f85}'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀀', '\u{11046}'),
- ('𑁦', '𑁯'),
+ ('𑁦', '𑁵'),
('\u{1107f}', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('𑃐', '𑃨'),
('𑃰', '𑃹'),
('\u{11100}', '\u{11134}'),
('𑄶', '𑄿'),
- ('𑅄', '\u{11147}'),
+ ('𑅄', '𑅇'),
('𑅐', '\u{11173}'),
('𑅶', '𑅶'),
('\u{11180}', '𑇄'),
('\u{111c9}', '\u{111cc}'),
- ('\u{111ce}', '𑇚'),
+ ('𑇎', '𑇚'),
('𑇜', '𑇜'),
('𑈀', '𑈑'),
('𑈓', '\u{11237}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6497,7 +6666,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('\u{11370}', '\u{11374}'),
('𑐀', '𑑊'),
('𑑐', '𑑙'),
- ('\u{1145e}', '\u{11461}'),
+ ('\u{1145e}', '𑑡'),
('𑒀', '𑓅'),
('𑓇', '𑓇'),
('𑓐', '𑓙'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6512,16 +6681,17 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('𑜀', '𑜚'),
('\u{1171d}', '\u{1172b}'),
('𑜰', '𑜹'),
+ ('𑝀', '𑝆'),
('𑠀', '\u{1183a}'),
('𑢠', '𑣩'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{11943}'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑦠', '𑦧'),
('𑦪', '\u{119d7}'),
('\u{119da}', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6530,7 +6700,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('\u{11a47}', '\u{11a47}'),
('𑩐', '\u{11a99}'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '\u{11c36}'),
('\u{11c38}', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6552,15 +6722,18 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('𑶓', '𑶘'),
('𑶠', '𑶩'),
('𑻠', '𑻶'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
('𖩠', '𖩩'),
+ ('𖩰', '𖪾'),
+ ('𖫀', '𖫉'),
('𖫐', '𖫭'),
('\u{16af0}', '\u{16af4}'),
('𖬀', '\u{16b36}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6574,11 +6747,14 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('\u{16f8f}', '𖾟'),
('𖿠', '𖿡'),
('𖿣', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6587,6 +6763,8 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('𛲀', '𛲈'),
('𛲐', '𛲙'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6630,6 +6808,7 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('\u{1da84}', '\u{1da84}'),
('\u{1da9b}', '\u{1da9f}'),
('\u{1daa1}', '\u{1daaf}'),
+ ('𝼀', '𝼞'),
('\u{1e000}', '\u{1e006}'),
('\u{1e008}', '\u{1e018}'),
('\u{1e01b}', '\u{1e021}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6639,7 +6818,12 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('\u{1e130}', '𞄽'),
('𞅀', '𞅉'),
('𞅎', '𞅎'),
+ ('𞊐', '\u{1e2ae}'),
('𞋀', '𞋹'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('\u{1e8d0}', '\u{1e8d6}'),
('𞤀', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6677,14 +6861,14 @@ pub const ID_CONTINUE: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('\u{1fbf0}', '\u{1fbf9}'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('🯰', '🯹'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
('\u{e0100}', '\u{e01ef}'),
];
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6738,8 +6922,9 @@ pub const ID_START: &'static [(char, char)] = &[
('ࠨ', 'ࠨ'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('ऄ', 'ह'),
('ऽ', 'ऽ'),
('ॐ', 'ॐ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6804,6 +6989,7 @@ pub const ID_START: &'static [(char, char)] = &[
('ప', 'హ'),
('ఽ', 'ఽ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('ಀ', 'ಀ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6812,10 +6998,10 @@ pub const ID_START: &'static [(char, char)] = &[
('ಪ', 'ಳ'),
('ವ', 'ಹ'),
('ಽ', 'ಽ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('ೱ', 'ೲ'),
- ('\u{d04}', 'ഌ'),
+ ('ഄ', 'ഌ'),
('എ', 'ഐ'),
('ഒ', 'ഺ'),
('ഽ', 'ഽ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6883,9 +7069,8 @@ pub const ID_START: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
+ ('ᜀ', 'ᜑ'),
+ ('ᜟ', 'ᜱ'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6905,7 +7090,7 @@ pub const ID_START: &'static [(char, char)] = &[
('ᨠ', 'ᩔ'),
('ᪧ', 'ᪧ'),
('ᬅ', 'ᬳ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('ᮃ', 'ᮠ'),
('ᮮ', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6955,9 +7140,7 @@ pub const ID_START: &'static [(char, char)] = &[
('ⅅ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('ⴀ', 'ⴥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6984,11 +7167,10 @@ pub const ID_START: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘟ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -6998,9 +7180,11 @@ pub const ID_START: &'static [(char, char)] = &[
('ꚠ', 'ꛯ'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠁ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠁ'),
('ꠃ', 'ꠅ'),
('ꠇ', 'ꠊ'),
('ꠌ', 'ꠢ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7037,7 +7221,7 @@ pub const ID_START: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯢ'),
('가', '힣'),
('ힰ', 'ퟆ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7089,9 +7273,20 @@ pub const ID_START: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7122,19 +7317,22 @@ pub const ID_START: &'static [(char, char)] = &[
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𐴀', '𐴣'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀃', '𑀷'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂃', '𑂯'),
('𑃐', '𑃨'),
('𑄃', '𑄦'),
('𑅄', '𑅄'),
- ('\u{11147}', '\u{11147}'),
+ ('𑅇', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('𑆃', '𑆲'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7160,7 +7358,7 @@ pub const ID_START: &'static [(char, char)] = &[
('𑍝', '𑍡'),
('𑐀', '𑐴'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7171,15 +7369,16 @@ pub const ID_START: &'static [(char, char)] = &[
('𑚀', '𑚪'),
('𑚸', '𑚸'),
('𑜀', '𑜚'),
+ ('𑝀', '𑝆'),
('𑠀', '𑠫'),
('𑢠', '𑣟'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑦠', '𑦧'),
('𑦪', '𑧐'),
('𑧡', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7190,7 +7389,7 @@ pub const ID_START: &'static [(char, char)] = &[
('𑩐', '𑩐'),
('𑩜', '𑪉'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰮'),
('𑱀', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7204,14 +7403,16 @@ pub const ID_START: &'static [(char, char)] = &[
('𑵪', '𑶉'),
('𑶘', '𑶘'),
('𑻠', '𑻲'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭀', '𖭃'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7224,9 +7425,12 @@ pub const ID_START: &'static [(char, char)] = &[
('𖿠', '𖿡'),
('𖿣', '𖿣'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7264,10 +7468,16 @@ pub const ID_START: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼞'),
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞤀', '𞥃'),
('𞥋', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7304,35 +7514,35 @@ pub const ID_START: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const IDEOGRAPHIC: &'static [(char, char)] = &[
('〆', '〇'),
('〡', '〩'),
('〸', '〺'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
+ ('㐀', '䶿'),
+ ('一', '鿿'),
('豈', '舘'),
('並', '龎'),
('\u{16fe4}', '\u{16fe4}'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
('𛅰', '𛋻'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const JOIN_CONTROL: &'static [(char, char)] = &[('\u{200c}', '\u{200d}')];
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7787,7 +7997,7 @@ pub const LOWERCASE: &'static [(char, char)] = &[
('ⅰ', 'ⅿ'),
('ↄ', 'ↄ'),
('ⓐ', 'ⓩ'),
- ('ⰰ', 'ⱞ'),
+ ('ⰰ', 'ⱟ'),
('ⱡ', 'ⱡ'),
('ⱥ', 'ⱦ'),
('ⱨ', 'ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7955,19 +8165,33 @@ pub const LOWERCASE: &'static [(char, char)] = &[
('ꞻ', 'ꞻ'),
('ꞽ', 'ꞽ'),
('ꞿ', 'ꞿ'),
+ ('ꟁ', 'ꟁ'),
('ꟃ', 'ꟃ'),
- ('\u{a7c8}', '\u{a7c8}'),
- ('\u{a7ca}', '\u{a7ca}'),
- ('\u{a7f6}', '\u{a7f6}'),
+ ('ꟈ', 'ꟈ'),
+ ('ꟊ', 'ꟊ'),
+ ('ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟕ'),
+ ('ꟗ', 'ꟗ'),
+ ('ꟙ', 'ꟙ'),
+ ('ꟶ', 'ꟶ'),
('ꟸ', 'ꟺ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab68}'),
+ ('ꭜ', 'ꭨ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
('ﬓ', 'ﬗ'),
('a', 'z'),
('𐐨', '𐑏'),
('𐓘', '𐓻'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
+ ('𐞀', '𐞀'),
+ ('𐞃', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐳀', '𐳲'),
('𑣀', '𑣟'),
('𖹠', '𖹿'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -7999,6 +8223,8 @@ pub const LOWERCASE: &'static [(char, char)] = &[
('𝞪', '𝟂'),
('𝟄', '𝟉'),
('𝟋', '𝟋'),
+ ('𝼀', '𝼉'),
+ ('𝼋', '𝼞'),
('𞤢', '𞥃'),
];
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8281,6 +8507,7 @@ pub const OTHER_ALPHABETIC: &'static [(char, char)] = &[
('ᩕ', '\u{1a5e}'),
('ᩡ', '\u{1a74}'),
('\u{1abf}', '\u{1ac0}'),
+ ('\u{1acc}', '\u{1ace}'),
('\u{1b00}', 'ᬄ'),
('\u{1b35}', 'ᭃ'),
('\u{1b80}', 'ᮂ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8325,14 +8552,16 @@ pub const OTHER_ALPHABETIC: &'static [(char, char)] = &[
('\u{10eab}', '\u{10eac}'),
('𑀀', '𑀂'),
('\u{11038}', '\u{11045}'),
+ ('\u{11073}', '\u{11074}'),
('𑂂', '𑂂'),
('𑂰', '𑂸'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{11132}'),
('𑅅', '𑅆'),
('\u{11180}', '𑆂'),
('𑆳', '𑆿'),
- ('\u{111ce}', '\u{111cf}'),
+ ('𑇎', '\u{111cf}'),
('𑈬', '\u{11234}'),
('\u{11237}', '\u{11237}'),
('\u{1123e}', '\u{1123e}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8354,11 +8583,11 @@ pub const OTHER_ALPHABETIC: &'static [(char, char)] = &[
('\u{116ab}', '\u{116b5}'),
('\u{1171d}', '\u{1172a}'),
('𑠬', '𑠸'),
- ('\u{11930}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('\u{11930}', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{1193c}'),
- ('\u{11940}', '\u{11940}'),
- ('\u{11942}', '\u{11942}'),
+ ('𑥀', '𑥀'),
+ ('𑥂', '𑥂'),
('𑧑', '\u{119d7}'),
('\u{119da}', '𑧟'),
('𑧤', '𑧤'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8384,7 +8613,7 @@ pub const OTHER_ALPHABETIC: &'static [(char, char)] = &[
('\u{16f4f}', '\u{16f4f}'),
('𖽑', '𖾇'),
('\u{16f8f}', '\u{16f92}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('\u{1bc9e}', '\u{1bc9e}'),
('\u{1e000}', '\u{1e006}'),
('\u{1e008}', '\u{1e018}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8466,6 +8695,10 @@ pub const OTHER_LOWERCASE: &'static [(char, char)] = &[
('ꝰ', 'ꝰ'),
('ꟸ', 'ꟹ'),
('ꭜ', 'ꭟ'),
+ ('𐞀', '𐞀'),
+ ('𐞃', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
];
pub const OTHER_MATH: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8651,13 +8884,14 @@ pub const PREPENDED_CONCATENATION_MARK: &'static [(char, char)] = &[
('\u{600}', '\u{605}'),
('\u{6dd}', '\u{6dd}'),
('\u{70f}', '\u{70f}'),
+ ('\u{890}', '\u{891}'),
('\u{8e2}', '\u{8e2}'),
('\u{110bd}', '\u{110bd}'),
('\u{110cd}', '\u{110cd}'),
];
pub const QUOTATION_MARK: &'static [(char, char)] = &[
- ('\"', '\"'),
+ ('"', '"'),
('\'', '\''),
('«', '«'),
('»', '»'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8682,7 +8916,7 @@ pub const SENTENCE_TERMINAL: &'static [(char, char)] = &[
('.', '.'),
('?', '?'),
('։', '։'),
- ('؞', '؟'),
+ ('؝', '؟'),
('۔', '۔'),
('܀', '܂'),
('߹', '߹'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8701,12 +8935,14 @@ pub const SENTENCE_TERMINAL: &'static [(char, char)] = &[
('᪨', '᪫'),
('᭚', '᭛'),
('᭞', '᭟'),
+ ('᭽', '᭾'),
('᰻', '᰼'),
('᱾', '᱿'),
('‼', '‽'),
('⁇', '⁉'),
('⸮', '⸮'),
('⸼', '⸼'),
+ ('⹓', '⹔'),
('。', '。'),
('꓿', '꓿'),
('꘎', '꘏'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8727,6 +8963,7 @@ pub const SENTENCE_TERMINAL: &'static [(char, char)] = &[
('。', '。'),
('𐩖', '𐩗'),
('𐽕', '𐽙'),
+ ('𐾆', '𐾉'),
('𑁇', '𑁈'),
('𑂾', '𑃁'),
('𑅁', '𑅃'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8741,8 +8978,8 @@ pub const SENTENCE_TERMINAL: &'static [(char, char)] = &[
('𑗉', '𑗗'),
('𑙁', '𑙂'),
('𑜼', '𑜾'),
- ('\u{11944}', '\u{11944}'),
- ('\u{11946}', '\u{11946}'),
+ ('𑥄', '𑥄'),
+ ('𑥆', '𑥆'),
('𑩂', '𑩃'),
('𑪛', '𑪜'),
('𑱁', '𑱂'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8788,6 +9025,7 @@ pub const SOFT_DOTTED: &'static [(char, char)] = &[
('𝘪', '𝘫'),
('𝙞', '𝙟'),
('𝚒', '𝚓'),
+ ('𝼚', '𝼚'),
];
pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8802,7 +9040,7 @@ pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
('׃', '׃'),
('،', '،'),
('؛', '؛'),
- ('؞', '؟'),
+ ('؝', '؟'),
('۔', '۔'),
('܀', '܊'),
('܌', '܌'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8826,6 +9064,7 @@ pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
('᪨', '᪫'),
('᭚', '᭛'),
('᭝', '᭟'),
+ ('᭽', '᭾'),
('᰻', '᰿'),
('᱾', '᱿'),
('‼', '‽'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8835,6 +9074,7 @@ pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
('⹁', '⹁'),
('⹌', '⹌'),
('⹎', '⹏'),
+ ('⹓', '⹔'),
('、', '。'),
('꓾', '꓿'),
('꘍', '꘏'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8865,6 +9105,7 @@ pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
('𐬺', '𐬿'),
('𐮙', '𐮜'),
('𐽕', '𐽙'),
+ ('𐾆', '𐾉'),
('𑁇', '𑁍'),
('𑂾', '𑃁'),
('𑅁', '𑅃'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8874,13 +9115,13 @@ pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
('𑈸', '𑈼'),
('𑊩', '𑊩'),
('𑑋', '𑑍'),
- ('\u{1145a}', '𑑛'),
+ ('𑑚', '𑑛'),
('𑗂', '𑗅'),
('𑗉', '𑗗'),
('𑙁', '𑙂'),
('𑜼', '𑜾'),
- ('\u{11944}', '\u{11944}'),
- ('\u{11946}', '\u{11946}'),
+ ('𑥄', '𑥄'),
+ ('𑥆', '𑥆'),
('𑩂', '𑩃'),
('𑪛', '𑪜'),
('𑪡', '𑪢'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8898,8 +9139,8 @@ pub const TERMINAL_PUNCTUATION: &'static [(char, char)] = &[
];
pub const UNIFIED_IDEOGRAPH: &'static [(char, char)] = &[
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
+ ('㐀', '䶿'),
+ ('一', '鿿'),
('﨎', '﨏'),
('﨑', '﨑'),
('﨓', '﨔'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8907,12 +9148,12 @@ pub const UNIFIED_IDEOGRAPH: &'static [(char, char)] = &[
('﨡', '﨡'),
('﨣', '﨤'),
('﨧', '﨩'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const UPPERCASE: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9349,7 +9590,7 @@ pub const UPPERCASE: &'static [(char, char)] = &[
('Ⅰ', 'Ⅿ'),
('Ↄ', 'Ↄ'),
('Ⓐ', 'Ⓩ'),
- ('Ⰰ', 'Ⱞ'),
+ ('Ⰰ', 'Ⱟ'),
('Ⱡ', 'Ⱡ'),
('Ɫ', 'Ɽ'),
('Ⱨ', 'Ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9514,13 +9755,21 @@ pub const UPPERCASE: &'static [(char, char)] = &[
('Ꞻ', 'Ꞻ'),
('Ꞽ', 'Ꞽ'),
('Ꞿ', 'Ꞿ'),
+ ('Ꟁ', 'Ꟁ'),
('Ꟃ', 'Ꟃ'),
- ('Ꞔ', '\u{a7c7}'),
- ('\u{a7c9}', '\u{a7c9}'),
- ('\u{a7f5}', '\u{a7f5}'),
+ ('Ꞔ', 'Ꟈ'),
+ ('Ꟊ', 'Ꟊ'),
+ ('Ꟑ', 'Ꟑ'),
+ ('Ꟗ', 'Ꟗ'),
+ ('Ꟙ', 'Ꟙ'),
+ ('Ꟶ', 'Ꟶ'),
('A', 'Z'),
('𐐀', '𐐧'),
('𐒰', '𐓓'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
('𐲀', '𐲲'),
('𑢠', '𑢿'),
('𖹀', '𖹟'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9563,6 +9812,7 @@ pub const UPPERCASE: &'static [(char, char)] = &[
pub const VARIATION_SELECTOR: &'static [(char, char)] = &[
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{fe00}', '\u{fe0f}'),
('\u{e0100}', '\u{e01ef}'),
];
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9632,9 +9882,9 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ࠀ', '\u{82d}'),
('ࡀ', '\u{85b}'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('\u{898}', '\u{8e1}'),
('\u{8e3}', '\u{963}'),
('०', '९'),
('ॱ', 'ঃ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9718,11 +9968,12 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ఎ', 'ఐ'),
('ఒ', 'న'),
('ప', 'హ'),
- ('ఽ', 'ౄ'),
+ ('\u{c3c}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
('\u{c55}', '\u{c56}'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', '\u{c63}'),
('౦', '౯'),
('ಀ', 'ಃ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9735,7 +9986,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('\u{cc6}', 'ೈ'),
('ೊ', '\u{ccd}'),
('\u{cd5}', '\u{cd6}'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', '\u{ce3}'),
('೦', '೯'),
('ೱ', 'ೲ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9818,9 +10069,8 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', '\u{1714}'),
- ('ᜠ', '\u{1734}'),
+ ('ᜀ', '᜕'),
+ ('ᜟ', '᜴'),
('ᝀ', '\u{1753}'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9830,7 +10080,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ៜ', '\u{17dd}'),
('០', '៩'),
('\u{180b}', '\u{180d}'),
- ('᠐', '᠙'),
+ ('\u{180f}', '᠙'),
('ᠠ', 'ᡸ'),
('ᢀ', 'ᢪ'),
('ᢰ', 'ᣵ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9849,8 +10099,8 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('᪐', '᪙'),
('ᪧ', 'ᪧ'),
('\u{1ab0}', '\u{1abd}'),
- ('\u{1abf}', '\u{1ac0}'),
- ('\u{1b00}', 'ᭋ'),
+ ('\u{1abf}', '\u{1ace}'),
+ ('\u{1b00}', 'ᭌ'),
('᭐', '᭙'),
('\u{1b6b}', '\u{1b73}'),
('\u{1b80}', '᯳'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9862,8 +10112,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('Ჽ', 'Ჿ'),
('\u{1cd0}', '\u{1cd2}'),
('\u{1cd4}', 'ᳺ'),
- ('ᴀ', '\u{1df9}'),
- ('\u{1dfb}', 'ἕ'),
+ ('ᴀ', 'ἕ'),
('Ἐ', 'Ἕ'),
('ἠ', 'ὅ'),
('Ὀ', 'Ὅ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9903,9 +10152,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ⅅ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳳ'),
('ⴀ', 'ⴥ'),
('ⴧ', 'ⴧ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9933,11 +10180,10 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘫ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9946,9 +10192,11 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ꙿ', '\u{a6f1}'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠧ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠧ'),
('\u{a82c}', '\u{a82c}'),
('ꡀ', 'ꡳ'),
('ꢀ', '\u{a8c5}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -9975,7 +10223,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯪ'),
('꯬', '\u{abed}'),
('꯰', '꯹'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10043,9 +10291,20 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10080,27 +10339,29 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('𐳀', '𐳲'),
('𐴀', '\u{10d27}'),
('𐴰', '𐴹'),
- ('\u{10e80}', '\u{10ea9}'),
+ ('𐺀', '𐺩'),
('\u{10eab}', '\u{10eac}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '\u{10f50}'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '\u{10f85}'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀀', '\u{11046}'),
- ('𑁦', '𑁯'),
+ ('𑁦', '𑁵'),
('\u{1107f}', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('𑃐', '𑃨'),
('𑃰', '𑃹'),
('\u{11100}', '\u{11134}'),
('𑄶', '𑄿'),
- ('𑅄', '\u{11147}'),
+ ('𑅄', '𑅇'),
('𑅐', '\u{11173}'),
('𑅶', '𑅶'),
('\u{11180}', '𑇄'),
('\u{111c9}', '\u{111cc}'),
- ('\u{111ce}', '𑇚'),
+ ('𑇎', '𑇚'),
('𑇜', '𑇜'),
('𑈀', '𑈑'),
('𑈓', '\u{11237}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10129,7 +10390,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('\u{11370}', '\u{11374}'),
('𑐀', '𑑊'),
('𑑐', '𑑙'),
- ('\u{1145e}', '\u{11461}'),
+ ('\u{1145e}', '𑑡'),
('𑒀', '𑓅'),
('𑓇', '𑓇'),
('𑓐', '𑓙'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10144,16 +10405,17 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('𑜀', '𑜚'),
('\u{1171d}', '\u{1172b}'),
('𑜰', '𑜹'),
+ ('𑝀', '𑝆'),
('𑠀', '\u{1183a}'),
('𑢠', '𑣩'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{11943}'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑦠', '𑦧'),
('𑦪', '\u{119d7}'),
('\u{119da}', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10162,7 +10424,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('\u{11a47}', '\u{11a47}'),
('𑩐', '\u{11a99}'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '\u{11c36}'),
('\u{11c38}', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10184,15 +10446,18 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('𑶓', '𑶘'),
('𑶠', '𑶩'),
('𑻠', '𑻶'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
('𖩠', '𖩩'),
+ ('𖩰', '𖪾'),
+ ('𖫀', '𖫉'),
('𖫐', '𖫭'),
('\u{16af0}', '\u{16af4}'),
('𖬀', '\u{16b36}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10206,11 +10471,14 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('\u{16f8f}', '𖾟'),
('𖿠', '𖿡'),
('𖿣', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10219,6 +10487,8 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('𛲀', '𛲈'),
('𛲐', '𛲙'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10262,6 +10532,7 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('\u{1da84}', '\u{1da84}'),
('\u{1da9b}', '\u{1da9f}'),
('\u{1daa1}', '\u{1daaf}'),
+ ('𝼀', '𝼞'),
('\u{1e000}', '\u{1e006}'),
('\u{1e008}', '\u{1e018}'),
('\u{1e01b}', '\u{1e021}'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10271,7 +10542,12 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('\u{1e130}', '𞄽'),
('𞅀', '𞅉'),
('𞅎', '𞅎'),
+ ('𞊐', '\u{1e2ae}'),
('𞋀', '𞋹'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('\u{1e8d0}', '\u{1e8d6}'),
('𞤀', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10309,14 +10585,14 @@ pub const XID_CONTINUE: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('\u{1fbf0}', '\u{1fbf9}'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('🯰', '🯹'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
('\u{e0100}', '\u{e01ef}'),
];
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10370,8 +10646,9 @@ pub const XID_START: &'static [(char, char)] = &[
('ࠨ', 'ࠨ'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('ऄ', 'ह'),
('ऽ', 'ऽ'),
('ॐ', 'ॐ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10436,6 +10713,7 @@ pub const XID_START: &'static [(char, char)] = &[
('ప', 'హ'),
('ఽ', 'ఽ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('ಀ', 'ಀ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10444,10 +10722,10 @@ pub const XID_START: &'static [(char, char)] = &[
('ಪ', 'ಳ'),
('ವ', 'ಹ'),
('ಽ', 'ಽ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('ೱ', 'ೲ'),
- ('\u{d04}', 'ഌ'),
+ ('ഄ', 'ഌ'),
('എ', 'ഐ'),
('ഒ', 'ഺ'),
('ഽ', 'ഽ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10515,9 +10793,8 @@ pub const XID_START: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
+ ('ᜀ', 'ᜑ'),
+ ('ᜟ', 'ᜱ'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10537,7 +10814,7 @@ pub const XID_START: &'static [(char, char)] = &[
('ᨠ', 'ᩔ'),
('ᪧ', 'ᪧ'),
('ᬅ', 'ᬳ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('ᮃ', 'ᮠ'),
('ᮮ', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10587,9 +10864,7 @@ pub const XID_START: &'static [(char, char)] = &[
('ⅅ', 'ⅉ'),
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('ⴀ', 'ⴥ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10616,11 +10891,10 @@ pub const XID_START: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘟ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10630,9 +10904,11 @@ pub const XID_START: &'static [(char, char)] = &[
('ꚠ', 'ꛯ'),
('ꜗ', 'ꜟ'),
('Ꜣ', 'ꞈ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠁ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠁ'),
('ꠃ', 'ꠅ'),
('ꠇ', 'ꠊ'),
('ꠌ', 'ꠢ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10669,7 +10945,7 @@ pub const XID_START: &'static [(char, char)] = &[
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab69}'),
+ ('ꭜ', 'ꭩ'),
('ꭰ', 'ꯢ'),
('가', '힣'),
('ힰ', 'ퟆ'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10728,9 +11004,20 @@ pub const XID_START: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10761,19 +11048,22 @@ pub const XID_START: &'static [(char, char)] = &[
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𐴀', '𐴣'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀃', '𑀷'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂃', '𑂯'),
('𑃐', '𑃨'),
('𑄃', '𑄦'),
('𑅄', '𑅄'),
- ('\u{11147}', '\u{11147}'),
+ ('𑅇', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('𑆃', '𑆲'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10799,7 +11089,7 @@ pub const XID_START: &'static [(char, char)] = &[
('𑍝', '𑍡'),
('𑐀', '𑐴'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10810,15 +11100,16 @@ pub const XID_START: &'static [(char, char)] = &[
('𑚀', '𑚪'),
('𑚸', '𑚸'),
('𑜀', '𑜚'),
+ ('𑝀', '𑝆'),
('𑠀', '𑠫'),
('𑢠', '𑣟'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑦠', '𑦧'),
('𑦪', '𑧐'),
('𑧡', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10829,7 +11120,7 @@ pub const XID_START: &'static [(char, char)] = &[
('𑩐', '𑩐'),
('𑩜', '𑪉'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰮'),
('𑱀', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10843,14 +11134,16 @@ pub const XID_START: &'static [(char, char)] = &[
('𑵪', '𑶉'),
('𑶘', '𑶘'),
('𑻠', '𑻲'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭀', '𖭃'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10863,9 +11156,12 @@ pub const XID_START: &'static [(char, char)] = &[
('𖿠', '𖿡'),
('𖿣', '𖿣'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10903,10 +11199,16 @@ pub const XID_START: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼞'),
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞤀', '𞥃'),
('𞥋', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -10943,11 +11245,11 @@ pub const XID_START: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
diff --git a/regex-syntax/src/unicode_tables/property_names.rs b/regex-syntax/src/unicode_tables/property_names.rs
--- a/regex-syntax/src/unicode_tables/property_names.rs
+++ b/regex-syntax/src/unicode_tables/property_names.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate property-names ucd-13.0.0
+// ucd-generate property-names /tmp/ucd
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const PROPERTY_NAMES: &'static [(&'static str, &'static str)] = &[
("age", "Age"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate property-values ucd-13.0.0 --include gc,script,scx,age,gcb,wb,sb
+// ucd-generate property-values /tmp/ucd --include gc,script,scx,age,gcb,wb,sb
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const PROPERTY_VALUES: &'static [(
&'static str,
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -19,6 +19,7 @@ pub const PROPERTY_VALUES: &'static [(
("12.0", "V12_0"),
("12.1", "V12_1"),
("13.0", "V13_0"),
+ ("14.0", "V14_0"),
("2.0", "V2_0"),
("2.1", "V2_1"),
("3.0", "V3_0"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -44,6 +45,7 @@ pub const PROPERTY_VALUES: &'static [(
("v120", "V12_0"),
("v121", "V12_1"),
("v130", "V13_0"),
+ ("v140", "V14_0"),
("v20", "V2_0"),
("v21", "V2_1"),
("v30", "V3_0"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -233,9 +235,11 @@ pub const PROPERTY_VALUES: &'static [(
("common", "Common"),
("copt", "Coptic"),
("coptic", "Coptic"),
+ ("cpmn", "Cypro_Minoan"),
("cprt", "Cypriot"),
("cuneiform", "Cuneiform"),
("cypriot", "Cypriot"),
+ ("cyprominoan", "Cypro_Minoan"),
("cyrillic", "Cyrillic"),
("cyrl", "Cyrillic"),
("deseret", "Deseret"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -391,6 +395,7 @@ pub const PROPERTY_VALUES: &'static [(
("oldsogdian", "Old_Sogdian"),
("oldsoutharabian", "Old_South_Arabian"),
("oldturkic", "Old_Turkic"),
+ ("olduyghur", "Old_Uyghur"),
("oriya", "Oriya"),
("orkh", "Old_Turkic"),
("orya", "Oriya"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -398,6 +403,7 @@ pub const PROPERTY_VALUES: &'static [(
("osge", "Osage"),
("osma", "Osmanya"),
("osmanya", "Osmanya"),
+ ("ougr", "Old_Uyghur"),
("pahawhhmong", "Pahawh_Hmong"),
("palm", "Palmyrene"),
("palmyrene", "Palmyrene"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -462,6 +468,7 @@ pub const PROPERTY_VALUES: &'static [(
("tamil", "Tamil"),
("taml", "Tamil"),
("tang", "Tangut"),
+ ("tangsa", "Tangsa"),
("tangut", "Tangut"),
("tavt", "Tai_Viet"),
("telu", "Telugu"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -476,11 +483,15 @@ pub const PROPERTY_VALUES: &'static [(
("tifinagh", "Tifinagh"),
("tirh", "Tirhuta"),
("tirhuta", "Tirhuta"),
+ ("tnsa", "Tangsa"),
+ ("toto", "Toto"),
("ugar", "Ugaritic"),
("ugaritic", "Ugaritic"),
("unknown", "Unknown"),
("vai", "Vai"),
("vaii", "Vai"),
+ ("vith", "Vithkuqi"),
+ ("vithkuqi", "Vithkuqi"),
("wancho", "Wancho"),
("wara", "Warang_Citi"),
("warangciti", "Warang_Citi"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -550,9 +561,11 @@ pub const PROPERTY_VALUES: &'static [(
("common", "Common"),
("copt", "Coptic"),
("coptic", "Coptic"),
+ ("cpmn", "Cypro_Minoan"),
("cprt", "Cypriot"),
("cuneiform", "Cuneiform"),
("cypriot", "Cypriot"),
+ ("cyprominoan", "Cypro_Minoan"),
("cyrillic", "Cyrillic"),
("cyrl", "Cyrillic"),
("deseret", "Deseret"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -708,6 +721,7 @@ pub const PROPERTY_VALUES: &'static [(
("oldsogdian", "Old_Sogdian"),
("oldsoutharabian", "Old_South_Arabian"),
("oldturkic", "Old_Turkic"),
+ ("olduyghur", "Old_Uyghur"),
("oriya", "Oriya"),
("orkh", "Old_Turkic"),
("orya", "Oriya"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -715,6 +729,7 @@ pub const PROPERTY_VALUES: &'static [(
("osge", "Osage"),
("osma", "Osmanya"),
("osmanya", "Osmanya"),
+ ("ougr", "Old_Uyghur"),
("pahawhhmong", "Pahawh_Hmong"),
("palm", "Palmyrene"),
("palmyrene", "Palmyrene"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -779,6 +794,7 @@ pub const PROPERTY_VALUES: &'static [(
("tamil", "Tamil"),
("taml", "Tamil"),
("tang", "Tangut"),
+ ("tangsa", "Tangsa"),
("tangut", "Tangut"),
("tavt", "Tai_Viet"),
("telu", "Telugu"),
diff --git a/regex-syntax/src/unicode_tables/property_values.rs b/regex-syntax/src/unicode_tables/property_values.rs
--- a/regex-syntax/src/unicode_tables/property_values.rs
+++ b/regex-syntax/src/unicode_tables/property_values.rs
@@ -793,11 +809,15 @@ pub const PROPERTY_VALUES: &'static [(
("tifinagh", "Tifinagh"),
("tirh", "Tirhuta"),
("tirhuta", "Tirhuta"),
+ ("tnsa", "Tangsa"),
+ ("toto", "Toto"),
("ugar", "Ugaritic"),
("ugaritic", "Ugaritic"),
("unknown", "Unknown"),
("vai", "Vai"),
("vaii", "Vai"),
+ ("vith", "Vithkuqi"),
+ ("vithkuqi", "Vithkuqi"),
("wancho", "Wancho"),
("wara", "Warang_Citi"),
("warangciti", "Warang_Citi"),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate script ucd-13.0.0 --chars
+// ucd-generate script /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Adlam", ADLAM),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -35,6 +35,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Coptic", COPTIC),
("Cuneiform", CUNEIFORM),
("Cypriot", CYPRIOT),
+ ("Cypro_Minoan", CYPRO_MINOAN),
("Cyrillic", CYRILLIC),
("Deseret", DESERET),
("Devanagari", DEVANAGARI),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -118,6 +119,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Old_Sogdian", OLD_SOGDIAN),
("Old_South_Arabian", OLD_SOUTH_ARABIAN),
("Old_Turkic", OLD_TURKIC),
+ ("Old_Uyghur", OLD_UYGHUR),
("Oriya", ORIYA),
("Osage", OSAGE),
("Osmanya", OSMANYA),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -149,6 +151,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Tai_Viet", TAI_VIET),
("Takri", TAKRI),
("Tamil", TAMIL),
+ ("Tangsa", TANGSA),
("Tangut", TANGUT),
("Telugu", TELUGU),
("Thaana", THAANA),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -156,8 +159,10 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Tibetan", TIBETAN),
("Tifinagh", TIFINAGH),
("Tirhuta", TIRHUTA),
+ ("Toto", TOTO),
("Ugaritic", UGARITIC),
("Vai", VAI),
+ ("Vithkuqi", VITHKUQI),
("Wancho", WANCHO),
("Warang_Citi", WARANG_CITI),
("Yezidi", YEZIDI),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -169,7 +174,7 @@ pub const ADLAM: &'static [(char, char)] =
&[('𞤀', '𞥋'), ('𞥐', '𞥙'), ('𞥞', '𞥟')];
pub const AHOM: &'static [(char, char)] =
- &[('𑜀', '𑜚'), ('\u{1171d}', '\u{1172b}'), ('𑜰', '𑜿')];
+ &[('𑜀', '𑜚'), ('\u{1171d}', '\u{1172b}'), ('𑜰', '𑝆')];
pub const ANATOLIAN_HIEROGLYPHS: &'static [(char, char)] = &[('𔐀', '𔙆')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -177,23 +182,23 @@ pub const ARABIC: &'static [(char, char)] = &[
('\u{600}', '\u{604}'),
('؆', '؋'),
('؍', '\u{61a}'),
- ('\u{61c}', '\u{61c}'),
- ('؞', '؞'),
+ ('\u{61c}', '؞'),
('ؠ', 'ؿ'),
('ف', 'ي'),
('\u{656}', 'ٯ'),
('ٱ', '\u{6dc}'),
('۞', 'ۿ'),
('ݐ', 'ݿ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('ࡰ', 'ࢎ'),
+ ('\u{890}', '\u{891}'),
+ ('\u{898}', '\u{8e1}'),
('\u{8e3}', '\u{8ff}'),
- ('ﭐ', '﯁'),
+ ('ﭐ', '﯂'),
('ﯓ', 'ﴽ'),
- ('ﵐ', 'ﶏ'),
+ ('﵀', 'ﶏ'),
('ﶒ', 'ﷇ'),
- ('ﷰ', '﷽'),
+ ('﷏', '﷏'),
+ ('ﷰ', '﷿'),
('ﹰ', 'ﹴ'),
('ﹶ', 'ﻼ'),
('𐹠', '𐹾'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -238,7 +243,7 @@ pub const ARMENIAN: &'static [(char, char)] =
pub const AVESTAN: &'static [(char, char)] = &[('𐬀', '𐬵'), ('𐬹', '𐬿')];
-pub const BALINESE: &'static [(char, char)] = &[('\u{1b00}', 'ᭋ'), ('᭐', '᭼')];
+pub const BALINESE: &'static [(char, char)] = &[('\u{1b00}', 'ᭌ'), ('᭐', '᭾')];
pub const BAMUM: &'static [(char, char)] = &[('ꚠ', '꛷'), ('𖠀', '𖨸')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -268,10 +273,10 @@ pub const BHAIKSUKI: &'static [(char, char)] =
&[('𑰀', '𑰈'), ('𑰊', '\u{11c36}'), ('\u{11c38}', '𑱅'), ('𑱐', '𑱬')];
pub const BOPOMOFO: &'static [(char, char)] =
- &[('˪', '˫'), ('ㄅ', 'ㄯ'), ('ㆠ', '\u{31bf}')];
+ &[('˪', '˫'), ('ㄅ', 'ㄯ'), ('ㆠ', 'ㆿ')];
pub const BRAHMI: &'static [(char, char)] =
- &[('𑀀', '𑁍'), ('𑁒', '𑁯'), ('\u{1107f}', '\u{1107f}')];
+ &[('𑀀', '𑁍'), ('𑁒', '𑁵'), ('\u{1107f}', '\u{1107f}')];
pub const BRAILLE: &'static [(char, char)] = &[('⠀', '⣿')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -280,7 +285,7 @@ pub const BUGINESE: &'static [(char, char)] = &[('ᨀ', '\u{1a1b}'), ('᨞', '
pub const BUHID: &'static [(char, char)] = &[('ᝀ', '\u{1753}')];
pub const CANADIAN_ABORIGINAL: &'static [(char, char)] =
- &[('᐀', 'ᙿ'), ('ᢰ', 'ᣵ')];
+ &[('᐀', 'ᙿ'), ('ᢰ', 'ᣵ'), ('𑪰', '𑪿')];
pub const CARIAN: &'static [(char, char)] = &[('𐊠', '𐋐')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -288,7 +293,7 @@ pub const CAUCASIAN_ALBANIAN: &'static [(char, char)] =
&[('𐔰', '𐕣'), ('𐕯', '𐕯')];
pub const CHAKMA: &'static [(char, char)] =
- &[('\u{11100}', '\u{11134}'), ('𑄶', '\u{11147}')];
+ &[('\u{11100}', '\u{11134}'), ('𑄶', '𑅇')];
pub const CHAM: &'static [(char, char)] =
&[('ꨀ', '\u{aa36}'), ('ꩀ', 'ꩍ'), ('꩐', '꩙'), ('꩜', '꩟')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -296,10 +301,10 @@ pub const CHAM: &'static [(char, char)] =
pub const CHEROKEE: &'static [(char, char)] =
&[('Ꭰ', 'Ᏽ'), ('ᏸ', 'ᏽ'), ('ꭰ', 'ꮿ')];
-pub const CHORASMIAN: &'static [(char, char)] = &[('\u{10fb0}', '\u{10fcb}')];
+pub const CHORASMIAN: &'static [(char, char)] = &[('𐾰', '𐿋')];
pub const COMMON: &'static [(char, char)] = &[
- ('\u{0}', '@'),
+ ('\0', '@'),
('[', '`'),
('{', '©'),
('«', '¹'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -339,7 +344,7 @@ pub const COMMON: &'static [(char, char)] = &[
('\u{2066}', '⁰'),
('⁴', '⁾'),
('₀', '₎'),
- ('₠', '₿'),
+ ('₠', '⃀'),
('℀', '℥'),
('℧', '℩'),
('ℬ', 'ℱ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -351,8 +356,8 @@ pub const COMMON: &'static [(char, char)] = &[
('①', '⟿'),
('⤀', '⭳'),
('⭶', '⮕'),
- ('\u{2b97}', '⯿'),
- ('⸀', '\u{2e52}'),
+ ('⮗', '⯿'),
+ ('⸀', '⹝'),
('⿰', '⿻'),
('\u{3000}', '〄'),
('〆', '〆'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -375,7 +380,7 @@ pub const COMMON: &'static [(char, char)] = &[
('꤮', '꤮'),
('ꧏ', 'ꧏ'),
('꭛', '꭛'),
- ('\u{ab6a}', '\u{ab6b}'),
+ ('꭪', '꭫'),
('﴾', '﴿'),
('︐', '︙'),
('︰', '﹒'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -393,18 +398,18 @@ pub const COMMON: &'static [(char, char)] = &[
('𐄀', '𐄂'),
('𐄇', '𐄳'),
('𐄷', '𐄿'),
- ('𐆐', '\u{1019c}'),
+ ('𐆐', '𐆜'),
('𐇐', '𐇼'),
('𐋡', '𐋻'),
- ('𖿢', '𖿣'),
('\u{1bca0}', '\u{1bca3}'),
+ ('𜽐', '𜿃'),
('𝀀', '𝃵'),
('𝄀', '𝄦'),
('𝄩', '𝅦'),
('𝅪', '\u{1d17a}'),
('𝆃', '𝆄'),
('𝆌', '𝆩'),
- ('𝆮', '𝇨'),
+ ('𝆮', '𝇪'),
('𝋠', '𝋳'),
('𝌀', '𝍖'),
('𝍠', '𝍸'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -437,39 +442,40 @@ pub const COMMON: &'static [(char, char)] = &[
('🂱', '🂿'),
('🃁', '🃏'),
('🃑', '🃵'),
- ('🄀', '\u{1f1ad}'),
+ ('🄀', '🆭'),
('🇦', '🇿'),
('🈁', '🈂'),
('🈐', '🈻'),
('🉀', '🉈'),
('🉐', '🉑'),
('🉠', '🉥'),
- ('🌀', '\u{1f6d7}'),
- ('🛠', '🛬'),
- ('🛰', '\u{1f6fc}'),
+ ('🌀', '🛗'),
+ ('🛝', '🛬'),
+ ('🛰', '🛼'),
('🜀', '🝳'),
('🞀', '🟘'),
('🟠', '🟫'),
+ ('🟰', '🟰'),
('🠀', '🠋'),
('🠐', '🡇'),
('🡐', '🡙'),
('🡠', '🢇'),
('🢐', '🢭'),
- ('\u{1f8b0}', '\u{1f8b1}'),
- ('🤀', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🩓'),
+ ('🢰', '🢱'),
+ ('🤀', '🩓'),
('🩠', '🩭'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
- ('\u{1fb00}', '\u{1fb92}'),
- ('\u{1fb94}', '\u{1fbca}'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
+ ('🬀', '🮒'),
+ ('🮔', '🯊'),
+ ('🯰', '🯹'),
('\u{e0001}', '\u{e0001}'),
('\u{e0020}', '\u{e007f}'),
];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -483,6 +489,8 @@ pub const CUNEIFORM: &'static [(char, char)] =
pub const CYPRIOT: &'static [(char, char)] =
&[('𐠀', '𐠅'), ('𐠈', '𐠈'), ('𐠊', '𐠵'), ('𐠷', '𐠸'), ('𐠼', '𐠼'), ('𐠿', '𐠿')];
+pub const CYPRO_MINOAN: &'static [(char, char)] = &[('𒾐', '𒿲')];
+
pub const CYRILLIC: &'static [(char, char)] = &[
('Ѐ', '\u{484}'),
('\u{487}', 'ԯ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -504,14 +512,14 @@ pub const DEVANAGARI: &'static [(char, char)] = &[
];
pub const DIVES_AKURU: &'static [(char, char)] = &[
- ('\u{11900}', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
- ('\u{1193b}', '\u{11946}'),
- ('\u{11950}', '\u{11959}'),
+ ('𑤀', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
+ ('\u{1193b}', '𑥆'),
+ ('𑥐', '𑥙'),
];
pub const DOGRA: &'static [(char, char)] = &[('𑠀', '𑠻')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -559,6 +567,10 @@ pub const ETHIOPIC: &'static [(char, char)] = &[
('ꬑ', 'ꬖ'),
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
];
pub const GEORGIAN: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -575,8 +587,7 @@ pub const GEORGIAN: &'static [(char, char)] = &[
];
pub const GLAGOLITIC: &'static [(char, char)] = &[
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
+ ('Ⰰ', 'ⱟ'),
('\u{1e000}', '\u{1e006}'),
('\u{1e008}', '\u{1e018}'),
('\u{1e01b}', '\u{1e021}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -696,18 +707,19 @@ pub const HAN: &'static [(char, char)] = &[
('〇', '〇'),
('〡', '〩'),
('〸', '〻'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
+ ('㐀', '䶿'),
+ ('一', '鿿'),
('豈', '舘'),
('並', '龎'),
- ('\u{16ff0}', '\u{16ff1}'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𖿢', '𖿣'),
+ ('𖿰', '𖿱'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const HANGUL: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -730,7 +742,7 @@ pub const HANGUL: &'static [(char, char)] = &[
pub const HANIFI_ROHINGYA: &'static [(char, char)] =
&[('𐴀', '\u{10d27}'), ('𐴰', '𐴹')];
-pub const HANUNOO: &'static [(char, char)] = &[('ᜠ', '\u{1734}')];
+pub const HANUNOO: &'static [(char, char)] = &[('ᜠ', '᜴')];
pub const HATRAN: &'static [(char, char)] =
&[('𐣠', '𐣲'), ('𐣴', '𐣵'), ('𐣻', '𐣿')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -748,7 +760,7 @@ pub const HEBREW: &'static [(char, char)] = &[
];
pub const HIRAGANA: &'static [(char, char)] =
- &[('ぁ', 'ゖ'), ('ゝ', 'ゟ'), ('𛀁', '𛄞'), ('𛅐', '𛅒'), ('🈀', '🈀')];
+ &[('ぁ', 'ゖ'), ('ゝ', 'ゟ'), ('𛀁', '𛄟'), ('𛅐', '𛅒'), ('🈀', '🈀')];
pub const IMPERIAL_ARAMAIC: &'static [(char, char)] =
&[('𐡀', '𐡕'), ('𐡗', '𐡟')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -759,15 +771,14 @@ pub const INHERITED: &'static [(char, char)] = &[
('\u{64b}', '\u{655}'),
('\u{670}', '\u{670}'),
('\u{951}', '\u{954}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1cd0}', '\u{1cd2}'),
('\u{1cd4}', '\u{1ce0}'),
('\u{1ce2}', '\u{1ce8}'),
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('\u{1cf8}', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{200c}', '\u{200d}'),
('\u{20d0}', '\u{20f0}'),
('\u{302a}', '\u{302d}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -777,6 +788,8 @@ pub const INHERITED: &'static [(char, char)] = &[
('\u{101fd}', '\u{101fd}'),
('\u{102e0}', '\u{102e0}'),
('\u{1133b}', '\u{1133b}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d167}', '\u{1d169}'),
('\u{1d17b}', '\u{1d182}'),
('\u{1d185}', '\u{1d18b}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -794,7 +807,7 @@ pub const JAVANESE: &'static [(char, char)] =
&[('\u{a980}', '꧍'), ('꧐', '꧙'), ('꧞', '꧟')];
pub const KAITHI: &'static [(char, char)] =
- &[('\u{11080}', '𑃁'), ('\u{110cd}', '\u{110cd}')];
+ &[('\u{11080}', '\u{110c2}'), ('\u{110cd}', '\u{110cd}')];
pub const KANNADA: &'static [(char, char)] = &[
('ಀ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -806,7 +819,7 @@ pub const KANNADA: &'static [(char, char)] = &[
('\u{cc6}', 'ೈ'),
('ೊ', '\u{ccd}'),
('\u{cd5}', '\u{cd6}'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', '\u{ce3}'),
('೦', '೯'),
('ೱ', 'ೲ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -820,7 +833,11 @@ pub const KATAKANA: &'static [(char, char)] = &[
('㌀', '㍗'),
('ヲ', 'ッ'),
('ア', 'ン'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
('𛀀', '𛀀'),
+ ('𛄠', '𛄢'),
('𛅤', '𛅧'),
];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -838,7 +855,7 @@ pub const KHAROSHTHI: &'static [(char, char)] = &[
];
pub const KHITAN_SMALL_SCRIPT: &'static [(char, char)] =
- &[('\u{16fe4}', '\u{16fe4}'), ('\u{18b00}', '\u{18cd5}')];
+ &[('\u{16fe4}', '\u{16fe4}'), ('𘬀', '𘳕')];
pub const KHMER: &'static [(char, char)] =
&[('ក', '\u{17dd}'), ('០', '៩'), ('៰', '៹'), ('᧠', '᧿')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -886,15 +903,21 @@ pub const LATIN: &'static [(char, char)] = &[
('Ⅰ', 'ↈ'),
('Ⱡ', 'Ɀ'),
('Ꜣ', 'ꞇ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꟿ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꟿ'),
('ꬰ', 'ꭚ'),
('ꭜ', 'ꭤ'),
- ('ꭦ', '\u{ab69}'),
+ ('ꭦ', 'ꭩ'),
('ff', 'st'),
('A', 'Z'),
('a', 'z'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
+ ('𝼀', '𝼞'),
];
pub const LEPCHA: &'static [(char, char)] =
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -921,8 +944,7 @@ pub const LINEAR_B: &'static [(char, char)] = &[
('𐂀', '𐃺'),
];
-pub const LISU: &'static [(char, char)] =
- &[('ꓐ', '꓿'), ('\u{11fb0}', '\u{11fb0}')];
+pub const LISU: &'static [(char, char)] = &[('ꓐ', '꓿'), ('𑾰', '𑾰')];
pub const LYCIAN: &'static [(char, char)] = &[('𐊀', '𐊜')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -978,15 +1000,8 @@ pub const MIAO: &'static [(char, char)] =
pub const MODI: &'static [(char, char)] = &[('𑘀', '𑙄'), ('𑙐', '𑙙')];
-pub const MONGOLIAN: &'static [(char, char)] = &[
- ('᠀', '᠁'),
- ('᠄', '᠄'),
- ('᠆', '\u{180e}'),
- ('᠐', '᠙'),
- ('ᠠ', 'ᡸ'),
- ('ᢀ', 'ᢪ'),
- ('𑙠', '𑙬'),
-];
+pub const MONGOLIAN: &'static [(char, char)] =
+ &[('᠀', '᠁'), ('᠄', '᠄'), ('᠆', '᠙'), ('ᠠ', 'ᡸ'), ('ᢀ', 'ᢪ'), ('𑙠', '𑙬')];
pub const MRO: &'static [(char, char)] = &[('𖩀', '𖩞'), ('𖩠', '𖩩'), ('𖩮', '𖩯')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1004,7 +1019,7 @@ pub const NANDINAGARI: &'static [(char, char)] =
pub const NEW_TAI_LUE: &'static [(char, char)] =
&[('ᦀ', 'ᦫ'), ('ᦰ', 'ᧉ'), ('᧐', '᧚'), ('᧞', '᧟')];
-pub const NEWA: &'static [(char, char)] = &[('𑐀', '𑑛'), ('𑑝', '\u{11461}')];
+pub const NEWA: &'static [(char, char)] = &[('𑐀', '𑑛'), ('𑑝', '𑑡')];
pub const NKO: &'static [(char, char)] = &[('߀', 'ߺ'), ('\u{7fd}', '߿')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1034,6 +1049,8 @@ pub const OLD_SOUTH_ARABIAN: &'static [(char, char)] = &[('𐩠', '𐩿')];
pub const OLD_TURKIC: &'static [(char, char)] = &[('𐰀', '𐱈')];
+pub const OLD_UYGHUR: &'static [(char, char)] = &[('𐽰', '𐾉')];
+
pub const ORIYA: &'static [(char, char)] = &[
('\u{b01}', 'ଃ'),
('ଅ', 'ଌ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1118,7 +1135,7 @@ pub const SYLOTI_NAGRI: &'static [(char, char)] = &[('ꠀ', '\u{a82c}')];
pub const SYRIAC: &'static [(char, char)] =
&[('܀', '܍'), ('\u{70f}', '\u{74a}'), ('ݍ', 'ݏ'), ('ࡠ', 'ࡪ')];
-pub const TAGALOG: &'static [(char, char)] = &[('ᜀ', 'ᜌ'), ('ᜎ', '\u{1714}')];
+pub const TAGALOG: &'static [(char, char)] = &[('ᜀ', '᜕'), ('ᜟ', 'ᜟ')];
pub const TAGBANWA: &'static [(char, char)] =
&[('ᝠ', 'ᝬ'), ('ᝮ', 'ᝰ'), ('\u{1772}', '\u{1773}')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1135,7 +1152,7 @@ pub const TAI_THAM: &'static [(char, char)] = &[
pub const TAI_VIET: &'static [(char, char)] = &[('ꪀ', 'ꫂ'), ('ꫛ', '꫟')];
-pub const TAKRI: &'static [(char, char)] = &[('𑚀', '𑚸'), ('𑛀', '𑛉')];
+pub const TAKRI: &'static [(char, char)] = &[('𑚀', '𑚹'), ('𑛀', '𑛉')];
pub const TAMIL: &'static [(char, char)] = &[
('\u{b82}', 'ஃ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1158,23 +1175,22 @@ pub const TAMIL: &'static [(char, char)] = &[
('𑿿', '𑿿'),
];
-pub const TANGUT: &'static [(char, char)] = &[
- ('𖿠', '𖿠'),
- ('𗀀', '𘟷'),
- ('𘠀', '\u{18aff}'),
- ('\u{18d00}', '\u{18d08}'),
-];
+pub const TANGSA: &'static [(char, char)] = &[('𖩰', '𖪾'), ('𖫀', '𖫉')];
+
+pub const TANGUT: &'static [(char, char)] =
+ &[('𖿠', '𖿠'), ('𗀀', '𘟷'), ('𘠀', '𘫿'), ('𘴀', '𘴈')];
pub const TELUGU: &'static [(char, char)] = &[
('\u{c00}', 'ఌ'),
('ఎ', 'ఐ'),
('ఒ', 'న'),
('ప', 'హ'),
- ('ఽ', 'ౄ'),
+ ('\u{c3c}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
('\u{c55}', '\u{c56}'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', '\u{c63}'),
('౦', '౯'),
('౷', '౿'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1199,19 +1215,29 @@ pub const TIFINAGH: &'static [(char, char)] =
pub const TIRHUTA: &'static [(char, char)] = &[('𑒀', '𑓇'), ('𑓐', '𑓙')];
+pub const TOTO: &'static [(char, char)] = &[('𞊐', '\u{1e2ae}')];
+
pub const UGARITIC: &'static [(char, char)] = &[('𐎀', '𐎝'), ('𐎟', '𐎟')];
pub const VAI: &'static [(char, char)] = &[('ꔀ', 'ꘫ')];
+pub const VITHKUQI: &'static [(char, char)] = &[
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
+];
+
pub const WANCHO: &'static [(char, char)] = &[('𞋀', '𞋹'), ('𞋿', '𞋿')];
pub const WARANG_CITI: &'static [(char, char)] = &[('𑢠', '𑣲'), ('𑣿', '𑣿')];
-pub const YEZIDI: &'static [(char, char)] = &[
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eab}', '\u{10ead}'),
- ('\u{10eb0}', '\u{10eb1}'),
-];
+pub const YEZIDI: &'static [(char, char)] =
+ &[('𐺀', '𐺩'), ('\u{10eab}', '𐺭'), ('𐺰', '𐺱')];
pub const YI: &'static [(char, char)] = &[('ꀀ', 'ꒌ'), ('꒐', '꓆')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate script-extension ucd-13.0.0 --chars
+// ucd-generate script-extension /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Adlam", ADLAM),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -35,6 +35,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Coptic", COPTIC),
("Cuneiform", CUNEIFORM),
("Cypriot", CYPRIOT),
+ ("Cypro_Minoan", CYPRO_MINOAN),
("Cyrillic", CYRILLIC),
("Deseret", DESERET),
("Devanagari", DEVANAGARI),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -118,6 +119,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Old_Sogdian", OLD_SOGDIAN),
("Old_South_Arabian", OLD_SOUTH_ARABIAN),
("Old_Turkic", OLD_TURKIC),
+ ("Old_Uyghur", OLD_UYGHUR),
("Oriya", ORIYA),
("Osage", OSAGE),
("Osmanya", OSMANYA),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -149,6 +151,7 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Tai_Viet", TAI_VIET),
("Takri", TAKRI),
("Tamil", TAMIL),
+ ("Tangsa", TANGSA),
("Tangut", TANGUT),
("Telugu", TELUGU),
("Thaana", THAANA),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -156,8 +159,10 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("Tibetan", TIBETAN),
("Tifinagh", TIFINAGH),
("Tirhuta", TIRHUTA),
+ ("Toto", TOTO),
("Ugaritic", UGARITIC),
("Vai", VAI),
+ ("Vithkuqi", VITHKUQI),
("Wancho", WANCHO),
("Warang_Citi", WARANG_CITI),
("Yezidi", YEZIDI),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -166,28 +171,27 @@ pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
];
pub const ADLAM: &'static [(char, char)] =
- &[('ـ', 'ـ'), ('𞤀', '𞥋'), ('𞥐', '𞥙'), ('𞥞', '𞥟')];
+ &[('؟', '؟'), ('ـ', 'ـ'), ('𞤀', '𞥋'), ('𞥐', '𞥙'), ('𞥞', '𞥟')];
pub const AHOM: &'static [(char, char)] =
- &[('𑜀', '𑜚'), ('\u{1171d}', '\u{1172b}'), ('𑜰', '𑜿')];
+ &[('𑜀', '𑜚'), ('\u{1171d}', '\u{1172b}'), ('𑜰', '𑝆')];
pub const ANATOLIAN_HIEROGLYPHS: &'static [(char, char)] = &[('𔐀', '𔙆')];
pub const ARABIC: &'static [(char, char)] = &[
('\u{600}', '\u{604}'),
- ('؆', '\u{61c}'),
- ('؞', '\u{6dc}'),
+ ('؆', '\u{6dc}'),
('۞', 'ۿ'),
('ݐ', 'ݿ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('ࡰ', 'ࢎ'),
+ ('\u{890}', '\u{891}'),
+ ('\u{898}', '\u{8e1}'),
('\u{8e3}', '\u{8ff}'),
- ('ﭐ', '﯁'),
- ('ﯓ', 'ﴽ'),
- ('ﵐ', 'ﶏ'),
+ ('ﭐ', '﯂'),
+ ('ﯓ', 'ﶏ'),
('ﶒ', 'ﷇ'),
- ('ﷰ', '﷽'),
+ ('﷏', '﷏'),
+ ('ﷰ', '﷿'),
('ﹰ', 'ﹴ'),
('ﹶ', 'ﻼ'),
('\u{102e0}', '𐋻'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -233,7 +237,7 @@ pub const ARMENIAN: &'static [(char, char)] =
pub const AVESTAN: &'static [(char, char)] = &[('𐬀', '𐬵'), ('𐬹', '𐬿')];
-pub const BALINESE: &'static [(char, char)] = &[('\u{1b00}', 'ᭋ'), ('᭐', '᭼')];
+pub const BALINESE: &'static [(char, char)] = &[('\u{1b00}', 'ᭌ'), ('᭐', '᭾')];
pub const BAMUM: &'static [(char, char)] = &[('ꚠ', '꛷'), ('𖠀', '𖨸')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -284,13 +288,13 @@ pub const BOPOMOFO: &'static [(char, char)] = &[
('〷', '〷'),
('・', '・'),
('ㄅ', 'ㄯ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('﹅', '﹆'),
('。', '・'),
];
pub const BRAHMI: &'static [(char, char)] =
- &[('𑀀', '𑁍'), ('𑁒', '𑁯'), ('\u{1107f}', '\u{1107f}')];
+ &[('𑀀', '𑁍'), ('𑁒', '𑁵'), ('\u{1107f}', '\u{1107f}')];
pub const BRAILLE: &'static [(char, char)] = &[('⠀', '⣿')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -300,7 +304,7 @@ pub const BUGINESE: &'static [(char, char)] =
pub const BUHID: &'static [(char, char)] = &[('᜵', '᜶'), ('ᝀ', '\u{1753}')];
pub const CANADIAN_ABORIGINAL: &'static [(char, char)] =
- &[('᐀', 'ᙿ'), ('ᢰ', 'ᣵ')];
+ &[('᐀', 'ᙿ'), ('ᢰ', 'ᣵ'), ('𑪰', '𑪿')];
pub const CARIAN: &'static [(char, char)] = &[('𐊠', '𐋐')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -308,7 +312,7 @@ pub const CAUCASIAN_ALBANIAN: &'static [(char, char)] =
&[('𐔰', '𐕣'), ('𐕯', '𐕯')];
pub const CHAKMA: &'static [(char, char)] =
- &[('০', '৯'), ('၀', '၉'), ('\u{11100}', '\u{11134}'), ('𑄶', '\u{11147}')];
+ &[('০', '৯'), ('၀', '၉'), ('\u{11100}', '\u{11134}'), ('𑄶', '𑅇')];
pub const CHAM: &'static [(char, char)] =
&[('ꨀ', '\u{aa36}'), ('ꩀ', 'ꩍ'), ('꩐', '꩙'), ('꩜', '꩟')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -316,10 +320,10 @@ pub const CHAM: &'static [(char, char)] =
pub const CHEROKEE: &'static [(char, char)] =
&[('Ꭰ', 'Ᏽ'), ('ᏸ', 'ᏽ'), ('ꭰ', 'ꮿ')];
-pub const CHORASMIAN: &'static [(char, char)] = &[('\u{10fb0}', '\u{10fcb}')];
+pub const CHORASMIAN: &'static [(char, char)] = &[('𐾰', '𐿋')];
pub const COMMON: &'static [(char, char)] = &[
- ('\u{0}', '@'),
+ ('\0', '@'),
('[', '`'),
('{', '©'),
('«', '¹'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -345,7 +349,7 @@ pub const COMMON: &'static [(char, char)] = &[
('\u{2066}', '⁰'),
('⁴', '⁾'),
('₀', '₎'),
- ('₠', '₿'),
+ ('₠', '⃀'),
('℀', '℥'),
('℧', '℩'),
('ℬ', 'ℱ'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -357,9 +361,9 @@ pub const COMMON: &'static [(char, char)] = &[
('①', '⟿'),
('⤀', '⭳'),
('⭶', '⮕'),
- ('\u{2b97}', '⯿'),
+ ('⮗', '⯿'),
('⸀', '⹂'),
- ('⹄', '\u{2e52}'),
+ ('⹄', '⹝'),
('⿰', '⿻'),
('\u{3000}', '\u{3000}'),
('〄', '〄'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -377,8 +381,7 @@ pub const COMMON: &'static [(char, char)] = &[
('꜈', '꜡'),
('ꞈ', '꞊'),
('꭛', '꭛'),
- ('\u{ab6a}', '\u{ab6b}'),
- ('﴾', '﴿'),
+ ('꭪', '꭫'),
('︐', '︙'),
('︰', '﹄'),
('﹇', '﹒'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -391,16 +394,16 @@ pub const COMMON: &'static [(char, char)] = &[
('¢', '₩'),
('│', '○'),
('\u{fff9}', '�'),
- ('𐆐', '\u{1019c}'),
+ ('𐆐', '𐆜'),
('𐇐', '𐇼'),
- ('𖿢', '𖿣'),
+ ('𜽐', '𜿃'),
('𝀀', '𝃵'),
('𝄀', '𝄦'),
('𝄩', '𝅦'),
('𝅪', '\u{1d17a}'),
('𝆃', '𝆄'),
('𝆌', '𝆩'),
- ('𝆮', '𝇨'),
+ ('𝆮', '𝇪'),
('𝋠', '𝋳'),
('𝌀', '𝍖'),
('𝍲', '𝍸'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -433,38 +436,39 @@ pub const COMMON: &'static [(char, char)] = &[
('🂱', '🂿'),
('🃁', '🃏'),
('🃑', '🃵'),
- ('🄀', '\u{1f1ad}'),
+ ('🄀', '🆭'),
('🇦', '🇿'),
('🈁', '🈂'),
('🈐', '🈻'),
('🉀', '🉈'),
('🉠', '🉥'),
- ('🌀', '\u{1f6d7}'),
- ('🛠', '🛬'),
- ('🛰', '\u{1f6fc}'),
+ ('🌀', '🛗'),
+ ('🛝', '🛬'),
+ ('🛰', '🛼'),
('🜀', '🝳'),
('🞀', '🟘'),
('🟠', '🟫'),
+ ('🟰', '🟰'),
('🠀', '🠋'),
('🠐', '🡇'),
('🡐', '🡙'),
('🡠', '🢇'),
('🢐', '🢭'),
- ('\u{1f8b0}', '\u{1f8b1}'),
- ('🤀', '\u{1f978}'),
- ('🥺', '\u{1f9cb}'),
- ('🧍', '🩓'),
+ ('🢰', '🢱'),
+ ('🤀', '🩓'),
('🩠', '🩭'),
- ('🩰', '\u{1fa74}'),
- ('🩸', '🩺'),
- ('🪀', '\u{1fa86}'),
- ('🪐', '\u{1faa8}'),
- ('\u{1fab0}', '\u{1fab6}'),
- ('\u{1fac0}', '\u{1fac2}'),
- ('\u{1fad0}', '\u{1fad6}'),
- ('\u{1fb00}', '\u{1fb92}'),
- ('\u{1fb94}', '\u{1fbca}'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🩰', '🩴'),
+ ('🩸', '🩼'),
+ ('🪀', '🪆'),
+ ('🪐', '🪬'),
+ ('🪰', '🪺'),
+ ('🫀', '🫅'),
+ ('🫐', '🫙'),
+ ('🫠', '🫧'),
+ ('🫰', '🫶'),
+ ('🬀', '🮒'),
+ ('🮔', '🯊'),
+ ('🯰', '🯹'),
('\u{e0001}', '\u{e0001}'),
('\u{e0020}', '\u{e007f}'),
];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -487,6 +491,8 @@ pub const CYPRIOT: &'static [(char, char)] = &[
('𐠿', '𐠿'),
];
+pub const CYPRO_MINOAN: &'static [(char, char)] = &[('𐄀', '𐄁'), ('𒾐', '𒿲')];
+
pub const CYRILLIC: &'static [(char, char)] = &[
('Ѐ', 'ԯ'),
('ᲀ', 'ᲈ'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -512,14 +518,14 @@ pub const DEVANAGARI: &'static [(char, char)] = &[
];
pub const DIVES_AKURU: &'static [(char, char)] = &[
- ('\u{11900}', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
- ('\u{1193b}', '\u{11946}'),
- ('\u{11950}', '\u{11959}'),
+ ('𑤀', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤵'),
+ ('𑤷', '𑤸'),
+ ('\u{1193b}', '𑥆'),
+ ('𑥐', '𑥙'),
];
pub const DOGRA: &'static [(char, char)] =
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -568,6 +574,10 @@ pub const ETHIOPIC: &'static [(char, char)] = &[
('ꬑ', 'ꬖ'),
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
];
pub const GEORGIAN: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -585,8 +595,7 @@ pub const GEORGIAN: &'static [(char, char)] = &[
pub const GLAGOLITIC: &'static [(char, char)] = &[
('\u{484}', '\u{484}'),
('\u{487}', '\u{487}'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
+ ('Ⰰ', 'ⱟ'),
('⹃', '⹃'),
('\u{a66f}', '\u{a66f}'),
('\u{1e000}', '\u{1e006}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -739,23 +748,24 @@ pub const HAN: &'static [(char, char)] = &[
('㍘', '㍰'),
('㍻', '㍿'),
('㏠', '㏾'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
+ ('㐀', '䶿'),
+ ('一', '鿿'),
('꜀', '꜇'),
('豈', '舘'),
('並', '龎'),
('﹅', '﹆'),
('。', '・'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿢', '𖿣'),
+ ('𖿰', '𖿱'),
('𝍠', '𝍱'),
('🉐', '🉑'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const HANGUL: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -823,7 +833,7 @@ pub const HIRAGANA: &'static [(char, char)] = &[
('。', '・'),
('ー', 'ー'),
('\u{ff9e}', '\u{ff9f}'),
- ('𛀁', '𛄞'),
+ ('𛀁', '𛄟'),
('𛅐', '𛅒'),
('🈀', '🈀'),
];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -836,7 +846,7 @@ pub const INHERITED: &'static [(char, char)] = &[
('\u{343}', '\u{344}'),
('\u{346}', '\u{362}'),
('\u{953}', '\u{954}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1dc2}', '\u{1df7}'),
('\u{1df9}', '\u{1df9}'),
('\u{1dfb}', '\u{1dff}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -845,6 +855,8 @@ pub const INHERITED: &'static [(char, char)] = &[
('\u{fe00}', '\u{fe0f}'),
('\u{fe20}', '\u{fe2d}'),
('\u{101fd}', '\u{101fd}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d167}', '\u{1d169}'),
('\u{1d17b}', '\u{1d182}'),
('\u{1d185}', '\u{1d18b}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -861,8 +873,12 @@ pub const INSCRIPTIONAL_PARTHIAN: &'static [(char, char)] =
pub const JAVANESE: &'static [(char, char)] =
&[('\u{a980}', '꧍'), ('ꧏ', '꧙'), ('꧞', '꧟')];
-pub const KAITHI: &'static [(char, char)] =
- &[('०', '९'), ('꠰', '꠹'), ('\u{11080}', '𑃁'), ('\u{110cd}', '\u{110cd}')];
+pub const KAITHI: &'static [(char, char)] = &[
+ ('०', '९'),
+ ('꠰', '꠹'),
+ ('\u{11080}', '\u{110c2}'),
+ ('\u{110cd}', '\u{110cd}'),
+];
pub const KANNADA: &'static [(char, char)] = &[
('\u{951}', '\u{952}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -876,7 +892,7 @@ pub const KANNADA: &'static [(char, char)] = &[
('\u{cc6}', 'ೈ'),
('ೊ', '\u{ccd}'),
('\u{cd5}', '\u{cd6}'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', '\u{ce3}'),
('೦', '೯'),
('ೱ', 'ೲ'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -902,7 +918,11 @@ pub const KATAKANA: &'static [(char, char)] = &[
('㌀', '㍗'),
('﹅', '﹆'),
('。', '\u{ff9f}'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
('𛀀', '𛀀'),
+ ('𛄠', '𛄢'),
('𛅤', '𛅧'),
];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -920,7 +940,7 @@ pub const KHAROSHTHI: &'static [(char, char)] = &[
];
pub const KHITAN_SMALL_SCRIPT: &'static [(char, char)] =
- &[('\u{16fe4}', '\u{16fe4}'), ('\u{18b00}', '\u{18cd5}')];
+ &[('\u{16fe4}', '\u{16fe4}'), ('𘬀', '𘳕')];
pub const KHMER: &'static [(char, char)] =
&[('ក', '\u{17dd}'), ('០', '៩'), ('៰', '៹'), ('᧠', '᧿')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -976,16 +996,22 @@ pub const LATIN: &'static [(char, char)] = &[
('Ⱡ', 'Ɀ'),
('꜀', '꜇'),
('Ꜣ', 'ꞇ'),
- ('Ꞌ', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꟿ'),
+ ('Ꞌ', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꟿ'),
('꤮', '꤮'),
('ꬰ', 'ꭚ'),
('ꭜ', 'ꭤ'),
- ('ꭦ', '\u{ab69}'),
+ ('ꭦ', 'ꭩ'),
('ff', 'st'),
('A', 'Z'),
('a', 'z'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
+ ('𝼀', '𝼞'),
];
pub const LEPCHA: &'static [(char, char)] =
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1016,8 +1042,7 @@ pub const LINEAR_B: &'static [(char, char)] = &[
('𐄷', '𐄿'),
];
-pub const LISU: &'static [(char, char)] =
- &[('ꓐ', '꓿'), ('\u{11fb0}', '\u{11fb0}')];
+pub const LISU: &'static [(char, char)] = &[('ꓐ', '꓿'), ('𑾰', '𑾰')];
pub const LYCIAN: &'static [(char, char)] = &[('𐊀', '𐊜')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1082,8 +1107,7 @@ pub const MODI: &'static [(char, char)] =
&[('꠰', '꠹'), ('𑘀', '𑙄'), ('𑙐', '𑙙')];
pub const MONGOLIAN: &'static [(char, char)] = &[
- ('᠀', '\u{180e}'),
- ('᠐', '᠙'),
+ ('᠀', '᠙'),
('ᠠ', 'ᡸ'),
('ᢀ', 'ᢪ'),
('\u{202f}', '\u{202f}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1115,9 +1139,16 @@ pub const NANDINAGARI: &'static [(char, char)] = &[
pub const NEW_TAI_LUE: &'static [(char, char)] =
&[('ᦀ', 'ᦫ'), ('ᦰ', 'ᧉ'), ('᧐', '᧚'), ('᧞', '᧟')];
-pub const NEWA: &'static [(char, char)] = &[('𑐀', '𑑛'), ('𑑝', '\u{11461}')];
+pub const NEWA: &'static [(char, char)] = &[('𑐀', '𑑛'), ('𑑝', '𑑡')];
-pub const NKO: &'static [(char, char)] = &[('߀', 'ߺ'), ('\u{7fd}', '߿')];
+pub const NKO: &'static [(char, char)] = &[
+ ('،', '،'),
+ ('؛', '؛'),
+ ('؟', '؟'),
+ ('߀', 'ߺ'),
+ ('\u{7fd}', '߿'),
+ ('﴾', '﴿'),
+];
pub const NUSHU: &'static [(char, char)] = &[('𖿡', '𖿡'), ('𛅰', '𛋻')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1146,6 +1177,9 @@ pub const OLD_SOUTH_ARABIAN: &'static [(char, char)] = &[('𐩠', '𐩿')];
pub const OLD_TURKIC: &'static [(char, char)] = &[('𐰀', '𐱈')];
+pub const OLD_UYGHUR: &'static [(char, char)] =
+ &[('ـ', 'ـ'), ('𐫲', '𐫲'), ('𐽰', '𐾉')];
+
pub const ORIYA: &'static [(char, char)] = &[
('\u{951}', '\u{952}'),
('।', '॥'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1253,10 +1287,11 @@ pub const SYRIAC: &'static [(char, char)] = &[
('ݍ', 'ݏ'),
('ࡠ', 'ࡪ'),
('\u{1df8}', '\u{1df8}'),
+ ('\u{1dfa}', '\u{1dfa}'),
];
pub const TAGALOG: &'static [(char, char)] =
- &[('ᜀ', 'ᜌ'), ('ᜎ', '\u{1714}'), ('᜵', '᜶')];
+ &[('ᜀ', '᜕'), ('ᜟ', 'ᜟ'), ('᜵', '᜶')];
pub const TAGBANWA: &'static [(char, char)] =
&[('᜵', '᜶'), ('ᝠ', 'ᝬ'), ('ᝮ', 'ᝰ'), ('\u{1772}', '\u{1773}')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1275,7 +1310,7 @@ pub const TAI_THAM: &'static [(char, char)] = &[
pub const TAI_VIET: &'static [(char, char)] = &[('ꪀ', 'ꫂ'), ('ꫛ', '꫟')];
pub const TAKRI: &'static [(char, char)] =
- &[('।', '॥'), ('꠰', '꠹'), ('𑚀', '𑚸'), ('𑛀', '𑛉')];
+ &[('।', '॥'), ('꠰', '꠹'), ('𑚀', '𑚹'), ('𑛀', '𑛉')];
pub const TAMIL: &'static [(char, char)] = &[
('\u{951}', '\u{952}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1305,12 +1340,10 @@ pub const TAMIL: &'static [(char, char)] = &[
('𑿿', '𑿿'),
];
-pub const TANGUT: &'static [(char, char)] = &[
- ('𖿠', '𖿠'),
- ('𗀀', '𘟷'),
- ('𘠀', '\u{18aff}'),
- ('\u{18d00}', '\u{18d08}'),
-];
+pub const TANGSA: &'static [(char, char)] = &[('𖩰', '𖪾'), ('𖫀', '𖫉')];
+
+pub const TANGUT: &'static [(char, char)] =
+ &[('𖿠', '𖿠'), ('𗀀', '𘟷'), ('𘠀', '𘫿'), ('𘴀', '𘴈')];
pub const TELUGU: &'static [(char, char)] = &[
('\u{951}', '\u{952}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1319,11 +1352,12 @@ pub const TELUGU: &'static [(char, char)] = &[
('ఎ', 'ఐ'),
('ఒ', 'న'),
('ప', 'హ'),
- ('ఽ', 'ౄ'),
+ ('\u{c3c}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
('\u{c55}', '\u{c56}'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', '\u{c63}'),
('౦', '౯'),
('౷', '౿'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1365,10 +1399,23 @@ pub const TIRHUTA: &'static [(char, char)] = &[
('𑓐', '𑓙'),
];
+pub const TOTO: &'static [(char, char)] = &[('𞊐', '\u{1e2ae}')];
+
pub const UGARITIC: &'static [(char, char)] = &[('𐎀', '𐎝'), ('𐎟', '𐎟')];
pub const VAI: &'static [(char, char)] = &[('ꔀ', 'ꘫ')];
+pub const VITHKUQI: &'static [(char, char)] = &[
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
+];
+
pub const WANCHO: &'static [(char, char)] = &[('𞋀', '𞋹'), ('𞋿', '𞋿')];
pub const WARANG_CITI: &'static [(char, char)] = &[('𑢠', '𑣲'), ('𑣿', '𑣿')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1378,9 +1425,9 @@ pub const YEZIDI: &'static [(char, char)] = &[
('؛', '؛'),
('؟', '؟'),
('٠', '٩'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eab}', '\u{10ead}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('\u{10eab}', '𐺭'),
+ ('𐺰', '𐺱'),
];
pub const YI: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate sentence-break ucd-13.0.0 --chars
+// ucd-generate sentence-break /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("ATerm", ATERM),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -29,7 +29,7 @@ pub const ATERM: &'static [(char, char)] =
pub const CR: &'static [(char, char)] = &[('\r', '\r')];
pub const CLOSE: &'static [(char, char)] = &[
- ('\"', '\"'),
+ ('"', '"'),
('\'', ')'),
('[', '['),
(']', ']'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -57,6 +57,7 @@ pub const CLOSE: &'static [(char, char)] = &[
('⸜', '⸝'),
('⸠', '⸩'),
('⹂', '⹂'),
+ ('⹕', '⹜'),
('〈', '】'),
('〔', '〛'),
('〝', '〟'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -100,7 +101,8 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{825}', '\u{827}'),
('\u{829}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('\u{898}', '\u{89f}'),
+ ('\u{8ca}', '\u{8e1}'),
('\u{8e3}', 'ः'),
('\u{93a}', '\u{93c}'),
('ा', 'ॏ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -142,6 +144,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('ொ', '\u{bcd}'),
('\u{bd7}', '\u{bd7}'),
('\u{c00}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -193,13 +196,14 @@ pub const EXTEND: &'static [(char, char)] = &[
('ႏ', 'ႏ'),
('ႚ', '\u{109d}'),
('\u{135d}', '\u{135f}'),
- ('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1712}', '᜕'),
+ ('\u{1732}', '᜴'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
('\u{1920}', 'ᤫ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -208,7 +212,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('ᩕ', '\u{1a5e}'),
('\u{1a60}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1b00}', 'ᬄ'),
('\u{1b34}', '᭄'),
('\u{1b6b}', '\u{1b73}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -221,8 +225,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('᳷', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{200c}', '\u{200d}'),
('\u{20d0}', '\u{20f0}'),
('\u{2cef}', '\u{2cf1}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -277,10 +280,14 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('𑀀', '𑀂'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '𑂂'),
('𑂰', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{11134}'),
('𑅅', '𑅆'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -288,7 +295,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{11180}', '𑆂'),
('𑆳', '𑇀'),
('\u{111c9}', '\u{111cc}'),
- ('\u{111ce}', '\u{111cf}'),
+ ('𑇎', '\u{111cf}'),
('𑈬', '\u{11237}'),
('\u{1123e}', '\u{1123e}'),
('\u{112df}', '\u{112ea}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -311,11 +318,11 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{116ab}', '\u{116b7}'),
('\u{1171d}', '\u{1172b}'),
('𑠬', '\u{1183a}'),
- ('\u{11930}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('\u{11930}', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{1193e}'),
- ('\u{11940}', '\u{11940}'),
- ('\u{11942}', '\u{11943}'),
+ ('𑥀', '𑥀'),
+ ('𑥂', '\u{11943}'),
('𑧑', '\u{119d7}'),
('\u{119da}', '\u{119e0}'),
('𑧤', '𑧤'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -344,8 +351,10 @@ pub const EXTEND: &'static [(char, char)] = &[
('𖽑', '𖾇'),
('\u{16f8f}', '\u{16f92}'),
('\u{16fe4}', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -377,6 +387,7 @@ pub const FORMAT: &'static [(char, char)] = &[
('\u{61c}', '\u{61c}'),
('\u{6dd}', '\u{6dd}'),
('\u{70f}', '\u{70f}'),
+ ('\u{890}', '\u{891}'),
('\u{8e2}', '\u{8e2}'),
('\u{180e}', '\u{180e}'),
('\u{200b}', '\u{200b}'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -833,7 +844,7 @@ pub const LOWER: &'static [(char, char)] = &[
('ⅰ', 'ⅿ'),
('ↄ', 'ↄ'),
('ⓐ', 'ⓩ'),
- ('ⰰ', 'ⱞ'),
+ ('ⰰ', 'ⱟ'),
('ⱡ', 'ⱡ'),
('ⱥ', 'ⱦ'),
('ⱨ', 'ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1001,19 +1012,33 @@ pub const LOWER: &'static [(char, char)] = &[
('ꞻ', 'ꞻ'),
('ꞽ', 'ꞽ'),
('ꞿ', 'ꞿ'),
+ ('ꟁ', 'ꟁ'),
('ꟃ', 'ꟃ'),
- ('\u{a7c8}', '\u{a7c8}'),
- ('\u{a7ca}', '\u{a7ca}'),
- ('\u{a7f6}', '\u{a7f6}'),
+ ('ꟈ', 'ꟈ'),
+ ('ꟊ', 'ꟊ'),
+ ('ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟕ'),
+ ('ꟗ', 'ꟗ'),
+ ('ꟙ', 'ꟙ'),
+ ('ꟶ', 'ꟶ'),
('ꟸ', 'ꟺ'),
('ꬰ', 'ꭚ'),
- ('ꭜ', '\u{ab68}'),
+ ('ꭜ', 'ꭨ'),
('ꭰ', 'ꮿ'),
('ff', 'st'),
('ﬓ', 'ﬗ'),
('a', 'z'),
('𐐨', '𐑏'),
('𐓘', '𐓻'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
+ ('𐞀', '𐞀'),
+ ('𐞃', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐳀', '𐳲'),
('𑣀', '𑣟'),
('𖹠', '𖹿'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1045,6 +1070,8 @@ pub const LOWER: &'static [(char, char)] = &[
('𝞪', '𝟂'),
('𝟄', '𝟉'),
('𝟋', '𝟋'),
+ ('𝼀', '𝼉'),
+ ('𝼋', '𝼞'),
('𞤢', '𞥃'),
];
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1100,17 +1127,18 @@ pub const NUMERIC: &'static [(char, char)] = &[
('𑛀', '𑛉'),
('𑜰', '𑜹'),
('𑣠', '𑣩'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑱐', '𑱙'),
('𑵐', '𑵙'),
('𑶠', '𑶩'),
('𖩠', '𖩩'),
+ ('𖫀', '𖫉'),
('𖭐', '𖭙'),
('𝟎', '𝟿'),
('𞅀', '𞅉'),
('𞋰', '𞋹'),
('𞥐', '𞥙'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🯰', '🯹'),
];
pub const OLETTER: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1146,8 +1174,9 @@ pub const OLETTER: &'static [(char, char)] = &[
('ࠨ', 'ࠨ'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('ऄ', 'ह'),
('ऽ', 'ऽ'),
('ॐ', 'ॐ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1212,6 +1241,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('ప', 'హ'),
('ఽ', 'ఽ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('ಀ', 'ಀ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1220,10 +1250,10 @@ pub const OLETTER: &'static [(char, char)] = &[
('ಪ', 'ಳ'),
('ವ', 'ಹ'),
('ಽ', 'ಽ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('ೱ', 'ೲ'),
- ('\u{d04}', 'ഌ'),
+ ('ഄ', 'ഌ'),
('എ', 'ഐ'),
('ഒ', 'ഺ'),
('ഽ', 'ഽ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1286,9 +1316,8 @@ pub const OLETTER: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
+ ('ᜀ', 'ᜑ'),
+ ('ᜟ', 'ᜱ'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1309,7 +1338,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('ᨠ', 'ᩔ'),
('ᪧ', 'ᪧ'),
('ᬅ', 'ᬳ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('ᮃ', 'ᮠ'),
('ᮮ', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1347,11 +1376,10 @@ pub const OLETTER: &'static [(char, char)] = &[
('ー', 'ヿ'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ㇰ', 'ㇿ'),
- ('㐀', '\u{4dbf}'),
- ('一', '\u{9ffc}'),
- ('ꀀ', 'ꒌ'),
+ ('㐀', '䶿'),
+ ('一', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
('ꘐ', 'ꘟ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1362,6 +1390,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('ꜗ', 'ꜟ'),
('ꞈ', 'ꞈ'),
('ꞏ', 'ꞏ'),
+ ('ꟲ', 'ꟴ'),
('ꟷ', 'ꟷ'),
('ꟻ', 'ꠁ'),
('ꠃ', 'ꠅ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1399,7 +1428,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('ꬑ', 'ꬖ'),
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
- ('\u{ab69}', '\u{ab69}'),
+ ('ꭩ', 'ꭩ'),
('ꯀ', 'ꯢ'),
('가', '힣'),
('ힰ', 'ퟆ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1449,6 +1478,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞁', '𐞂'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1477,19 +1507,22 @@ pub const OLETTER: &'static [(char, char)] = &[
('𐮀', '𐮑'),
('𐰀', '𐱈'),
('𐴀', '𐴣'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀃', '𑀷'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂃', '𑂯'),
('𑃐', '𑃨'),
('𑄃', '𑄦'),
('𑅄', '𑅄'),
- ('\u{11147}', '\u{11147}'),
+ ('𑅇', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('𑆃', '𑆲'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1515,7 +1548,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('𑍝', '𑍡'),
('𑐀', '𑐴'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1526,14 +1559,15 @@ pub const OLETTER: &'static [(char, char)] = &[
('𑚀', '𑚪'),
('𑚸', '𑚸'),
('𑜀', '𑜚'),
+ ('𑝀', '𑝆'),
('𑠀', '𑠫'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑦠', '𑦧'),
('𑦪', '𑧐'),
('𑧡', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1544,7 +1578,7 @@ pub const OLETTER: &'static [(char, char)] = &[
('𑩐', '𑩐'),
('𑩜', '𑪉'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰮'),
('𑱀', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1558,14 +1592,16 @@ pub const OLETTER: &'static [(char, char)] = &[
('𑵪', '𑶉'),
('𑶘', '𑶘'),
('𑻠', '𑻲'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭀', '𖭃'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1577,9 +1613,12 @@ pub const OLETTER: &'static [(char, char)] = &[
('𖿠', '𖿡'),
('𖿣', '𖿣'),
('𗀀', '𘟷'),
- ('𘠀', '\u{18cd5}'),
- ('\u{18d00}', '\u{18d08}'),
- ('𛀀', '𛄞'),
+ ('𘠀', '𘳕'),
+ ('𘴀', '𘴈'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
+ ('𛀀', '𛄢'),
('𛅐', '𛅒'),
('𛅤', '𛅧'),
('𛅰', '𛋻'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1587,10 +1626,16 @@ pub const OLETTER: &'static [(char, char)] = &[
('𛱰', '𛱼'),
('𛲀', '𛲈'),
('𛲐', '𛲙'),
+ ('𝼊', '𝼊'),
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞥋', '𞥋'),
('𞸀', '𞸃'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1626,13 +1671,13 @@ pub const OLETTER: &'static [(char, char)] = &[
('𞺡', '𞺣'),
('𞺥', '𞺩'),
('𞺫', '𞺻'),
- ('𠀀', '\u{2a6dd}'),
- ('𪜀', '𫜴'),
+ ('𠀀', '𪛟'),
+ ('𪜀', '𫜸'),
('𫝀', '𫠝'),
('𫠠', '𬺡'),
('𬺰', '𮯠'),
('丽', '𪘀'),
- ('\u{30000}', '\u{3134a}'),
+ ('𰀀', '𱍊'),
];
pub const SCONTINUE: &'static [(char, char)] = &[
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1661,7 +1706,7 @@ pub const STERM: &'static [(char, char)] = &[
('!', '!'),
('?', '?'),
('։', '։'),
- ('؞', '؟'),
+ ('؝', '؟'),
('۔', '۔'),
('܀', '܂'),
('߹', '߹'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1680,12 +1725,14 @@ pub const STERM: &'static [(char, char)] = &[
('᪨', '᪫'),
('᭚', '᭛'),
('᭞', '᭟'),
+ ('᭽', '᭾'),
('᰻', '᰼'),
('᱾', '᱿'),
('‼', '‽'),
('⁇', '⁉'),
('⸮', '⸮'),
('⸼', '⸼'),
+ ('⹓', '⹔'),
('。', '。'),
('꓿', '꓿'),
('꘎', '꘏'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1704,6 +1751,7 @@ pub const STERM: &'static [(char, char)] = &[
('。', '。'),
('𐩖', '𐩗'),
('𐽕', '𐽙'),
+ ('𐾆', '𐾉'),
('𑁇', '𑁈'),
('𑂾', '𑃁'),
('𑅁', '𑅃'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -1718,8 +1766,8 @@ pub const STERM: &'static [(char, char)] = &[
('𑗉', '𑗗'),
('𑙁', '𑙂'),
('𑜼', '𑜾'),
- ('\u{11944}', '\u{11944}'),
- ('\u{11946}', '\u{11946}'),
+ ('𑥄', '𑥄'),
+ ('𑥆', '𑥆'),
('𑩂', '𑩃'),
('𑪛', '𑪜'),
('𑱁', '𑱂'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -2183,7 +2231,7 @@ pub const UPPER: &'static [(char, char)] = &[
('Ⅰ', 'Ⅿ'),
('Ↄ', 'Ↄ'),
('Ⓐ', 'Ⓩ'),
- ('Ⰰ', 'Ⱞ'),
+ ('Ⰰ', 'Ⱟ'),
('Ⱡ', 'Ⱡ'),
('Ɫ', 'Ɽ'),
('Ⱨ', 'Ⱨ'),
diff --git a/regex-syntax/src/unicode_tables/sentence_break.rs b/regex-syntax/src/unicode_tables/sentence_break.rs
--- a/regex-syntax/src/unicode_tables/sentence_break.rs
+++ b/regex-syntax/src/unicode_tables/sentence_break.rs
@@ -2348,13 +2396,21 @@ pub const UPPER: &'static [(char, char)] = &[
('Ꞻ', 'Ꞻ'),
('Ꞽ', 'Ꞽ'),
('Ꞿ', 'Ꞿ'),
+ ('Ꟁ', 'Ꟁ'),
('Ꟃ', 'Ꟃ'),
- ('Ꞔ', '\u{a7c7}'),
- ('\u{a7c9}', '\u{a7c9}'),
- ('\u{a7f5}', '\u{a7f5}'),
+ ('Ꞔ', 'Ꟈ'),
+ ('Ꟊ', 'Ꟊ'),
+ ('Ꟑ', 'Ꟑ'),
+ ('Ꟗ', 'Ꟗ'),
+ ('Ꟙ', 'Ꟙ'),
+ ('Ꟶ', 'Ꟶ'),
('A', 'Z'),
('𐐀', '𐐧'),
('𐒰', '𐓓'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
('𐲀', '𐲲'),
('𑢠', '𑢿'),
('𖹀', '𖹟'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -1,10 +1,10 @@
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
-// ucd-generate word-break ucd-13.0.0 --chars
+// ucd-generate word-break /tmp/ucd --chars
//
-// Unicode version: 13.0.0.
+// Unicode version: 14.0.0.
//
-// ucd-generate 0.2.8 is available on crates.io.
+// ucd-generate 0.2.11 is available on crates.io.
pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
("ALetter", ALETTER),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -75,8 +75,9 @@ pub const ALETTER: &'static [(char, char)] = &[
('ࠨ', 'ࠨ'),
('ࡀ', 'ࡘ'),
('ࡠ', 'ࡪ'),
- ('ࢠ', 'ࢴ'),
- ('ࢶ', '\u{8c7}'),
+ ('ࡰ', 'ࢇ'),
+ ('ࢉ', 'ࢎ'),
+ ('ࢠ', 'ࣉ'),
('ऄ', 'ह'),
('ऽ', 'ऽ'),
('ॐ', 'ॐ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -141,6 +142,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('ప', 'హ'),
('ఽ', 'ఽ'),
('ౘ', 'ౚ'),
+ ('ౝ', 'ౝ'),
('ౠ', 'ౡ'),
('ಀ', 'ಀ'),
('ಅ', 'ಌ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -149,10 +151,10 @@ pub const ALETTER: &'static [(char, char)] = &[
('ಪ', 'ಳ'),
('ವ', 'ಹ'),
('ಽ', 'ಽ'),
- ('ೞ', 'ೞ'),
+ ('ೝ', 'ೞ'),
('ೠ', 'ೡ'),
('ೱ', 'ೲ'),
- ('\u{d04}', 'ഌ'),
+ ('ഄ', 'ഌ'),
('എ', 'ഐ'),
('ഒ', 'ഺ'),
('ഽ', 'ഽ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -197,9 +199,8 @@ pub const ALETTER: &'static [(char, char)] = &[
('ᚁ', 'ᚚ'),
('ᚠ', 'ᛪ'),
('ᛮ', 'ᛸ'),
- ('ᜀ', 'ᜌ'),
- ('ᜎ', 'ᜑ'),
- ('ᜠ', 'ᜱ'),
+ ('ᜀ', 'ᜑ'),
+ ('ᜟ', 'ᜱ'),
('ᝀ', 'ᝑ'),
('ᝠ', 'ᝬ'),
('ᝮ', 'ᝰ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -211,7 +212,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('ᤀ', 'ᤞ'),
('ᨀ', 'ᨖ'),
('ᬅ', 'ᬳ'),
- ('ᭅ', 'ᭋ'),
+ ('ᭅ', 'ᭌ'),
('ᮃ', 'ᮠ'),
('ᮮ', 'ᮯ'),
('ᮺ', 'ᯥ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -263,9 +264,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('ⅎ', 'ⅎ'),
('Ⅰ', 'ↈ'),
('Ⓐ', 'ⓩ'),
- ('Ⰰ', 'Ⱞ'),
- ('ⰰ', 'ⱞ'),
- ('Ⱡ', 'ⳤ'),
+ ('Ⰰ', 'ⳤ'),
('Ⳬ', 'ⳮ'),
('Ⳳ', 'ⳳ'),
('ⴀ', 'ⴥ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -287,7 +286,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('〻', '〼'),
('ㄅ', 'ㄯ'),
('ㄱ', 'ㆎ'),
- ('ㆠ', '\u{31bf}'),
+ ('ㆠ', 'ㆿ'),
('ꀀ', 'ꒌ'),
('ꓐ', 'ꓽ'),
('ꔀ', 'ꘌ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -296,9 +295,11 @@ pub const ALETTER: &'static [(char, char)] = &[
('Ꙁ', 'ꙮ'),
('ꙿ', 'ꚝ'),
('ꚠ', 'ꛯ'),
- ('꜈', 'ꞿ'),
- ('Ꟃ', '\u{a7ca}'),
- ('\u{a7f5}', 'ꠁ'),
+ ('꜈', 'ꟊ'),
+ ('Ꟑ', 'ꟑ'),
+ ('ꟓ', 'ꟓ'),
+ ('ꟕ', 'ꟙ'),
+ ('ꟲ', 'ꠁ'),
('ꠃ', 'ꠅ'),
('ꠇ', 'ꠊ'),
('ꠌ', 'ꠢ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -322,7 +323,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('ꬑ', 'ꬖ'),
('ꬠ', 'ꬦ'),
('ꬨ', 'ꬮ'),
- ('ꬰ', '\u{ab69}'),
+ ('ꬰ', 'ꭩ'),
('ꭰ', 'ꯢ'),
('가', '힣'),
('ힰ', 'ퟆ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -365,9 +366,20 @@ pub const ALETTER: &'static [(char, char)] = &[
('𐓘', '𐓻'),
('𐔀', '𐔧'),
('𐔰', '𐕣'),
+ ('𐕰', '𐕺'),
+ ('𐕼', '𐖊'),
+ ('𐖌', '𐖒'),
+ ('𐖔', '𐖕'),
+ ('𐖗', '𐖡'),
+ ('𐖣', '𐖱'),
+ ('𐖳', '𐖹'),
+ ('𐖻', '𐖼'),
('𐘀', '𐜶'),
('𐝀', '𐝕'),
('𐝠', '𐝧'),
+ ('𐞀', '𐞅'),
+ ('𐞇', '𐞰'),
+ ('𐞲', '𐞺'),
('𐠀', '𐠅'),
('𐠈', '𐠈'),
('𐠊', '𐠵'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -398,19 +410,22 @@ pub const ALETTER: &'static [(char, char)] = &[
('𐲀', '𐲲'),
('𐳀', '𐳲'),
('𐴀', '𐴣'),
- ('\u{10e80}', '\u{10ea9}'),
- ('\u{10eb0}', '\u{10eb1}'),
+ ('𐺀', '𐺩'),
+ ('𐺰', '𐺱'),
('𐼀', '𐼜'),
('𐼧', '𐼧'),
('𐼰', '𐽅'),
- ('\u{10fb0}', '\u{10fc4}'),
+ ('𐽰', '𐾁'),
+ ('𐾰', '𐿄'),
('𐿠', '𐿶'),
('𑀃', '𑀷'),
+ ('𑁱', '𑁲'),
+ ('𑁵', '𑁵'),
('𑂃', '𑂯'),
('𑃐', '𑃨'),
('𑄃', '𑄦'),
('𑅄', '𑅄'),
- ('\u{11147}', '\u{11147}'),
+ ('𑅇', '𑅇'),
('𑅐', '𑅲'),
('𑅶', '𑅶'),
('𑆃', '𑆲'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -436,7 +451,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('𑍝', '𑍡'),
('𑐀', '𑐴'),
('𑑇', '𑑊'),
- ('𑑟', '\u{11461}'),
+ ('𑑟', '𑑡'),
('𑒀', '𑒯'),
('𑓄', '𑓅'),
('𑓇', '𑓇'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -448,13 +463,13 @@ pub const ALETTER: &'static [(char, char)] = &[
('𑚸', '𑚸'),
('𑠀', '𑠫'),
('𑢠', '𑣟'),
- ('𑣿', '\u{11906}'),
- ('\u{11909}', '\u{11909}'),
- ('\u{1190c}', '\u{11913}'),
- ('\u{11915}', '\u{11916}'),
- ('\u{11918}', '\u{1192f}'),
- ('\u{1193f}', '\u{1193f}'),
- ('\u{11941}', '\u{11941}'),
+ ('𑣿', '𑤆'),
+ ('𑤉', '𑤉'),
+ ('𑤌', '𑤓'),
+ ('𑤕', '𑤖'),
+ ('𑤘', '𑤯'),
+ ('𑤿', '𑤿'),
+ ('𑥁', '𑥁'),
('𑦠', '𑦧'),
('𑦪', '𑧐'),
('𑧡', '𑧡'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -465,7 +480,7 @@ pub const ALETTER: &'static [(char, char)] = &[
('𑩐', '𑩐'),
('𑩜', '𑪉'),
('𑪝', '𑪝'),
- ('𑫀', '𑫸'),
+ ('𑪰', '𑫸'),
('𑰀', '𑰈'),
('𑰊', '𑰮'),
('𑱀', '𑱀'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -479,14 +494,16 @@ pub const ALETTER: &'static [(char, char)] = &[
('𑵪', '𑶉'),
('𑶘', '𑶘'),
('𑻠', '𑻲'),
- ('\u{11fb0}', '\u{11fb0}'),
+ ('𑾰', '𑾰'),
('𒀀', '𒎙'),
('𒐀', '𒑮'),
('𒒀', '𒕃'),
+ ('𒾐', '𒿰'),
('𓀀', '𓐮'),
('𔐀', '𔙆'),
('𖠀', '𖨸'),
('𖩀', '𖩞'),
+ ('𖩰', '𖪾'),
('𖫐', '𖫭'),
('𖬀', '𖬯'),
('𖭀', '𖭃'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -532,10 +549,16 @@ pub const ALETTER: &'static [(char, char)] = &[
('𝞊', '𝞨'),
('𝞪', '𝟂'),
('𝟄', '𝟋'),
+ ('𝼀', '𝼞'),
('𞄀', '𞄬'),
('𞄷', '𞄽'),
('𞅎', '𞅎'),
+ ('𞊐', '𞊭'),
('𞋀', '𞋫'),
+ ('𞟠', '𞟦'),
+ ('𞟨', '𞟫'),
+ ('𞟭', '𞟮'),
+ ('𞟰', '𞟾'),
('𞠀', '𞣄'),
('𞤀', '𞥃'),
('𞥋', '𞥋'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -579,7 +602,7 @@ pub const ALETTER: &'static [(char, char)] = &[
pub const CR: &'static [(char, char)] = &[('\r', '\r')];
-pub const DOUBLE_QUOTE: &'static [(char, char)] = &[('\"', '\"')];
+pub const DOUBLE_QUOTE: &'static [(char, char)] = &[('"', '"')];
pub const EXTEND: &'static [(char, char)] = &[
('\u{300}', '\u{36f}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -606,7 +629,8 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{825}', '\u{827}'),
('\u{829}', '\u{82d}'),
('\u{859}', '\u{85b}'),
- ('\u{8d3}', '\u{8e1}'),
+ ('\u{898}', '\u{89f}'),
+ ('\u{8ca}', '\u{8e1}'),
('\u{8e3}', 'ः'),
('\u{93a}', '\u{93c}'),
('ा', 'ॏ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -648,6 +672,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('ொ', '\u{bcd}'),
('\u{bd7}', '\u{bd7}'),
('\u{c00}', '\u{c04}'),
+ ('\u{c3c}', '\u{c3c}'),
('\u{c3e}', 'ౄ'),
('\u{c46}', '\u{c48}'),
('\u{c4a}', '\u{c4d}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -699,13 +724,14 @@ pub const EXTEND: &'static [(char, char)] = &[
('ႏ', 'ႏ'),
('ႚ', '\u{109d}'),
('\u{135d}', '\u{135f}'),
- ('\u{1712}', '\u{1714}'),
- ('\u{1732}', '\u{1734}'),
+ ('\u{1712}', '᜕'),
+ ('\u{1732}', '᜴'),
('\u{1752}', '\u{1753}'),
('\u{1772}', '\u{1773}'),
('\u{17b4}', '\u{17d3}'),
('\u{17dd}', '\u{17dd}'),
('\u{180b}', '\u{180d}'),
+ ('\u{180f}', '\u{180f}'),
('\u{1885}', '\u{1886}'),
('\u{18a9}', '\u{18a9}'),
('\u{1920}', 'ᤫ'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -714,7 +740,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('ᩕ', '\u{1a5e}'),
('\u{1a60}', '\u{1a7c}'),
('\u{1a7f}', '\u{1a7f}'),
- ('\u{1ab0}', '\u{1ac0}'),
+ ('\u{1ab0}', '\u{1ace}'),
('\u{1b00}', 'ᬄ'),
('\u{1b34}', '᭄'),
('\u{1b6b}', '\u{1b73}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -727,8 +753,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{1ced}', '\u{1ced}'),
('\u{1cf4}', '\u{1cf4}'),
('᳷', '\u{1cf9}'),
- ('\u{1dc0}', '\u{1df9}'),
- ('\u{1dfb}', '\u{1dff}'),
+ ('\u{1dc0}', '\u{1dff}'),
('\u{200c}', '\u{200c}'),
('\u{20d0}', '\u{20f0}'),
('\u{2cef}', '\u{2cf1}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -783,10 +808,14 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{10d24}', '\u{10d27}'),
('\u{10eab}', '\u{10eac}'),
('\u{10f46}', '\u{10f50}'),
+ ('\u{10f82}', '\u{10f85}'),
('𑀀', '𑀂'),
('\u{11038}', '\u{11046}'),
+ ('\u{11070}', '\u{11070}'),
+ ('\u{11073}', '\u{11074}'),
('\u{1107f}', '𑂂'),
('𑂰', '\u{110ba}'),
+ ('\u{110c2}', '\u{110c2}'),
('\u{11100}', '\u{11102}'),
('\u{11127}', '\u{11134}'),
('𑅅', '𑅆'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -794,7 +823,7 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{11180}', '𑆂'),
('𑆳', '𑇀'),
('\u{111c9}', '\u{111cc}'),
- ('\u{111ce}', '\u{111cf}'),
+ ('𑇎', '\u{111cf}'),
('𑈬', '\u{11237}'),
('\u{1123e}', '\u{1123e}'),
('\u{112df}', '\u{112ea}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -817,11 +846,11 @@ pub const EXTEND: &'static [(char, char)] = &[
('\u{116ab}', '\u{116b7}'),
('\u{1171d}', '\u{1172b}'),
('𑠬', '\u{1183a}'),
- ('\u{11930}', '\u{11935}'),
- ('\u{11937}', '\u{11938}'),
+ ('\u{11930}', '𑤵'),
+ ('𑤷', '𑤸'),
('\u{1193b}', '\u{1193e}'),
- ('\u{11940}', '\u{11940}'),
- ('\u{11942}', '\u{11943}'),
+ ('𑥀', '𑥀'),
+ ('𑥂', '\u{11943}'),
('𑧑', '\u{119d7}'),
('\u{119da}', '\u{119e0}'),
('𑧤', '𑧤'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -850,8 +879,10 @@ pub const EXTEND: &'static [(char, char)] = &[
('𖽑', '𖾇'),
('\u{16f8f}', '\u{16f92}'),
('\u{16fe4}', '\u{16fe4}'),
- ('\u{16ff0}', '\u{16ff1}'),
+ ('𖿰', '𖿱'),
('\u{1bc9d}', '\u{1bc9e}'),
+ ('\u{1cf00}', '\u{1cf2d}'),
+ ('\u{1cf30}', '\u{1cf46}'),
('\u{1d165}', '\u{1d169}'),
('𝅭', '\u{1d172}'),
('\u{1d17b}', '\u{1d182}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -894,6 +926,7 @@ pub const FORMAT: &'static [(char, char)] = &[
('\u{61c}', '\u{61c}'),
('\u{6dd}', '\u{6dd}'),
('\u{70f}', '\u{70f}'),
+ ('\u{890}', '\u{891}'),
('\u{8e2}', '\u{8e2}'),
('\u{180e}', '\u{180e}'),
('\u{200e}', '\u{200f}'),
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -932,7 +965,11 @@ pub const KATAKANA: &'static [(char, char)] = &[
('㋐', '㋾'),
('㌀', '㍗'),
('ヲ', 'ン'),
+ ('𚿰', '𚿳'),
+ ('𚿵', '𚿻'),
+ ('𚿽', '𚿾'),
('𛀀', '𛀀'),
+ ('𛄠', '𛄢'),
('𛅤', '𛅧'),
];
diff --git a/regex-syntax/src/unicode_tables/word_break.rs b/regex-syntax/src/unicode_tables/word_break.rs
--- a/regex-syntax/src/unicode_tables/word_break.rs
+++ b/regex-syntax/src/unicode_tables/word_break.rs
@@ -1031,17 +1068,18 @@ pub const NUMERIC: &'static [(char, char)] = &[
('𑛀', '𑛉'),
('𑜰', '𑜹'),
('𑣠', '𑣩'),
- ('\u{11950}', '\u{11959}'),
+ ('𑥐', '𑥙'),
('𑱐', '𑱙'),
('𑵐', '𑵙'),
('𑶠', '𑶩'),
('𖩠', '𖩩'),
+ ('𖫀', '𖫉'),
('𖭐', '𖭙'),
('𝟎', '𝟿'),
('𞅀', '𞅉'),
('𞋰', '𞋹'),
('𞥐', '𞥙'),
- ('\u{1fbf0}', '\u{1fbf9}'),
+ ('🯰', '🯹'),
];
pub const REGIONAL_INDICATOR: &'static [(char, char)] = &[('🇦', '🇿')];
diff --git a/scripts/generate-unicode-tables b/scripts/generate-unicode-tables
--- a/scripts/generate-unicode-tables
+++ b/scripts/generate-unicode-tables
@@ -7,14 +7,17 @@
#
# $ mkdir ucd
# $ cd ucd
-# $ curl -LO https://www.unicode.org/Public/zipped/12.1.0/UCD.zip
+# $ curl -LO https://www.unicode.org/Public/zipped/14.0.0/UCD.zip
# $ unzip UCD.zip
-# $ curl -LO https://unicode.org/Public/emoji/12.0/emoji-data.txt
#
# And then run this script from the root of this repository by pointing it at
# the data directory downloaded above:
#
# $ ./scripts/generate-unicode-tables path/to/ucd
+#
+# Once complete, if you are upgrading to a new version of Unicode,
+# you'll need to add a new "age" value to the 'ages' routine in
+# regex-syntax/src/unicode.rs.
if [ $# != 1 ]; then
echo "Usage: $(basename "$0") <ucd-data-directory>" >&2
|
[
"878",
"877"
] | 879
|
Update Unicode tables to version 14.0
This PR is related to #877.
While working on the next release of my command-line tool [grex](https://github.com/pemistahl/grex), some of my property tests fail now because the regexes produced from characters introduced in Unicode 14.0 do not match those characters when tested with the regex crate. The reason is that the regex crate still uses the Unicode tables of version 13.0, so they need to be updated. This PR contains the updated tables.
I would highly appreciate if you merged this PR and created a new release for the regex crate soon so that I can release a new version of my tool. Thanks a lot in advance.
Upgrade to Unicode 14 (to support Vithkuqi)
#### What version of regex are you using?
1.5.6
#### Describe the bug at a high level.
The letters of the [Vithkuqi script](https://en.wikipedia.org/wiki/Vithkuqi_script), a script for writing the Albanian language, were added to Unicode version 14.0. The respective Unicode block is from `U+10570` to `U+105BF`. I discovered that the regex `\w+` does not match the letters of this block. Additionally, case-insensitive regexes starting with `(?i)` do not match both Vithkuqi uppercase and lowercase letters.
#### What are the steps to reproduce the behavior?
```rust
use regex::Regex;
let upper = "\u{10570}"; // Vithkuqi Capital Letter A
let lower = upper.to_lowercase(); // Vithkuqi Small Letter A (U+10597)
let r1 = Regex::new("(?i)^\u{10570}$").unwrap();
let r2 = Regex::new("^\\w+$").unwrap();
println!("{}", r1.is_match(upper));
println!("{}", r1.is_match(&lower));
println!("{}", r2.is_match(upper));
println!("{}", r2.is_match(&lower));
```
#### What is the actual behavior?
The actual output is:
```
true
false
false
false
```
#### What is the expected behavior?
The expected output is:
```
true
true
true
true
```
|
1.5
|
c01b6338046f495ad875ecf3dfa5e9b39eada4ea
|
5e98788947b28da3da27f4e156b877eb0cb1593e
|
[
"unicode::uni_vithkuqi_literal_lower",
"unicode::uni_vithkuqi_word_lower",
"unicode::uni_vithkuqi_word_upper"
] |
[
"compile::tests::byte_classes",
"compile::tests::full_byte_classes",
"dfa::tests::prop_read_write_i32",
"dfa::tests::prop_read_write_u32",
"expand::tests::find_cap_ref1",
"expand::tests::find_cap_ref10",
"exec::test::uppercut_s_backtracking_bytes_default_bytes_mismatch",
"exec::test::unicode_lit_star_backtracking_utf8bytes_default_utf8bytes_mismatch",
"expand::tests::find_cap_ref13",
"expand::tests::find_cap_ref11",
"expand::tests::find_cap_ref12",
"expand::tests::find_cap_ref15",
"expand::tests::find_cap_ref14",
"expand::tests::find_cap_ref16",
"expand::tests::find_cap_ref17",
"expand::tests::find_cap_ref18",
"expand::tests::find_cap_ref19",
"expand::tests::find_cap_ref2",
"expand::tests::find_cap_ref3",
"expand::tests::find_cap_ref4",
"expand::tests::find_cap_ref5",
"expand::tests::find_cap_ref6",
"expand::tests::find_cap_ref7",
"expand::tests::find_cap_ref8",
"expand::tests::find_cap_ref9",
"pool::tests::oibits",
"prog::test::test_size_of_inst",
"utf8::tests::prop_decode_last_matches_std",
"utf8::tests::prop_decode_matches_std",
"utf8::tests::prop_encode_matches_std",
"pool::tests::thread_owner_optimization",
"utf8::tests::prop_roundtrip_last",
"utf8::tests::reject_invalid",
"utf8::tests::reject_invalid_last",
"utf8::tests::prop_roundtrip",
"dfa::tests::prop_state_encode_decode",
"api::capture_index",
"api::capture_index_lifetime",
"api::capture_index_panic_usize - should panic",
"api::capture_index_panic_name - should panic",
"api::capture_names",
"api::capture_misc",
"api::empty_match_captures_iter",
"api::empty_match_find_iter",
"api::empty_regex_empty_match",
"api::empty_regex_nonempty_match",
"api::expand1",
"api::expand10",
"api::expand2",
"api::expand3",
"api::expand5",
"api::expand4",
"api::expand6",
"api::expand9",
"api::expand8",
"api::expand_name1",
"api::expand7",
"api::expand_name2",
"api::expand_name10",
"api::expand_name11",
"api::expand_name3",
"api::expand_name4",
"api::expand_name7",
"api::expand_name5",
"api::expand_name6",
"api::expand_name8",
"api::expand_name9",
"api::one_zero_length_match",
"api::splitn_below_limit",
"api::split3",
"api::splitn_empty",
"crazy::greedy_range_many",
"api::many_sequential_zero_length_match",
"api::many_zero_length_match",
"crazy::ascii_literal",
"api::splitn_trailing_blank",
"api::quoted_bracket_set",
"api::regex_string",
"crazy::greedy_range_min_many",
"crazy::lazy_one_many_many",
"api::splitn_zero_limit",
"crazy::lazy_one_many_optional",
"api::first_range_starts_with_left_bracket",
"api::split_trailing_blank",
"api::split_none",
"crazy::match_email_big",
"crazy::match_empty1",
"api::split_empty",
"api::splitn_above_limit",
"crazy::match_date2",
"crazy::match_empty12",
"crazy::match_empty10",
"crazy::match_email",
"crazy::match_email_not",
"api::splitn_at_limit",
"crazy::lazy_range_min_many",
"crazy::match_date3",
"api::split_trailing_blanks",
"api::split1",
"api_str::match_as_str",
"crazy::lazy_many_many",
"crazy::match_empty18",
"api_str::empty_match_unicode_find_iter",
"api::splitn_trailing_separator",
"api::range_ends_with_escape",
"crazy::greedy_one_many_many",
"crazy::lazy_range_many",
"api_str::empty_match_unicode_captures_iter",
"crazy::lazy_many_optional",
"api::split2",
"api::sub_capture_matches",
"crazy::greedy_many_optional",
"crazy::greedy_one_many_optional",
"crazy::match_empty17",
"crazy::match_empty4",
"crazy::greedy_many_many",
"crazy::match_empty6",
"crazy::match_date1",
"crazy::match_float1",
"crazy::match_empty20",
"crazy::match_empty11",
"crazy::match_start_end_empty",
"crazy::match_empty16",
"crazy::match_empty21",
"crazy::negclass_ascii",
"crazy::match_start_end_empty_many_2",
"crazy::match_start_end_empty_rep",
"crazy::negclass_comma_space",
"crazy::match_float2",
"crazy::negclass_space",
"crazy::match_empty13",
"crazy::match_float3",
"crazy::negclass_letter_space",
"crazy::match_empty3",
"crazy::match_empty23",
"crazy::negclass_letter_comma",
"crazy::match_empty2",
"flags::match_flag_case",
"crazy::match_empty14",
"crazy::match_empty15",
"crazy::match_start_end_empty_rev",
"crazy::match_empty5",
"crazy::match_empty7",
"crazy::match_empty19",
"crazy::match_empty8",
"flags::match_flag_multi",
"flags::match_flag_ungreedy_greedy",
"crazy::match_empty22",
"crazy::match_start_end_empty_many_1",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_106",
"crazy::match_empty9",
"fowler::match_basic_10",
"flags::match_flag_case_dotnl",
"fowler::match_basic_104",
"fowler::match_basic_107",
"fowler::match_basic_113",
"crazy::match_start_end_empty_rep_rev",
"crazy::match_ranges_not",
"fowler::match_basic_108",
"crazy::match_ranges",
"crazy::match_float4",
"fowler::match_basic_110",
"crazy::negclass_space_comma",
"fowler::match_basic_100",
"crazy::negclass_comma",
"fowler::match_basic_111",
"flags::match_flag_ungreedy",
"crazy::negclass_letters",
"fowler::match_basic_112",
"fowler::match_basic_126",
"flags::match_flag_case_dotnl_toggle_not",
"flags::match_flag_weird_case_not",
"fowler::match_basic_131",
"fowler::match_basic_134",
"fowler::match_basic_102",
"flags::match_flag_case_dotnl_toggle_ok",
"fowler::match_basic_114",
"fowler::match_basic_101",
"fowler::match_basic_103",
"fowler::match_basic_105",
"flags::match_flag_case_dotnl_toggle",
"fowler::match_basic_132",
"fowler::match_basic_133",
"flags::match_flag_weird_case",
"fowler::match_basic_122",
"fowler::match_basic_141",
"fowler::match_basic_125",
"fowler::match_basic_135",
"fowler::match_basic_137",
"fowler::match_basic_115",
"fowler::match_basic_109",
"fowler::match_basic_15",
"fowler::match_basic_144",
"fowler::match_basic_124",
"fowler::match_basic_119",
"fowler::match_basic_116",
"fowler::match_basic_142",
"fowler::match_basic_156",
"fowler::match_basic_121",
"fowler::match_basic_12",
"fowler::match_basic_120",
"fowler::match_basic_152",
"fowler::match_basic_117",
"fowler::match_basic_159",
"fowler::match_basic_118",
"fowler::match_basic_138",
"fowler::match_basic_140",
"fowler::match_basic_155",
"fowler::match_basic_149",
"fowler::match_basic_129",
"fowler::match_basic_146",
"fowler::match_basic_128",
"fowler::match_basic_164",
"fowler::match_basic_151",
"fowler::match_basic_123",
"fowler::match_basic_145",
"fowler::match_basic_157",
"fowler::match_basic_17",
"fowler::match_basic_147",
"fowler::match_basic_168",
"fowler::match_basic_16",
"fowler::match_basic_158",
"fowler::match_basic_163",
"fowler::match_basic_139",
"fowler::match_basic_150",
"fowler::match_basic_165",
"fowler::match_basic_176",
"fowler::match_basic_148",
"fowler::match_basic_153",
"fowler::match_basic_170",
"fowler::match_basic_160",
"fowler::match_basic_154",
"fowler::match_basic_175",
"fowler::match_basic_180",
"fowler::match_basic_167",
"fowler::match_basic_19",
"fowler::match_basic_166",
"fowler::match_basic_161",
"fowler::match_basic_162",
"fowler::match_basic_191",
"fowler::match_basic_184",
"fowler::match_basic_188",
"fowler::match_basic_173",
"fowler::match_basic_187",
"fowler::match_basic_169",
"fowler::match_basic_171",
"fowler::match_basic_194",
"fowler::match_basic_185",
"fowler::match_basic_202",
"fowler::match_basic_18",
"fowler::match_basic_177",
"fowler::match_basic_174",
"fowler::match_basic_172",
"fowler::match_basic_196",
"fowler::match_basic_201",
"fowler::match_basic_181",
"fowler::match_basic_205",
"fowler::match_basic_195",
"fowler::match_basic_189",
"fowler::match_basic_179",
"fowler::match_basic_183",
"fowler::match_basic_186",
"fowler::match_basic_178",
"fowler::match_basic_190",
"fowler::match_basic_193",
"fowler::match_basic_182",
"fowler::match_basic_210",
"fowler::match_basic_192",
"fowler::match_basic_198",
"fowler::match_basic_204",
"fowler::match_basic_207",
"fowler::match_basic_218",
"fowler::match_basic_197",
"fowler::match_basic_220",
"fowler::match_basic_25",
"fowler::match_basic_199",
"fowler::match_basic_200",
"fowler::match_basic_203",
"fowler::match_basic_20",
"fowler::match_basic_219",
"fowler::match_basic_214",
"fowler::match_basic_22",
"fowler::match_basic_3",
"fowler::match_basic_206",
"fowler::match_basic_34",
"fowler::match_basic_216",
"fowler::match_basic_209",
"fowler::match_basic_21",
"fowler::match_basic_33",
"fowler::match_basic_217",
"fowler::match_basic_208",
"fowler::match_basic_211",
"fowler::match_basic_40",
"fowler::match_basic_41",
"fowler::match_basic_212",
"fowler::match_basic_43",
"fowler::match_basic_26",
"fowler::match_basic_39",
"fowler::match_basic_45",
"fowler::match_basic_221",
"fowler::match_basic_213",
"fowler::match_basic_23",
"fowler::match_basic_24",
"fowler::match_basic_215",
"fowler::match_basic_30",
"fowler::match_basic_53",
"fowler::match_basic_28",
"fowler::match_basic_36",
"fowler::match_basic_59",
"fowler::match_basic_29",
"fowler::match_basic_47",
"fowler::match_basic_27",
"fowler::match_basic_32",
"fowler::match_basic_4",
"fowler::match_basic_6",
"fowler::match_basic_67",
"fowler::match_basic_65",
"fowler::match_basic_7",
"fowler::match_basic_56",
"fowler::match_basic_37",
"fowler::match_basic_38",
"fowler::match_basic_35",
"fowler::match_basic_52",
"fowler::match_basic_58",
"fowler::match_basic_44",
"fowler::match_basic_51",
"fowler::match_basic_69",
"fowler::match_basic_42",
"fowler::match_basic_78",
"fowler::match_basic_5",
"fowler::match_basic_46",
"fowler::match_basic_49",
"fowler::match_basic_81",
"fowler::match_basic_89",
"fowler::match_basic_84",
"fowler::match_basic_87",
"fowler::match_basic_88",
"fowler::match_basic_70",
"fowler::match_basic_66",
"fowler::match_basic_54",
"fowler::match_basic_48",
"fowler::match_basic_50",
"fowler::match_basic_80",
"fowler::match_basic_9",
"fowler::match_basic_55",
"fowler::match_basic_57",
"fowler::match_nullsubexpr_10",
"fowler::match_basic_98",
"fowler::match_basic_68",
"fowler::match_basic_76",
"fowler::match_nullsubexpr_13",
"fowler::match_basic_92",
"fowler::match_nullsubexpr_18",
"fowler::match_nullsubexpr_14",
"fowler::match_basic_73",
"fowler::match_basic_93",
"fowler::match_basic_79",
"fowler::match_nullsubexpr_25",
"fowler::match_basic_85",
"fowler::match_basic_90",
"fowler::match_basic_83",
"fowler::match_basic_77",
"fowler::match_basic_86",
"fowler::match_basic_72",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_30",
"fowler::match_basic_71",
"fowler::match_basic_75",
"fowler::match_basic_94",
"fowler::match_basic_97",
"fowler::match_basic_95",
"fowler::match_basic_91",
"fowler::match_nullsubexpr_28",
"fowler::match_basic_96",
"fowler::match_nullsubexpr_12",
"fowler::match_basic_99",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_15",
"fowler::match_nullsubexpr_16",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_19",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_34",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_7",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_74",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_45",
"fowler::match_basic_74",
"fowler::match_nullsubexpr_9",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_77",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_33",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_5",
"fowler::match_repetition_10",
"fowler::match_nullsubexpr_79",
"fowler::match_repetition_104",
"fowler::match_repetition_102",
"fowler::match_nullsubexpr_69",
"fowler::match_repetition_106",
"fowler::match_repetition_112",
"fowler::match_repetition_11",
"fowler::match_repetition_130",
"fowler::match_nullsubexpr_43",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_46",
"fowler::match_repetition_114",
"fowler::match_repetition_128",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_71",
"fowler::match_nullsubexpr_70",
"fowler::match_repetition_14",
"fowler::match_repetition_137",
"fowler::match_repetition_145",
"fowler::match_nullsubexpr_78",
"fowler::match_repetition_131",
"fowler::match_repetition_134",
"fowler::match_nullsubexpr_8",
"fowler::match_repetition_132",
"fowler::match_repetition_136",
"fowler::match_repetition_129",
"fowler::match_repetition_108",
"fowler::match_repetition_100",
"fowler::match_repetition_152",
"fowler::match_repetition_12",
"fowler::match_repetition_161",
"fowler::match_repetition_28",
"fowler::match_repetition_143",
"fowler::match_repetition_15",
"fowler::match_repetition_115",
"fowler::match_repetition_126",
"fowler::match_repetition_110",
"fowler::match_repetition_18",
"fowler::match_repetition_20",
"fowler::match_repetition_40",
"fowler::match_repetition_38",
"fowler::match_repetition_31",
"fowler::match_repetition_32",
"fowler::match_repetition_127",
"fowler::match_repetition_21",
"fowler::match_repetition_24",
"fowler::match_repetition_154",
"fowler::match_repetition_16",
"fowler::match_repetition_163",
"fowler::match_repetition_149",
"fowler::match_repetition_159",
"fowler::match_repetition_135",
"fowler::match_repetition_25",
"fowler::match_repetition_41",
"fowler::match_repetition_150",
"fowler::match_repetition_26",
"fowler::match_repetition_147",
"fowler::match_repetition_54",
"fowler::match_repetition_67",
"fowler::match_repetition_46",
"fowler::match_repetition_133",
"fowler::match_repetition_30",
"fowler::match_repetition_34",
"fowler::match_repetition_22",
"fowler::match_repetition_42",
"fowler::match_repetition_79",
"fowler::match_repetition_35",
"fowler::match_repetition_75",
"fowler::match_repetition_156",
"fowler::match_repetition_53",
"fowler::match_repetition_73",
"fowler::match_repetition_44",
"fowler::match_repetition_158",
"fowler::match_repetition_50",
"fowler::match_repetition_94",
"fowler::match_repetition_90",
"fowler::match_repetition_80",
"fowler::match_repetition_68",
"fowler::match_repetition_65",
"fowler::match_repetition_56",
"fowler::match_repetition_52",
"fowler::match_repetition_97",
"fowler::match_repetition_57",
"fowler::match_repetition_95",
"fowler::match_repetition_36",
"fowler::match_repetition_63",
"fowler::match_repetition_47",
"fowler::match_repetition_96",
"fowler::match_repetition_61",
"fowler::match_repetition_64",
"multiline::match_multi_1",
"multiline::match_multi_3",
"multiline::match_multi_9",
"multiline::match_multi_rep_13",
"multiline::match_multi_rep_1",
"fowler::match_repetition_91",
"fowler::match_repetition_76",
"fowler::match_repetition_59",
"multiline::match_multi_4",
"multiline::match_multi_rep_3",
"multiline::match_multi_rep_14",
"fowler::match_repetition_83",
"fowler::match_repetition_93",
"fowler::match_repetition_70",
"fowler::match_repetition_81",
"fowler::match_repetition_92",
"multiline::match_multi_rep_7",
"fowler::match_repetition_98",
"multiline::match_multi_rep_11",
"fowler::match_repetition_77",
"multiline::match_multi_rep_4",
"multiline::match_multi_rep_17",
"multiline::match_multi_5",
"multiline::match_multi_2",
"multiline::match_multi_rep_12",
"noparse::fail_counted_decreasing",
"noparse::fail_double_neg",
"multiline::match_multi_8",
"multiline::match_multi_6",
"noparse::fail_class_no_begin",
"multiline::match_multi_rep_10",
"multiline::match_multi_7",
"multiline::match_multi_rep_6",
"noparse::fail_hex_short",
"multiline::match_multi_rep_15",
"multiline::match_multi_rep_16",
"multiline::match_multi_rep_2",
"multiline::match_multi_rep_5",
"noparse::fail_flag_empty",
"multiline::match_multi_rep_9",
"noparse::fail_neg_empty",
"noparse::fail_range_end_no_class",
"noparse::fail_range_end_no_begin",
"noparse::fail_no_repeat_arg",
"noparse::fail_class_not_closed",
"multiline::match_multi_rep_8",
"noparse::fail_range_end_no_boundary",
"noparse::fail_bad_flag",
"noparse::fail_class_incomplete",
"noparse::fail_octal_digit",
"noparse::fail_dupe_named",
"noparse::fail_open_paren",
"noparse::fail_incomplete_escape",
"noparse::fail_hex_digit",
"noparse::fail_bad_capture_name",
"regression::blank_matches_nothing_between_space_and_tab",
"noparse::fail_class_no_boundary",
"regression::captures_after_dfa_premature_end3",
"noparse::fail_close_paren",
"regression::empty_group_find",
"noparse::fail_counted_no_close",
"regression::literal_panic",
"noparse::fail_counted_nonnegative",
"noparse::fail_empty_capture_name",
"noparse::fail_class_no_end",
"regression::partial_anchor_alternate_begin",
"noparse::fail_flag_bad",
"noparse::fail_hex_long_digits",
"noparse::fail_unfinished_escape",
"regression::captures_after_dfa_premature_end2",
"regression::lits_unambiguous2",
"regression::regression_ascii_word_underscore",
"noparse::fail_invalid_range",
"regression::non_greedy_question_literal",
"regression::anchored_prefix3",
"noparse::fail_range_end_no_end",
"regression::regression_alt_in_alt1",
"regression::anchored_prefix2",
"noparse::fail_unfinished_cap",
"regression::invalid_regexes_no_crash",
"regression::captures_after_dfa_premature_end1",
"regression::anchored_prefix1",
"regression::reverse_suffix1",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"regression::empty_group_match",
"regression::flags_are_unset",
"regression::endl_or_wb",
"regression::lits_unambiguous1",
"regression::partial_anchor_alternate_end",
"regression::many_alternates",
"regression::regression_leftmost_first_prefix",
"regression::zero_or_end",
"regression::partial_anchor",
"regression::regression_alt_in_alt2",
"regression::regression_unsorted_binary_search_2",
"regression::regression_negated_char_class_1",
"regression::word_boundary_dfa",
"replace::all",
"regression::regression_invalid_flags_expression",
"regression::reverse_suffix2",
"regression::regression_captures_rep",
"regression::regression_unsorted_binary_search_1",
"regression::regression_invalid_repetition_expr",
"regression::reverse_suffix3",
"replace::impl_cow_slice_owned_ref",
"regression::regression_negated_char_class_2",
"regression::uni_case_lower_nocase_flag",
"regression::regression_nfa_stops1",
"regression::strange_anchor_non_complete_suffix",
"replace::impl_cow_str_borrowed_ref",
"regression::strange_anchor_non_complete_prefix",
"replace::impl_cow_str_owned",
"regression::ahocorasick1",
"replace::no_expand2",
"replace::match_at_start_replace_with_empty",
"regression::wb_start_x",
"regression::split_on_word_boundary",
"replace::closure_returning_value",
"replace::plus",
"regression::y_or_endl",
"replace::first",
"searcher::searcher_empty_haystack",
"replace::capture_longest_possible_name",
"replace::closure_returning_reference",
"replace::impl_string",
"searcher::searcher_many_zero_length_matches",
"replace::number_hypen",
"searcher::searcher_empty_regex",
"searcher::searcher_empty_regex_empty_haystack",
"searcher::searcher_reject_first",
"searcher::searcher_two_adjacent_matches",
"replace::double_dollar",
"replace::groups",
"searcher::searcher_no_match",
"searcher::searcher_one_match",
"searcher::searcher_one_zero_length_matches",
"replace::impl_cow_slice_borrowed",
"replace::impl_cow_slice_borrowed_ref",
"replace::single_empty_match",
"replace::literal_dollar2",
"searcher::searcher_two_non_adjacent_matches",
"replace::impl_cow_slice_owned",
"searcher::searcher_unicode",
"replace::impl_cow_str_borrowed",
"replace::impl_string_ref",
"replace::no_expand1",
"replace::literal_dollar1",
"replace::impl_vec_u8",
"replace::impl_cow_str_owned_ref",
"set::nset3",
"replace::impl_vec_u8_ref",
"set::get_set_patterns",
"set::regression_subsequent_matches",
"set::set1",
"set::set16",
"replace::named",
"set::setempty1",
"set::setempty3",
"set::set18",
"replace::simple_expand",
"set::set3",
"set::set13",
"set::set12",
"set::nset1",
"replace::trim",
"set::nset2",
"set::setempty4",
"set::len_and_empty",
"set::set10",
"set::set4",
"set::set7",
"set::set2",
"suffix_reverse::t01",
"set::set11",
"set::nset4",
"set::set8",
"suffix_reverse::t03",
"set::set14",
"set::set5",
"set::set17",
"set::set6",
"suffix_reverse::t05",
"unicode::uni_class_gcb_ri2",
"unicode::uni_boundary_ogham",
"set::setempty2",
"set::set15",
"set::set9",
"set::setempty6",
"unicode::uni_class_gcb_ri1",
"unicode::uni_class_gencat_connector_punctuation",
"set::setempty5",
"set::setempty8",
"unicode::uni_boundary_none",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gencat_format_abbrev1",
"set::setempty7",
"unicode::uni_class_gcb_ri3",
"set::setempty9",
"unicode::uni_class_gencat_decimal_numer",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_format_abbrev2",
"suffix_reverse::t02",
"suffix_reverse::t04",
"unicode::uni_class_gencat_cased_letter",
"unicode::uni_class_gencat_letter_number",
"suffix_reverse::t06",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_case",
"unicode::uni_class_gcb_prepend",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_class_gencat_format",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_number",
"unicode::uni_case_upper",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gencat_math",
"unicode::uni_class_gcb_lvt",
"unicode::uni_class_plus",
"unicode::uni_class_gencat_private_use",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_wb2",
"unicode::uni_class_wb4",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gencat_symbol",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_prop_emoji1",
"unicode::uni_mixed",
"unicode::uni_class_prop_picto2",
"unicode::uni_literal_plus",
"unicode::uni_class_sb2",
"unicode::uni_case_lower",
"unicode::uni_not_boundary_ogham",
"unicode::uni_literal_casei_plus",
"unicode::uni_class_sb3",
"unicode::uni_class_gencat_unassigned",
"unicode::uni_class_wb1",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_perl_d_neg",
"unicode::uni_class_sb4",
"unicode::uni_perl_s_not",
"unicode::uni_class_sb5",
"unicode::uni_class_wb3",
"unicode::uni_not",
"word_boundary::nb1",
"word_boundary::nb11",
"unicode::uni_literal",
"unicode::uni_class_wb5",
"unicode::uni_class_gencat_lowercase_letter",
"word_boundary::nb10",
"unicode::uni_class_gencat_uppercase_letter",
"unicode::uni_not_boundary_none",
"unicode::uni_vithkuqi_literal_upper",
"unicode::uni_case_upper_nocase",
"word_boundary::nb14",
"unicode::uni_perl_s_neg",
"unicode::uni_not_class_neg",
"unicode::uni_one",
"unicode::uni_perl_d",
"word_boundary::nb13",
"word_boundary::nb17",
"unicode::uni_class_sb1",
"unicode::uni_perl_d_not",
"unicode::uni_perl_s",
"word_boundary::nb15",
"word_boundary::nb18",
"word_boundary::nb21",
"unicode::uni_class_gencat_letter",
"word_boundary::nb25",
"word_boundary::nb19",
"word_boundary::nb12",
"word_boundary::nb29",
"word_boundary::nb35",
"word_boundary::nb30",
"crazy::dfa_handles_pathological_case",
"word_boundary::nb33",
"word_boundary::nb2",
"unicode::uni_class_gencat_other_letter",
"word_boundary::nb16",
"word_boundary::nb20",
"word_boundary::nb37",
"word_boundary::nb34",
"unicode::uni_not_class",
"word_boundary::nb5",
"word_boundary::nb23",
"word_boundary::nb22",
"word_boundary::nb8",
"word_boundary::nb24",
"word_boundary::nb7",
"word_boundary::nb26",
"word_boundary::nb27",
"word_boundary::nb28",
"word_boundary::wb11",
"word_boundary::nb3",
"word_boundary::nb36",
"word_boundary::nb32",
"word_boundary::nb31",
"unicode::uni_class_gencat_other",
"word_boundary::wb14",
"word_boundary::wb16",
"word_boundary::nb4",
"word_boundary::wb12",
"word_boundary::wb17",
"word_boundary::wb24",
"word_boundary::nb38",
"word_boundary::wb2",
"unicode::uni_perl_w_not",
"word_boundary::nb39",
"word_boundary::wb31",
"word_boundary::wb26",
"word_boundary::nb9",
"word_boundary::nb6",
"word_boundary::unicode2",
"word_boundary::wb15",
"word_boundary::wb34",
"word_boundary::wb27",
"word_boundary::wb30",
"word_boundary::unicode1",
"word_boundary::wb1",
"word_boundary::wb13",
"word_boundary::wb33",
"word_boundary::wb10",
"word_boundary::wb35",
"word_boundary::wb40",
"word_boundary::wb29",
"word_boundary::wb18",
"word_boundary::wb20",
"word_boundary::wb23",
"word_boundary::wb4",
"word_boundary_unicode::unicode1",
"word_boundary::wb25",
"word_boundary::wb19",
"word_boundary::wb8",
"word_boundary::wb22",
"word_boundary_unicode::unicode2",
"word_boundary::wb32",
"word_boundary::wb37",
"word_boundary::wb5",
"word_boundary::wb28",
"word_boundary::wb36",
"word_boundary::wb3",
"word_boundary::wb21",
"word_boundary::wb6",
"word_boundary::wb7",
"word_boundary::wb39",
"word_boundary::wb38",
"word_boundary::wb41",
"word_boundary::wb9",
"word_boundary_unicode::ascii1",
"unicode::uni_perl_w",
"unicode::uni_perl_w_neg",
"crazy::nest_limit_makes_it_parse",
"noparse::fail_too_big",
"regression::regression_many_repeat_stack_overflow"
] |
[] |
[] |
rust-lang/regex
|
2022-05-20T17:32:56Z
|
rust-lang__regex-863
|
diff --git a/regex-syntax/src/hir/literal/mod.rs b/regex-syntax/src/hir/literal/mod.rs
--- a/regex-syntax/src/hir/literal/mod.rs
+++ b/regex-syntax/src/hir/literal/mod.rs
@@ -1141,6 +1141,11 @@ mod tests {
test_lit!(pfx_group1, prefixes, "(a)", M("a"));
test_lit!(pfx_rep_zero_or_one1, prefixes, "a?");
test_lit!(pfx_rep_zero_or_one2, prefixes, "(?:abc)?");
+ test_lit!(pfx_rep_zero_or_one_cat1, prefixes, "ab?", C("ab"), M("a"));
+ // FIXME: This should return [M("a"), M("ab")] because of the non-greedy
+ // repetition. As a work-around, we rewrite ab?? as ab*?, and thus we get
+ // a cut literal.
+ test_lit!(pfx_rep_zero_or_one_cat2, prefixes, "ab??", C("ab"), M("a"));
test_lit!(pfx_rep_zero_or_more1, prefixes, "a*");
test_lit!(pfx_rep_zero_or_more2, prefixes, "(?:abc)*");
test_lit!(pfx_rep_one_or_more1, prefixes, "a+", C("a"));
diff --git a/regex-syntax/src/hir/literal/mod.rs b/regex-syntax/src/hir/literal/mod.rs
--- a/regex-syntax/src/hir/literal/mod.rs
+++ b/regex-syntax/src/hir/literal/mod.rs
@@ -1249,8 +1254,8 @@ mod tests {
pfx_crazy1,
prefixes,
r"M[ou]'?am+[ae]r .*([AEae]l[- ])?[GKQ]h?[aeu]+([dtz][dhz]?)+af[iy]",
- C("Mo\\'am"),
- C("Mu\\'am"),
+ C("Mo\\'"),
+ C("Mu\\'"),
C("Moam"),
C("Muam")
);
diff --git a/tests/regression.rs b/tests/regression.rs
--- a/tests/regression.rs
+++ b/tests/regression.rs
@@ -217,3 +217,6 @@ matiter!(
// https://en.wikipedia.org/wiki/Je_(Cyrillic)
ismatch!(empty_group_match, r"()Ј01", "zЈ01", true);
matiter!(empty_group_find, r"()Ј01", "zЈ01", (1, 5));
+
+// See: https://github.com/rust-lang/regex/issues/862
+mat!(non_greedy_question_literal, r"ab??", "ab", Some((0, 1)));
|
Wow. Yes, this is a bug. I am amazed that this isn't captured by the test suite. Non-greediness itself works (both `ab*?` and `ab+?` work as expected), but it looks like `ab??` doesn't specifically:
```rust
fn main() {
let rx = regex::Regex::new("ab??").unwrap();
let input = "abb";
let mat = rx.find(input).unwrap();
println!("match: {}", &input[mat.range()]);
let rx = regex::Regex::new("ab+?").unwrap();
let input = "abb";
let mat = rx.find(input).unwrap();
println!("match: {}", &input[mat.range()]);
let rx = regex::Regex::new("ab*?").unwrap();
let input = "abb";
let mat = rx.find(input).unwrap();
println!("match: {}", &input[mat.range()]);
}
```
Outputs:
```
match: ab
match: ab
match: a
```
Playground: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=da2560ea6ce7655338ef34101cf5eab3
Gah. This is another literal optimization bug. They are going to be the death of me. The regex `\wab??` correctly reports `[0, 2)` as a match against `Zab`. That `\w` defeats literal optimizations and just runs the regex engine.
This actually a regression that was introduced in `regex 1.1.8` in f43beb3a8a2781b511ff8d306197b7649a8f3135. `regex 1.1.7` handles this case correctly.
OK, so I at least understand the root cause. The root issue seems to be the _order_ of literals extracted from the regex. For example:
```
$ regex-debug prefixes -a 'ab??'
Complete(ab)
Complete(a)
```
Since both literals are marked as "complete" (which means that if a match is found we can report a match for the overall regex and avoid using the regex engine to confirm the match), which is correct in this case, the regex crate will divert to using Aho-Corasick for this. It correctly uses "leftmost first" match semantics, which matches how the regex crate does things. But since `ab` comes before `a`, it means that a match of `ab` will take priority over `a`. That's correct for the regex `ab?` but _wrong_ for `ab??`.
So why does `ab*?` and `ab+?` work as expected? Well, let's take a look at the prefix literals extracted for them:
```
$ regex-debug prefixes -a 'ab*?'
Cut(ab)
Complete(a)
$ regex-debug prefixes -a 'ab+?'
Cut(ab)
```
The latter is correct. The former generates literals in the wrong order, but since once of them is `Cut` (meaning we need the regex engine to confirm the match), we can't just divert to Aho-Corasick complete. Aho-Corasick will still prefer `ab` matches, but then it will ask the regex engine to confirm the match which will correctly report `a`, thus masking the bug.
Interestingly, despite the regex `ab{0,1}?` being equivalent to `ab??`, it does _not_ exhibit this bug and correctly matches `a` in `ab`. The key is that the prefixes extracted from it actually appear to be different than what is extracted from `ab??`:
```
$ regex-debug prefixes -a 'ab{0,1}?'
Cut(ab)
Complete(a)
```
This is actually because in the code, the literal extraction isn't perfect and we treat bounded repetitions slightly differently. In this case, _any_ bounded repetition `e{minimum,maximum}` with `minimum == 0` is interpreted as `e*`:
```
fn repeat_range_literals<F: FnMut(&Hir, &mut Literals)>(
e: &Hir,
min: u32,
max: Option<u32>,
greedy: bool,
lits: &mut Literals,
mut f: F,
) {
if min == 0 {
// This is a bit conservative. If `max` is set, then we could
// treat this as a finite set of alternations. For now, we
// just treat it as `e*`.
f(
&Hir::repetition(hir::Repetition {
kind: hir::RepetitionKind::ZeroOrMore,
greedy: greedy,
hir: Box::new(e.clone()),
}),
lits,
);
} else {
```
Since literal extraction is on my list of things to rewrite (the current implementation is quite bad and inscrutable), I'm going to just make an easy fix: treat `e??` as `e{0,n}`, which in turn means we treat `e??` as `e*?` or just `e*`. This will result in a list of literals where at least one is cut, and thus inhibit the Aho-Corasick optimization (sadly).
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@ The below are changes for the next release, which is to be determined.
Fixes a bug where `[[:alnum:][:^ascii:]]` dropped `[:alnum:]` from the class.
* [BUG #859](https://github.com/rust-lang/regex/issues/859):
Fixes a bug where `Hir::is_match_empty` returned `false` for `\b`.
+* [BUG #862](https://github.com/rust-lang/regex/issues/862):
+ Fixes a bug where 'ab??' matches 'ab' instead of 'a' in 'ab'.
1.5.5 (2022-03-08)
diff --git a/regex-syntax/src/hir/literal/mod.rs b/regex-syntax/src/hir/literal/mod.rs
--- a/regex-syntax/src/hir/literal/mod.rs
+++ b/regex-syntax/src/hir/literal/mod.rs
@@ -735,18 +735,18 @@ fn repeat_zero_or_one_literals<F: FnMut(&Hir, &mut Literals)>(
lits: &mut Literals,
mut f: F,
) {
- let (mut lits2, mut lits3) = (lits.clone(), lits.to_empty());
- lits3.set_limit_size(lits.limit_size() / 2);
- f(e, &mut lits3);
-
- if lits3.is_empty() || !lits2.cross_product(&lits3) {
- lits.cut();
- return;
- }
- lits2.add(Literal::empty());
- if !lits.union(lits2) {
- lits.cut();
- }
+ f(
+ &Hir::repetition(hir::Repetition {
+ kind: hir::RepetitionKind::ZeroOrMore,
+ // FIXME: Our literal extraction doesn't care about greediness.
+ // Which is partially why we're treating 'e?' as 'e*'. Namely,
+ // 'ab??' yields [Complete(ab), Complete(a)], but it should yield
+ // [Complete(a), Complete(ab)] because of the non-greediness.
+ greedy: true,
+ hir: Box::new(e.clone()),
+ }),
+ lits,
+ );
}
fn repeat_zero_or_more_literals<F: FnMut(&Hir, &mut Literals)>(
|
[
"862"
] | 863
|
Unexpected behavior of ungreedy ?? operator
#### What version of regex are you using?
1.5.5
#### Describe the bug at a high level.
Running the regex `ab??` on the input `ab` returns the match `ab` instead of `a`.
#### What are the steps to reproduce the behavior?
```rust
fn main() {
let rx = regex::Regex::new("ab??").unwrap();
let input = "ab";
let mat = rx.find(input).unwrap();
println!("match: {}", &input[mat.range()]);
}
```
#### What is the actual behavior?
This program returns: `ab`
#### What is the expected behavior?
I expect the output to be `a`, since `??` is non greedy, it should favor not matching the second letter in the input.
All other implementations i could find matches on `a` only.
|
1.5
|
88a2a62d861d189faae539990f63cb9cf195bd8c
|
5e98788947b28da3da27f4e156b877eb0cb1593e
|
[
"regression::non_greedy_question_literal"
] |
[
"compile::tests::byte_classes",
"compile::tests::full_byte_classes",
"dfa::tests::prop_read_write_u32",
"dfa::tests::prop_read_write_i32",
"expand::tests::find_cap_ref1",
"exec::test::uppercut_s_backtracking_bytes_default_bytes_mismatch",
"exec::test::unicode_lit_star_backtracking_utf8bytes_default_utf8bytes_mismatch",
"expand::tests::find_cap_ref11",
"expand::tests::find_cap_ref10",
"expand::tests::find_cap_ref12",
"expand::tests::find_cap_ref13",
"expand::tests::find_cap_ref14",
"expand::tests::find_cap_ref15",
"expand::tests::find_cap_ref16",
"expand::tests::find_cap_ref17",
"expand::tests::find_cap_ref18",
"expand::tests::find_cap_ref19",
"expand::tests::find_cap_ref2",
"expand::tests::find_cap_ref3",
"expand::tests::find_cap_ref4",
"expand::tests::find_cap_ref5",
"expand::tests::find_cap_ref6",
"expand::tests::find_cap_ref7",
"expand::tests::find_cap_ref8",
"expand::tests::find_cap_ref9",
"pool::tests::oibits",
"prog::test::test_size_of_inst",
"utf8::tests::prop_decode_last_matches_std",
"pool::tests::thread_owner_optimization",
"utf8::tests::prop_decode_matches_std",
"utf8::tests::prop_encode_matches_std",
"utf8::tests::prop_roundtrip",
"utf8::tests::prop_roundtrip_last",
"utf8::tests::reject_invalid",
"utf8::tests::reject_invalid_last",
"dfa::tests::prop_state_encode_decode",
"api::capture_index",
"api::capture_misc",
"api::capture_index_lifetime",
"api::capture_index_panic_usize - should panic",
"api::capture_index_panic_name - should panic",
"api::capture_names",
"api::empty_regex_empty_match",
"api::empty_match_find_iter",
"api::empty_match_captures_iter",
"api::empty_regex_nonempty_match",
"api::expand1",
"api::expand10",
"api::expand2",
"api::expand4",
"api::expand3",
"api::expand5",
"api::expand6",
"api::expand7",
"api::expand8",
"api::expand9",
"api::expand_name1",
"api::expand_name10",
"api::expand_name2",
"api::expand_name11",
"api::expand_name5",
"api::expand_name3",
"api::expand_name4",
"api::expand_name6",
"api::expand_name7",
"api::expand_name8",
"api::first_range_starts_with_left_bracket",
"api::expand_name9",
"api::many_sequential_zero_length_match",
"api::many_zero_length_match",
"api::one_zero_length_match",
"api::quoted_bracket_set",
"api::range_ends_with_escape",
"api::split1",
"api::regex_string",
"api::split2",
"api::split3",
"api::splitn_above_limit",
"api::split_none",
"api::splitn_at_limit",
"api::splitn_trailing_separator",
"api::splitn_empty",
"api::split_trailing_blank",
"api::split_empty",
"crazy::ascii_literal",
"crazy::greedy_one_many_many",
"api::sub_capture_matches",
"crazy::match_empty1",
"api::split_trailing_blanks",
"api::splitn_zero_limit",
"crazy::match_email_not",
"crazy::match_empty11",
"api_str::empty_match_unicode_captures_iter",
"crazy::match_empty14",
"api::splitn_trailing_blank",
"crazy::lazy_many_optional",
"crazy::match_empty15",
"crazy::match_date2",
"crazy::match_empty16",
"crazy::match_empty19",
"crazy::match_empty18",
"api::splitn_below_limit",
"crazy::match_empty2",
"crazy::greedy_one_many_optional",
"crazy::match_empty10",
"crazy::match_empty21",
"crazy::match_empty20",
"crazy::greedy_range_many",
"crazy::match_date1",
"crazy::match_empty22",
"crazy::match_empty5",
"crazy::match_empty4",
"crazy::match_empty3",
"crazy::match_float2",
"crazy::match_empty23",
"crazy::match_empty17",
"crazy::match_ranges",
"crazy::match_float1",
"crazy::match_empty13",
"crazy::match_start_end_empty_many_1",
"crazy::match_empty12",
"crazy::match_empty9",
"crazy::match_start_end_empty",
"crazy::greedy_many_optional",
"crazy::lazy_one_many_many",
"crazy::match_float3",
"api_str::match_as_str",
"api_str::empty_match_unicode_find_iter",
"crazy::match_start_end_empty_rev",
"crazy::match_start_end_empty_rep_rev",
"flags::match_flag_case_dotnl",
"crazy::greedy_many_many",
"crazy::lazy_many_many",
"crazy::greedy_range_min_many",
"crazy::lazy_range_min_many",
"crazy::match_ranges_not",
"crazy::match_email",
"crazy::match_start_end_empty_rep",
"crazy::lazy_one_many_optional",
"crazy::lazy_range_many",
"crazy::match_start_end_empty_many_2",
"crazy::match_email_big",
"crazy::negclass_space",
"crazy::negclass_letter_space",
"flags::match_flag_case_dotnl_toggle_ok",
"crazy::match_empty6",
"fowler::match_basic_100",
"crazy::match_empty7",
"flags::match_flag_weird_case",
"crazy::negclass_ascii",
"fowler::match_basic_103",
"crazy::match_float4",
"flags::match_flag_ungreedy_noop",
"flags::match_flag_case",
"fowler::match_basic_110",
"crazy::match_empty8",
"crazy::negclass_letters",
"crazy::match_date3",
"crazy::negclass_space_comma",
"crazy::negclass_comma",
"flags::match_flag_multi",
"fowler::match_basic_118",
"crazy::negclass_comma_space",
"fowler::match_basic_111",
"crazy::negclass_letter_comma",
"flags::match_flag_ungreedy",
"fowler::match_basic_107",
"fowler::match_basic_109",
"flags::match_flag_weird_case_not",
"fowler::match_basic_116",
"fowler::match_basic_112",
"fowler::match_basic_12",
"flags::match_flag_case_dotnl_toggle_not",
"fowler::match_basic_101",
"fowler::match_basic_102",
"fowler::match_basic_121",
"fowler::match_basic_120",
"fowler::match_basic_104",
"flags::match_flag_case_dotnl_toggle",
"fowler::match_basic_10",
"fowler::match_basic_115",
"fowler::match_basic_105",
"flags::match_flag_ungreedy_greedy",
"fowler::match_basic_124",
"fowler::match_basic_108",
"fowler::match_basic_139",
"fowler::match_basic_119",
"fowler::match_basic_106",
"fowler::match_basic_132",
"fowler::match_basic_146",
"fowler::match_basic_113",
"fowler::match_basic_140",
"fowler::match_basic_125",
"fowler::match_basic_114",
"fowler::match_basic_137",
"fowler::match_basic_117",
"fowler::match_basic_151",
"fowler::match_basic_148",
"fowler::match_basic_15",
"fowler::match_basic_159",
"fowler::match_basic_129",
"fowler::match_basic_152",
"fowler::match_basic_122",
"fowler::match_basic_138",
"fowler::match_basic_123",
"fowler::match_basic_134",
"fowler::match_basic_155",
"fowler::match_basic_126",
"fowler::match_basic_141",
"fowler::match_basic_153",
"fowler::match_basic_164",
"fowler::match_basic_156",
"fowler::match_basic_128",
"fowler::match_basic_16",
"fowler::match_basic_160",
"fowler::match_basic_131",
"fowler::match_basic_135",
"fowler::match_basic_133",
"fowler::match_basic_163",
"fowler::match_basic_144",
"fowler::match_basic_165",
"fowler::match_basic_145",
"fowler::match_basic_169",
"fowler::match_basic_147",
"fowler::match_basic_150",
"fowler::match_basic_149",
"fowler::match_basic_142",
"fowler::match_basic_188",
"fowler::match_basic_189",
"fowler::match_basic_166",
"fowler::match_basic_154",
"fowler::match_basic_167",
"fowler::match_basic_176",
"fowler::match_basic_178",
"fowler::match_basic_157",
"fowler::match_basic_185",
"fowler::match_basic_171",
"fowler::match_basic_17",
"fowler::match_basic_181",
"fowler::match_basic_184",
"fowler::match_basic_183",
"fowler::match_basic_158",
"fowler::match_basic_174",
"fowler::match_basic_193",
"fowler::match_basic_195",
"fowler::match_basic_161",
"fowler::match_basic_162",
"fowler::match_basic_182",
"fowler::match_basic_18",
"fowler::match_basic_172",
"fowler::match_basic_201",
"fowler::match_basic_19",
"fowler::match_basic_203",
"fowler::match_basic_205",
"fowler::match_basic_168",
"fowler::match_basic_206",
"fowler::match_basic_204",
"fowler::match_basic_196",
"fowler::match_basic_175",
"fowler::match_basic_179",
"fowler::match_basic_187",
"fowler::match_basic_198",
"fowler::match_basic_199",
"fowler::match_basic_186",
"fowler::match_basic_180",
"fowler::match_basic_216",
"fowler::match_basic_191",
"fowler::match_basic_170",
"fowler::match_basic_207",
"fowler::match_basic_177",
"fowler::match_basic_212",
"fowler::match_basic_192",
"fowler::match_basic_23",
"fowler::match_basic_215",
"fowler::match_basic_173",
"fowler::match_basic_190",
"fowler::match_basic_213",
"fowler::match_basic_194",
"fowler::match_basic_197",
"fowler::match_basic_202",
"fowler::match_basic_214",
"fowler::match_basic_27",
"fowler::match_basic_21",
"fowler::match_basic_34",
"fowler::match_basic_20",
"fowler::match_basic_210",
"fowler::match_basic_200",
"fowler::match_basic_208",
"fowler::match_basic_26",
"fowler::match_basic_30",
"fowler::match_basic_4",
"fowler::match_basic_211",
"fowler::match_basic_37",
"fowler::match_basic_38",
"fowler::match_basic_39",
"fowler::match_basic_22",
"fowler::match_basic_47",
"fowler::match_basic_43",
"fowler::match_basic_45",
"fowler::match_basic_219",
"fowler::match_basic_42",
"fowler::match_basic_48",
"fowler::match_basic_218",
"fowler::match_basic_221",
"fowler::match_basic_25",
"fowler::match_basic_5",
"fowler::match_basic_220",
"fowler::match_basic_217",
"fowler::match_basic_24",
"fowler::match_basic_28",
"fowler::match_basic_3",
"fowler::match_basic_50",
"fowler::match_basic_67",
"fowler::match_basic_29",
"fowler::match_basic_32",
"fowler::match_basic_58",
"fowler::match_basic_35",
"fowler::match_basic_36",
"fowler::match_basic_209",
"fowler::match_basic_71",
"fowler::match_basic_33",
"fowler::match_basic_40",
"fowler::match_basic_73",
"fowler::match_basic_80",
"fowler::match_basic_52",
"fowler::match_basic_44",
"fowler::match_basic_56",
"fowler::match_basic_49",
"fowler::match_basic_57",
"fowler::match_basic_41",
"fowler::match_basic_77",
"fowler::match_basic_46",
"fowler::match_basic_84",
"fowler::match_basic_76",
"fowler::match_basic_70",
"fowler::match_basic_86",
"fowler::match_basic_88",
"fowler::match_basic_90",
"fowler::match_basic_68",
"fowler::match_basic_83",
"fowler::match_basic_66",
"fowler::match_basic_6",
"fowler::match_basic_7",
"fowler::match_basic_92",
"fowler::match_basic_94",
"fowler::match_basic_53",
"fowler::match_basic_51",
"fowler::match_basic_69",
"fowler::match_basic_55",
"fowler::match_basic_99",
"fowler::match_basic_54",
"fowler::match_basic_65",
"fowler::match_basic_59",
"fowler::match_basic_72",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_10",
"fowler::match_basic_9",
"fowler::match_nullsubexpr_13",
"fowler::match_basic_89",
"fowler::match_basic_91",
"fowler::match_basic_97",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_12",
"fowler::match_basic_78",
"fowler::match_basic_79",
"fowler::match_basic_87",
"fowler::match_nullsubexpr_19",
"fowler::match_basic_85",
"fowler::match_basic_95",
"fowler::match_basic_96",
"fowler::match_basic_93",
"fowler::match_basic_81",
"fowler::match_basic_98",
"fowler::match_nullsubexpr_16",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_15",
"fowler::match_basic_74",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_30",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_45",
"fowler::match_nullsubexpr_14",
"fowler::match_basic_75",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_18",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_74",
"fowler::match_nullsubexpr_69",
"fowler::match_repetition_11",
"fowler::match_nullsubexpr_9",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_43",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_33",
"fowler::match_nullsubexpr_34",
"fowler::match_repetition_110",
"fowler::match_repetition_126",
"fowler::match_repetition_108",
"fowler::match_repetition_106",
"fowler::match_repetition_128",
"fowler::match_repetition_115",
"fowler::match_repetition_137",
"fowler::match_repetition_143",
"fowler::match_repetition_129",
"fowler::match_nullsubexpr_7",
"fowler::match_repetition_136",
"fowler::match_repetition_154",
"fowler::match_repetition_145",
"fowler::match_repetition_147",
"fowler::match_repetition_10",
"fowler::match_nullsubexpr_8",
"fowler::match_repetition_130",
"fowler::match_nullsubexpr_78",
"fowler::match_nullsubexpr_70",
"fowler::match_nullsubexpr_79",
"fowler::match_repetition_127",
"fowler::match_repetition_150",
"fowler::match_repetition_104",
"fowler::match_repetition_152",
"fowler::match_repetition_132",
"fowler::match_repetition_131",
"fowler::match_nullsubexpr_71",
"fowler::match_repetition_12",
"fowler::match_repetition_102",
"fowler::match_nullsubexpr_77",
"fowler::match_repetition_100",
"fowler::match_repetition_15",
"fowler::match_repetition_21",
"fowler::match_repetition_31",
"fowler::match_repetition_158",
"fowler::match_repetition_18",
"fowler::match_repetition_40",
"fowler::match_repetition_135",
"fowler::match_repetition_163",
"fowler::match_repetition_114",
"fowler::match_repetition_34",
"fowler::match_repetition_26",
"fowler::match_repetition_30",
"fowler::match_repetition_161",
"fowler::match_repetition_28",
"fowler::match_repetition_35",
"fowler::match_repetition_14",
"fowler::match_repetition_44",
"fowler::match_repetition_47",
"fowler::match_repetition_134",
"fowler::match_repetition_156",
"fowler::match_repetition_149",
"fowler::match_repetition_133",
"fowler::match_repetition_112",
"fowler::match_repetition_42",
"fowler::match_repetition_50",
"fowler::match_repetition_73",
"fowler::match_repetition_65",
"fowler::match_repetition_22",
"fowler::match_repetition_24",
"fowler::match_repetition_20",
"fowler::match_repetition_25",
"fowler::match_repetition_159",
"fowler::match_repetition_38",
"fowler::match_repetition_83",
"fowler::match_repetition_16",
"fowler::match_repetition_36",
"fowler::match_repetition_81",
"fowler::match_repetition_32",
"fowler::match_repetition_76",
"fowler::match_repetition_46",
"fowler::match_repetition_41",
"fowler::match_repetition_63",
"fowler::match_repetition_52",
"fowler::match_repetition_95",
"multiline::match_multi_4",
"fowler::match_repetition_56",
"fowler::match_repetition_61",
"fowler::match_repetition_64",
"fowler::match_repetition_53",
"fowler::match_repetition_70",
"multiline::match_multi_6",
"fowler::match_repetition_67",
"fowler::match_repetition_68",
"fowler::match_repetition_96",
"fowler::match_repetition_57",
"fowler::match_repetition_75",
"fowler::match_repetition_59",
"fowler::match_repetition_98",
"multiline::match_multi_rep_12",
"multiline::match_multi_3",
"fowler::match_repetition_79",
"fowler::match_repetition_54",
"fowler::match_repetition_80",
"fowler::match_repetition_77",
"fowler::match_repetition_90",
"multiline::match_multi_rep_7",
"fowler::match_repetition_91",
"multiline::match_multi_8",
"fowler::match_repetition_92",
"multiline::match_multi_rep_14",
"fowler::match_repetition_94",
"fowler::match_repetition_93",
"multiline::match_multi_rep_15",
"multiline::match_multi_rep_6",
"multiline::match_multi_rep_5",
"noparse::fail_class_incomplete",
"fowler::match_repetition_97",
"multiline::match_multi_rep_3",
"multiline::match_multi_2",
"multiline::match_multi_5",
"multiline::match_multi_1",
"multiline::match_multi_rep_9",
"noparse::fail_counted_no_close",
"noparse::fail_counted_nonnegative",
"noparse::fail_class_no_boundary",
"noparse::fail_bad_flag",
"multiline::match_multi_rep_16",
"multiline::match_multi_rep_10",
"multiline::match_multi_rep_11",
"multiline::match_multi_rep_1",
"multiline::match_multi_7",
"multiline::match_multi_rep_8",
"noparse::fail_counted_decreasing",
"multiline::match_multi_rep_13",
"multiline::match_multi_9",
"noparse::fail_class_no_end",
"noparse::fail_class_not_closed",
"multiline::match_multi_rep_2",
"multiline::match_multi_rep_17",
"noparse::fail_close_paren",
"multiline::match_multi_rep_4",
"noparse::fail_bad_capture_name",
"noparse::fail_class_no_begin",
"noparse::fail_hex_digit",
"noparse::fail_neg_empty",
"regression::captures_after_dfa_premature_end2",
"noparse::fail_flag_bad",
"noparse::fail_hex_short",
"regression::blank_matches_nothing_between_space_and_tab",
"noparse::fail_double_neg",
"regression::endl_or_wb",
"noparse::fail_unfinished_escape",
"noparse::fail_invalid_range",
"noparse::fail_range_end_no_class",
"regression::anchored_prefix1",
"regression::captures_after_dfa_premature_end1",
"noparse::fail_empty_capture_name",
"noparse::fail_no_repeat_arg",
"noparse::fail_flag_empty",
"noparse::fail_dupe_named",
"regression::lits_unambiguous2",
"noparse::fail_hex_long_digits",
"noparse::fail_octal_digit",
"regression::flags_are_unset",
"noparse::fail_incomplete_escape",
"noparse::fail_open_paren",
"noparse::fail_range_end_no_begin",
"noparse::fail_range_end_no_end",
"noparse::fail_unfinished_cap",
"noparse::fail_range_end_no_boundary",
"regression::anchored_prefix2",
"regression::empty_group_find",
"regression::regression_ascii_word_underscore",
"regression::anchored_prefix3",
"regression::captures_after_dfa_premature_end3",
"regression::partial_anchor_alternate_begin",
"regression::many_alternates",
"regression::empty_group_match",
"regression::regression_alt_in_alt1",
"regression::regression_unsorted_binary_search_1",
"regression::regression_negated_char_class_2",
"regression::strange_anchor_non_complete_suffix",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"regression::reverse_suffix2",
"regression::regression_alt_in_alt2",
"regression::invalid_regexes_no_crash",
"regression::regression_unsorted_binary_search_2",
"regression::wb_start_x",
"replace::capture_longest_possible_name",
"regression::literal_panic",
"regression::split_on_word_boundary",
"regression::y_or_endl",
"regression::regression_negated_char_class_1",
"regression::strange_anchor_non_complete_prefix",
"regression::lits_unambiguous1",
"regression::reverse_suffix1",
"replace::all",
"replace::closure_returning_value",
"regression::partial_anchor_alternate_end",
"replace::first",
"replace::closure_returning_reference",
"regression::partial_anchor",
"regression::regression_leftmost_first_prefix",
"regression::zero_or_end",
"regression::regression_captures_rep",
"regression::regression_invalid_repetition_expr",
"regression::regression_invalid_flags_expression",
"replace::impl_cow_str_borrowed",
"regression::ahocorasick1",
"regression::regression_nfa_stops1",
"replace::match_at_start_replace_with_empty",
"replace::number_hypen",
"replace::plus",
"replace::impl_cow_slice_borrowed_ref",
"replace::double_dollar",
"regression::word_boundary_dfa",
"regression::reverse_suffix3",
"searcher::searcher_empty_haystack",
"searcher::searcher_empty_regex",
"searcher::searcher_many_zero_length_matches",
"searcher::searcher_empty_regex_empty_haystack",
"replace::simple_expand",
"replace::impl_vec_u8",
"replace::impl_vec_u8_ref",
"searcher::searcher_no_match",
"replace::impl_cow_slice_borrowed",
"searcher::searcher_reject_first",
"searcher::searcher_two_adjacent_matches",
"searcher::searcher_two_non_adjacent_matches",
"searcher::searcher_one_match",
"regression::uni_case_lower_nocase_flag",
"replace::groups",
"searcher::searcher_unicode",
"searcher::searcher_one_zero_length_matches",
"replace::impl_cow_slice_owned",
"replace::impl_string_ref",
"replace::impl_cow_str_borrowed_ref",
"set::nset3",
"replace::impl_cow_slice_owned_ref",
"replace::impl_cow_str_owned",
"replace::literal_dollar2",
"set::nset1",
"set::set1",
"replace::literal_dollar1",
"replace::impl_cow_str_owned_ref",
"replace::impl_string",
"set::set10",
"set::regression_subsequent_matches",
"replace::named",
"set::set11",
"replace::no_expand1",
"replace::single_empty_match",
"replace::no_expand2",
"set::set6",
"replace::trim",
"set::set9",
"set::setempty5",
"set::setempty1",
"set::setempty6",
"set::setempty3",
"set::setempty9",
"suffix_reverse::t01",
"set::setempty2",
"set::setempty8",
"set::set13",
"set::set12",
"set::len_and_empty",
"unicode::uni_boundary_none",
"set::nset2",
"set::set17",
"set::set2",
"set::set14",
"set::get_set_patterns",
"set::nset4",
"set::set18",
"set::set16",
"unicode::uni_case",
"suffix_reverse::t02",
"set::set15",
"unicode::uni_class_gcb_ri1",
"set::set8",
"set::set3",
"set::set4",
"set::set7",
"set::set5",
"set::setempty4",
"unicode::uni_class_gencat_cased_letter",
"set::setempty7",
"unicode::uni_class_gcb_ri2",
"unicode::uni_class_gencat_format",
"suffix_reverse::t06",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gencat_format_abbrev2",
"suffix_reverse::t05",
"suffix_reverse::t03",
"suffix_reverse::t04",
"unicode::uni_boundary_ogham",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gcb_prepend",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_class_gcb_ri3",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_decimal_numer",
"unicode::uni_class_gencat_format_abbrev1",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gencat_control",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_math",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_plus",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_gencat_number",
"unicode::uni_class_gcb_lvt",
"unicode::uni_case_upper_nocase",
"unicode::uni_class_gencat_private_use",
"unicode::uni_literal",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_sb3",
"unicode::uni_class_sb4",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_wb2",
"unicode::uni_literal_casei_plus",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_wb4",
"unicode::uni_class_wb5",
"unicode::uni_mixed",
"unicode::uni_literal_plus",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_class_gencat_symbol",
"unicode::uni_perl_s",
"unicode::uni_class_prop_picto2",
"unicode::uni_one",
"unicode::uni_perl_d_not",
"unicode::uni_class_sb5",
"unicode::uni_not_class",
"unicode::uni_class_wb1",
"unicode::uni_class_gencat_other_letter",
"word_boundary::nb11",
"word_boundary::nb1",
"word_boundary::nb12",
"unicode::uni_class_wb3",
"unicode::uni_class_gencat_lowercase_letter",
"unicode::uni_case_lower",
"unicode::uni_case_upper",
"unicode::uni_class_gencat_unassigned",
"unicode::uni_perl_d_neg",
"unicode::uni_not_boundary_ogham",
"unicode::uni_not_boundary_none",
"unicode::uni_class_gencat_uppercase_letter",
"unicode::uni_perl_s_not",
"unicode::uni_perl_d",
"word_boundary::nb18",
"word_boundary::nb22",
"word_boundary::nb14",
"unicode::uni_not_class_neg",
"word_boundary::nb15",
"unicode::uni_perl_s_neg",
"word_boundary::nb25",
"word_boundary::nb19",
"unicode::uni_class_sb2",
"unicode::uni_class_gencat_letter",
"word_boundary::nb10",
"word_boundary::nb24",
"word_boundary::nb29",
"word_boundary::nb34",
"word_boundary::nb13",
"word_boundary::nb32",
"word_boundary::nb37",
"word_boundary::nb2",
"unicode::uni_class_gencat_other",
"word_boundary::nb21",
"word_boundary::nb20",
"word_boundary::nb16",
"word_boundary::nb17",
"word_boundary::nb8",
"word_boundary::nb6",
"unicode::uni_not",
"word_boundary::nb23",
"word_boundary::nb39",
"word_boundary::unicode1",
"word_boundary::nb26",
"word_boundary::nb4",
"word_boundary::nb27",
"word_boundary::nb28",
"word_boundary::nb3",
"word_boundary::nb30",
"word_boundary::wb14",
"word_boundary::nb31",
"word_boundary::nb33",
"word_boundary::nb9",
"word_boundary::wb1",
"word_boundary::wb12",
"word_boundary::wb22",
"word_boundary::nb35",
"word_boundary::nb38",
"word_boundary::nb36",
"word_boundary::nb5",
"word_boundary::wb18",
"word_boundary::wb23",
"word_boundary::nb7",
"word_boundary::wb26",
"word_boundary::wb21",
"word_boundary::wb24",
"word_boundary::wb34",
"word_boundary::wb33",
"word_boundary::wb35",
"word_boundary::wb27",
"word_boundary::wb2",
"word_boundary::wb11",
"word_boundary::wb10",
"word_boundary::wb19",
"word_boundary::wb13",
"unicode::uni_class_sb1",
"word_boundary::unicode2",
"word_boundary::wb40",
"word_boundary::wb15",
"word_boundary::wb16",
"word_boundary::wb17",
"word_boundary::wb25",
"word_boundary::wb39",
"word_boundary::wb29",
"word_boundary::wb28",
"word_boundary::wb20",
"word_boundary::wb30",
"word_boundary::wb5",
"word_boundary::wb38",
"word_boundary::wb9",
"word_boundary_unicode::unicode1",
"word_boundary_unicode::unicode2",
"word_boundary::wb3",
"word_boundary_unicode::ascii1",
"word_boundary::wb7",
"word_boundary::wb32",
"word_boundary::wb37",
"word_boundary::wb36",
"word_boundary::wb31",
"word_boundary::wb41",
"word_boundary::wb4",
"word_boundary::wb6",
"crazy::dfa_handles_pathological_case",
"word_boundary::wb8",
"unicode::uni_perl_w_neg",
"unicode::uni_perl_w_not",
"unicode::uni_perl_w",
"crazy::nest_limit_makes_it_parse",
"noparse::fail_too_big",
"regression::regression_many_repeat_stack_overflow",
"bytes::end_not_wb",
"bytes::word_boundary",
"bytes::word_boundary_ascii2",
"bytes::dotstar_prefix_not_unicode2",
"bytes::perl_s_ascii",
"bytes::perl_w_ascii",
"bytes::negate_not_unicode",
"bytes::case_ascii_class",
"bytes::word_boundary_unicode",
"bytes::negate_unicode",
"bytes::word_boundary_ascii1",
"bytes::word_not_boundary_unicode",
"bytes::ascii_boundary_no_capture",
"bytes::case_not_unicode",
"bytes::case_ascii_one",
"bytes::ascii_boundary_capture",
"bytes::perl_d_unicode",
"bytes::perl_s_unicode",
"bytes::invalidutf8_anchor1",
"bytes::negated_full_byte_range",
"bytes::invalidutf8_anchor3",
"bytes::dotstar_prefix_not_unicode1",
"bytes::null_bytes",
"bytes::word_not_boundary",
"bytes::perl_d_ascii",
"bytes::mixed1",
"bytes::case_unicode",
"bytes::invalidutf8_anchor2",
"bytes::perl_w_unicode",
"word_boundary_ascii::ascii3",
"word_boundary_ascii::ascii1",
"word_boundary_ascii::unicode1",
"word_boundary_ascii::ascii2",
"word_boundary_ascii::unicode2",
"crates_regex::actix_web_0",
"crates_regex::actix_web_1",
"crates_regex::aerial_0",
"crates_regex::aerial_1",
"crates_regex::afsort_0",
"crates_regex::afsort_1",
"crates_regex::afsort_2",
"crates_regex::afsort_3",
"crates_regex::afsort_4",
"crates_regex::afsort_5",
"crates_regex::afsort_6",
"crates_regex::airkorea_0",
"crates_regex::afsort_7",
"crates_regex::airkorea_1",
"crates_regex::airkorea_2",
"crates_regex::alcibiades_0",
"crates_regex::althea_kernel_interface_0",
"crates_regex::althea_kernel_interface_1",
"crates_regex::amethyst_tools_0",
"crates_regex::amigo_0",
"crates_regex::amigo_1",
"crates_regex::amigo_2",
"crates_regex::amigo_3",
"crates_regex::amigo_4",
"crates_regex::arpabet_0",
"crates_regex::arpabet_1",
"crates_regex::arthas_derive_0",
"crates_regex::arthas_derive_1",
"crates_regex::arthas_derive_2",
"crates_regex::arthas_plugin_0",
"crates_regex::arthas_plugin_1",
"crates_regex::arthas_plugin_2",
"crates_regex::article_date_extractor_0",
"crates_regex::arthas_plugin_3",
"crates_regex::article_date_extractor_1",
"crates_regex::askalono_1",
"crates_regex::askalono_0",
"crates_regex::askalono_10",
"crates_regex::askalono_2",
"crates_regex::askalono_3",
"crates_regex::askalono_4",
"crates_regex::askalono_5",
"crates_regex::askalono_6",
"crates_regex::askalono_7",
"crates_regex::askalono_8",
"crates_regex::askalono_9",
"crates_regex::assembunny_plus_0",
"crates_regex::assembunny_plus_1",
"crates_regex::atarashii_imap_0",
"crates_regex::atarashii_imap_1",
"crates_regex::atarashii_imap_2",
"crates_regex::atarashii_imap_3",
"crates_regex::atarashii_imap_4",
"crates_regex::atarashii_imap_5",
"crates_regex::atarashii_imap_6",
"crates_regex::atarashii_imap_7",
"crates_regex::aterm_0",
"crates_regex::aterm_1",
"crates_regex::autoshutdown_0",
"crates_regex::avm_0",
"crates_regex::avm_1",
"crates_regex::avro_0",
"crates_regex::avro_1",
"crates_regex::bakervm_0",
"crates_regex::bakervm_1",
"crates_regex::bakervm_10",
"crates_regex::bakervm_2",
"crates_regex::bakervm_3",
"crates_regex::bakervm_4",
"crates_regex::bakervm_5",
"crates_regex::bakervm_6",
"crates_regex::bakervm_7",
"crates_regex::bakervm_8",
"crates_regex::bakervm_9",
"crates_regex::banana_0",
"crates_regex::bbcode_0",
"crates_regex::bbcode_1",
"crates_regex::bbcode_10",
"crates_regex::bbcode_11",
"crates_regex::bbcode_12",
"crates_regex::bbcode_13",
"crates_regex::bbcode_14",
"crates_regex::bbcode_15",
"crates_regex::bbcode_16",
"crates_regex::bbcode_17",
"crates_regex::bbcode_18",
"crates_regex::bbcode_19",
"crates_regex::bbcode_2",
"crates_regex::bbcode_20",
"crates_regex::bbcode_21",
"crates_regex::bbcode_22",
"crates_regex::bbcode_23",
"crates_regex::bbcode_24",
"crates_regex::bbcode_25",
"crates_regex::bbcode_3",
"crates_regex::bbcode_4",
"crates_regex::bbcode_5",
"crates_regex::bbcode_6",
"crates_regex::bbcode_7",
"crates_regex::bbcode_8",
"crates_regex::bbcode_9",
"crates_regex::bindgen_0",
"crates_regex::block_utils_0",
"crates_regex::block_utils_1",
"crates_regex::block_utils_2",
"crates_regex::bobbin_cli_0",
"crates_regex::bobbin_cli_1",
"crates_regex::bobbin_cli_2",
"crates_regex::bobbin_cli_3",
"crates_regex::bobbin_cli_4",
"crates_regex::bobbin_cli_5",
"crates_regex::bobbin_cli_6",
"crates_regex::bobbin_cli_7",
"crates_regex::bobbin_cli_8",
"crates_regex::bobbin_cli_9",
"crates_regex::borsholder_0",
"crates_regex::borsholder_1",
"crates_regex::bullet_core_0",
"crates_regex::bullet_core_1",
"crates_regex::bullet_core_10",
"crates_regex::bullet_core_11",
"crates_regex::bullet_core_12",
"crates_regex::bullet_core_13",
"crates_regex::bullet_core_14",
"crates_regex::bullet_core_2",
"crates_regex::bullet_core_3",
"crates_regex::bullet_core_4",
"crates_regex::bullet_core_5",
"crates_regex::bullet_core_6",
"crates_regex::bullet_core_7",
"crates_regex::bullet_core_8",
"crates_regex::bullet_core_9",
"crates_regex::cabot_0",
"crates_regex::cabot_1",
"crates_regex::canteen_0",
"crates_regex::card_validate_0",
"crates_regex::card_validate_2",
"crates_regex::card_validate_1",
"crates_regex::card_validate_3",
"crates_regex::card_validate_4",
"crates_regex::card_validate_5",
"crates_regex::card_validate_6",
"crates_regex::card_validate_7",
"crates_regex::card_validate_8",
"crates_regex::card_validate_9",
"crates_regex::cargo_brew_0",
"crates_regex::cargo_coverage_annotations_0",
"crates_regex::cargo_culture_kit_0",
"crates_regex::cargo_demangle_0",
"crates_regex::cargo_disassemble_0",
"crates_regex::cargo_edit_0",
"crates_regex::cargo_edit_1",
"crates_regex::cargo_incremental_0",
"crates_regex::cargo_incremental_1",
"crates_regex::cargo_incremental_2",
"crates_regex::cargo_incremental_3",
"crates_regex::cargo_release_0",
"crates_regex::cargo_release_1",
"crates_regex::cargo_screeps_0",
"crates_regex::cargo_script_0",
"crates_regex::cargo_script_1",
"crates_regex::cargo_script_2",
"crates_regex::cargo_script_3",
"crates_regex::cargo_script_4",
"crates_regex::cargo_tarpaulin_0",
"crates_regex::cargo_tarpaulin_1",
"crates_regex::cargo_tarpaulin_2",
"crates_regex::cargo_testify_0",
"crates_regex::cargo_testify_1",
"crates_regex::cargo_testjs_0",
"crates_regex::cargo_update_0",
"crates_regex::cargo_urlcrate_0",
"crates_regex::cargo_wix_0",
"crates_regex::cargo_wix_1",
"crates_regex::cargo_wix_2",
"crates_regex::cargo_wix_3",
"crates_regex::carnix_0",
"crates_regex::carnix_1",
"crates_regex::carnix_2",
"crates_regex::carnix_3",
"crates_regex::caseless_0",
"crates_regex::caseless_1",
"crates_regex::cdbd_0",
"crates_regex::cellsplit_0",
"crates_regex::cellsplit_1",
"crates_regex::checkmail_0",
"crates_regex::chema_0",
"crates_regex::chema_1",
"crates_regex::chord3_0",
"crates_regex::chord3_1",
"crates_regex::chord3_2",
"crates_regex::chord3_3",
"crates_regex::cicada_0",
"crates_regex::cicada_1",
"crates_regex::cicada_2",
"crates_regex::cicada_3",
"crates_regex::cicada_4",
"crates_regex::cifar_10_loader_0",
"crates_regex::cifar_10_loader_1",
"crates_regex::circadian_0",
"crates_regex::circadian_1",
"crates_regex::circadian_2",
"crates_regex::clam_0",
"crates_regex::classifier_0",
"crates_regex::claude_0",
"crates_regex::click_0",
"crates_regex::click_1",
"crates_regex::cniguru_0",
"crates_regex::cntk_0",
"crates_regex::cntk_1",
"crates_regex::cobalt_bin_0",
"crates_regex::codeowners_0",
"crates_regex::codeowners_1",
"crates_regex::colorizex_0",
"crates_regex::colorstring_0",
"crates_regex::codeowners_2",
"crates_regex::colorstring_1",
"crates_regex::commodore_0",
"crates_regex::comrak_0",
"crates_regex::conserve_0",
"crates_regex::content_blocker_0",
"crates_regex::content_blocker_1",
"crates_regex::content_blocker_10",
"crates_regex::content_blocker_11",
"crates_regex::content_blocker_12",
"crates_regex::content_blocker_13",
"crates_regex::content_blocker_2",
"crates_regex::content_blocker_3",
"crates_regex::content_blocker_4",
"crates_regex::content_blocker_5",
"crates_regex::content_blocker_6",
"crates_regex::content_blocker_7",
"crates_regex::content_blocker_8",
"crates_regex::content_blocker_9",
"crates_regex::corollary_0",
"crates_regex::corollary_1",
"crates_regex::cosmogony_0",
"crates_regex::cpp_to_rust_0",
"crates_regex::cpp_to_rust_1",
"crates_regex::cpp_to_rust_2",
"crates_regex::cpp_to_rust_3",
"crates_regex::cpp_to_rust_4",
"crates_regex::cpp_to_rust_5",
"crates_regex::cpp_to_rust_generator_0",
"crates_regex::cpp_to_rust_generator_1",
"crates_regex::cpp_to_rust_generator_2",
"crates_regex::cpp_to_rust_generator_3",
"crates_regex::cpp_to_rust_generator_4",
"crates_regex::cpp_to_rust_generator_5",
"crates_regex::cron_rs_0",
"crates_regex::d20_0",
"crates_regex::dash2html_0",
"crates_regex::dash2html_1",
"crates_regex::db_accelerate_0",
"crates_regex::db_accelerate_1",
"crates_regex::deb_version_0",
"crates_regex::debcargo_0",
"crates_regex::debcargo_1",
"crates_regex::diesel_cli_0",
"crates_regex::dishub_0",
"crates_regex::djangohashers_0",
"crates_regex::dok_0",
"crates_regex::dono_0",
"crates_regex::dono_1",
"crates_regex::dono_2",
"crates_regex::drill_0",
"crates_regex::duration_parser_0",
"crates_regex::dutree_0",
"crates_regex::dvb_0",
"crates_regex::dvb_1",
"crates_regex::dvb_2",
"crates_regex::editorconfig_0",
"crates_regex::editorconfig_1",
"crates_regex::editorconfig_2",
"crates_regex::editorconfig_3",
"crates_regex::editorconfig_4",
"crates_regex::editorconfig_5",
"crates_regex::editorconfig_6",
"crates_regex::editorconfig_7",
"crates_regex::editorconfig_8",
"crates_regex::edmunge_0",
"crates_regex::egc_0",
"crates_regex::egg_mode_text_0",
"crates_regex::eliza_0",
"crates_regex::eliza_1",
"crates_regex::eliza_2",
"crates_regex::emojicons_0",
"crates_regex::emote_0",
"crates_regex::epub_0",
"crates_regex::ethcore_logger_0",
"crates_regex::evalrs_0",
"crates_regex::evalrs_1",
"crates_regex::evalrs_2",
"crates_regex::evalrs_3",
"crates_regex::eve_0",
"crates_regex::extrahop_0",
"crates_regex::faker_0",
"crates_regex::faker_1",
"crates_regex::faker_10",
"crates_regex::faker_11",
"crates_regex::faker_2",
"crates_regex::faker_3",
"crates_regex::faker_4",
"crates_regex::faker_5",
"crates_regex::faker_6",
"crates_regex::faker_7",
"crates_regex::faker_8",
"crates_regex::faker_9",
"crates_regex::fancy_prompt_0",
"crates_regex::fancy_prompt_1",
"crates_regex::fancy_regex_0",
"crates_regex::fancy_regex_1",
"crates_regex::fancy_regex_2",
"crates_regex::fanta_0",
"crates_regex::fanta_cli_0",
"crates_regex::fanta_cli_1",
"crates_regex::fblog_0",
"crates_regex::fblog_1",
"crates_regex::feaders_0",
"crates_regex::feaders_1",
"crates_regex::feaders_2",
"crates_regex::feaders_3",
"crates_regex::feaders_4",
"crates_regex::file_logger_0",
"crates_regex::file_scanner_0",
"crates_regex::file_scanner_1",
"crates_regex::file_scanner_2",
"crates_regex::file_scanner_3",
"crates_regex::file_scanner_4",
"crates_regex::file_sniffer_0",
"crates_regex::file_sniffer_1",
"crates_regex::file_sniffer_2",
"crates_regex::file_sniffer_3",
"crates_regex::file_sniffer_4",
"crates_regex::findr_0",
"crates_regex::findr_1",
"crates_regex::findr_2",
"crates_regex::flow_0",
"crates_regex::flow_1",
"crates_regex::flow_2",
"crates_regex::flow_3",
"crates_regex::form_checker_0",
"crates_regex::form_checker_1",
"crates_regex::fractal_matrix_api_0",
"crates_regex::fritzbox_logs_0",
"crates_regex::fs_eventbridge_0",
"crates_regex::fselect_0",
"crates_regex::fselect_1",
"crates_regex::ftp_0",
"crates_regex::ftp_1",
"crates_regex::ftp_2",
"crates_regex::fungi_lang_0",
"crates_regex::gate_build_0",
"crates_regex::genact_0",
"crates_regex::genact_1",
"crates_regex::generate_nix_pkg_0",
"crates_regex::generate_nix_pkg_1",
"crates_regex::generic_dns_update_0",
"crates_regex::generic_dns_update_1",
"crates_regex::generic_dns_update_2",
"crates_regex::generic_dns_update_3",
"crates_regex::generic_dns_update_4",
"crates_regex::generic_dns_update_5",
"crates_regex::geochunk_0",
"crates_regex::ger_0",
"crates_regex::ger_1",
"crates_regex::ggp_rs_0",
"crates_regex::ggp_rs_1",
"crates_regex::git2_codecommit_0",
"crates_regex::git_find_0",
"crates_regex::git_journal_0",
"crates_regex::git_shell_enforce_directory_0",
"crates_regex::git_workarea_0",
"crates_regex::gitlab_api_0",
"crates_regex::gl_helpers_0",
"crates_regex::gl_helpers_1",
"crates_regex::glossy_codegen_0",
"crates_regex::glossy_codegen_1",
"crates_regex::glossy_codegen_2",
"crates_regex::glossy_codegen_3",
"crates_regex::glossy_codegen_4",
"crates_regex::glr_parser_0",
"crates_regex::glr_parser_1",
"crates_regex::glr_parser_2",
"crates_regex::gluster_0",
"crates_regex::gluster_1",
"crates_regex::government_id_0",
"crates_regex::graphql_idl_parser_0",
"crates_regex::graphql_idl_parser_1",
"crates_regex::graphql_idl_parser_10",
"crates_regex::graphql_idl_parser_11",
"crates_regex::graphql_idl_parser_12",
"crates_regex::graphql_idl_parser_13",
"crates_regex::graphql_idl_parser_14",
"crates_regex::graphql_idl_parser_15",
"crates_regex::graphql_idl_parser_16",
"crates_regex::graphql_idl_parser_17",
"crates_regex::graphql_idl_parser_18",
"crates_regex::graphql_idl_parser_19",
"crates_regex::graphql_idl_parser_3",
"crates_regex::graphql_idl_parser_4",
"crates_regex::graphql_idl_parser_2",
"crates_regex::graphql_idl_parser_5",
"crates_regex::graphql_idl_parser_6",
"crates_regex::graphql_idl_parser_7",
"crates_regex::graphql_idl_parser_8",
"crates_regex::graphql_idl_parser_9",
"crates_regex::grimoire_0",
"crates_regex::haikunator_0",
"crates_regex::haikunator_1",
"crates_regex::haikunator_2",
"crates_regex::haikunator_3",
"crates_regex::haikunator_4",
"crates_regex::haikunator_5",
"crates_regex::haikunator_6",
"crates_regex::handlebars_0",
"crates_regex::hoodlum_0",
"crates_regex::html2md_0",
"crates_regex::html2md_1",
"crates_regex::html2md_2",
"crates_regex::html2md_3",
"crates_regex::hueclient_0",
"crates_regex::hueclient_1",
"crates_regex::hueclient_2",
"crates_regex::hueclient_3",
"crates_regex::hyperscan_0",
"crates_regex::hyperscan_1",
"crates_regex::hyperscan_2",
"crates_regex::hyperscan_3",
"crates_regex::iban_validate_0",
"crates_regex::ignore_0",
"crates_regex::image_base64_0",
"crates_regex::image_base64_1",
"crates_regex::image_base64_2",
"crates_regex::imap_0",
"crates_regex::indradb_lib_0",
"crates_regex::ipaddress_0",
"crates_regex::ipaddress_1",
"crates_regex::ipaddress_2",
"crates_regex::iptables_0",
"crates_regex::isbnid_0",
"crates_regex::isbnid_1",
"crates_regex::ispc_0",
"crates_regex::java_properties_0",
"crates_regex::java_properties_1",
"crates_regex::java_properties_2",
"crates_regex::jieba_rs_0",
"crates_regex::jieba_rs_1",
"crates_regex::jieba_rs_2",
"crates_regex::jieba_rs_3",
"crates_regex::jieba_rs_4",
"crates_regex::jieba_rs_5",
"crates_regex::joseki_0",
"crates_regex::json_pointer_0",
"crates_regex::json_pointer_1",
"crates_regex::just_0",
"crates_regex::kailua_syntax_0",
"crates_regex::kailua_syntax_1",
"crates_regex::karaconv_0",
"crates_regex::katana_0",
"crates_regex::katana_1",
"crates_regex::katana_10",
"crates_regex::katana_11",
"crates_regex::katana_12",
"crates_regex::katana_2",
"crates_regex::katana_3",
"crates_regex::katana_4",
"crates_regex::katana_5",
"crates_regex::katana_6",
"crates_regex::katana_7",
"crates_regex::katana_8",
"crates_regex::katana_9",
"crates_regex::kbgpg_0",
"crates_regex::kefia_0",
"crates_regex::kryptos_0",
"crates_regex::kvvliveapi_0",
"crates_regex::lalrpop_0",
"crates_regex::lalrpop_snap_0",
"crates_regex::libimagentrytag_0",
"crates_regex::libimaginteraction_0",
"crates_regex::libimaginteraction_1",
"crates_regex::libimagutil_0",
"crates_regex::libimagutil_1",
"crates_regex::limonite_0",
"crates_regex::linky_0",
"crates_regex::linky_1",
"crates_regex::linux_ip_0",
"crates_regex::linux_ip_1",
"crates_regex::linux_ip_2",
"crates_regex::linux_ip_3",
"crates_regex::linux_ip_4",
"crates_regex::linux_ip_5",
"crates_regex::linux_ip_6",
"crates_regex::linux_ip_7",
"crates_regex::linux_ip_8",
"crates_regex::linux_ip_9",
"crates_regex::lit_0",
"crates_regex::lit_1",
"crates_regex::lit_2",
"crates_regex::little_boxes_0",
"crates_regex::lorikeet_0",
"crates_regex::luther_0",
"crates_regex::magnet_app_0",
"crates_regex::magnet_more_0",
"crates_regex::mallumo_0",
"crates_regex::mallumo_1",
"crates_regex::mallumo_2",
"crates_regex::markifier_0",
"crates_regex::mbutiles_0",
"crates_regex::media_filename_0",
"crates_regex::media_filename_1",
"crates_regex::media_filename_2",
"crates_regex::media_filename_3",
"crates_regex::media_filename_4",
"crates_regex::media_filename_5",
"crates_regex::media_filename_6",
"crates_regex::media_filename_7",
"crates_regex::media_filename_8",
"crates_regex::media_filename_9",
"crates_regex::migrant_lib_0",
"crates_regex::migrant_lib_1",
"crates_regex::migrant_lib_2",
"crates_regex::minifier_0",
"crates_regex::minifier_1",
"crates_regex::minifier_2",
"crates_regex::minifier_3",
"crates_regex::minifier_4",
"crates_regex::minifier_5",
"crates_regex::minifier_6",
"crates_regex::minifier_7",
"crates_regex::minifier_8",
"crates_regex::minipre_0",
"crates_regex::mob_0",
"crates_regex::monger_0",
"crates_regex::mongo_rub_0",
"crates_regex::mozversion_0",
"crates_regex::multirust_rs_0",
"crates_regex::mysql_common_0",
"crates_regex::mysql_common_1",
"crates_regex::n5_0",
"crates_regex::nail_0",
"crates_regex::nail_1",
"crates_regex::nereon_0",
"crates_regex::next_episode_0",
"crates_regex::nginx_config_0",
"crates_regex::nickel_0",
"crates_regex::nickel_1",
"crates_regex::nlp_tokenize_0",
"crates_regex::nodes_0",
"crates_regex::not_stakkr_0",
"crates_regex::nomi_0",
"crates_regex::notetxt_0",
"crates_regex::numbat_0",
"crates_regex::oatie_0",
"crates_regex::ohmers_0",
"crates_regex::ommui_string_patterns_0",
"crates_regex::ommui_string_patterns_1",
"crates_regex::opcua_types_0",
"crates_regex::opcua_types_1",
"crates_regex::open_read_later_0",
"crates_regex::orm_0",
"crates_regex::os_type_0",
"crates_regex::os_type_1",
"crates_regex::os_type_2",
"crates_regex::os_type_3",
"crates_regex::os_type_4",
"crates_regex::os_type_5",
"crates_regex::os_type_6",
"crates_regex::os_type_7",
"crates_regex::ovpnfile_0",
"crates_regex::ovpnfile_1",
"crates_regex::pact_matching_0",
"crates_regex::pact_matching_1",
"crates_regex::ovpnfile_2",
"crates_regex::pact_matching_2",
"crates_regex::pact_verifier_0",
"crates_regex::pangu_0",
"crates_regex::pangu_1",
"crates_regex::parser_haskell_0",
"crates_regex::parser_haskell_2",
"crates_regex::parser_haskell_1",
"crates_regex::parser_haskell_3",
"crates_regex::parser_haskell_4",
"crates_regex::pew_0",
"crates_regex::pew_1",
"crates_regex::phile_0",
"crates_regex::phile_1",
"crates_regex::phile_2",
"crates_regex::phone_number_0",
"crates_regex::phone_number_1",
"crates_regex::phone_number_2",
"crates_regex::phone_number_3",
"crates_regex::phonenumber_0",
"crates_regex::phonenumber_1",
"crates_regex::phonenumber_2",
"crates_regex::phonenumber_3",
"crates_regex::phonenumber_4",
"crates_regex::phonenumber_5",
"crates_regex::phonenumber_6",
"crates_regex::phonenumber_7",
"crates_regex::pinyin_0",
"crates_regex::pinyin_1",
"crates_regex::pippin_0",
"crates_regex::pippin_1",
"crates_regex::pippin_2",
"crates_regex::pippin_3",
"crates_regex::pippin_4",
"crates_regex::pippin_5",
"crates_regex::pleingres_sql_plugin_0",
"crates_regex::pnet_macros_0",
"crates_regex::po_0",
"crates_regex::poe_superfilter_0",
"crates_regex::poke_a_mango_0",
"crates_regex::polk_0",
"crates_regex::pop3_0",
"crates_regex::pop3_1",
"crates_regex::pop3_2",
"crates_regex::pop3_3",
"crates_regex::pop3_4",
"crates_regex::pop3_5",
"crates_regex::pop3_6",
"crates_regex::pop3_7",
"crates_regex::pop3_rs_0",
"crates_regex::pop3_rs_1",
"crates_regex::pop3_rs_2",
"crates_regex::pop3_rs_3",
"crates_regex::process_queue_0",
"crates_regex::pronghorn_0",
"crates_regex::protocol_ftp_client_0",
"crates_regex::protocol_ftp_client_1",
"crates_regex::protocol_ftp_client_2",
"crates_regex::protocol_ftp_client_3",
"crates_regex::protocol_ftp_client_4",
"crates_regex::protocol_ftp_client_5",
"crates_regex::protocol_ftp_client_6",
"crates_regex::pusher_0",
"crates_regex::pusher_1",
"crates_regex::qasm_0",
"crates_regex::qt_generator_0",
"crates_regex::qt_generator_1",
"crates_regex::queryst_0",
"crates_regex::queryst_1",
"crates_regex::qui_vive_0",
"crates_regex::qui_vive_1",
"crates_regex::qui_vive_2",
"crates_regex::qui_vive_3",
"crates_regex::qui_vive_4",
"crates_regex::qui_vive_5",
"crates_regex::qui_vive_6",
"crates_regex::rafy_0",
"crates_regex::rake_0",
"crates_regex::rargs_0",
"crates_regex::rargs_1",
"crates_regex::rargs_2",
"crates_regex::rargs_3",
"crates_regex::rargs_4",
"crates_regex::raven_0",
"crates_regex::reaper_0",
"crates_regex::recursive_disassembler_0",
"crates_regex::regex_cache_0",
"crates_regex::regex_cache_1",
"crates_regex::regex_cache_2",
"crates_regex::regex_cache_3",
"crates_regex::regex_cache_4",
"crates_regex::regex_decode_0",
"crates_regex::regex_decode_1",
"crates_regex::regex_decode_10",
"crates_regex::regex_decode_11",
"crates_regex::regex_decode_12",
"crates_regex::regex_decode_13",
"crates_regex::regex_decode_2",
"crates_regex::regex_decode_3",
"crates_regex::regex_decode_4",
"crates_regex::regex_decode_5",
"crates_regex::regex_decode_6",
"crates_regex::regex_decode_7",
"crates_regex::regex_decode_8",
"crates_regex::regex_decode_9",
"crates_regex::regex_dfa_0",
"crates_regex::remake_0",
"crates_regex::renvsubst_0",
"crates_regex::renvsubst_1",
"crates_regex::renvsubst_2",
"crates_regex::retdec_0",
"crates_regex::rexpect_0",
"crates_regex::rexpect_1",
"crates_regex::rexpect_2",
"crates_regex::rfc822_sanitizer_0",
"crates_regex::rfc822_sanitizer_1",
"crates_regex::ripgrep_0",
"crates_regex::riquid_0",
"crates_regex::riquid_1",
"crates_regex::risp_0",
"crates_regex::risp_1",
"crates_regex::risp_2",
"crates_regex::risp_3",
"crates_regex::rogcat_0",
"crates_regex::rogcat_1",
"crates_regex::rogcat_2",
"crates_regex::rpi_info_0",
"crates_regex::rpi_info_1",
"crates_regex::rs_jsonpath_0",
"crates_regex::rsure_0",
"crates_regex::rtag_0",
"crates_regex::rtag_1",
"crates_regex::rtag_2",
"crates_regex::rtag_3",
"crates_regex::rtow_0",
"crates_regex::ruma_identifiers_0",
"crates_regex::rumblebars_0",
"crates_regex::rumblebars_1",
"crates_regex::rumblebars_2",
"crates_regex::rumblebars_3",
"crates_regex::rumblebars_4",
"crates_regex::rural_0",
"crates_regex::rural_1",
"crates_regex::rural_2",
"crates_regex::rural_3",
"crates_regex::rusoto_credential_0",
"crates_regex::rusqbin_0",
"crates_regex::rusqbin_1",
"crates_regex::rust_enum_derive_0",
"crates_regex::rust_enum_derive_1",
"crates_regex::rust_enum_derive_2",
"crates_regex::rust_enum_derive_3",
"crates_regex::rust_inbox_0",
"crates_regex::rust_inbox_1",
"crates_regex::rust_inbox_2",
"crates_regex::rust_inbox_3",
"crates_regex::rust_inbox_4",
"crates_regex::rust_inbox_5",
"crates_regex::rust_inbox_6",
"crates_regex::rust_inbox_7",
"crates_regex::rust_inbox_8",
"crates_regex::rust_inbox_9",
"crates_regex::rust_install_0",
"crates_regex::rustache_0",
"crates_regex::rustache_lists_0",
"crates_regex::rustfilt_0",
"crates_regex::rustfmt_0",
"crates_regex::rustfmt_core_0",
"crates_regex::rustfmt_core_1",
"crates_regex::rustfmt_core_2",
"crates_regex::rustfmt_core_3",
"crates_regex::rustfmt_nightly_0",
"crates_regex::rustfmt_nightly_1",
"crates_regex::rustml_0",
"crates_regex::rustml_1",
"crates_regex::rustml_2",
"crates_regex::rustsourcebundler_0",
"crates_regex::rustsourcebundler_1",
"crates_regex::rvsim_0",
"crates_regex::rvue_0",
"crates_regex::rvue_1",
"crates_regex::rvue_2",
"crates_regex::rvue_3",
"crates_regex::rvue_4",
"crates_regex::sabisabi_0",
"crates_regex::sabisabi_1",
"crates_regex::salt_compressor_0",
"crates_regex::sassers_0",
"crates_regex::scarlet_0",
"crates_regex::screenruster_saver_fractal_0",
"crates_regex::sentiment_0",
"crates_regex::sentiment_1",
"crates_regex::sentry_0",
"crates_regex::serde_hjson_1",
"crates_regex::serde_hjson_0",
"crates_regex::serde_hjson_2",
"crates_regex::serde_odbc_0",
"crates_regex::serial_key_0",
"crates_regex::sgf_0",
"crates_regex::sgf_1",
"crates_regex::sgf_2",
"crates_regex::sgf_3",
"crates_regex::shadowsocks_0",
"crates_regex::shellwords_0",
"crates_regex::shellwords_1",
"crates_regex::shkeleton_0",
"crates_regex::shush_0",
"crates_regex::skim_0",
"crates_regex::skim_1",
"crates_regex::skim_10",
"crates_regex::skim_11",
"crates_regex::skim_12",
"crates_regex::skim_2",
"crates_regex::skim_3",
"crates_regex::skim_4",
"crates_regex::skim_5",
"crates_regex::skim_6",
"crates_regex::skim_7",
"crates_regex::skim_8",
"crates_regex::skim_9",
"crates_regex::slippy_map_tiles_0",
"crates_regex::slippy_map_tiles_1",
"crates_regex::slippy_map_tiles_2",
"crates_regex::smtp2go_0",
"crates_regex::sonos_0",
"crates_regex::space_email_api_0",
"crates_regex::spaceslugs_0",
"crates_regex::spaceslugs_1",
"crates_regex::spaceslugs_2",
"crates_regex::spaceslugs_3",
"crates_regex::split_aud_0",
"crates_regex::split_aud_1",
"crates_regex::spotrust_0",
"crates_regex::spreadsheet_textconv_0",
"crates_regex::spreadsheet_textconv_1",
"crates_regex::spreadsheet_textconv_2",
"crates_regex::ssb_common_0",
"crates_regex::ssb_common_1",
"crates_regex::ssb_common_2",
"crates_regex::stache_0",
"crates_regex::steamid_ng_0",
"crates_regex::steamid_ng_1",
"crates_regex::sterling_0",
"crates_regex::strscan_0",
"crates_regex::strscan_1",
"crates_regex::strscan_2",
"crates_regex::strscan_3",
"crates_regex::strscan_4",
"crates_regex::strukt_0",
"crates_regex::substudy_0",
"crates_regex::substudy_1",
"crates_regex::substudy_2",
"crates_regex::substudy_3",
"crates_regex::substudy_4",
"crates_regex::svgrep_0",
"crates_regex::symbolic_debuginfo_0",
"crates_regex::symbolic_minidump_0",
"crates_regex::systemfd_0",
"crates_regex::td_client_0",
"crates_regex::teensy_0",
"crates_regex::telescreen_0",
"crates_regex::tempus_fugit_0",
"crates_regex::termimage_0",
"crates_regex::thieves_cant_0",
"crates_regex::thruster_cli_0",
"crates_regex::tight_0",
"crates_regex::tight_1",
"crates_regex::timespan_0",
"crates_regex::timespan_1",
"crates_regex::timespan_2",
"crates_regex::timespan_3",
"crates_regex::timespan_4",
"crates_regex::timmy_0",
"crates_regex::timmy_1",
"crates_regex::timmy_2",
"crates_regex::timmy_3",
"crates_regex::timmy_4",
"crates_regex::tin_drummer_0",
"crates_regex::tin_drummer_1",
"crates_regex::tin_drummer_2",
"crates_regex::tin_drummer_3",
"crates_regex::tin_drummer_4",
"crates_regex::tin_drummer_5",
"crates_regex::tin_drummer_6",
"crates_regex::tin_drummer_7",
"crates_regex::tin_summer_0",
"crates_regex::tinfo_0",
"crates_regex::tinfo_1",
"crates_regex::titlecase_0",
"crates_regex::tk_carbon_0",
"crates_regex::tk_carbon_1",
"crates_regex::todo_txt_0",
"crates_regex::toml_query_0",
"crates_regex::tsm_sys_0",
"crates_regex::tweetr_0",
"crates_regex::ubiquity_0",
"crates_regex::ubiquity_1",
"crates_regex::ubiquity_2",
"crates_regex::ucd_parse_0",
"crates_regex::ultrastar_txt_0",
"crates_regex::ultrastar_txt_2",
"crates_regex::ultrastar_txt_1",
"crates_regex::ultrastar_txt_3",
"crates_regex::ultrastar_txt_4",
"crates_regex::unicode_names2_macros_0",
"crates_regex::unidiff_0",
"crates_regex::unidiff_1",
"crates_regex::unidiff_2",
"crates_regex::unidiff_3",
"crates_regex::upm_lib_0",
"crates_regex::urdf_rs_0",
"crates_regex::uritemplate_0",
"crates_regex::url_match_0",
"crates_regex::url_match_1",
"crates_regex::validator_derive_0",
"crates_regex::validator_derive_1",
"crates_regex::validator_derive_2",
"crates_regex::vat_0",
"crates_regex::vat_1",
"crates_regex::vat_10",
"crates_regex::vat_11",
"crates_regex::vat_12",
"crates_regex::vat_13",
"crates_regex::vat_14",
"crates_regex::vat_15",
"crates_regex::vat_16",
"crates_regex::vat_17",
"crates_regex::vat_18",
"crates_regex::vat_19",
"crates_regex::vat_2",
"crates_regex::vat_20",
"crates_regex::vat_21",
"crates_regex::vat_22",
"crates_regex::vat_23",
"crates_regex::vat_24",
"crates_regex::vat_25",
"crates_regex::vat_26",
"crates_regex::vat_27",
"crates_regex::vat_28",
"crates_regex::vat_29",
"crates_regex::vat_3",
"crates_regex::vat_30",
"crates_regex::vat_31",
"crates_regex::vat_32",
"crates_regex::vat_4",
"crates_regex::vat_5",
"crates_regex::vat_6",
"crates_regex::vat_7",
"crates_regex::vat_8",
"crates_regex::vat_9",
"crates_regex::verex_0",
"crates_regex::verilog_0",
"crates_regex::victoria_dom_0",
"crates_regex::vobsub_0",
"crates_regex::voidmap_0",
"crates_regex::voidmap_1",
"crates_regex::voidmap_10",
"crates_regex::voidmap_11",
"crates_regex::voidmap_12",
"crates_regex::voidmap_13",
"crates_regex::voidmap_14",
"crates_regex::voidmap_15",
"crates_regex::voidmap_16",
"crates_regex::voidmap_17",
"crates_regex::voidmap_18",
"crates_regex::voidmap_19",
"crates_regex::voidmap_2",
"crates_regex::voidmap_3",
"crates_regex::voidmap_4",
"crates_regex::voidmap_5",
"crates_regex::voidmap_6",
"crates_regex::voidmap_7",
"crates_regex::voidmap_8",
"crates_regex::voidmap_9",
"crates_regex::vterm_sys_0",
"crates_regex::waltz_0",
"crates_regex::warheadhateus_0",
"crates_regex::warheadhateus_1",
"crates_regex::warheadhateus_2",
"crates_regex::warheadhateus_3",
"crates_regex::weave_0",
"crates_regex::webgl_generator_0",
"crates_regex::webgl_generator_1",
"crates_regex::webscale_0",
"crates_regex::weld_0",
"crates_regex::weld_1",
"crates_regex::weld_10",
"crates_regex::weld_2",
"crates_regex::weld_3",
"crates_regex::weld_4",
"crates_regex::weld_5",
"crates_regex::weld_6",
"crates_regex::weld_7",
"crates_regex::weld_8",
"crates_regex::weld_9",
"crates_regex::wemo_0",
"crates_regex::wifiscanner_0",
"crates_regex::wifiscanner_1",
"crates_regex::wifiscanner_2",
"crates_regex::wikibase_0",
"crates_regex::woothee_0",
"crates_regex::woothee_1",
"crates_regex::woothee_10",
"crates_regex::woothee_11",
"crates_regex::woothee_12",
"crates_regex::woothee_13",
"crates_regex::woothee_14",
"crates_regex::woothee_15",
"crates_regex::woothee_16",
"crates_regex::woothee_17",
"crates_regex::woothee_18",
"crates_regex::woothee_19",
"crates_regex::woothee_2",
"crates_regex::woothee_20",
"crates_regex::woothee_21",
"crates_regex::woothee_22",
"crates_regex::woothee_23",
"crates_regex::woothee_24",
"crates_regex::woothee_25",
"crates_regex::woothee_26",
"crates_regex::woothee_27",
"crates_regex::woothee_28",
"crates_regex::woothee_29",
"crates_regex::woothee_3",
"crates_regex::woothee_30",
"crates_regex::woothee_31",
"crates_regex::woothee_32",
"crates_regex::woothee_33",
"crates_regex::woothee_34",
"crates_regex::woothee_35",
"crates_regex::woothee_36",
"crates_regex::woothee_37",
"crates_regex::woothee_38",
"crates_regex::woothee_39",
"crates_regex::woothee_4",
"crates_regex::woothee_40",
"crates_regex::woothee_41",
"crates_regex::woothee_42",
"crates_regex::woothee_43",
"crates_regex::woothee_5",
"crates_regex::woothee_6",
"crates_regex::woothee_7",
"crates_regex::woothee_8",
"crates_regex::woothee_9",
"crates_regex::word_replace_0",
"crates_regex::wordcount_0",
"crates_regex::yaml_0",
"crates_regex::yaml_1",
"crates_regex::yaml_10",
"crates_regex::yaml_2",
"crates_regex::yaml_3",
"crates_regex::yaml_4",
"crates_regex::yaml_5",
"crates_regex::yaml_6",
"crates_regex::yaml_7",
"crates_regex::yaml_8",
"crates_regex::yaml_9",
"crates_regex::yobot_0",
"crates_regex::yobot_1",
"crates_regex::yobot_2",
"crates_regex::yobot_3",
"crates_regex::youtube_downloader_0",
"crates_regex::yubibomb_0",
"allow_octal",
"big_empty_reps_chain_regex_fails",
"disallow_non_utf8",
"big_zero_reps_regex_fails",
"big_empty_regex_fails",
"disallow_octal",
"misc::prefix_literal_nomatch",
"misc::prefix_literal_match",
"misc::terminates",
"misc::one_literal_edge",
"oibits",
"regex_is_reasonably_small",
"oibits_regression",
"regression_fuzz::empty_any_errors_no_panic",
"shortest_match::t02",
"shortest_match::t01",
"regression_fuzz::big_regex_fails_to_compile",
"empty_alt_regex_fails"
] |
[] |
[] |
rust-lang/regex
|
2021-03-14T18:23:50Z
|
rust-lang__regex-752
|
diff --git a/tests/test_default.rs b/tests/test_default.rs
--- a/tests/test_default.rs
+++ b/tests/test_default.rs
@@ -136,3 +136,18 @@ fn oibits_regression() {
let _ = panic::catch_unwind(|| Regex::new("a").unwrap());
}
+
+// See: https://github.com/rust-lang/regex/issues/750
+#[test]
+#[cfg(target_pointer_width = "64")]
+fn regex_is_reasonably_small() {
+ use std::mem::size_of;
+
+ use regex::bytes;
+ use regex::{Regex, RegexSet};
+
+ assert_eq!(16, size_of::<Regex>());
+ assert_eq!(16, size_of::<RegexSet>());
+ assert_eq!(16, size_of::<bytes::Regex>());
+ assert_eq!(16, size_of::<bytes::RegexSet>());
+}
|
This is a dupe of #750.
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+1.4.5 (2021-03-14)
+==================
+This is a small patch release that fixes a regression in the size of a `Regex`
+in the 1.4.4 release. Prior to 1.4.4, a `Regex` was 552 bytes. In the 1.4.4
+release, it was 856 bytes due to internal changes. In this release, a `Regex`
+is now 16 bytes. In general, the size of a `Regex` was never something that was
+on my radar, but this increased size in the 1.4.4 release seems to have crossed
+a threshold and resulted in stack overflows in some programs.
+
+* [BUG #750](https://github.com/rust-lang/regex/pull/750):
+ Fixes stack overflows seemingly caused by a large `Regex` size by decreasing
+ its size.
+
+
1.4.4 (2021-03-11)
==================
This is a small patch release that contains some bug fixes. Notably, it also
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -36,7 +36,14 @@ pub struct Exec {
/// All read only state.
ro: Arc<ExecReadOnly>,
/// A pool of reusable values for the various matching engines.
- pool: Pool<ProgramCache>,
+ ///
+ /// Note that boxing this value is not strictly necessary, but it is an
+ /// easy way to ensure that T does not bloat the stack sized used by a pool
+ /// in the case where T is big. And this turns out to be the case at the
+ /// time of writing for regex's use of this pool. At the time of writing,
+ /// the size of a Regex on the stack is 856 bytes. Boxing this value
+ /// reduces that size to 16 bytes.
+ pool: Box<Pool<ProgramCache>>,
}
/// `ExecNoSync` is like `Exec`, except it embeds a reference to a cache. This
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -1446,11 +1453,11 @@ impl ExecReadOnly {
lcs_len >= 3 && lcs_len > self.dfa.prefixes.lcp().char_len()
}
- fn new_pool(ro: &Arc<ExecReadOnly>) -> Pool<ProgramCache> {
+ fn new_pool(ro: &Arc<ExecReadOnly>) -> Box<Pool<ProgramCache>> {
let ro = ro.clone();
- Pool::new(Box::new(move || {
+ Box::new(Pool::new(Box::new(move || {
AssertUnwindSafe(RefCell::new(ProgramCacheInner::new(&ro)))
- }))
+ })))
}
}
|
[
"751"
] | 752
|
1.44 triggers a stack overflow on Windows
#### What version of regex are you using?
1.44
#### Describe the bug at a high level.
Running bindgen as part of the [mozjs](https://github.com/servo/mozjs) build script triggers a stack overflow on Windows.
#### What are the steps to reproduce the behavior?
N.B. I recognize that from a reproducibility and isolation perspective, this is the worst possible testcase. I'm filing this so I don't lose track of it.
Build Servo in a Windows CI environment. Using regex 1.43 it completes, and 1.44 it encounters a stack overflow. More details on this in https://github.com/servo/servo/pull/28265.
I have not yet been able to reproduce this only building mozjs using github actions.
I verified that https://github.com/rust-lang/regex/commit/e040c1b06397a254cccd3506ee80dbe042360afd is the commit that triggers this change in behaviour in https://github.com/servo/servo/pull/28269.
|
1.4
|
951b8b93bbb669e8aa192031a7b66beaa4ea5780
|
951b8b93bbb669e8aa192031a7b66beaa4ea5780
|
[
"regex_is_reasonably_small"
] |
[
"src/lib.rs - (line 26)",
"src/lib.rs - (line 69)",
"src/re_bytes.rs - re_bytes::Replacer::by_ref (line 1140)",
"src/re_bytes.rs - re_bytes::Captures<'t>::get (line 928)",
"src/lib.rs - (line 426)",
"src/lib.rs - (line 245)",
"src/lib.rs - (line 137)",
"src/lib.rs - (line 36)",
"src/lib.rs - bytes (line 668)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 413)",
"src/re_bytes.rs - re_bytes::Regex::shortest_match (line 548)",
"src/lib.rs - (line 218)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 430)",
"src/lib.rs - (line 392)",
"src/re_bytes.rs - re_bytes::Regex::find_iter (line 179)",
"src/re_bytes.rs - re_bytes::Regex::find (line 158)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 447)",
"src/lib.rs - (line 120)",
"src/lib.rs - (line 407)",
"src/re_bytes.rs - re_bytes::Regex::splitn (line 333)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 394)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 381)",
"src/lib.rs - (line 163)",
"src/lib.rs - (line 416)",
"src/re_bytes.rs - re_bytes::Regex::split (line 307)",
"src/lib.rs - (line 95)",
"src/re_bytes.rs - re_bytes::Regex::captures (line 207)",
"src/re_set.rs - re_set::bytes::RegexSet (line 474)",
"src/re_bytes.rs - re_bytes::Regex::captures_iter (line 273)",
"src/lib.rs - bytes (line 687)",
"src/re_bytes.rs - re_bytes::Regex::is_match (line 135)",
"src/re_bytes.rs - re_bytes::Regex::captures (line 229)",
"src/re_set.rs - re_set::bytes::RegexSet::empty (line 452)",
"src/re_set.rs - re_set::bytes::RegexSet::is_match (line 466)",
"src/re_unicode.rs - re_unicode::Replacer::by_ref (line 1182)",
"src/re_set.rs - re_set::bytes::RegexSet::matches (line 465)",
"src/re_set.rs - re_set::bytes::RegexSet::new (line 458)",
"src/re_unicode.rs - re_unicode::Regex::captures_iter (line 330)",
"src/re_set.rs - re_set::unicode::RegexSet::is_match (line 437)",
"src/re_set.rs - re_set::unicode::RegexSet::empty (line 423)",
"src/re_unicode.rs - re_unicode::Regex::captures (line 264)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 434)",
"src/re_unicode.rs - re_unicode::Captures<'t>::get (line 939)",
"src/re_set.rs - re_set::unicode::RegexSet::patterns (line 428)",
"src/re_set.rs - re_set::unicode::RegexSet::matches (line 436)",
"src/re_unicode.rs - re_unicode::Regex::shortest_match (line 607)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 447)",
"src/re_set.rs - re_set::bytes::RegexSet::patterns (line 457)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 463)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 497)",
"src/re_unicode.rs - re_unicode::Regex::split (line 363)",
"src/re_set.rs - re_set::unicode::RegexSet (line 445)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 480)",
"src/re_unicode.rs - re_unicode::Regex::captures (line 286)",
"src/re_unicode.rs - re_unicode::Regex (line 106)",
"src/re_unicode.rs - re_unicode::Regex::splitn (line 387)",
"src/re_unicode.rs - re_unicode::Regex::find_iter (line 236)",
"src/re_set.rs - re_set::unicode::RegexSet::new (line 429)",
"src/re_unicode.rs - re_unicode::Regex::find (line 214)",
"src/re_unicode.rs - re_unicode::Regex::is_match (line 191)",
"api::capture_index_lifetime",
"api::capture_index",
"allow_octal",
"api::capture_misc",
"api::capture_index_panic_name - should panic",
"api::capture_names",
"api::capture_index_panic_usize - should panic",
"api::empty_match_captures_iter",
"api::empty_regex_empty_match",
"api::empty_match_find_iter",
"api::empty_regex_nonempty_match",
"api::expand1",
"api::expand10",
"api::expand2",
"api::expand3",
"api::expand4",
"api::expand5",
"api::expand8",
"api::expand6",
"api::expand7",
"api::expand9",
"api::expand_name1",
"api::expand_name10",
"api::expand_name11",
"api::expand_name2",
"api::expand_name3",
"api::expand_name4",
"api::expand_name5",
"api::expand_name6",
"api::expand_name7",
"api::expand_name8",
"api::expand_name9",
"api::first_range_starts_with_left_bracket",
"api::many_sequential_zero_length_match",
"api::one_zero_length_match",
"api::many_zero_length_match",
"api::quoted_bracket_set",
"api::regex_string",
"api_str::match_as_str",
"api::split1",
"api::split2",
"api::split3",
"api::split_empty",
"crazy::ascii_literal",
"api::range_ends_with_escape",
"crazy::match_date2",
"api::splitn_trailing_separator",
"crazy::greedy_many_many",
"api::split_trailing_blanks",
"api::splitn_at_limit",
"api::splitn_above_limit",
"crazy::match_date1",
"api::splitn_trailing_blank",
"api::splitn_below_limit",
"api::splitn_empty",
"api::split_none",
"api::split_trailing_blank",
"api::splitn_zero_limit",
"api_str::empty_match_unicode_find_iter",
"crazy::greedy_one_many_optional",
"crazy::greedy_range_many",
"crazy::match_empty13",
"crazy::match_email",
"crazy::match_empty12",
"crazy::match_email_big",
"api_str::empty_match_unicode_captures_iter",
"crazy::lazy_one_many_optional",
"crazy::match_empty19",
"api::sub_capture_matches",
"crazy::match_date3",
"crazy::lazy_one_many_many",
"crazy::greedy_one_many_many",
"crazy::match_empty1",
"crazy::match_empty10",
"crazy::match_empty18",
"crazy::match_empty14",
"crazy::match_empty15",
"crazy::lazy_many_many",
"crazy::match_empty22",
"crazy::match_empty8",
"crazy::lazy_many_optional",
"crazy::match_empty11",
"crazy::match_empty2",
"crazy::match_empty9",
"crazy::match_empty3",
"crazy::match_empty16",
"crazy::greedy_range_min_many",
"crazy::match_empty17",
"crazy::match_start_end_empty_many_1",
"crazy::match_email_not",
"crazy::lazy_range_many",
"crazy::match_empty20",
"crazy::match_empty6",
"crazy::match_float3",
"crazy::match_start_end_empty_many_2",
"crazy::greedy_many_optional",
"crazy::match_empty5",
"crazy::lazy_range_min_many",
"crazy::match_empty21",
"crazy::match_empty7",
"crazy::negclass_comma_space",
"crazy::negclass_letter_space",
"crazy::negclass_space",
"crazy::match_empty23",
"crazy::match_start_end_empty_rev",
"crazy::negclass_ascii",
"disallow_non_utf8",
"flags::match_flag_case",
"crazy::match_empty4",
"crazy::match_start_end_empty_rep_rev",
"crazy::negclass_space_comma",
"crazy::match_start_end_empty",
"crazy::match_float1",
"crazy::match_float2",
"disallow_octal",
"flags::match_flag_weird_case",
"crazy::match_start_end_empty_rep",
"crazy::match_float4",
"crazy::negclass_letter_comma",
"crazy::negclass_letters",
"crazy::negclass_comma",
"crazy::match_ranges",
"crazy::match_ranges_not",
"flags::match_flag_ungreedy_greedy",
"flags::match_flag_weird_case_not",
"flags::match_flag_case_dotnl",
"fowler::match_basic_101",
"flags::match_flag_multi",
"fowler::match_basic_111",
"fowler::match_basic_113",
"fowler::match_basic_107",
"fowler::match_basic_115",
"fowler::match_basic_100",
"fowler::match_basic_103",
"fowler::match_basic_105",
"fowler::match_basic_116",
"fowler::match_basic_102",
"fowler::match_basic_104",
"fowler::match_basic_10",
"fowler::match_basic_112",
"flags::match_flag_ungreedy",
"flags::match_flag_case_dotnl_toggle_ok",
"fowler::match_basic_118",
"fowler::match_basic_121",
"fowler::match_basic_128",
"fowler::match_basic_129",
"fowler::match_basic_12",
"fowler::match_basic_132",
"flags::match_flag_case_dotnl_toggle",
"flags::match_flag_case_dotnl_toggle_not",
"fowler::match_basic_106",
"fowler::match_basic_114",
"fowler::match_basic_119",
"fowler::match_basic_131",
"fowler::match_basic_138",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_108",
"fowler::match_basic_125",
"fowler::match_basic_133",
"fowler::match_basic_139",
"fowler::match_basic_142",
"fowler::match_basic_145",
"fowler::match_basic_109",
"fowler::match_basic_120",
"fowler::match_basic_110",
"fowler::match_basic_124",
"fowler::match_basic_141",
"fowler::match_basic_148",
"fowler::match_basic_122",
"fowler::match_basic_123",
"fowler::match_basic_134",
"fowler::match_basic_137",
"fowler::match_basic_147",
"fowler::match_basic_126",
"fowler::match_basic_117",
"fowler::match_basic_149",
"fowler::match_basic_150",
"fowler::match_basic_155",
"fowler::match_basic_157",
"fowler::match_basic_146",
"fowler::match_basic_140",
"fowler::match_basic_144",
"fowler::match_basic_15",
"fowler::match_basic_156",
"fowler::match_basic_158",
"fowler::match_basic_16",
"fowler::match_basic_165",
"fowler::match_basic_159",
"fowler::match_basic_153",
"fowler::match_basic_166",
"fowler::match_basic_135",
"fowler::match_basic_152",
"fowler::match_basic_168",
"fowler::match_basic_172",
"fowler::match_basic_154",
"fowler::match_basic_17",
"fowler::match_basic_167",
"fowler::match_basic_160",
"fowler::match_basic_161",
"fowler::match_basic_171",
"fowler::match_basic_169",
"fowler::match_basic_18",
"fowler::match_basic_151",
"fowler::match_basic_163",
"fowler::match_basic_187",
"fowler::match_basic_162",
"fowler::match_basic_179",
"fowler::match_basic_176",
"fowler::match_basic_192",
"fowler::match_basic_19",
"fowler::match_basic_164",
"fowler::match_basic_180",
"fowler::match_basic_194",
"fowler::match_basic_196",
"fowler::match_basic_188",
"fowler::match_basic_173",
"fowler::match_basic_174",
"fowler::match_basic_193",
"fowler::match_basic_20",
"fowler::match_basic_182",
"fowler::match_basic_181",
"fowler::match_basic_185",
"fowler::match_basic_197",
"fowler::match_basic_175",
"fowler::match_basic_183",
"fowler::match_basic_170",
"fowler::match_basic_191",
"fowler::match_basic_189",
"fowler::match_basic_184",
"fowler::match_basic_203",
"fowler::match_basic_204",
"fowler::match_basic_178",
"fowler::match_basic_195",
"fowler::match_basic_201",
"fowler::match_basic_199",
"fowler::match_basic_206",
"fowler::match_basic_186",
"fowler::match_basic_198",
"fowler::match_basic_21",
"fowler::match_basic_212",
"fowler::match_basic_177",
"fowler::match_basic_190",
"fowler::match_basic_205",
"fowler::match_basic_202",
"fowler::match_basic_200",
"fowler::match_basic_211",
"fowler::match_basic_210",
"fowler::match_basic_215",
"fowler::match_basic_217",
"fowler::match_basic_216",
"fowler::match_basic_22",
"fowler::match_basic_207",
"fowler::match_basic_221",
"fowler::match_basic_3",
"fowler::match_basic_26",
"fowler::match_basic_27",
"fowler::match_basic_4",
"fowler::match_basic_219",
"fowler::match_basic_218",
"fowler::match_basic_209",
"fowler::match_basic_30",
"fowler::match_basic_35",
"fowler::match_basic_39",
"fowler::match_basic_40",
"fowler::match_basic_34",
"fowler::match_basic_28",
"fowler::match_basic_208",
"fowler::match_basic_23",
"fowler::match_basic_214",
"fowler::match_basic_24",
"fowler::match_basic_33",
"fowler::match_basic_37",
"fowler::match_basic_47",
"fowler::match_basic_36",
"fowler::match_basic_38",
"fowler::match_basic_29",
"fowler::match_basic_44",
"fowler::match_basic_32",
"fowler::match_basic_25",
"fowler::match_basic_43",
"fowler::match_basic_46",
"fowler::match_basic_45",
"fowler::match_basic_220",
"fowler::match_basic_42",
"fowler::match_basic_213",
"fowler::match_basic_41",
"fowler::match_basic_49",
"fowler::match_basic_53",
"fowler::match_basic_59",
"fowler::match_basic_52",
"fowler::match_basic_48",
"fowler::match_basic_5",
"fowler::match_basic_66",
"fowler::match_basic_73",
"fowler::match_basic_50",
"fowler::match_basic_54",
"fowler::match_basic_55",
"fowler::match_basic_68",
"fowler::match_basic_65",
"fowler::match_basic_58",
"fowler::match_basic_69",
"fowler::match_basic_70",
"fowler::match_basic_57",
"fowler::match_basic_51",
"fowler::match_basic_56",
"fowler::match_basic_86",
"fowler::match_basic_77",
"fowler::match_basic_89",
"fowler::match_basic_81",
"fowler::match_basic_79",
"fowler::match_basic_67",
"fowler::match_basic_6",
"fowler::match_basic_83",
"fowler::match_basic_85",
"fowler::match_basic_7",
"fowler::match_basic_71",
"fowler::match_basic_84",
"fowler::match_basic_72",
"fowler::match_basic_88",
"fowler::match_basic_94",
"fowler::match_basic_97",
"fowler::match_basic_98",
"fowler::match_nullsubexpr_12",
"fowler::match_nullsubexpr_13",
"fowler::match_basic_93",
"fowler::match_basic_87",
"fowler::match_basic_76",
"fowler::match_basic_90",
"fowler::match_basic_78",
"fowler::match_basic_99",
"fowler::match_basic_92",
"fowler::match_basic_9",
"fowler::match_basic_96",
"fowler::match_nullsubexpr_15",
"fowler::match_nullsubexpr_16",
"fowler::match_basic_95",
"fowler::match_basic_91",
"fowler::match_basic_80",
"fowler::match_nullsubexpr_10",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_18",
"fowler::match_nullsubexpr_19",
"fowler::match_nullsubexpr_30",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_34",
"fowler::match_nullsubexpr_43",
"fowler::match_nullsubexpr_14",
"fowler::match_nullsubexpr_33",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_45",
"fowler::match_nullsubexpr_74",
"fowler::match_nullsubexpr_77",
"fowler::match_nullsubexpr_8",
"fowler::match_nullsubexpr_79",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_78",
"fowler::match_nullsubexpr_71",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_7",
"fowler::match_nullsubexpr_69",
"fowler::match_nullsubexpr_70",
"fowler::match_repetition_112",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_9",
"fowler::match_repetition_106",
"fowler::match_basic_74",
"fowler::match_repetition_128",
"fowler::match_repetition_11",
"fowler::match_repetition_104",
"fowler::match_repetition_136",
"fowler::match_repetition_10",
"fowler::match_repetition_126",
"fowler::match_repetition_149",
"fowler::match_repetition_102",
"fowler::match_repetition_147",
"fowler::match_repetition_100",
"fowler::match_repetition_130",
"fowler::match_repetition_129",
"fowler::match_repetition_110",
"fowler::match_repetition_143",
"fowler::match_repetition_159",
"fowler::match_repetition_115",
"fowler::match_repetition_108",
"fowler::match_repetition_14",
"fowler::match_repetition_158",
"fowler::match_repetition_131",
"fowler::match_repetition_134",
"fowler::match_repetition_145",
"fowler::match_repetition_137",
"fowler::match_repetition_132",
"fowler::match_repetition_16",
"fowler::match_repetition_18",
"fowler::match_repetition_150",
"fowler::match_repetition_15",
"fowler::match_repetition_28",
"fowler::match_repetition_127",
"fowler::match_repetition_163",
"fowler::match_repetition_31",
"fowler::match_repetition_34",
"fowler::match_repetition_35",
"fowler::match_repetition_161",
"fowler::match_repetition_133",
"fowler::match_repetition_135",
"fowler::match_repetition_114",
"fowler::match_repetition_38",
"fowler::match_basic_75",
"fowler::match_repetition_12",
"fowler::match_repetition_21",
"fowler::match_repetition_24",
"fowler::match_repetition_30",
"fowler::match_repetition_36",
"fowler::match_repetition_20",
"fowler::match_repetition_46",
"fowler::match_repetition_152",
"fowler::match_repetition_156",
"fowler::match_repetition_32",
"fowler::match_repetition_154",
"fowler::match_repetition_25",
"fowler::match_repetition_44",
"fowler::match_repetition_40",
"fowler::match_repetition_50",
"fowler::match_repetition_61",
"fowler::match_repetition_22",
"fowler::match_repetition_54",
"fowler::match_repetition_70",
"fowler::match_repetition_42",
"fowler::match_repetition_52",
"fowler::match_repetition_83",
"fowler::match_repetition_53",
"fowler::match_repetition_90",
"fowler::match_repetition_64",
"fowler::match_repetition_57",
"fowler::match_repetition_63",
"fowler::match_repetition_73",
"fowler::match_repetition_68",
"fowler::match_repetition_75",
"fowler::match_repetition_56",
"fowler::match_repetition_76",
"fowler::match_repetition_95",
"fowler::match_repetition_26",
"fowler::match_repetition_41",
"fowler::match_repetition_59",
"fowler::match_repetition_91",
"fowler::match_repetition_67",
"fowler::match_repetition_92",
"fowler::match_repetition_79",
"fowler::match_repetition_80",
"fowler::match_repetition_94",
"fowler::match_repetition_96",
"fowler::match_repetition_47",
"fowler::match_repetition_65",
"misc::one_literal_edge",
"misc::prefix_literal_match",
"fowler::match_repetition_93",
"fowler::match_repetition_81",
"misc::terminates",
"misc::prefix_literal_nomatch",
"multiline::match_multi_rep_13",
"fowler::match_repetition_77",
"multiline::match_multi_rep_11",
"multiline::match_multi_rep_15",
"multiline::match_multi_rep_16",
"multiline::match_multi_1",
"fowler::match_repetition_97",
"multiline::match_multi_2",
"multiline::match_multi_5",
"multiline::match_multi_9",
"multiline::match_multi_3",
"multiline::match_multi_6",
"multiline::match_multi_rep_14",
"fowler::match_repetition_98",
"multiline::match_multi_rep_10",
"multiline::match_multi_rep_17",
"multiline::match_multi_rep_9",
"multiline::match_multi_rep_8",
"multiline::match_multi_4",
"multiline::match_multi_rep_1",
"multiline::match_multi_rep_12",
"multiline::match_multi_rep_4",
"multiline::match_multi_rep_2",
"multiline::match_multi_7",
"multiline::match_multi_8",
"noparse::fail_bad_flag",
"multiline::match_multi_rep_3",
"multiline::match_multi_rep_6",
"noparse::fail_class_no_begin",
"noparse::fail_bad_capture_name",
"multiline::match_multi_rep_5",
"multiline::match_multi_rep_7",
"noparse::fail_class_no_end",
"noparse::fail_class_incomplete",
"noparse::fail_class_no_boundary",
"noparse::fail_class_not_closed",
"noparse::fail_close_paren",
"noparse::fail_counted_decreasing",
"noparse::fail_double_neg",
"noparse::fail_flag_empty",
"noparse::fail_counted_no_close",
"noparse::fail_hex_long_digits",
"noparse::fail_counted_nonnegative",
"noparse::fail_incomplete_escape",
"noparse::fail_hex_digit",
"noparse::fail_unfinished_cap",
"noparse::fail_flag_bad",
"noparse::fail_dupe_named",
"noparse::fail_no_repeat_arg",
"noparse::fail_open_paren",
"regression::anchored_prefix2",
"noparse::fail_invalid_range",
"oibits",
"noparse::fail_empty_capture_name",
"noparse::fail_hex_short",
"noparse::fail_neg_empty",
"noparse::fail_range_end_no_class",
"noparse::fail_range_end_no_end",
"regression::captures_after_dfa_premature_end3",
"noparse::fail_unfinished_escape",
"oibits_regression",
"regression::empty_group_match",
"regression::invalid_regexes_no_crash",
"regression::endl_or_wb",
"regression::literal_panic",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"noparse::fail_range_end_no_boundary",
"regression::captures_after_dfa_premature_end1",
"regression::anchored_prefix3",
"regression::anchored_prefix1",
"regression::empty_group_find",
"regression::ahocorasick1",
"regression::partial_anchor",
"regression::partial_anchor_alternate_begin",
"regression::partial_anchor_alternate_end",
"noparse::fail_range_end_no_begin",
"noparse::fail_octal_digit",
"regression::blank_matches_nothing_between_space_and_tab",
"regression::lits_unambiguous1",
"regression::lits_unambiguous2",
"regression::regression_alt_in_alt1",
"regression::regression_ascii_word_underscore",
"regression::regression_invalid_flags_expression",
"regression::captures_after_dfa_premature_end2",
"regression::many_alternates",
"regression::reverse_suffix1",
"regression::reverse_suffix3",
"regression::regression_alt_in_alt2",
"regression::regression_leftmost_first_prefix",
"regression::regression_captures_rep",
"regression::regression_unsorted_binary_search_1",
"regression::strange_anchor_non_complete_prefix",
"regression::reverse_suffix2",
"regression_fuzz::empty_any_errors_no_panic",
"regression::y_or_endl",
"regression::regression_invalid_repetition_expr",
"replace::impl_cow_str_owned",
"replace::all",
"replace::groups",
"regression::strange_anchor_non_complete_suffix",
"replace::closure_returning_reference",
"replace::impl_cow_slice_owned",
"replace::capture_longest_possible_name",
"regression::zero_or_end",
"replace::closure_returning_value",
"replace::impl_cow_str_borrowed_ref",
"replace::named",
"replace::impl_vec_u8_ref",
"replace::impl_cow_slice_borrowed",
"replace::impl_cow_slice_borrowed_ref",
"regression::regression_unsorted_binary_search_2",
"replace::literal_dollar1",
"replace::impl_cow_str_borrowed",
"replace::impl_cow_str_owned_ref",
"replace::impl_string",
"replace::double_dollar",
"replace::match_at_start_replace_with_empty",
"replace::impl_vec_u8",
"replace::plus",
"searcher::searcher_empty_regex_empty_haystack",
"searcher::searcher_many_zero_length_matches",
"searcher::searcher_no_match",
"replace::impl_cow_slice_owned_ref",
"replace::impl_string_ref",
"replace::no_expand2",
"replace::number_hypen",
"searcher::searcher_empty_haystack",
"replace::first",
"searcher::searcher_two_non_adjacent_matches",
"searcher::searcher_one_match",
"searcher::searcher_one_zero_length_matches",
"searcher::searcher_unicode",
"replace::single_empty_match",
"replace::trim",
"set::len_and_empty",
"searcher::searcher_reject_first",
"searcher::searcher_two_adjacent_matches",
"replace::no_expand1",
"replace::literal_dollar2",
"searcher::searcher_empty_regex",
"set::nset3",
"set::set11",
"set::set17",
"set::set1",
"set::get_set_patterns",
"set::nset1",
"replace::simple_expand",
"set::set15",
"set::set4",
"set::setempty2",
"set::set5",
"set::set16",
"set::set10",
"set::set18",
"set::nset2",
"set::set2",
"set::nset4",
"set::regression_subsequent_matches",
"set::set13",
"set::set14",
"set::set6",
"set::set3",
"set::set12",
"suffix_reverse::t03",
"suffix_reverse::t05",
"set::setempty1",
"set::setempty4",
"suffix_reverse::t02",
"suffix_reverse::t04",
"suffix_reverse::t06",
"set::setempty3",
"set::set7",
"set::setempty5",
"suffix_reverse::t01",
"shortest_match::t01",
"set::setempty9",
"set::setempty6",
"set::set8",
"shortest_match::t02",
"set::setempty8",
"set::set9",
"set::setempty7",
"crazy::nest_limit_makes_it_parse",
"noparse::fail_too_big",
"regression::regression_many_repeat_stack_overflow",
"crazy::dfa_handles_pathological_case",
"bytes::case_ascii_class",
"bytes::negate_not_unicode",
"bytes::perl_w_ascii",
"bytes::null_bytes",
"bytes::dotstar_prefix_not_unicode1",
"bytes::dotstar_prefix_not_unicode2",
"bytes::perl_s_ascii",
"bytes::case_ascii_one",
"bytes::negate_unicode",
"bytes::ascii_boundary_no_capture",
"bytes::negated_full_byte_range",
"bytes::word_not_boundary",
"bytes::end_not_wb",
"bytes::case_not_unicode",
"bytes::word_boundary_ascii1",
"bytes::word_boundary",
"bytes::perl_d_ascii",
"bytes::invalidutf8_anchor3",
"bytes::word_boundary_ascii2",
"bytes::invalidutf8_anchor1",
"bytes::ascii_boundary_capture",
"bytes::mixed1",
"bytes::invalidutf8_anchor2",
"invalid_utf8_nfa3",
"invalid_utf8_nfa1",
"invalid_utf8_nfa4",
"invalid_utf8_nfa2",
"regression::split_on_word_boundary",
"regression::flags_are_unset",
"regression::regression_nfa_stops1",
"regression::regression_negated_char_class_1",
"regression::regression_negated_char_class_2",
"regression::word_boundary_dfa",
"regression::wb_start_x",
"regression::uni_case_lower_nocase_flag",
"unicode::uni_class_gcb_prepend",
"unicode::uni_class_gcb_ri2",
"unicode::uni_case",
"unicode::uni_class_gcb_ri1",
"unicode::uni_boundary_none",
"unicode::uni_boundary_ogham",
"unicode::uni_class_gencat_format",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gcb_ri3",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gencat_format_abbrev2",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gencat_format_abbrev1",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_class_gencat_decimal_numer",
"unicode::uni_class_gencat_cased_letter",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_class_gencat_private_use",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gcb_lvt",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_prop_picto2",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_class_gencat_number",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_gencat_math",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_plus",
"unicode::uni_class_sb3",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_gencat_symbol",
"unicode::uni_class_wb1",
"unicode::uni_literal",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_sb5",
"unicode::uni_literal_plus",
"unicode::uni_not_class_neg",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_wb2",
"unicode::uni_perl_d",
"unicode::uni_class_wb4",
"unicode::uni_mixed",
"unicode::uni_class_sb4",
"unicode::uni_one",
"unicode::uni_not",
"unicode::uni_perl_d_neg",
"unicode::uni_not_boundary_none",
"unicode::uni_literal_casei_plus",
"unicode::uni_class_wb3",
"unicode::uni_class_wb5",
"unicode::uni_case_upper",
"unicode::uni_not_boundary_ogham",
"unicode::uni_perl_s",
"unicode::uni_class_gencat_uppercase_letter",
"word_boundary::nb12",
"unicode::uni_perl_d_not",
"word_boundary::nb19",
"unicode::uni_class_sb2",
"word_boundary::nb13",
"word_boundary::nb14",
"word_boundary::nb17",
"word_boundary::nb11",
"word_boundary::nb16",
"word_boundary::nb1",
"word_boundary::nb10",
"unicode::uni_perl_s_neg",
"unicode::uni_perl_s_not",
"word_boundary::nb20",
"word_boundary::nb15",
"word_boundary::nb28",
"word_boundary::nb2",
"word_boundary::nb18",
"word_boundary::nb27",
"word_boundary::nb21",
"word_boundary::nb25",
"word_boundary::nb26",
"word_boundary::nb23",
"word_boundary::nb29",
"word_boundary::nb22",
"word_boundary::nb24",
"word_boundary::nb36",
"word_boundary::nb3",
"unicode::uni_class_gencat_lowercase_letter",
"word_boundary::nb30",
"word_boundary::nb35",
"word_boundary::nb31",
"word_boundary::nb32",
"word_boundary::nb38",
"word_boundary::nb5",
"word_boundary::nb7",
"word_boundary::nb37",
"word_boundary::nb33",
"word_boundary::nb34",
"word_boundary::nb39",
"word_boundary::nb4",
"word_boundary::unicode1",
"word_boundary::wb14",
"word_boundary::nb6",
"word_boundary::nb8",
"word_boundary::nb9",
"word_boundary::wb13",
"word_boundary::wb11",
"word_boundary::wb12",
"word_boundary::unicode2",
"word_boundary::wb2",
"word_boundary::wb1",
"unicode::uni_not_class",
"unicode::uni_case_lower",
"word_boundary::wb23",
"word_boundary::wb16",
"word_boundary::wb18",
"word_boundary::wb26",
"word_boundary::wb15",
"word_boundary::wb10",
"word_boundary::wb24",
"word_boundary::wb25",
"word_boundary::wb20",
"word_boundary::wb17",
"word_boundary::wb22",
"word_boundary::wb28",
"word_boundary::wb29",
"unicode::uni_class_gencat_letter",
"word_boundary::wb3",
"word_boundary::wb31",
"unicode::uni_class_gencat_other",
"word_boundary::wb19",
"word_boundary::wb27",
"word_boundary::wb30",
"unicode::uni_case_upper_nocase",
"unicode::uni_class_sb1",
"word_boundary::wb37",
"word_boundary::wb21",
"word_boundary::wb38",
"word_boundary::wb34",
"word_boundary::wb35",
"unicode::uni_class_gencat_other_letter",
"word_boundary::wb4",
"word_boundary::wb39",
"word_boundary::wb7",
"word_boundary::wb32",
"word_boundary::wb36",
"word_boundary_unicode::unicode2",
"word_boundary::wb6",
"word_boundary_unicode::ascii1",
"word_boundary::wb41",
"word_boundary::wb33",
"word_boundary::wb9",
"word_boundary::wb8",
"word_boundary::wb5",
"word_boundary_unicode::unicode1",
"word_boundary::wb40",
"unicode::uni_class_gencat_unassigned",
"unicode::uni_perl_w_neg",
"unicode::uni_perl_w_not",
"unicode::uni_perl_w",
"bytes::word_boundary_unicode",
"bytes::perl_s_unicode",
"bytes::word_not_boundary_unicode",
"bytes::case_unicode",
"bytes::perl_d_unicode",
"bytes::perl_w_unicode"
] |
[] |
[] |
rust-lang/regex
|
2020-01-30T22:43:04Z
|
rust-lang__regex-641
|
diff --git a/regex-syntax/src/hir/translate.rs b/regex-syntax/src/hir/translate.rs
--- a/regex-syntax/src/hir/translate.rs
+++ b/regex-syntax/src/hir/translate.rs
@@ -1641,6 +1644,20 @@ mod tests {
hir_lit("β"),
])
);
+ assert_eq!(
+ t("(?:(?i-u)a)b"),
+ hir_cat(vec![
+ hir_group_nocap(hir_bclass(&[(b'A', b'A'), (b'a', b'a')])),
+ hir_lit("b"),
+ ])
+ );
+ assert_eq!(
+ t("((?i-u)a)b"),
+ hir_cat(vec![
+ hir_group(1, hir_bclass(&[(b'A', b'A'), (b'a', b'a')])),
+ hir_lit("b"),
+ ])
+ );
#[cfg(feature = "unicode-case")]
assert_eq!(
t("(?i)(?-i:a)a"),
diff --git a/tests/regression.rs b/tests/regression.rs
--- a/tests/regression.rs
+++ b/tests/regression.rs
@@ -199,3 +199,14 @@ fn regression_nfa_stops1() {
let re = ::regex::bytes::Regex::new(r"\bs(?:[ab])").unwrap();
assert_eq!(0, re.find_iter(b"s\xE4").count());
}
+
+// See: https://github.com/rust-lang/regex/issues/640
+#[cfg(feature = "unicode-case")]
+matiter!(
+ flags_are_unset,
+ r"((?i)foo)|Bar",
+ "foo Foo bar Bar",
+ (0, 3),
+ (4, 7),
+ (12, 15)
+);
|
diff --git a/regex-syntax/src/hir/translate.rs b/regex-syntax/src/hir/translate.rs
--- a/regex-syntax/src/hir/translate.rs
+++ b/regex-syntax/src/hir/translate.rs
@@ -159,18 +159,19 @@ enum HirFrame {
/// indicated by parentheses (including non-capturing groups). It is popped
/// upon leaving a group.
Group {
- /// The old active flags, if any, when this group was opened.
+ /// The old active flags when this group was opened.
///
/// If this group sets flags, then the new active flags are set to the
/// result of merging the old flags with the flags introduced by this
- /// group.
+ /// group. If the group doesn't set any flags, then this is simply
+ /// equivalent to whatever flags were set when the group was opened.
///
/// When this group is popped, the active flags should be restored to
/// the flags set here.
///
/// The "active" flags correspond to whatever flags are set in the
/// Translator.
- old_flags: Option<Flags>,
+ old_flags: Flags,
},
/// This is pushed whenever a concatenation is observed. After visiting
/// every sub-expression in the concatenation, the translator's stack is
diff --git a/regex-syntax/src/hir/translate.rs b/regex-syntax/src/hir/translate.rs
--- a/regex-syntax/src/hir/translate.rs
+++ b/regex-syntax/src/hir/translate.rs
@@ -219,8 +220,8 @@ impl HirFrame {
/// Assert that the current stack frame is a group indicator and return
/// its corresponding flags (the flags that were active at the time the
- /// group was entered) if they exist.
- fn unwrap_group(self) -> Option<Flags> {
+ /// group was entered).
+ fn unwrap_group(self) -> Flags {
match self {
HirFrame::Group { old_flags } => old_flags,
_ => {
diff --git a/regex-syntax/src/hir/translate.rs b/regex-syntax/src/hir/translate.rs
--- a/regex-syntax/src/hir/translate.rs
+++ b/regex-syntax/src/hir/translate.rs
@@ -252,8 +253,11 @@ impl<'t, 'p> Visitor for TranslatorI<'t, 'p> {
}
}
Ast::Group(ref x) => {
- let old_flags = x.flags().map(|ast| self.set_flags(ast));
- self.push(HirFrame::Group { old_flags: old_flags });
+ let old_flags = x
+ .flags()
+ .map(|ast| self.set_flags(ast))
+ .unwrap_or_else(|| self.flags());
+ self.push(HirFrame::Group { old_flags });
}
Ast::Concat(ref x) if x.asts.is_empty() => {}
Ast::Concat(_) => {
diff --git a/regex-syntax/src/hir/translate.rs b/regex-syntax/src/hir/translate.rs
--- a/regex-syntax/src/hir/translate.rs
+++ b/regex-syntax/src/hir/translate.rs
@@ -350,9 +354,8 @@ impl<'t, 'p> Visitor for TranslatorI<'t, 'p> {
}
Ast::Group(ref x) => {
let expr = self.pop().unwrap().unwrap_expr();
- if let Some(flags) = self.pop().unwrap().unwrap_group() {
- self.trans().flags.set(flags);
- }
+ let old_flags = self.pop().unwrap().unwrap_group();
+ self.trans().flags.set(old_flags);
self.push(HirFrame::Expr(self.hir_group(x, expr)));
}
Ast::Concat(_) => {
|
[
"640"
] | 641
|
Flag effect remains active outside of current group
The [`regex` documentation](https://docs.rs/regex/1.3.1/regex/#grouping-and-flags) suggests that flags (`(?foo)`) only apply within the 'current group', which would match the behaviour of Perl and PCRE, but that doesn't seem to be the case:
```
# With PCRE
% printf '%s\n' foo Foo bar Bar | \rg -sP '((?i)foo)|Bar'
foo
Foo
Bar
# With Rust regex
% printf '%s\n' foo Foo bar Bar | \rg -s '((?i)foo)|Bar'
foo
Foo
bar # ???
Bar
```
(My test case uses ripgrep 11.0.2 from Homebrew, but i've confirmed that it works the same way if i compile a simple test app with `regex` 1.3.3.)
Am i misunderstanding something, or is this wrong?
|
1.3
|
2a8ddd0b36095d3810f3556627cd59c5014edd01
|
96456ddcc91d8d2e98d4b6f32ebd052d879d6a67
|
[
"regression::flags_are_unset"
] |
[
"src/lib.rs - (line 26)",
"src/lib.rs - (line 69)",
"src/re_bytes.rs - re_bytes::Replacer::by_ref (line 1105)",
"src/lib.rs - (line 244)",
"src/lib.rs - (line 36)",
"src/lib.rs - (line 425)",
"src/lib.rs - (line 406)",
"src/lib.rs - (line 120)",
"src/lib.rs - (line 217)",
"src/lib.rs - bytes (line 668)",
"src/re_set.rs - re_set::bytes::RegexSet (line 451)",
"src/lib.rs - (line 415)",
"src/re_bytes.rs - re_bytes::Regex::captures (line 227)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 379)",
"src/re_bytes.rs - re_bytes::Regex::captures (line 205)",
"src/lib.rs - (line 137)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 428)",
"src/re_bytes.rs - re_bytes::Regex::captures_iter (line 271)",
"src/re_bytes.rs - re_bytes::Regex::find (line 156)",
"src/lib.rs - (line 391)",
"src/re_bytes.rs - re_bytes::Regex::splitn (line 331)",
"src/re_bytes.rs - re_bytes::Regex::split (line 305)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 392)",
"src/lib.rs - (line 162)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 445)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 411)",
"src/re_bytes.rs - re_bytes::Captures<'t>::get (line 901)",
"src/re_bytes.rs - re_bytes::Regex::shortest_match (line 546)",
"src/lib.rs - bytes (line 687)",
"src/re_bytes.rs - re_bytes::Regex::is_match (line 133)",
"src/re_bytes.rs - re_bytes::Regex::find_iter (line 177)",
"src/lib.rs - (line 95)",
"src/re_set.rs - re_set::bytes::RegexSet::is_match (line 443)",
"src/re_unicode.rs - re_unicode::Replacer::by_ref (line 1147)",
"src/re_set.rs - re_set::bytes::RegexSet::matches (line 442)",
"src/re_set.rs - re_set::bytes::RegexSet::new (line 435)",
"src/re_set.rs - re_set::unicode::RegexSet::new (line 406)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 432)",
"src/re_unicode.rs - re_unicode::Regex::captures (line 262)",
"src/re_unicode.rs - re_unicode::Captures<'t>::get (line 918)",
"src/re_set.rs - re_set::bytes::RegexSet::patterns (line 434)",
"src/re_set.rs - re_set::unicode::RegexSet::is_match (line 414)",
"src/re_set.rs - re_set::unicode::RegexSet (line 422)",
"src/re_set.rs - re_set::unicode::RegexSet::matches (line 413)",
"src/re_unicode.rs - re_unicode::Regex::splitn (line 385)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 495)",
"src/re_unicode.rs - re_unicode::Regex::shortest_match (line 605)",
"src/re_unicode.rs - re_unicode::Regex::split (line 361)",
"src/re_unicode.rs - re_unicode::Regex::find_iter (line 234)",
"src/re_unicode.rs - re_unicode::Regex::captures (line 284)",
"src/re_unicode.rs - re_unicode::Regex (line 105)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 461)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 445)",
"src/re_unicode.rs - re_unicode::Regex::is_match (line 189)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 478)",
"src/re_set.rs - re_set::unicode::RegexSet::patterns (line 405)",
"src/re_unicode.rs - re_unicode::Regex::captures_iter (line 328)",
"src/re_unicode.rs - re_unicode::Regex::find (line 212)",
"allow_octal",
"api::capture_index_lifetime",
"api::capture_index",
"api::capture_index_panic_usize - should panic",
"api::capture_index_panic_name - should panic",
"api::capture_misc",
"api::empty_match_captures_iter",
"api::capture_names",
"api::empty_regex_nonempty_match",
"api::empty_regex_empty_match",
"api::expand1",
"api::empty_match_find_iter",
"api::expand10",
"api::expand2",
"api::expand3",
"api::expand5",
"api::expand4",
"api::expand6",
"api::expand7",
"api::expand8",
"api::first_range_starts_with_left_bracket",
"api::expand9",
"api::many_sequential_zero_length_match",
"api::many_zero_length_match",
"api::one_zero_length_match",
"api::quoted_bracket_set",
"api::range_ends_with_escape",
"api::regex_string",
"api::split1",
"api::split2",
"api::split3",
"api::split_empty",
"api::split_none",
"api::split_trailing_blank",
"api::split_trailing_blanks",
"api::splitn_above_limit",
"api::splitn_at_limit",
"api::splitn_below_limit",
"api::splitn_trailing_blank",
"api::splitn_empty",
"api::splitn_trailing_separator",
"api_str::empty_match_unicode_captures_iter",
"api_str::match_as_str",
"crazy::ascii_literal",
"api_str::empty_match_unicode_find_iter",
"api::sub_capture_matches",
"api::splitn_zero_limit",
"crazy::match_date2",
"crazy::match_float3",
"crazy::lazy_one_many_optional",
"crazy::greedy_range_many",
"crazy::lazy_many_optional",
"crazy::lazy_range_many",
"crazy::greedy_many_optional",
"crazy::lazy_one_many_many",
"crazy::match_empty11",
"crazy::match_float2",
"crazy::match_start_end_empty",
"crazy::match_email_not",
"crazy::match_email_big",
"crazy::match_ranges",
"crazy::match_float4",
"crazy::greedy_many_many",
"crazy::match_empty1",
"crazy::greedy_one_many_many",
"crazy::match_empty2",
"crazy::match_email",
"crazy::match_start_end_empty_many_1",
"crazy::match_date3",
"crazy::greedy_one_many_optional",
"crazy::match_empty6",
"crazy::match_ranges_not",
"crazy::match_float1",
"crazy::match_empty3",
"crazy::lazy_many_many",
"crazy::match_start_end_empty_rep",
"crazy::lazy_range_min_many",
"crazy::match_empty9",
"crazy::match_empty4",
"crazy::match_empty10",
"crazy::match_start_end_empty_many_2",
"crazy::match_empty8",
"crazy::match_start_end_empty_rev",
"crazy::negclass_comma",
"crazy::negclass_letters",
"crazy::negclass_space_comma",
"crazy::greedy_range_min_many",
"flags::match_flag_case_dotnl_toggle",
"flags::match_flag_ungreedy",
"crazy::match_empty7",
"crazy::negclass_ascii",
"crazy::match_start_end_empty_rep_rev",
"crazy::negclass_letter_comma",
"crazy::negclass_space",
"crazy::negclass_letter_space",
"flags::match_flag_ungreedy_greedy",
"fowler::match_basic_100",
"crazy::match_empty5",
"crazy::negclass_comma_space",
"flags::match_flag_multi",
"fowler::match_basic_106",
"fowler::match_basic_108",
"disallow_octal",
"flags::match_flag_case_dotnl_toggle_ok",
"fowler::match_basic_107",
"fowler::match_basic_103",
"fowler::match_basic_113",
"fowler::match_basic_105",
"fowler::match_basic_101",
"flags::match_flag_case_dotnl_toggle_not",
"crazy::match_date1",
"flags::match_flag_weird_case",
"fowler::match_basic_112",
"fowler::match_basic_114",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_10",
"fowler::match_basic_109",
"fowler::match_basic_110",
"fowler::match_basic_102",
"fowler::match_basic_104",
"flags::match_flag_case",
"flags::match_flag_weird_case_not",
"fowler::match_basic_123",
"fowler::match_basic_115",
"fowler::match_basic_111",
"fowler::match_basic_118",
"disallow_non_utf8",
"fowler::match_basic_125",
"fowler::match_basic_135",
"flags::match_flag_case_dotnl",
"fowler::match_basic_119",
"fowler::match_basic_12",
"fowler::match_basic_126",
"fowler::match_basic_116",
"fowler::match_basic_124",
"fowler::match_basic_128",
"fowler::match_basic_120",
"fowler::match_basic_15",
"fowler::match_basic_121",
"fowler::match_basic_122",
"fowler::match_basic_117",
"fowler::match_basic_147",
"fowler::match_basic_149",
"fowler::match_basic_138",
"fowler::match_basic_134",
"fowler::match_basic_133",
"fowler::match_basic_145",
"fowler::match_basic_141",
"fowler::match_basic_151",
"fowler::match_basic_157",
"fowler::match_basic_129",
"fowler::match_basic_131",
"fowler::match_basic_148",
"fowler::match_basic_152",
"fowler::match_basic_146",
"fowler::match_basic_142",
"fowler::match_basic_132",
"fowler::match_basic_156",
"fowler::match_basic_160",
"fowler::match_basic_139",
"fowler::match_basic_140",
"fowler::match_basic_144",
"fowler::match_basic_168",
"fowler::match_basic_165",
"fowler::match_basic_137",
"fowler::match_basic_153",
"fowler::match_basic_150",
"fowler::match_basic_158",
"fowler::match_basic_159",
"fowler::match_basic_154",
"fowler::match_basic_155",
"fowler::match_basic_169",
"fowler::match_basic_167",
"fowler::match_basic_16",
"fowler::match_basic_166",
"fowler::match_basic_176",
"fowler::match_basic_18",
"fowler::match_basic_17",
"fowler::match_basic_163",
"fowler::match_basic_161",
"fowler::match_basic_162",
"fowler::match_basic_19",
"fowler::match_basic_180",
"fowler::match_basic_164",
"fowler::match_basic_170",
"fowler::match_basic_188",
"fowler::match_basic_178",
"fowler::match_basic_184",
"fowler::match_basic_177",
"fowler::match_basic_186",
"fowler::match_basic_191",
"fowler::match_basic_195",
"fowler::match_basic_181",
"fowler::match_basic_183",
"fowler::match_basic_172",
"fowler::match_basic_187",
"fowler::match_basic_173",
"fowler::match_basic_171",
"fowler::match_basic_174",
"fowler::match_basic_192",
"fowler::match_basic_194",
"fowler::match_basic_202",
"fowler::match_basic_203",
"fowler::match_basic_189",
"fowler::match_basic_179",
"fowler::match_basic_175",
"fowler::match_basic_198",
"fowler::match_basic_201",
"fowler::match_basic_193",
"fowler::match_basic_190",
"fowler::match_basic_200",
"fowler::match_basic_20",
"fowler::match_basic_197",
"fowler::match_basic_204",
"fowler::match_basic_220",
"fowler::match_basic_185",
"fowler::match_basic_182",
"fowler::match_basic_221",
"fowler::match_basic_219",
"fowler::match_basic_205",
"fowler::match_basic_216",
"fowler::match_basic_218",
"fowler::match_basic_23",
"fowler::match_basic_29",
"fowler::match_basic_196",
"fowler::match_basic_21",
"fowler::match_basic_206",
"fowler::match_basic_214",
"fowler::match_basic_30",
"fowler::match_basic_33",
"fowler::match_basic_199",
"fowler::match_basic_217",
"fowler::match_basic_32",
"fowler::match_basic_22",
"fowler::match_basic_212",
"fowler::match_basic_3",
"fowler::match_basic_26",
"fowler::match_basic_4",
"fowler::match_basic_36",
"fowler::match_basic_38",
"fowler::match_basic_213",
"fowler::match_basic_34",
"fowler::match_basic_28",
"fowler::match_basic_27",
"fowler::match_basic_24",
"fowler::match_basic_210",
"fowler::match_basic_35",
"fowler::match_basic_208",
"fowler::match_basic_207",
"fowler::match_basic_25",
"fowler::match_basic_37",
"fowler::match_basic_215",
"fowler::match_basic_39",
"fowler::match_basic_211",
"fowler::match_basic_40",
"fowler::match_basic_45",
"fowler::match_basic_46",
"fowler::match_basic_47",
"fowler::match_basic_209",
"fowler::match_basic_44",
"fowler::match_basic_52",
"fowler::match_basic_55",
"fowler::match_basic_56",
"fowler::match_basic_53",
"fowler::match_basic_43",
"fowler::match_basic_50",
"fowler::match_basic_58",
"fowler::match_basic_6",
"fowler::match_basic_42",
"fowler::match_basic_59",
"fowler::match_basic_54",
"fowler::match_basic_66",
"fowler::match_basic_67",
"fowler::match_basic_5",
"fowler::match_basic_68",
"fowler::match_basic_49",
"fowler::match_basic_70",
"fowler::match_basic_71",
"fowler::match_basic_51",
"fowler::match_basic_7",
"fowler::match_basic_65",
"fowler::match_basic_69",
"fowler::match_basic_41",
"fowler::match_basic_57",
"fowler::match_basic_72",
"fowler::match_basic_48",
"fowler::match_basic_76",
"fowler::match_basic_73",
"fowler::match_basic_80",
"fowler::match_basic_78",
"fowler::match_basic_9",
"fowler::match_basic_79",
"fowler::match_basic_89",
"fowler::match_basic_85",
"fowler::match_basic_95",
"fowler::match_basic_86",
"fowler::match_basic_88",
"fowler::match_basic_81",
"fowler::match_basic_84",
"fowler::match_basic_83",
"fowler::match_basic_93",
"fowler::match_basic_77",
"fowler::match_basic_94",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_16",
"fowler::match_nullsubexpr_19",
"fowler::match_basic_91",
"fowler::match_basic_87",
"fowler::match_basic_90",
"fowler::match_nullsubexpr_26",
"fowler::match_basic_96",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_10",
"fowler::match_basic_97",
"fowler::match_basic_98",
"fowler::match_nullsubexpr_12",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_14",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_21",
"fowler::match_basic_99",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_18",
"fowler::match_nullsubexpr_13",
"fowler::match_nullsubexpr_34",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_38",
"fowler::match_basic_92",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_7",
"fowler::match_nullsubexpr_33",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_15",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_45",
"fowler::match_nullsubexpr_78",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_43",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_69",
"fowler::match_nullsubexpr_8",
"fowler::match_basic_74",
"fowler::match_nullsubexpr_70",
"fowler::match_nullsubexpr_30",
"fowler::match_nullsubexpr_9",
"fowler::match_repetition_104",
"fowler::match_repetition_127",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_77",
"fowler::match_nullsubexpr_71",
"fowler::match_repetition_100",
"fowler::match_repetition_126",
"fowler::match_repetition_112",
"fowler::match_repetition_128",
"fowler::match_nullsubexpr_79",
"fowler::match_nullsubexpr_73",
"fowler::match_repetition_115",
"fowler::match_repetition_10",
"fowler::match_repetition_129",
"fowler::match_repetition_136",
"fowler::match_nullsubexpr_74",
"fowler::match_repetition_106",
"fowler::match_repetition_11",
"fowler::match_repetition_137",
"fowler::match_repetition_131",
"fowler::match_nullsubexpr_75",
"fowler::match_repetition_114",
"fowler::match_repetition_110",
"fowler::match_repetition_102",
"fowler::match_repetition_12",
"fowler::match_repetition_130",
"fowler::match_repetition_135",
"fowler::match_repetition_132",
"fowler::match_repetition_150",
"fowler::match_repetition_149",
"fowler::match_repetition_108",
"fowler::match_repetition_161",
"fowler::match_repetition_159",
"fowler::match_repetition_28",
"fowler::match_repetition_143",
"fowler::match_repetition_14",
"fowler::match_repetition_16",
"fowler::match_repetition_20",
"fowler::match_repetition_24",
"fowler::match_repetition_145",
"fowler::match_repetition_163",
"fowler::match_repetition_21",
"fowler::match_repetition_147",
"fowler::match_repetition_15",
"fowler::match_repetition_18",
"fowler::match_repetition_25",
"fowler::match_repetition_34",
"fowler::match_basic_75",
"fowler::match_repetition_41",
"fowler::match_repetition_26",
"fowler::match_repetition_38",
"fowler::match_repetition_40",
"fowler::match_repetition_22",
"fowler::match_repetition_158",
"fowler::match_repetition_152",
"fowler::match_repetition_53",
"fowler::match_repetition_134",
"fowler::match_repetition_154",
"fowler::match_repetition_35",
"fowler::match_repetition_31",
"fowler::match_repetition_52",
"fowler::match_repetition_32",
"fowler::match_repetition_47",
"fowler::match_repetition_46",
"fowler::match_repetition_133",
"fowler::match_repetition_68",
"fowler::match_repetition_156",
"fowler::match_repetition_50",
"fowler::match_repetition_36",
"fowler::match_repetition_44",
"fowler::match_repetition_42",
"fowler::match_repetition_61",
"fowler::match_repetition_59",
"fowler::match_repetition_56",
"fowler::match_repetition_57",
"fowler::match_repetition_63",
"fowler::match_repetition_64",
"fowler::match_repetition_30",
"fowler::match_repetition_67",
"fowler::match_repetition_76",
"fowler::match_repetition_73",
"fowler::match_repetition_75",
"fowler::match_repetition_80",
"fowler::match_repetition_81",
"misc::terminates",
"fowler::match_repetition_70",
"fowler::match_repetition_65",
"fowler::match_repetition_83",
"fowler::match_repetition_77",
"misc::one_literal_edge",
"fowler::match_repetition_98",
"fowler::match_repetition_96",
"fowler::match_repetition_94",
"fowler::match_repetition_93",
"multiline::match_multi_9",
"misc::prefix_literal_nomatch",
"fowler::match_repetition_90",
"fowler::match_repetition_92",
"fowler::match_repetition_79",
"fowler::match_repetition_54",
"misc::prefix_literal_match",
"multiline::match_multi_1",
"fowler::match_repetition_91",
"multiline::match_multi_8",
"multiline::match_multi_rep_16",
"multiline::match_multi_rep_2",
"multiline::match_multi_rep_3",
"multiline::match_multi_2",
"fowler::match_repetition_95",
"multiline::match_multi_rep_11",
"multiline::match_multi_rep_12",
"multiline::match_multi_rep_8",
"multiline::match_multi_rep_13",
"multiline::match_multi_3",
"multiline::match_multi_4",
"multiline::match_multi_rep_14",
"multiline::match_multi_rep_1",
"multiline::match_multi_rep_9",
"multiline::match_multi_7",
"multiline::match_multi_5",
"multiline::match_multi_rep_17",
"multiline::match_multi_rep_7",
"fowler::match_repetition_97",
"noparse::fail_counted_no_close",
"noparse::fail_empty_alt1",
"noparse::fail_empty_alt3",
"multiline::match_multi_6",
"multiline::match_multi_rep_15",
"noparse::fail_class_incomplete",
"multiline::match_multi_rep_4",
"noparse::fail_empty_alt4",
"noparse::fail_empty_alt6",
"multiline::match_multi_rep_10",
"noparse::fail_close_paren",
"multiline::match_multi_rep_5",
"noparse::fail_empty_alt2",
"noparse::fail_empty_alt5",
"noparse::fail_bad_capture_name",
"noparse::fail_class_no_end",
"multiline::match_multi_rep_6",
"noparse::fail_neg_empty",
"noparse::fail_hex_digit",
"noparse::fail_hex_long_digits",
"noparse::fail_bad_flag",
"noparse::fail_class_no_boundary",
"noparse::fail_hex_short",
"noparse::fail_empty_alt7",
"noparse::fail_double_neg",
"noparse::fail_dupe_named",
"noparse::fail_class_no_begin",
"noparse::fail_class_not_closed",
"noparse::fail_invalid_range",
"noparse::fail_flag_bad",
"noparse::fail_empty_capture_name",
"noparse::fail_incomplete_escape",
"noparse::fail_flag_empty",
"noparse::fail_octal_digit",
"noparse::fail_no_repeat_arg",
"noparse::fail_range_end_no_begin",
"noparse::fail_open_paren",
"oibits_regression",
"noparse::fail_unfinished_escape",
"oibits",
"noparse::fail_range_end_no_boundary",
"regression::ahocorasick1",
"regression::captures_after_dfa_premature_end2",
"regression::partial_anchor_alternate_end",
"regression::lits_unambiguous1",
"regression::regression_alt_in_alt1",
"noparse::fail_range_end_no_class",
"regression::anchored_prefix2",
"regression::many_alternates",
"noparse::fail_unfinished_cap",
"regression::captures_after_dfa_premature_end1",
"regression::anchored_prefix3",
"regression::literal_panic",
"regression::regression_ascii_word_underscore",
"regression::lits_unambiguous2",
"regression::partial_anchor",
"regression::regression_unsorted_binary_search_2",
"regression::anchored_prefix1",
"regression::reverse_suffix3",
"noparse::fail_range_end_no_end",
"regression::invalid_regexes_no_crash",
"regression::endl_or_wb",
"regression::regression_alt_in_alt2",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"regression::regression_leftmost_first_prefix",
"regression::y_or_endl",
"regression::partial_anchor_alternate_begin",
"regression::captures_after_dfa_premature_end3",
"regression::regression_invalid_flags_expression",
"replace::groups",
"replace::match_at_start_replace_with_empty",
"regression::blank_matches_nothing_between_space_and_tab",
"regression::regression_captures_rep",
"regression::regression_unsorted_binary_search_1",
"replace::capture_longest_possible_name",
"regression::regression_invalid_repetition_expr",
"regression::strange_anchor_non_complete_prefix",
"regression::reverse_suffix2",
"replace::simple_expand",
"regression::strange_anchor_non_complete_suffix",
"replace::named",
"replace::no_expand2",
"searcher::searcher_empty_haystack",
"replace::number_hypen",
"searcher::searcher_empty_regex",
"searcher::searcher_empty_regex_empty_haystack",
"replace::double_dollar",
"replace::first",
"searcher::searcher_reject_first",
"searcher::searcher_two_adjacent_matches",
"replace::single_empty_match",
"regression::reverse_suffix1",
"replace::all",
"replace::literal_dollar1",
"replace::literal_dollar2",
"replace::closure_returning_reference",
"regression::zero_or_end",
"searcher::searcher_many_zero_length_matches",
"searcher::searcher_two_non_adjacent_matches",
"searcher::searcher_unicode",
"searcher::searcher_no_match",
"searcher::searcher_one_zero_length_matches",
"replace::closure_returning_value",
"set::nset3",
"set::nset2",
"replace::plus",
"replace::no_expand1",
"replace::trim",
"set::nset4",
"set::nset1",
"searcher::searcher_one_match",
"set::set14",
"set::get_set_patterns",
"set::set13",
"set::regression_subsequent_matches",
"set::set12",
"set::set16",
"set::set4",
"set::set1",
"set::set11",
"set::set10",
"set::set2",
"set::set6",
"set::set18",
"set::set15",
"set::set3",
"set::set7",
"set::set17",
"shortest_match::t01",
"shortest_match::t02",
"set::set9",
"set::set8",
"suffix_reverse::t03",
"suffix_reverse::t05",
"suffix_reverse::t06",
"set::set5",
"suffix_reverse::t02",
"suffix_reverse::t04",
"suffix_reverse::t01",
"crazy::nest_limit_makes_it_parse",
"regression::regression_many_repeat_stack_overflow",
"noparse::fail_too_big",
"crazy::dfa_handles_pathological_case",
"bytes::ascii_boundary_capture",
"bytes::ascii_boundary_no_capture",
"bytes::case_ascii_class",
"bytes::case_ascii_one",
"bytes::case_not_unicode",
"bytes::dotstar_prefix_not_unicode1",
"bytes::dotstar_prefix_not_unicode2",
"bytes::invalidutf8_anchor1",
"bytes::end_not_wb",
"bytes::invalidutf8_anchor2",
"bytes::negate_not_unicode",
"bytes::invalidutf8_anchor3",
"bytes::negated_full_byte_range",
"bytes::perl_d_ascii",
"bytes::mixed1",
"bytes::negate_unicode",
"bytes::null_bytes",
"bytes::perl_w_ascii",
"bytes::perl_s_ascii",
"bytes::word_boundary",
"bytes::word_boundary_ascii2",
"bytes::word_boundary_ascii1",
"bytes::word_not_boundary",
"invalid_utf8_nfa4",
"invalid_utf8_nfa1",
"invalid_utf8_nfa3",
"invalid_utf8_nfa2",
"regression::regression_negated_char_class_1",
"regression::regression_negated_char_class_2",
"regression::split_on_word_boundary",
"regression::regression_nfa_stops1",
"regression::wb_start_x",
"regression::word_boundary_dfa",
"regression::uni_case_lower_nocase_flag",
"unicode::uni_class_gcb_prepend",
"unicode::uni_class_gcb_ri2",
"unicode::uni_class_gcb_ri1",
"unicode::uni_case",
"unicode::uni_boundary_ogham",
"unicode::uni_boundary_none",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gcb_ri3",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_class_gcb_zwj",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_decimal_numer",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_format",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_case_upper",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_number",
"unicode::uni_class_gencat_cased_letter",
"unicode::uni_class_gencat_private_use",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_case_lower",
"unicode::uni_class_plus",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_gencat_math",
"unicode::uni_class_wb1",
"unicode::uni_class_prop_picto1",
"unicode::uni_class_sb5",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_sb3",
"unicode::uni_class_prop_picto2",
"unicode::uni_class_wb3",
"unicode::uni_literal",
"unicode::uni_literal_plus",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_gcb_lvt",
"unicode::uni_class_wb2",
"unicode::uni_class_sb4",
"unicode::uni_mixed",
"unicode::uni_class_wb4",
"unicode::uni_class_gencat_symbol",
"unicode::uni_literal_casei_plus",
"unicode::uni_perl_s",
"unicode::uni_perl_d_neg",
"unicode::uni_perl_d_not",
"unicode::uni_class_wb5",
"unicode::uni_not_boundary_none",
"unicode::uni_not",
"unicode::uni_not_boundary_ogham",
"word_boundary::nb1",
"word_boundary::nb17",
"unicode::uni_perl_s_neg",
"unicode::uni_not_class_neg",
"word_boundary::nb15",
"unicode::uni_class_gencat_lowercase_letter",
"word_boundary::nb10",
"unicode::uni_one",
"word_boundary::nb13",
"word_boundary::nb2",
"unicode::uni_perl_s_not",
"word_boundary::nb12",
"word_boundary::nb11",
"unicode::uni_class_gencat_uppercase_letter",
"unicode::uni_perl_d",
"word_boundary::nb14",
"word_boundary::nb19",
"word_boundary::nb22",
"word_boundary::nb16",
"word_boundary::nb25",
"word_boundary::nb21",
"word_boundary::nb20",
"word_boundary::nb30",
"word_boundary::nb18",
"word_boundary::nb3",
"unicode::uni_class_gencat_other_letter",
"word_boundary::nb24",
"word_boundary::nb29",
"word_boundary::nb27",
"word_boundary::nb23",
"unicode::uni_not_class",
"word_boundary::nb37",
"word_boundary::nb39",
"word_boundary::nb26",
"word_boundary::nb31",
"word_boundary::nb33",
"word_boundary::nb38",
"word_boundary::nb34",
"word_boundary::nb32",
"word_boundary::nb28",
"word_boundary::nb7",
"word_boundary::nb6",
"word_boundary::nb8",
"unicode::uni_class_gencat_letter",
"word_boundary::nb35",
"word_boundary::nb36",
"word_boundary::wb1",
"word_boundary::wb11",
"word_boundary::wb12",
"word_boundary::wb19",
"word_boundary::nb4",
"word_boundary::nb5",
"word_boundary::wb18",
"word_boundary::wb2",
"word_boundary::wb22",
"unicode::uni_class_gencat_other",
"word_boundary::unicode2",
"word_boundary::wb17",
"unicode::uni_case_upper_nocase",
"word_boundary::nb9",
"word_boundary::wb21",
"word_boundary::wb26",
"word_boundary::unicode1",
"unicode::uni_class_sb1",
"word_boundary::wb20",
"word_boundary::wb10",
"word_boundary::wb13",
"word_boundary::wb14",
"word_boundary::wb25",
"word_boundary::wb32",
"word_boundary::wb35",
"word_boundary::wb30",
"word_boundary::wb15",
"word_boundary::wb16",
"word_boundary::wb34",
"word_boundary::wb3",
"word_boundary::wb41",
"word_boundary::wb31",
"word_boundary::wb28",
"word_boundary::wb40",
"word_boundary::wb5",
"word_boundary::wb23",
"word_boundary::wb27",
"word_boundary::wb38",
"word_boundary::wb33",
"word_boundary::wb29",
"word_boundary::wb6",
"word_boundary::wb24",
"unicode::uni_class_sb2",
"word_boundary::wb9",
"word_boundary_unicode::unicode1",
"word_boundary::wb36",
"word_boundary::wb39",
"word_boundary::wb7",
"word_boundary::wb4",
"word_boundary_unicode::unicode2",
"word_boundary::wb8",
"word_boundary::wb37",
"word_boundary_unicode::ascii1",
"unicode::uni_perl_w",
"unicode::uni_class_gencat_unassigned",
"unicode::uni_perl_w_not",
"unicode::uni_perl_w_neg",
"bytes::word_not_boundary_unicode",
"bytes::perl_d_unicode",
"bytes::case_unicode",
"bytes::perl_s_unicode",
"bytes::word_boundary_unicode",
"bytes::perl_w_unicode"
] |
[] |
[] |
|
rust-lang/regex
|
2020-01-09T18:35:20Z
|
rust-lang__regex-637
|
diff --git a/regex-syntax/src/ast/parse.rs b/regex-syntax/src/ast/parse.rs
--- a/regex-syntax/src/ast/parse.rs
+++ b/regex-syntax/src/ast/parse.rs
@@ -5713,6 +5719,20 @@ bar
],
}))
);
+ assert_eq!(
+ parser(r"\p\{").parse().unwrap_err(),
+ TestError {
+ span: span(2..3),
+ kind: ast::ErrorKind::UnicodeClassInvalid,
+ }
+ );
+ assert_eq!(
+ parser(r"\P\{").parse().unwrap_err(),
+ TestError {
+ span: span(2..3),
+ kind: ast::ErrorKind::UnicodeClassInvalid,
+ }
+ );
}
#[test]
diff --git a/tests/api.rs b/tests/api.rs
--- a/tests/api.rs
+++ b/tests/api.rs
@@ -205,6 +205,18 @@ split!(
split2,
r"(?-u)\b",
"a b c",
- &[t!(""), t!("a"), t!(" "), t!("b"), t!(" "), t!("c")]
+ &[t!(""), t!("a"), t!(" "), t!("b"), t!(" "), t!("c"), t!("")]
);
-split!(split3, r"a$", "a", &[t!("")]);
+split!(split3, r"a$", "a", &[t!(""), t!("")]);
+split!(split_none, r"-", r"a", &[t!("a")]);
+split!(split_trailing_blank, r"-", r"a-", &[t!("a"), t!("")]);
+split!(split_trailing_blanks, r"-", r"a--", &[t!("a"), t!(""), t!("")]);
+split!(split_empty, r"-", r"", &[t!("")]);
+
+splitn!(splitn_below_limit, r"-", r"a", 2, &[t!("a")]);
+splitn!(splitn_at_limit, r"-", r"a-b", 2, &[t!("a"), t!("b")]);
+splitn!(splitn_above_limit, r"-", r"a-b-c", 2, &[t!("a"), t!("b-c")]);
+splitn!(splitn_zero_limit, r"-", r"a-b", 0, empty_vec!());
+splitn!(splitn_trailing_blank, r"-", r"a-", 2, &[t!("a"), t!("")]);
+splitn!(splitn_trailing_separator, r"-", r"a--", 2, &[t!("a"), t!("-")]);
+splitn!(splitn_empty, r"-", r"", 1, &[t!("")]);
diff --git a/tests/bytes.rs b/tests/bytes.rs
--- a/tests/bytes.rs
+++ b/tests/bytes.rs
@@ -69,10 +69,12 @@ matiter!(
R(b"\x8d#;\x1a\xa4s3\x05foobarX\\\x0f0t\xe4\x9b\xa4"),
(0, 0)
);
-matiter!(invalidutf8_anchor2,
- r"(?-u)^\xf7|4\xff\d\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a##########[] d\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a##########\[] #####\x80\S7|$",
- R(b"\x8d#;\x1a\xa4s3\x05foobarX\\\x0f0t\xe4\x9b\xa4"),
- (22, 22));
+matiter!(
+ invalidutf8_anchor2,
+ r"(?-u)^\xf7|4\xff\d\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a##########[] d\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a##########\[] #####\x80\S7|$",
+ R(b"\x8d#;\x1a\xa4s3\x05foobarX\\\x0f0t\xe4\x9b\xa4"),
+ (22, 22)
+);
matiter!(
invalidutf8_anchor3,
r"(?-u)^|ddp\xff\xffdddddlQd@\x80",
diff --git a/tests/consistent.rs b/tests/consistent.rs
--- a/tests/consistent.rs
+++ b/tests/consistent.rs
@@ -231,7 +231,6 @@ macro_rules! checker {
TestResult::from_bool(true)
}
}
-
} // mod
}; // rule case
} // macro_rules!
diff --git a/tests/crazy.rs b/tests/crazy.rs
--- a/tests/crazy.rs
+++ b/tests/crazy.rs
@@ -29,8 +29,12 @@ mat!(
"mine is jam.slam@gmail ",
None
);
-mat!(match_email_big, r"[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?",
- "mine is jam.slam@gmail.com ", Some((8, 26)));
+mat!(
+ match_email_big,
+ r"[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?",
+ "mine is jam.slam@gmail.com ",
+ Some((8, 26))
+);
mat!(
match_date1,
r"(?-u)^(19|20)\d\d[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])$",
diff --git a/tests/fowler.rs b/tests/fowler.rs
--- a/tests/fowler.rs
+++ b/tests/fowler.rs
@@ -215,7 +215,13 @@ mat!(
Some((1, 2)),
Some((1, 2))
);
-mat!(match_basic_76, r"a?(ab|ba)*", r"ababababababababababababababababababababababababababababababababababababababababa", Some((0, 81)), Some((79, 81)));
+mat!(
+ match_basic_76,
+ r"a?(ab|ba)*",
+ r"ababababababababababababababababababababababababababababababababababababababababa",
+ Some((0, 81)),
+ Some((79, 81))
+);
mat!(
match_basic_77,
r"abaa|abbaa|abbbaa|abbbbaa",
diff --git a/tests/macros.rs b/tests/macros.rs
--- a/tests/macros.rs
+++ b/tests/macros.rs
@@ -147,3 +147,14 @@ macro_rules! split {
}
}
}
+
+macro_rules! splitn {
+ ($name:ident, $re:expr, $text:expr, $limit:expr, $expected:expr) => {
+ #[test]
+ fn $name() {
+ let re = regex!($re);
+ let splitted: Vec<_> = re.splitn(t!($text), $limit).collect();
+ assert_eq!($expected, &*splitted);
+ }
+ }
+}
diff --git a/tests/macros_bytes.rs b/tests/macros_bytes.rs
--- a/tests/macros_bytes.rs
+++ b/tests/macros_bytes.rs
@@ -3,6 +3,7 @@ macro_rules! text { ($text:expr) => { $text.as_bytes() } }
macro_rules! t { ($re:expr) => { text!($re) } }
macro_rules! match_text { ($text:expr) => { $text.as_bytes() } }
macro_rules! use_ { ($($path: tt)*) => { use regex::bytes::$($path)*; } }
+macro_rules! empty_vec { () => { <Vec<&[u8]>>::new() } }
macro_rules! bytes { ($text:expr) => { $text } }
diff --git a/tests/macros_str.rs b/tests/macros_str.rs
--- a/tests/macros_str.rs
+++ b/tests/macros_str.rs
@@ -3,6 +3,7 @@ macro_rules! text { ($text:expr) => { $text } }
macro_rules! t { ($text:expr) => { text!($text) } }
macro_rules! match_text { ($text:expr) => { $text.as_str() } }
macro_rules! use_ { ($($path: tt)*) => { use regex::$($path)*; } }
+macro_rules! empty_vec { () => { <Vec<&str>>::new() } }
macro_rules! no_expand {
($text:expr) => {{
diff --git a/tests/unicode.rs b/tests/unicode.rs
--- a/tests/unicode.rs
+++ b/tests/unicode.rs
@@ -60,12 +60,7 @@ mat!(
"〰",
Some((0, 3))
);
-mat!(
- uni_class_gencat_decimal_numer,
- r"\p{Decimal_Number}",
- "𑓙",
- Some((0, 4))
-);
+mat!(uni_class_gencat_decimal_numer, r"\p{Decimal_Number}", "𑓙", Some((0, 4)));
mat!(
uni_class_gencat_enclosing_mark,
r"\p{Enclosing_Mark}",
diff --git a/tests/unicode.rs b/tests/unicode.rs
--- a/tests/unicode.rs
+++ b/tests/unicode.rs
@@ -86,12 +81,7 @@ mat!(
Some((0, 3))
);
mat!(uni_class_gencat_letter, r"\p{Letter}", "Έ", Some((0, 2)));
-mat!(
- uni_class_gencat_letter_number,
- r"\p{Letter_Number}",
- "ↂ",
- Some((0, 3))
-);
+mat!(uni_class_gencat_letter_number, r"\p{Letter_Number}", "ↂ", Some((0, 3)));
mat!(
uni_class_gencat_line_separator,
r"\p{Line_Separator}",
|
The CI failure is only for Rust “stable.” It appears to be unrelated to the changes in this PR. https://travis-ci.com/rust-lang/regex/jobs/257680677
CI failure issue https://github.com/rust-lang/regex/issues/634
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,24 @@
+1.3.2 (2020-01-09)
+==================
+This is a small maintenance release with some house cleaning and bug fixes.
+
+New features:
+
+* [FEATURE #631](https://github.com/rust-lang/regex/issues/631):
+ Add a `Match::range` method an a `From<Match> for Range` impl.
+
+Bug fixes:
+
+* [BUG #521](https://github.com/rust-lang/regex/issues/521):
+ Corrects `/-/.splitn("a", 2)` to return `["a"]` instead of `["a", ""]`.
+* [BUG #594](https://github.com/rust-lang/regex/pull/594):
+ Improve error reporting when writing `\p\`.
+* [BUG #627](https://github.com/rust-lang/regex/issues/627):
+ Corrects `/-/.split("a-")` to return `["a", ""]` instead of `["a"]`.
+* [BUG #633](https://github.com/rust-lang/regex/pull/633):
+ Squash deprecation warnings for the `std::error::Error::description` method.
+
+
1.3.1 (2019-09-04)
==================
This is a maintenance release with no changes in order to try to work-around
diff --git a/bench/src/ffi/tcl.rs b/bench/src/ffi/tcl.rs
--- a/bench/src/ffi/tcl.rs
+++ b/bench/src/ffi/tcl.rs
@@ -2,12 +2,12 @@
use std::mem;
use std::ptr;
-use std::sync::{Once, ONCE_INIT};
+use std::sync::Once;
use libc::{c_char, c_int, c_long, c_void};
// Used to initialize the TCL interpreter exactly once.
-static ONCE: Once = ONCE_INIT;
+static ONCE: Once = Once::new();
/// Text is a TCL string object backed by a Rust string.
///
diff --git a/regex-syntax/src/ast/mod.rs b/regex-syntax/src/ast/mod.rs
--- a/regex-syntax/src/ast/mod.rs
+++ b/regex-syntax/src/ast/mod.rs
@@ -156,6 +156,9 @@ pub enum ErrorKind {
/// `(?i)*`. It is, however, possible to create a repetition operating on
/// an empty sub-expression. For example, `()*` is still considered valid.
RepetitionMissing,
+ /// The Unicode class is not valid. This typically occurs when a `\p` is
+ /// followed by something other than a `{`.
+ UnicodeClassInvalid,
/// When octal support is disabled, this error is produced when an octal
/// escape is used. The octal escape is assumed to be an invocation of
/// a backreference, which is the common case.
diff --git a/regex-syntax/src/ast/mod.rs b/regex-syntax/src/ast/mod.rs
--- a/regex-syntax/src/ast/mod.rs
+++ b/regex-syntax/src/ast/mod.rs
@@ -176,6 +179,8 @@ pub enum ErrorKind {
}
impl error::Error for Error {
+ // TODO: Remove this method entirely on the next breaking semver release.
+ #[allow(deprecated)]
fn description(&self) -> &str {
use self::ErrorKind::*;
match self.kind {
diff --git a/regex-syntax/src/ast/mod.rs b/regex-syntax/src/ast/mod.rs
--- a/regex-syntax/src/ast/mod.rs
+++ b/regex-syntax/src/ast/mod.rs
@@ -206,6 +211,7 @@ impl error::Error for Error {
RepetitionCountInvalid => "invalid repetition count range",
RepetitionCountUnclosed => "unclosed counted repetition",
RepetitionMissing => "repetition operator missing expression",
+ UnicodeClassInvalid => "invalid Unicode character class",
UnsupportedBackreference => "backreferences are not supported",
UnsupportedLookAround => "look-around is not supported",
_ => unreachable!(),
diff --git a/regex-syntax/src/ast/mod.rs b/regex-syntax/src/ast/mod.rs
--- a/regex-syntax/src/ast/mod.rs
+++ b/regex-syntax/src/ast/mod.rs
@@ -293,6 +299,9 @@ impl fmt::Display for ErrorKind {
RepetitionMissing => {
write!(f, "repetition operator missing expression")
}
+ UnicodeClassInvalid => {
+ write!(f, "invalid Unicode character class")
+ }
UnsupportedBackreference => {
write!(f, "backreferences are not supported")
}
diff --git a/regex-syntax/src/ast/parse.rs b/regex-syntax/src/ast/parse.rs
--- a/regex-syntax/src/ast/parse.rs
+++ b/regex-syntax/src/ast/parse.rs
@@ -2095,6 +2095,12 @@ impl<'s, P: Borrow<Parser>> ParserI<'s, P> {
} else {
let start = self.pos();
let c = self.char();
+ if c == '\\' {
+ return Err(self.error(
+ self.span_char(),
+ ast::ErrorKind::UnicodeClassInvalid,
+ ));
+ }
self.bump_and_bump_space();
let kind = ast::ClassUnicodeKind::OneLetter(c);
(start, kind)
diff --git a/regex-syntax/src/error.rs b/regex-syntax/src/error.rs
--- a/regex-syntax/src/error.rs
+++ b/regex-syntax/src/error.rs
@@ -40,6 +40,8 @@ impl From<hir::Error> for Error {
}
impl error::Error for Error {
+ // TODO: Remove this method entirely on the next breaking semver release.
+ #[allow(deprecated)]
fn description(&self) -> &str {
match *self {
Error::Parse(ref x) => x.description(),
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -91,6 +91,8 @@ pub enum ErrorKind {
}
impl ErrorKind {
+ // TODO: Remove this method entirely on the next breaking semver release.
+ #[allow(deprecated)]
fn description(&self) -> &str {
use self::ErrorKind::*;
match *self {
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -113,6 +115,8 @@ impl ErrorKind {
}
impl error::Error for Error {
+ // TODO: Remove this method entirely on the next breaking semver release.
+ #[allow(deprecated)]
fn description(&self) -> &str {
self.kind.description()
}
diff --git a/regex-syntax/src/hir/mod.rs b/regex-syntax/src/hir/mod.rs
--- a/regex-syntax/src/hir/mod.rs
+++ b/regex-syntax/src/hir/mod.rs
@@ -126,6 +130,8 @@ impl fmt::Display for Error {
impl fmt::Display for ErrorKind {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ // TODO: Remove this on the next breaking semver release.
+ #[allow(deprecated)]
f.write_str(self.description())
}
}
diff --git a/regex-syntax/src/unicode.rs b/regex-syntax/src/unicode.rs
--- a/regex-syntax/src/unicode.rs
+++ b/regex-syntax/src/unicode.rs
@@ -277,7 +277,7 @@ enum CanonicalClassQuery {
/// Looks up a Unicode class given a query. If one doesn't exist, then
/// `None` is returned.
-pub fn class<'a>(query: ClassQuery<'a>) -> Result<hir::ClassUnicode> {
+pub fn class(query: ClassQuery) -> Result<hir::ClassUnicode> {
use self::CanonicalClassQuery::*;
match query.canonicalize()? {
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8203,12 +8203,8 @@ pub const OTHER_GRAPHEME_EXTEND: &'static [(char, char)] = &[
pub const OTHER_ID_CONTINUE: &'static [(char, char)] =
&[('·', '·'), ('·', '·'), ('፩', '፱'), ('᧚', '᧚')];
-pub const OTHER_ID_START: &'static [(char, char)] = &[
- ('\u{1885}', '\u{1886}'),
- ('℘', '℘'),
- ('℮', '℮'),
- ('゛', '゜'),
-];
+pub const OTHER_ID_START: &'static [(char, char)] =
+ &[('\u{1885}', '\u{1886}'), ('℘', '℘'), ('℮', '℮'), ('゛', '゜')];
pub const OTHER_LOWERCASE: &'static [(char, char)] = &[
('ª', 'ª'),
diff --git a/regex-syntax/src/unicode_tables/property_bool.rs b/regex-syntax/src/unicode_tables/property_bool.rs
--- a/regex-syntax/src/unicode_tables/property_bool.rs
+++ b/regex-syntax/src/unicode_tables/property_bool.rs
@@ -8370,13 +8366,8 @@ pub const OTHER_MATH: &'static [(char, char)] = &[
('𞺫', '𞺻'),
];
-pub const OTHER_UPPERCASE: &'static [(char, char)] = &[
- ('Ⅰ', 'Ⅿ'),
- ('Ⓐ', 'Ⓩ'),
- ('🄰', '🅉'),
- ('🅐', '🅩'),
- ('🅰', '🆉'),
-];
+pub const OTHER_UPPERCASE: &'static [(char, char)] =
+ &[('Ⅰ', 'Ⅿ'), ('Ⓐ', 'Ⓩ'), ('🄰', '🅉'), ('🅐', '🅩'), ('🅰', '🆉')];
pub const PATTERN_SYNTAX: &'static [(char, char)] = &[
('!', '/'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -230,11 +230,9 @@ pub const ARABIC: &'static [(char, char)] = &[
pub const ARMENIAN: &'static [(char, char)] =
&[('Ա', 'Ֆ'), ('ՙ', 'ֈ'), ('֊', '֊'), ('֍', '֏'), ('ﬓ', 'ﬗ')];
-pub const AVESTAN: &'static [(char, char)] =
- &[('𐬀', '𐬵'), ('𐬹', '𐬿')];
+pub const AVESTAN: &'static [(char, char)] = &[('𐬀', '𐬵'), ('𐬹', '𐬿')];
-pub const BALINESE: &'static [(char, char)] =
- &[('\u{1b00}', 'ᭋ'), ('᭐', '᭼')];
+pub const BALINESE: &'static [(char, char)] = &[('\u{1b00}', 'ᭋ'), ('᭐', '᭼')];
pub const BAMUM: &'static [(char, char)] = &[('ꚠ', '꛷'), ('𖠀', '𖨸')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -260,12 +258,8 @@ pub const BENGALI: &'static [(char, char)] = &[
('০', '\u{9fe}'),
];
-pub const BHAIKSUKI: &'static [(char, char)] = &[
- ('𑰀', '𑰈'),
- ('𑰊', '\u{11c36}'),
- ('\u{11c38}', '𑱅'),
- ('𑱐', '𑱬'),
-];
+pub const BHAIKSUKI: &'static [(char, char)] =
+ &[('𑰀', '𑰈'), ('𑰊', '\u{11c36}'), ('\u{11c38}', '𑱅'), ('𑱐', '𑱬')];
pub const BOPOMOFO: &'static [(char, char)] =
&[('˪', '˫'), ('ㄅ', 'ㄯ'), ('ㆠ', 'ㆺ')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -275,8 +269,7 @@ pub const BRAHMI: &'static [(char, char)] =
pub const BRAILLE: &'static [(char, char)] = &[('⠀', '⣿')];
-pub const BUGINESE: &'static [(char, char)] =
- &[('ᨀ', '\u{1a1b}'), ('᨞', '᨟')];
+pub const BUGINESE: &'static [(char, char)] = &[('ᨀ', '\u{1a1b}'), ('᨞', '᨟')];
pub const BUHID: &'static [(char, char)] = &[('ᝀ', '\u{1753}')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -478,14 +471,8 @@ pub const COPTIC: &'static [(char, char)] =
pub const CUNEIFORM: &'static [(char, char)] =
&[('𒀀', '𒎙'), ('𒐀', '𒑮'), ('𒑰', '𒑴'), ('𒒀', '𒕃')];
-pub const CYPRIOT: &'static [(char, char)] = &[
- ('𐠀', '𐠅'),
- ('𐠈', '𐠈'),
- ('𐠊', '𐠵'),
- ('𐠷', '𐠸'),
- ('𐠼', '𐠼'),
- ('𐠿', '𐠿'),
-];
+pub const CYPRIOT: &'static [(char, char)] =
+ &[('𐠀', '𐠅'), ('𐠈', '𐠈'), ('𐠊', '𐠵'), ('𐠷', '𐠸'), ('𐠼', '𐠼'), ('𐠿', '𐠿')];
pub const CYRILLIC: &'static [(char, char)] = &[
('Ѐ', '\u{484}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -509,13 +496,8 @@ pub const DEVANAGARI: &'static [(char, char)] = &[
pub const DOGRA: &'static [(char, char)] = &[('𑠀', '𑠻')];
-pub const DUPLOYAN: &'static [(char, char)] = &[
- ('𛰀', '𛱪'),
- ('𛱰', '𛱼'),
- ('𛲀', '𛲈'),
- ('𛲐', '𛲙'),
- ('𛲜', '𛲟'),
-];
+pub const DUPLOYAN: &'static [(char, char)] =
+ &[('𛰀', '𛱪'), ('𛱰', '𛱼'), ('𛲀', '𛲈'), ('𛲐', '𛲙'), ('𛲜', '𛲟')];
pub const EGYPTIAN_HIEROGLYPHS: &'static [(char, char)] =
&[('𓀀', '𓐮'), ('\u{13430}', '\u{13438}')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -825,8 +807,7 @@ pub const KATAKANA: &'static [(char, char)] = &[
('\u{1b164}', '\u{1b167}'),
];
-pub const KAYAH_LI: &'static [(char, char)] =
- &[('꤀', '\u{a92d}'), ('꤯', '꤯')];
+pub const KAYAH_LI: &'static [(char, char)] = &[('꤀', '\u{a92d}'), ('꤯', '꤯')];
pub const KHAROSHTHI: &'static [(char, char)] = &[
('𐨀', '\u{10a03}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -842,8 +823,7 @@ pub const KHAROSHTHI: &'static [(char, char)] = &[
pub const KHMER: &'static [(char, char)] =
&[('ក', '\u{17dd}'), ('០', '៩'), ('៰', '៹'), ('᧠', '᧿')];
-pub const KHOJKI: &'static [(char, char)] =
- &[('𑈀', '𑈑'), ('𑈓', '\u{1123e}')];
+pub const KHOJKI: &'static [(char, char)] = &[('𑈀', '𑈑'), ('𑈓', '\u{1123e}')];
pub const KHUDAWADI: &'static [(char, char)] =
&[('𑊰', '\u{112ea}'), ('𑋰', '𑋹')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -925,8 +905,7 @@ pub const LISU: &'static [(char, char)] = &[('ꓐ', '꓿')];
pub const LYCIAN: &'static [(char, char)] = &[('𐊀', '𐊜')];
-pub const LYDIAN: &'static [(char, char)] =
- &[('𐤠', '𐤹'), ('𐤿', '𐤿')];
+pub const LYDIAN: &'static [(char, char)] = &[('𐤠', '𐤹'), ('𐤿', '𐤿')];
pub const MAHAJANI: &'static [(char, char)] = &[('𑅐', '𑅶')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -943,8 +922,7 @@ pub const MALAYALAM: &'static [(char, char)] = &[
('൦', 'ൿ'),
];
-pub const MANDAIC: &'static [(char, char)] =
- &[('ࡀ', '\u{85b}'), ('࡞', '࡞')];
+pub const MANDAIC: &'static [(char, char)] = &[('ࡀ', '\u{85b}'), ('࡞', '࡞')];
pub const MANICHAEAN: &'static [(char, char)] =
&[('𐫀', '\u{10ae6}'), ('𐫫', '𐫶')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -975,14 +953,10 @@ pub const MEROITIC_CURSIVE: &'static [(char, char)] =
pub const MEROITIC_HIEROGLYPHS: &'static [(char, char)] = &[('𐦀', '𐦟')];
-pub const MIAO: &'static [(char, char)] = &[
- ('𖼀', '\u{16f4a}'),
- ('\u{16f4f}', '\u{16f87}'),
- ('\u{16f8f}', '𖾟'),
-];
+pub const MIAO: &'static [(char, char)] =
+ &[('𖼀', '\u{16f4a}'), ('\u{16f4f}', '\u{16f87}'), ('\u{16f8f}', '𖾟')];
-pub const MODI: &'static [(char, char)] =
- &[('𑘀', '𑙄'), ('𑙐', '𑙙')];
+pub const MODI: &'static [(char, char)] = &[('𑘀', '𑙄'), ('𑙐', '𑙙')];
pub const MONGOLIAN: &'static [(char, char)] = &[
('᠀', '᠁'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -994,22 +968,15 @@ pub const MONGOLIAN: &'static [(char, char)] = &[
('𑙠', '𑙬'),
];
-pub const MRO: &'static [(char, char)] =
- &[('𖩀', '𖩞'), ('𖩠', '𖩩'), ('𖩮', '𖩯')];
+pub const MRO: &'static [(char, char)] = &[('𖩀', '𖩞'), ('𖩠', '𖩩'), ('𖩮', '𖩯')];
-pub const MULTANI: &'static [(char, char)] = &[
- ('𑊀', '𑊆'),
- ('𑊈', '𑊈'),
- ('𑊊', '𑊍'),
- ('𑊏', '𑊝'),
- ('𑊟', '𑊩'),
-];
+pub const MULTANI: &'static [(char, char)] =
+ &[('𑊀', '𑊆'), ('𑊈', '𑊈'), ('𑊊', '𑊍'), ('𑊏', '𑊝'), ('𑊟', '𑊩')];
pub const MYANMAR: &'static [(char, char)] =
&[('က', '႟'), ('ꧠ', 'ꧾ'), ('ꩠ', 'ꩿ')];
-pub const NABATAEAN: &'static [(char, char)] =
- &[('𐢀', '𐢞'), ('𐢧', '𐢯')];
+pub const NABATAEAN: &'static [(char, char)] = &[('𐢀', '𐢞'), ('𐢧', '𐢯')];
pub const NANDINAGARI: &'static [(char, char)] = &[
('\u{119a0}', '\u{119a7}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1025,8 +992,7 @@ pub const NEWA: &'static [(char, char)] =
pub const NKO: &'static [(char, char)] = &[('߀', 'ߺ'), ('\u{7fd}', '߿')];
-pub const NUSHU: &'static [(char, char)] =
- &[('𖿡', '𖿡'), ('𛅰', '𛋻')];
+pub const NUSHU: &'static [(char, char)] = &[('𖿡', '𖿡'), ('𛅰', '𛋻')];
pub const NYIAKENG_PUACHUE_HMONG: &'static [(char, char)] = &[
('\u{1e100}', '\u{1e12c}'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1042,15 +1008,13 @@ pub const OL_CHIKI: &'static [(char, char)] = &[('᱐', '᱿')];
pub const OLD_HUNGARIAN: &'static [(char, char)] =
&[('𐲀', '𐲲'), ('𐳀', '𐳲'), ('𐳺', '𐳿')];
-pub const OLD_ITALIC: &'static [(char, char)] =
- &[('𐌀', '𐌣'), ('𐌭', '𐌯')];
+pub const OLD_ITALIC: &'static [(char, char)] = &[('𐌀', '𐌣'), ('𐌭', '𐌯')];
pub const OLD_NORTH_ARABIAN: &'static [(char, char)] = &[('𐪀', '𐪟')];
pub const OLD_PERMIC: &'static [(char, char)] = &[('𐍐', '\u{1037a}')];
-pub const OLD_PERSIAN: &'static [(char, char)] =
- &[('𐎠', '𐏃'), ('𐏈', '𐏕')];
+pub const OLD_PERSIAN: &'static [(char, char)] = &[('𐎠', '𐏃'), ('𐏈', '𐏕')];
pub const OLD_SOGDIAN: &'static [(char, char)] = &[('𐼀', '𐼧')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1075,19 +1039,12 @@ pub const ORIYA: &'static [(char, char)] = &[
('୦', '୷'),
];
-pub const OSAGE: &'static [(char, char)] =
- &[('𐒰', '𐓓'), ('𐓘', '𐓻')];
+pub const OSAGE: &'static [(char, char)] = &[('𐒰', '𐓓'), ('𐓘', '𐓻')];
-pub const OSMANYA: &'static [(char, char)] =
- &[('𐒀', '𐒝'), ('𐒠', '𐒩')];
+pub const OSMANYA: &'static [(char, char)] = &[('𐒀', '𐒝'), ('𐒠', '𐒩')];
-pub const PAHAWH_HMONG: &'static [(char, char)] = &[
- ('𖬀', '𖭅'),
- ('𖭐', '𖭙'),
- ('𖭛', '𖭡'),
- ('𖭣', '𖭷'),
- ('𖭽', '𖮏'),
-];
+pub const PAHAWH_HMONG: &'static [(char, char)] =
+ &[('𖬀', '𖭅'), ('𖭐', '𖭙'), ('𖭛', '𖭡'), ('𖭣', '𖭷'), ('𖭽', '𖮏')];
pub const PALMYRENE: &'static [(char, char)] = &[('𐡠', '𐡿')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1095,8 +1052,7 @@ pub const PAU_CIN_HAU: &'static [(char, char)] = &[('𑫀', '𑫸')];
pub const PHAGS_PA: &'static [(char, char)] = &[('ꡀ', '꡷')];
-pub const PHOENICIAN: &'static [(char, char)] =
- &[('𐤀', '𐤛'), ('𐤟', '𐤟')];
+pub const PHOENICIAN: &'static [(char, char)] = &[('𐤀', '𐤛'), ('𐤟', '𐤟')];
pub const PSALTER_PAHLAVI: &'static [(char, char)] =
&[('𐮀', '𐮑'), ('𐮙', '𐮜'), ('𐮩', '𐮯')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1105,25 +1061,20 @@ pub const REJANG: &'static [(char, char)] = &[('ꤰ', '꥓'), ('꥟', '꥟')];
pub const RUNIC: &'static [(char, char)] = &[('ᚠ', 'ᛪ'), ('ᛮ', 'ᛸ')];
-pub const SAMARITAN: &'static [(char, char)] =
- &[('ࠀ', '\u{82d}'), ('࠰', '࠾')];
+pub const SAMARITAN: &'static [(char, char)] = &[('ࠀ', '\u{82d}'), ('࠰', '࠾')];
pub const SAURASHTRA: &'static [(char, char)] =
&[('ꢀ', '\u{a8c5}'), ('꣎', '꣙')];
-pub const SHARADA: &'static [(char, char)] =
- &[('\u{11180}', '𑇍'), ('𑇐', '𑇟')];
+pub const SHARADA: &'static [(char, char)] = &[('\u{11180}', '𑇍'), ('𑇐', '𑇟')];
pub const SHAVIAN: &'static [(char, char)] = &[('𐑐', '𐑿')];
pub const SIDDHAM: &'static [(char, char)] =
&[('𑖀', '\u{115b5}'), ('𑖸', '\u{115dd}')];
-pub const SIGNWRITING: &'static [(char, char)] = &[
- ('𝠀', '𝪋'),
- ('\u{1da9b}', '\u{1da9f}'),
- ('\u{1daa1}', '\u{1daaf}'),
-];
+pub const SIGNWRITING: &'static [(char, char)] =
+ &[('𝠀', '𝪋'), ('\u{1da9b}', '\u{1da9f}'), ('\u{1daa1}', '\u{1daaf}')];
pub const SINHALA: &'static [(char, char)] = &[
('ං', 'ඃ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1143,8 +1094,7 @@ pub const SINHALA: &'static [(char, char)] = &[
pub const SOGDIAN: &'static [(char, char)] = &[('𐼰', '𐽙')];
-pub const SORA_SOMPENG: &'static [(char, char)] =
- &[('𑃐', '𑃨'), ('𑃰', '𑃹')];
+pub const SORA_SOMPENG: &'static [(char, char)] = &[('𑃐', '𑃨'), ('𑃰', '𑃹')];
pub const SOYOMBO: &'static [(char, char)] = &[('𑩐', '𑪢')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1156,8 +1106,7 @@ pub const SYLOTI_NAGRI: &'static [(char, char)] = &[('ꠀ', '꠫')];
pub const SYRIAC: &'static [(char, char)] =
&[('܀', '܍'), ('\u{70f}', '\u{74a}'), ('ݍ', 'ݏ'), ('ࡠ', 'ࡪ')];
-pub const TAGALOG: &'static [(char, char)] =
- &[('ᜀ', 'ᜌ'), ('ᜎ', '\u{1714}')];
+pub const TAGALOG: &'static [(char, char)] = &[('ᜀ', 'ᜌ'), ('ᜎ', '\u{1714}')];
pub const TAGBANWA: &'static [(char, char)] =
&[('ᝠ', 'ᝬ'), ('ᝮ', 'ᝰ'), ('\u{1772}', '\u{1773}')];
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1172,11 +1121,9 @@ pub const TAI_THAM: &'static [(char, char)] = &[
('᪠', '᪭'),
];
-pub const TAI_VIET: &'static [(char, char)] =
- &[('ꪀ', 'ꫂ'), ('ꫛ', '꫟')];
+pub const TAI_VIET: &'static [(char, char)] = &[('ꪀ', 'ꫂ'), ('ꫛ', '꫟')];
-pub const TAKRI: &'static [(char, char)] =
- &[('𑚀', '\u{116b8}'), ('𑛀', '𑛉')];
+pub const TAKRI: &'static [(char, char)] = &[('𑚀', '\u{116b8}'), ('𑛀', '𑛉')];
pub const TAMIL: &'static [(char, char)] = &[
('\u{b82}', 'ஃ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1219,8 +1166,7 @@ pub const TELUGU: &'static [(char, char)] = &[
pub const THAANA: &'static [(char, char)] = &[('ހ', 'ޱ')];
-pub const THAI: &'static [(char, char)] =
- &[('ก', '\u{e3a}'), ('เ', '๛')];
+pub const THAI: &'static [(char, char)] = &[('ก', '\u{e3a}'), ('เ', '๛')];
pub const TIBETAN: &'static [(char, char)] = &[
('ༀ', 'ཇ'),
diff --git a/regex-syntax/src/unicode_tables/script.rs b/regex-syntax/src/unicode_tables/script.rs
--- a/regex-syntax/src/unicode_tables/script.rs
+++ b/regex-syntax/src/unicode_tables/script.rs
@@ -1235,19 +1181,16 @@ pub const TIBETAN: &'static [(char, char)] = &[
pub const TIFINAGH: &'static [(char, char)] =
&[('ⴰ', 'ⵧ'), ('ⵯ', '⵰'), ('\u{2d7f}', '\u{2d7f}')];
-pub const TIRHUTA: &'static [(char, char)] =
- &[('𑒀', '𑓇'), ('𑓐', '𑓙')];
+pub const TIRHUTA: &'static [(char, char)] = &[('𑒀', '𑓇'), ('𑓐', '𑓙')];
-pub const UGARITIC: &'static [(char, char)] =
- &[('𐎀', '𐎝'), ('𐎟', '𐎟')];
+pub const UGARITIC: &'static [(char, char)] = &[('𐎀', '𐎝'), ('𐎟', '𐎟')];
pub const VAI: &'static [(char, char)] = &[('ꔀ', 'ꘫ')];
pub const WANCHO: &'static [(char, char)] =
&[('\u{1e2c0}', '\u{1e2f9}'), ('\u{1e2ff}', '\u{1e2ff}')];
-pub const WARANG_CITI: &'static [(char, char)] =
- &[('𑢠', '𑣲'), ('𑣿', '𑣿')];
+pub const WARANG_CITI: &'static [(char, char)] = &[('𑢠', '𑣲'), ('𑣿', '𑣿')];
pub const YI: &'static [(char, char)] = &[('ꀀ', 'ꒌ'), ('꒐', '꓆')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -225,11 +225,9 @@ pub const ARABIC: &'static [(char, char)] = &[
pub const ARMENIAN: &'static [(char, char)] =
&[('Ա', 'Ֆ'), ('ՙ', '֊'), ('֍', '֏'), ('ﬓ', 'ﬗ')];
-pub const AVESTAN: &'static [(char, char)] =
- &[('𐬀', '𐬵'), ('𐬹', '𐬿')];
+pub const AVESTAN: &'static [(char, char)] = &[('𐬀', '𐬵'), ('𐬹', '𐬿')];
-pub const BALINESE: &'static [(char, char)] =
- &[('\u{1b00}', 'ᭋ'), ('᭐', '᭼')];
+pub const BALINESE: &'static [(char, char)] = &[('\u{1b00}', 'ᭋ'), ('᭐', '᭼')];
pub const BAMUM: &'static [(char, char)] = &[('ꚠ', '꛷'), ('𖠀', '𖨸')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -267,12 +265,8 @@ pub const BENGALI: &'static [(char, char)] = &[
('\u{a8f1}', '\u{a8f1}'),
];
-pub const BHAIKSUKI: &'static [(char, char)] = &[
- ('𑰀', '𑰈'),
- ('𑰊', '\u{11c36}'),
- ('\u{11c38}', '𑱅'),
- ('𑱐', '𑱬'),
-];
+pub const BHAIKSUKI: &'static [(char, char)] =
+ &[('𑰀', '𑰈'), ('𑰊', '\u{11c36}'), ('\u{11c38}', '𑱅'), ('𑱐', '𑱬')];
pub const BOPOMOFO: &'static [(char, char)] = &[
('˪', '˫'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -297,8 +291,7 @@ pub const BRAILLE: &'static [(char, char)] = &[('⠀', '⣿')];
pub const BUGINESE: &'static [(char, char)] =
&[('ᨀ', '\u{1a1b}'), ('᨞', '᨟'), ('ꧏ', 'ꧏ')];
-pub const BUHID: &'static [(char, char)] =
- &[('᜵', '᜶'), ('ᝀ', '\u{1753}')];
+pub const BUHID: &'static [(char, char)] = &[('᜵', '᜶'), ('ᝀ', '\u{1753}')];
pub const CANADIAN_ABORIGINAL: &'static [(char, char)] =
&[('᐀', 'ᙿ'), ('ᢰ', 'ᣵ')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -308,12 +301,8 @@ pub const CARIAN: &'static [(char, char)] = &[('𐊠', '𐋐')];
pub const CAUCASIAN_ALBANIAN: &'static [(char, char)] =
&[('𐔰', '𐕣'), ('𐕯', '𐕯')];
-pub const CHAKMA: &'static [(char, char)] = &[
- ('০', '৯'),
- ('၀', '၉'),
- ('\u{11100}', '\u{11134}'),
- ('𑄶', '𑅆'),
-];
+pub const CHAKMA: &'static [(char, char)] =
+ &[('০', '৯'), ('၀', '၉'), ('\u{11100}', '\u{11134}'), ('𑄶', '𑅆')];
pub const CHAM: &'static [(char, char)] =
&[('ꨀ', '\u{aa36}'), ('ꩀ', 'ꩍ'), ('꩐', '꩙'), ('꩜', '꩟')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -514,13 +503,8 @@ pub const DEVANAGARI: &'static [(char, char)] = &[
pub const DOGRA: &'static [(char, char)] =
&[('।', '९'), ('꠰', '꠹'), ('𑠀', '𑠻')];
-pub const DUPLOYAN: &'static [(char, char)] = &[
- ('𛰀', '𛱪'),
- ('𛱰', '𛱼'),
- ('𛲀', '𛲈'),
- ('𛲐', '𛲙'),
- ('𛲜', '\u{1bca3}'),
-];
+pub const DUPLOYAN: &'static [(char, char)] =
+ &[('𛰀', '𛱪'), ('𛱰', '𛱼'), ('𛲀', '𛲈'), ('𛲐', '𛲙'), ('𛲜', '\u{1bca3}')];
pub const EGYPTIAN_HIEROGLYPHS: &'static [(char, char)] =
&[('𓀀', '𓐮'), ('\u{13430}', '\u{13438}')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -852,12 +836,8 @@ pub const INSCRIPTIONAL_PARTHIAN: &'static [(char, char)] =
pub const JAVANESE: &'static [(char, char)] =
&[('\u{a980}', '꧍'), ('ꧏ', '꧙'), ('꧞', '꧟')];
-pub const KAITHI: &'static [(char, char)] = &[
- ('०', '९'),
- ('꠰', '꠹'),
- ('\u{11080}', '𑃁'),
- ('\u{110cd}', '\u{110cd}'),
-];
+pub const KAITHI: &'static [(char, char)] =
+ &[('०', '९'), ('꠰', '꠹'), ('\u{11080}', '𑃁'), ('\u{110cd}', '\u{110cd}')];
pub const KANNADA: &'static [(char, char)] = &[
('\u{951}', '\u{952}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1011,8 +991,7 @@ pub const LISU: &'static [(char, char)] = &[('ꓐ', '꓿')];
pub const LYCIAN: &'static [(char, char)] = &[('𐊀', '𐊜')];
-pub const LYDIAN: &'static [(char, char)] =
- &[('𐤠', '𐤹'), ('𐤿', '𐤿')];
+pub const LYDIAN: &'static [(char, char)] = &[('𐤠', '𐤹'), ('𐤿', '𐤿')];
pub const MAHAJANI: &'static [(char, char)] =
&[('।', '९'), ('꠰', '꠹'), ('𑅐', '𑅶')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1067,11 +1046,8 @@ pub const MEROITIC_CURSIVE: &'static [(char, char)] =
pub const MEROITIC_HIEROGLYPHS: &'static [(char, char)] = &[('𐦀', '𐦟')];
-pub const MIAO: &'static [(char, char)] = &[
- ('𖼀', '\u{16f4a}'),
- ('\u{16f4f}', '\u{16f87}'),
- ('\u{16f8f}', '𖾟'),
-];
+pub const MIAO: &'static [(char, char)] =
+ &[('𖼀', '\u{16f4a}'), ('\u{16f4f}', '\u{16f87}'), ('\u{16f8f}', '𖾟')];
pub const MODI: &'static [(char, char)] =
&[('꠰', '꠹'), ('𑘀', '𑙄'), ('𑙐', '𑙙')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1085,23 +1061,15 @@ pub const MONGOLIAN: &'static [(char, char)] = &[
('𑙠', '𑙬'),
];
-pub const MRO: &'static [(char, char)] =
- &[('𖩀', '𖩞'), ('𖩠', '𖩩'), ('𖩮', '𖩯')];
+pub const MRO: &'static [(char, char)] = &[('𖩀', '𖩞'), ('𖩠', '𖩩'), ('𖩮', '𖩯')];
-pub const MULTANI: &'static [(char, char)] = &[
- ('੦', '੯'),
- ('𑊀', '𑊆'),
- ('𑊈', '𑊈'),
- ('𑊊', '𑊍'),
- ('𑊏', '𑊝'),
- ('𑊟', '𑊩'),
-];
+pub const MULTANI: &'static [(char, char)] =
+ &[('੦', '੯'), ('𑊀', '𑊆'), ('𑊈', '𑊈'), ('𑊊', '𑊍'), ('𑊏', '𑊝'), ('𑊟', '𑊩')];
pub const MYANMAR: &'static [(char, char)] =
&[('က', '႟'), ('꤮', '꤮'), ('ꧠ', 'ꧾ'), ('ꩠ', 'ꩿ')];
-pub const NABATAEAN: &'static [(char, char)] =
- &[('𐢀', '𐢞'), ('𐢧', '𐢯')];
+pub const NABATAEAN: &'static [(char, char)] = &[('𐢀', '𐢞'), ('𐢧', '𐢯')];
pub const NANDINAGARI: &'static [(char, char)] = &[
('।', '॥'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1123,8 +1091,7 @@ pub const NEWA: &'static [(char, char)] =
pub const NKO: &'static [(char, char)] = &[('߀', 'ߺ'), ('\u{7fd}', '߿')];
-pub const NUSHU: &'static [(char, char)] =
- &[('𖿡', '𖿡'), ('𛅰', '𛋻')];
+pub const NUSHU: &'static [(char, char)] = &[('𖿡', '𖿡'), ('𛅰', '𛋻')];
pub const NYIAKENG_PUACHUE_HMONG: &'static [(char, char)] = &[
('\u{1e100}', '\u{1e12c}'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1140,16 +1107,14 @@ pub const OL_CHIKI: &'static [(char, char)] = &[('᱐', '᱿')];
pub const OLD_HUNGARIAN: &'static [(char, char)] =
&[('𐲀', '𐲲'), ('𐳀', '𐳲'), ('𐳺', '𐳿')];
-pub const OLD_ITALIC: &'static [(char, char)] =
- &[('𐌀', '𐌣'), ('𐌭', '𐌯')];
+pub const OLD_ITALIC: &'static [(char, char)] = &[('𐌀', '𐌣'), ('𐌭', '𐌯')];
pub const OLD_NORTH_ARABIAN: &'static [(char, char)] = &[('𐪀', '𐪟')];
pub const OLD_PERMIC: &'static [(char, char)] =
&[('\u{483}', '\u{483}'), ('𐍐', '\u{1037a}')];
-pub const OLD_PERSIAN: &'static [(char, char)] =
- &[('𐎠', '𐏃'), ('𐏈', '𐏕')];
+pub const OLD_PERSIAN: &'static [(char, char)] = &[('𐎠', '𐏃'), ('𐏈', '𐏕')];
pub const OLD_SOGDIAN: &'static [(char, char)] = &[('𐼀', '𐼧')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1178,19 +1143,12 @@ pub const ORIYA: &'static [(char, char)] = &[
('ᳲ', 'ᳲ'),
];
-pub const OSAGE: &'static [(char, char)] =
- &[('𐒰', '𐓓'), ('𐓘', '𐓻')];
+pub const OSAGE: &'static [(char, char)] = &[('𐒰', '𐓓'), ('𐓘', '𐓻')];
-pub const OSMANYA: &'static [(char, char)] =
- &[('𐒀', '𐒝'), ('𐒠', '𐒩')];
+pub const OSMANYA: &'static [(char, char)] = &[('𐒀', '𐒝'), ('𐒠', '𐒩')];
-pub const PAHAWH_HMONG: &'static [(char, char)] = &[
- ('𖬀', '𖭅'),
- ('𖭐', '𖭙'),
- ('𖭛', '𖭡'),
- ('𖭣', '𖭷'),
- ('𖭽', '𖮏'),
-];
+pub const PAHAWH_HMONG: &'static [(char, char)] =
+ &[('𖬀', '𖭅'), ('𖭐', '𖭙'), ('𖭛', '𖭡'), ('𖭣', '𖭷'), ('𖭽', '𖮏')];
pub const PALMYRENE: &'static [(char, char)] = &[('𐡠', '𐡿')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1199,8 +1157,7 @@ pub const PAU_CIN_HAU: &'static [(char, char)] = &[('𑫀', '𑫸')];
pub const PHAGS_PA: &'static [(char, char)] =
&[('᠂', '᠃'), ('᠅', '᠅'), ('ꡀ', '꡷')];
-pub const PHOENICIAN: &'static [(char, char)] =
- &[('𐤀', '𐤛'), ('𐤟', '𐤟')];
+pub const PHOENICIAN: &'static [(char, char)] = &[('𐤀', '𐤛'), ('𐤟', '𐤟')];
pub const PSALTER_PAHLAVI: &'static [(char, char)] =
&[('ـ', 'ـ'), ('𐮀', '𐮑'), ('𐮙', '𐮜'), ('𐮩', '𐮯')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1209,8 +1166,7 @@ pub const REJANG: &'static [(char, char)] = &[('ꤰ', '꥓'), ('꥟', '꥟')];
pub const RUNIC: &'static [(char, char)] = &[('ᚠ', 'ᛪ'), ('ᛮ', 'ᛸ')];
-pub const SAMARITAN: &'static [(char, char)] =
- &[('ࠀ', '\u{82d}'), ('࠰', '࠾')];
+pub const SAMARITAN: &'static [(char, char)] = &[('ࠀ', '\u{82d}'), ('࠰', '࠾')];
pub const SAURASHTRA: &'static [(char, char)] =
&[('ꢀ', '\u{a8c5}'), ('꣎', '꣙')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1230,11 +1186,8 @@ pub const SHAVIAN: &'static [(char, char)] = &[('𐑐', '𐑿')];
pub const SIDDHAM: &'static [(char, char)] =
&[('𑖀', '\u{115b5}'), ('𑖸', '\u{115dd}')];
-pub const SIGNWRITING: &'static [(char, char)] = &[
- ('𝠀', '𝪋'),
- ('\u{1da9b}', '\u{1da9f}'),
- ('\u{1daa1}', '\u{1daaf}'),
-];
+pub const SIGNWRITING: &'static [(char, char)] =
+ &[('𝠀', '𝪋'), ('\u{1da9b}', '\u{1da9f}'), ('\u{1daa1}', '\u{1daaf}')];
pub const SINHALA: &'static [(char, char)] = &[
('।', '॥'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1255,8 +1208,7 @@ pub const SINHALA: &'static [(char, char)] = &[
pub const SOGDIAN: &'static [(char, char)] = &[('ـ', 'ـ'), ('𐼰', '𐽙')];
-pub const SORA_SOMPENG: &'static [(char, char)] =
- &[('𑃐', '𑃨'), ('𑃰', '𑃹')];
+pub const SORA_SOMPENG: &'static [(char, char)] = &[('𑃐', '𑃨'), ('𑃰', '𑃹')];
pub const SOYOMBO: &'static [(char, char)] = &[('𑩐', '𑪢')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1282,12 +1234,8 @@ pub const SYRIAC: &'static [(char, char)] = &[
pub const TAGALOG: &'static [(char, char)] =
&[('ᜀ', 'ᜌ'), ('ᜎ', '\u{1714}'), ('᜵', '᜶')];
-pub const TAGBANWA: &'static [(char, char)] = &[
- ('᜵', '᜶'),
- ('ᝠ', 'ᝬ'),
- ('ᝮ', 'ᝰ'),
- ('\u{1772}', '\u{1773}'),
-];
+pub const TAGBANWA: &'static [(char, char)] =
+ &[('᜵', '᜶'), ('ᝠ', 'ᝬ'), ('ᝮ', 'ᝰ'), ('\u{1772}', '\u{1773}')];
pub const TAI_LE: &'static [(char, char)] =
&[('၀', '၉'), ('ᥐ', 'ᥭ'), ('ᥰ', 'ᥴ')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1300,8 +1248,7 @@ pub const TAI_THAM: &'static [(char, char)] = &[
('᪠', '᪭'),
];
-pub const TAI_VIET: &'static [(char, char)] =
- &[('ꪀ', 'ꫂ'), ('ꫛ', '꫟')];
+pub const TAI_VIET: &'static [(char, char)] = &[('ꪀ', 'ꫂ'), ('ꫛ', '꫟')];
pub const TAKRI: &'static [(char, char)] =
&[('।', '॥'), ('꠰', '꠹'), ('𑚀', '\u{116b8}'), ('𑛀', '𑛉')];
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1366,8 +1313,7 @@ pub const THAANA: &'static [(char, char)] = &[
('﷽', '﷽'),
];
-pub const THAI: &'static [(char, char)] =
- &[('ก', '\u{e3a}'), ('เ', '๛')];
+pub const THAI: &'static [(char, char)] = &[('ก', '\u{e3a}'), ('เ', '๛')];
pub const TIBETAN: &'static [(char, char)] = &[
('ༀ', 'ཇ'),
diff --git a/regex-syntax/src/unicode_tables/script_extension.rs b/regex-syntax/src/unicode_tables/script_extension.rs
--- a/regex-syntax/src/unicode_tables/script_extension.rs
+++ b/regex-syntax/src/unicode_tables/script_extension.rs
@@ -1391,16 +1337,14 @@ pub const TIRHUTA: &'static [(char, char)] = &[
('𑓐', '𑓙'),
];
-pub const UGARITIC: &'static [(char, char)] =
- &[('𐎀', '𐎝'), ('𐎟', '𐎟')];
+pub const UGARITIC: &'static [(char, char)] = &[('𐎀', '𐎝'), ('𐎟', '𐎟')];
pub const VAI: &'static [(char, char)] = &[('ꔀ', 'ꘫ')];
pub const WANCHO: &'static [(char, char)] =
&[('\u{1e2c0}', '\u{1e2f9}'), ('\u{1e2ff}', '\u{1e2ff}')];
-pub const WARANG_CITI: &'static [(char, char)] =
- &[('𑢠', '𑣲'), ('𑣿', '𑣿')];
+pub const WARANG_CITI: &'static [(char, char)] = &[('𑢠', '𑣲'), ('𑣿', '𑣿')];
pub const YI: &'static [(char, char)] = &[
('、', '。'),
diff --git a/src/compile.rs b/src/compile.rs
--- a/src/compile.rs
+++ b/src/compile.rs
@@ -110,7 +110,7 @@ impl Compiler {
/// specified size limit. If the size limit is exceeded, then compilation
/// stops and returns an error.
pub fn compile(mut self, exprs: &[Hir]) -> result::Result<Program, Error> {
- debug_assert!(exprs.len() >= 1);
+ debug_assert!(!exprs.is_empty());
self.num_exprs = exprs.len();
if exprs.len() == 1 {
self.compile_one(&exprs[0])
diff --git a/src/error.rs b/src/error.rs
--- a/src/error.rs
+++ b/src/error.rs
@@ -19,6 +19,8 @@ pub enum Error {
}
impl ::std::error::Error for Error {
+ // TODO: Remove this method entirely on the next breaking semver release.
+ #[allow(deprecated)]
fn description(&self) -> &str {
match *self {
Error::Syntax(ref err) => err,
diff --git a/src/exec.rs b/src/exec.rs
--- a/src/exec.rs
+++ b/src/exec.rs
@@ -691,9 +691,7 @@ impl<'c> ExecNoSync<'c> {
}
AnchoredStart => {
let lits = &self.ro.nfa.prefixes;
- if !self.ro.nfa.is_anchored_start
- || (self.ro.nfa.is_anchored_start && start == 0)
- {
+ if start == 0 || !self.ro.nfa.is_anchored_start {
lits.find_start(&text[start..])
.map(|(s, e)| (start + s, start + e))
} else {
diff --git a/src/literal/imp.rs b/src/literal/imp.rs
--- a/src/literal/imp.rs
+++ b/src/literal/imp.rs
@@ -570,7 +570,7 @@ impl BoyerMooreSearch {
/// Create a new string searcher, performing whatever
/// compilation steps are required.
fn new(pattern: Vec<u8>) -> Self {
- debug_assert!(pattern.len() > 0);
+ debug_assert!(!pattern.is_empty());
let (g, gi) = Self::select_guard(pattern.as_slice());
let skip_table = Self::compile_skip_table(pattern.as_slice());
diff --git a/src/prog.rs b/src/prog.rs
--- a/src/prog.rs
+++ b/src/prog.rs
@@ -410,7 +410,7 @@ impl InstRanges {
self.ranges
.iter()
.map(|&(s, e)| 1 + (e as u32) - (s as u32))
- .fold(0, |acc, len| acc + len) as usize
+ .sum::<u32>() as usize
}
}
diff --git a/src/re_bytes.rs b/src/re_bytes.rs
--- a/src/re_bytes.rs
+++ b/src/re_bytes.rs
@@ -1,7 +1,7 @@
use std::borrow::Cow;
use std::collections::HashMap;
use std::fmt;
-use std::ops::Index;
+use std::ops::{Index, Range};
use std::str::FromStr;
use std::sync::Arc;
diff --git a/src/re_bytes.rs b/src/re_bytes.rs
--- a/src/re_bytes.rs
+++ b/src/re_bytes.rs
@@ -36,10 +36,17 @@ impl<'t> Match<'t> {
self.end
}
+ /// Returns the range over the starting and ending byte offsets of the
+ /// match in the haystack.
+ #[inline]
+ pub fn range(&self) -> Range<usize> {
+ self.start..self.end
+ }
+
/// Returns the matched text.
#[inline]
pub fn as_bytes(&self) -> &'t [u8] {
- &self.text[self.start..self.end]
+ &self.text[self.range()]
}
/// Creates a new match from the given haystack and byte offsets.
diff --git a/src/re_bytes.rs b/src/re_bytes.rs
--- a/src/re_bytes.rs
+++ b/src/re_bytes.rs
@@ -49,6 +56,12 @@ impl<'t> Match<'t> {
}
}
+impl<'t> From<Match<'t>> for Range<usize> {
+ fn from(m: Match<'t>) -> Range<usize> {
+ m.range()
+ }
+}
+
/// A compiled regular expression for matching arbitrary bytes.
///
/// It can be used to search, split or replace text. All searching is done with
diff --git a/src/re_bytes.rs b/src/re_bytes.rs
--- a/src/re_bytes.rs
+++ b/src/re_bytes.rs
@@ -726,11 +739,11 @@ impl<'r, 't> Iterator for Split<'r, 't> {
let text = self.finder.0.text();
match self.finder.next() {
None => {
- if self.last >= text.len() {
+ if self.last > text.len() {
None
} else {
let s = &text[self.last..];
- self.last = text.len();
+ self.last = text.len() + 1; // Next call will return None
Some(s)
}
}
diff --git a/src/re_bytes.rs b/src/re_bytes.rs
--- a/src/re_bytes.rs
+++ b/src/re_bytes.rs
@@ -761,12 +774,19 @@ impl<'r, 't> Iterator for SplitN<'r, 't> {
if self.n == 0 {
return None;
}
+
self.n -= 1;
- if self.n == 0 {
- let text = self.splits.finder.0.text();
- Some(&text[self.splits.last..])
+ if self.n > 0 {
+ return self.splits.next();
+ }
+
+ let text = self.splits.finder.0.text();
+ if self.splits.last > text.len() {
+ // We've already returned all substrings.
+ None
} else {
- self.splits.next()
+ // self.n == 0, so future calls will return None immediately
+ Some(&text[self.splits.last..])
}
}
}
diff --git a/src/re_unicode.rs b/src/re_unicode.rs
--- a/src/re_unicode.rs
+++ b/src/re_unicode.rs
@@ -1,7 +1,7 @@
use std::borrow::Cow;
use std::collections::HashMap;
use std::fmt;
-use std::ops::Index;
+use std::ops::{Index, Range};
use std::str::FromStr;
use std::sync::Arc;
diff --git a/src/re_unicode.rs b/src/re_unicode.rs
--- a/src/re_unicode.rs
+++ b/src/re_unicode.rs
@@ -45,10 +45,17 @@ impl<'t> Match<'t> {
self.end
}
+ /// Returns the range over the starting and ending byte offsets of the
+ /// match in the haystack.
+ #[inline]
+ pub fn range(&self) -> Range<usize> {
+ self.start..self.end
+ }
+
/// Returns the matched text.
#[inline]
pub fn as_str(&self) -> &'t str {
- &self.text[self.start..self.end]
+ &self.text[self.range()]
}
/// Creates a new match from the given haystack and byte offsets.
diff --git a/src/re_unicode.rs b/src/re_unicode.rs
--- a/src/re_unicode.rs
+++ b/src/re_unicode.rs
@@ -64,6 +71,12 @@ impl<'t> From<Match<'t>> for &'t str {
}
}
+impl<'t> From<Match<'t>> for Range<usize> {
+ fn from(m: Match<'t>) -> Range<usize> {
+ m.range()
+ }
+}
+
/// A compiled regular expression for matching Unicode strings.
///
/// It is represented as either a sequence of bytecode instructions (dynamic)
diff --git a/src/re_unicode.rs b/src/re_unicode.rs
--- a/src/re_unicode.rs
+++ b/src/re_unicode.rs
@@ -766,11 +779,11 @@ impl<'r, 't> Iterator for Split<'r, 't> {
let text = self.finder.0.text();
match self.finder.next() {
None => {
- if self.last >= text.len() {
+ if self.last > text.len() {
None
} else {
let s = &text[self.last..];
- self.last = text.len();
+ self.last = text.len() + 1; // Next call will return None
Some(s)
}
}
diff --git a/src/re_unicode.rs b/src/re_unicode.rs
--- a/src/re_unicode.rs
+++ b/src/re_unicode.rs
@@ -801,12 +814,19 @@ impl<'r, 't> Iterator for SplitN<'r, 't> {
if self.n == 0 {
return None;
}
+
self.n -= 1;
- if self.n == 0 {
- let text = self.splits.finder.0.text();
- Some(&text[self.splits.last..])
+ if self.n > 0 {
+ return self.splits.next();
+ }
+
+ let text = self.splits.finder.0.text();
+ if self.splits.last > text.len() {
+ // We've already returned all substrings.
+ None
} else {
- self.splits.next()
+ // self.n == 0, so future calls will return None immediately
+ Some(&text[self.splits.last..])
}
}
}
|
[
"628",
"521"
] | 637
|
(#521, #627) Fixes for split() and splitn()
* #627: Corrects `/-/.split("a-")` to return `["a", ""]` correctly instead of `["a"]`.
* #521: Corrects `/-/.splitn("a", 2)` to return `["a"]` correctly instead of `["a", ""]`.
* Adds a bunch of tests.
* Adds entries in CHANGELOG.md.
Note that a couple of existing tests (`split2` and `split3`) were passing incorrectly before these changes.
I’m using `/-/` as a short hand for `Regex::new("-").unwrap()`. It seems clear enough, but then I’ve written a lot of code in languages with regex literals.
This supersedes PR #606 which attempted to fix #521.
_I disclaim ownership of these changes. They are owned by whoever owns the bulk of the rest of the code. (I am not a lawyer, but I’ll head them off at the pass if I can.)_
splitn(.., 2) returning extra substring
I'm seeing an extra substring produced by `splitn` in [this code](https://play.rust-lang.org/?gist=ec14b389fde3e7080c0d8d7620a57125&version=stable&mode=debug&edition=2015).
I'd expect splitn(1), splitn(2), and splitn(3) to produce the same output, but splitn is returning an extra empty substring.
|
1.3
|
e36670a90585b940b0d4f780a053c6db1be7b863
|
96456ddcc91d8d2e98d4b6f32ebd052d879d6a67
|
[
"api::split2",
"api::split3",
"api::split_empty",
"api::split_trailing_blank",
"api::split_trailing_blanks",
"api::splitn_below_limit"
] |
[
"src/lib.rs - (line 26)",
"src/lib.rs - (line 69)",
"src/lib.rs - (line 244)",
"src/lib.rs - (line 425)",
"src/lib.rs - (line 36)",
"src/lib.rs - (line 391)",
"src/lib.rs - (line 137)",
"src/lib.rs - (line 120)",
"src/lib.rs - (line 406)",
"src/lib.rs - (line 217)",
"src/re_set.rs - re_set::bytes::RegexSet (line 451)",
"src/lib.rs - (line 415)",
"src/lib.rs - bytes (line 687)",
"src/lib.rs - bytes (line 668)",
"src/lib.rs - (line 162)",
"src/lib.rs - (line 95)",
"src/re_set.rs - re_set::bytes::RegexSet::new (line 435)",
"src/re_bytes.rs - re_bytes::Regex::replace (line 379)",
"src/re_set.rs - re_set::bytes::RegexSet::is_match (line 443)",
"src/re_set.rs - re_set::bytes::RegexSet::matches (line 442)",
"src/re_set.rs - re_set::unicode::RegexSet::matches (line 413)",
"src/re_unicode.rs - re_unicode::Regex::replace (line 432)",
"src/re_set.rs - re_set::unicode::RegexSet::new (line 406)",
"src/re_set.rs - re_set::unicode::RegexSet::is_match (line 414)",
"src/re_set.rs - re_set::bytes::RegexSet::patterns (line 434)",
"src/re_set.rs - re_set::unicode::RegexSet::patterns (line 405)",
"src/re_set.rs - re_set::unicode::RegexSet (line 422)",
"allow_octal",
"api::capture_index",
"api::capture_index_lifetime",
"api::capture_misc",
"api::empty_match_captures_iter",
"api::capture_names",
"api::empty_match_find_iter",
"api::capture_index_panic_usize - should panic",
"api::empty_regex_empty_match",
"api::capture_index_panic_name - should panic",
"api::expand1",
"api::expand10",
"api::expand3",
"api::expand2",
"api::empty_regex_nonempty_match",
"api::expand5",
"api::expand4",
"api::expand7",
"api::expand6",
"api::expand8",
"api::first_range_starts_with_left_bracket",
"api::expand9",
"api::many_sequential_zero_length_match",
"api::many_zero_length_match",
"api::one_zero_length_match",
"api::range_ends_with_escape",
"api::quoted_bracket_set",
"api::split1",
"api::regex_string",
"api::splitn_at_limit",
"api::splitn_above_limit",
"api::split_none",
"api::splitn_trailing_separator",
"api::splitn_empty",
"api::splitn_zero_limit",
"api_str::empty_match_unicode_find_iter",
"api::splitn_trailing_blank",
"api::sub_capture_matches",
"api_str::match_as_str",
"crazy::ascii_literal",
"crazy::match_date2",
"crazy::greedy_range_many",
"crazy::greedy_one_many_optional",
"crazy::match_empty2",
"crazy::match_empty10",
"crazy::match_float2",
"crazy::greedy_many_optional",
"crazy::match_email",
"crazy::match_float1",
"crazy::match_date3",
"api_str::empty_match_unicode_captures_iter",
"crazy::match_empty7",
"crazy::lazy_many_optional",
"crazy::lazy_range_many",
"crazy::match_ranges",
"crazy::match_empty3",
"crazy::match_ranges_not",
"crazy::greedy_many_many",
"crazy::match_float3",
"crazy::match_empty1",
"crazy::match_email_big",
"crazy::match_float4",
"crazy::lazy_one_many_many",
"crazy::match_empty11",
"crazy::match_start_end_empty_many_2",
"crazy::negclass_comma_space",
"crazy::lazy_many_many",
"crazy::lazy_one_many_optional",
"crazy::negclass_letter_space",
"crazy::match_start_end_empty",
"crazy::greedy_one_many_many",
"crazy::match_empty4",
"crazy::greedy_range_min_many",
"crazy::match_empty5",
"crazy::match_empty6",
"crazy::match_email_not",
"crazy::negclass_letter_comma",
"crazy::match_start_end_empty_many_1",
"crazy::match_empty9",
"crazy::match_date1",
"crazy::match_empty8",
"crazy::match_start_end_empty_rep",
"disallow_octal",
"crazy::negclass_ascii",
"crazy::negclass_comma",
"crazy::match_start_end_empty_rep_rev",
"crazy::negclass_space_comma",
"flags::match_flag_case_dotnl_toggle_ok",
"fowler::match_basic_102",
"crazy::lazy_range_min_many",
"crazy::match_start_end_empty_rev",
"crazy::negclass_space",
"crazy::negclass_letters",
"fowler::match_basic_103",
"fowler::match_basic_105",
"fowler::match_basic_106",
"flags::match_flag_case",
"flags::match_flag_multi",
"fowler::match_basic_101",
"fowler::match_basic_10",
"fowler::match_basic_108",
"fowler::match_basic_109",
"flags::match_flag_case_dotnl_toggle",
"flags::match_flag_case_dotnl",
"disallow_non_utf8",
"fowler::match_basic_104",
"fowler::match_basic_114",
"fowler::match_basic_115",
"flags::match_flag_ungreedy",
"fowler::match_basic_110",
"flags::match_flag_ungreedy_greedy",
"flags::match_flag_case_dotnl_toggle_not",
"flags::match_flag_ungreedy_noop",
"fowler::match_basic_107",
"fowler::match_basic_100",
"fowler::match_basic_113",
"fowler::match_basic_116",
"flags::match_flag_weird_case",
"fowler::match_basic_111",
"fowler::match_basic_112",
"flags::match_flag_weird_case_not",
"fowler::match_basic_117",
"fowler::match_basic_118",
"fowler::match_basic_119",
"fowler::match_basic_12",
"fowler::match_basic_123",
"fowler::match_basic_135",
"fowler::match_basic_122",
"fowler::match_basic_145",
"fowler::match_basic_146",
"fowler::match_basic_120",
"fowler::match_basic_129",
"fowler::match_basic_125",
"fowler::match_basic_137",
"fowler::match_basic_126",
"fowler::match_basic_131",
"fowler::match_basic_142",
"fowler::match_basic_121",
"fowler::match_basic_138",
"fowler::match_basic_144",
"fowler::match_basic_139",
"fowler::match_basic_147",
"fowler::match_basic_15",
"fowler::match_basic_128",
"fowler::match_basic_132",
"fowler::match_basic_133",
"fowler::match_basic_141",
"fowler::match_basic_149",
"fowler::match_basic_124",
"fowler::match_basic_134",
"fowler::match_basic_140",
"fowler::match_basic_148",
"fowler::match_basic_151",
"fowler::match_basic_152",
"fowler::match_basic_150",
"fowler::match_basic_16",
"fowler::match_basic_160",
"fowler::match_basic_162",
"fowler::match_basic_153",
"fowler::match_basic_168",
"fowler::match_basic_154",
"fowler::match_basic_156",
"fowler::match_basic_155",
"fowler::match_basic_157",
"fowler::match_basic_167",
"fowler::match_basic_159",
"fowler::match_basic_166",
"fowler::match_basic_158",
"fowler::match_basic_17",
"fowler::match_basic_165",
"fowler::match_basic_163",
"fowler::match_basic_189",
"fowler::match_basic_19",
"fowler::match_basic_183",
"fowler::match_basic_161",
"fowler::match_basic_171",
"fowler::match_basic_164",
"fowler::match_basic_187",
"fowler::match_basic_188",
"fowler::match_basic_169",
"fowler::match_basic_184",
"fowler::match_basic_195",
"fowler::match_basic_196",
"fowler::match_basic_197",
"fowler::match_basic_198",
"fowler::match_basic_18",
"fowler::match_basic_177",
"fowler::match_basic_175",
"fowler::match_basic_180",
"fowler::match_basic_182",
"fowler::match_basic_194",
"fowler::match_basic_206",
"fowler::match_basic_174",
"fowler::match_basic_204",
"fowler::match_basic_205",
"fowler::match_basic_170",
"fowler::match_basic_191",
"fowler::match_basic_203",
"fowler::match_basic_172",
"fowler::match_basic_20",
"fowler::match_basic_185",
"fowler::match_basic_176",
"fowler::match_basic_192",
"fowler::match_basic_199",
"fowler::match_basic_173",
"fowler::match_basic_181",
"fowler::match_basic_178",
"fowler::match_basic_209",
"fowler::match_basic_186",
"fowler::match_basic_179",
"fowler::match_basic_201",
"fowler::match_basic_212",
"fowler::match_basic_190",
"fowler::match_basic_193",
"fowler::match_basic_200",
"fowler::match_basic_202",
"fowler::match_basic_215",
"fowler::match_basic_21",
"fowler::match_basic_218",
"fowler::match_basic_211",
"fowler::match_basic_217",
"fowler::match_basic_30",
"fowler::match_basic_221",
"fowler::match_basic_24",
"fowler::match_basic_208",
"fowler::match_basic_3",
"fowler::match_basic_219",
"fowler::match_basic_32",
"fowler::match_basic_216",
"fowler::match_basic_210",
"fowler::match_basic_213",
"fowler::match_basic_28",
"fowler::match_basic_33",
"fowler::match_basic_4",
"fowler::match_basic_22",
"fowler::match_basic_26",
"fowler::match_basic_220",
"fowler::match_basic_29",
"fowler::match_basic_23",
"fowler::match_basic_27",
"fowler::match_basic_34",
"fowler::match_basic_35",
"fowler::match_basic_36",
"fowler::match_basic_38",
"fowler::match_basic_37",
"fowler::match_basic_207",
"fowler::match_basic_39",
"fowler::match_basic_41",
"fowler::match_basic_25",
"fowler::match_basic_45",
"fowler::match_basic_51",
"fowler::match_basic_214",
"fowler::match_basic_50",
"fowler::match_basic_5",
"fowler::match_basic_40",
"fowler::match_basic_59",
"fowler::match_basic_65",
"fowler::match_basic_44",
"fowler::match_basic_57",
"fowler::match_basic_42",
"fowler::match_basic_55",
"fowler::match_basic_48",
"fowler::match_basic_43",
"fowler::match_basic_70",
"fowler::match_basic_56",
"fowler::match_basic_69",
"fowler::match_basic_79",
"fowler::match_basic_49",
"fowler::match_basic_47",
"fowler::match_basic_66",
"fowler::match_basic_7",
"fowler::match_basic_80",
"fowler::match_basic_54",
"fowler::match_basic_6",
"fowler::match_basic_53",
"fowler::match_basic_46",
"fowler::match_basic_68",
"fowler::match_basic_67",
"fowler::match_basic_85",
"fowler::match_basic_84",
"fowler::match_basic_78",
"fowler::match_basic_58",
"fowler::match_basic_77",
"fowler::match_basic_87",
"fowler::match_basic_88",
"fowler::match_basic_91",
"fowler::match_basic_92",
"fowler::match_basic_52",
"fowler::match_basic_76",
"fowler::match_basic_86",
"fowler::match_basic_97",
"fowler::match_basic_71",
"fowler::match_basic_83",
"fowler::match_basic_90",
"fowler::match_basic_96",
"fowler::match_basic_81",
"fowler::match_basic_73",
"fowler::match_basic_89",
"fowler::match_basic_95",
"fowler::match_nullsubexpr_15",
"fowler::match_basic_72",
"fowler::match_basic_9",
"fowler::match_basic_98",
"fowler::match_basic_94",
"fowler::match_basic_99",
"fowler::match_basic_93",
"fowler::match_nullsubexpr_12",
"fowler::match_nullsubexpr_26",
"fowler::match_nullsubexpr_16",
"fowler::match_nullsubexpr_18",
"fowler::match_nullsubexpr_10",
"fowler::match_nullsubexpr_25",
"fowler::match_nullsubexpr_21",
"fowler::match_nullsubexpr_19",
"fowler::match_nullsubexpr_14",
"fowler::match_nullsubexpr_32",
"fowler::match_nullsubexpr_17",
"fowler::match_nullsubexpr_11",
"fowler::match_nullsubexpr_27",
"fowler::match_nullsubexpr_24",
"fowler::match_nullsubexpr_28",
"fowler::match_nullsubexpr_34",
"fowler::match_nullsubexpr_23",
"fowler::match_nullsubexpr_13",
"fowler::match_nullsubexpr_29",
"fowler::match_nullsubexpr_40",
"fowler::match_nullsubexpr_50",
"fowler::match_nullsubexpr_6",
"fowler::match_nullsubexpr_3",
"fowler::match_nullsubexpr_36",
"fowler::match_nullsubexpr_38",
"fowler::match_nullsubexpr_5",
"fowler::match_nullsubexpr_69",
"fowler::match_nullsubexpr_41",
"fowler::match_nullsubexpr_30",
"fowler::match_nullsubexpr_42",
"fowler::match_nullsubexpr_46",
"fowler::match_nullsubexpr_39",
"fowler::match_nullsubexpr_45",
"fowler::match_nullsubexpr_33",
"fowler::match_nullsubexpr_43",
"fowler::match_nullsubexpr_37",
"fowler::match_nullsubexpr_48",
"fowler::match_nullsubexpr_78",
"fowler::match_repetition_100",
"fowler::match_nullsubexpr_35",
"fowler::match_nullsubexpr_75",
"fowler::match_nullsubexpr_77",
"fowler::match_nullsubexpr_79",
"fowler::match_nullsubexpr_9",
"fowler::match_nullsubexpr_73",
"fowler::match_nullsubexpr_7",
"fowler::match_repetition_10",
"fowler::match_repetition_104",
"fowler::match_repetition_114",
"fowler::match_nullsubexpr_70",
"fowler::match_nullsubexpr_8",
"fowler::match_nullsubexpr_71",
"fowler::match_repetition_133",
"fowler::match_repetition_130",
"fowler::match_nullsubexpr_74",
"fowler::match_repetition_110",
"fowler::match_repetition_126",
"fowler::match_repetition_11",
"fowler::match_repetition_127",
"fowler::match_repetition_108",
"fowler::match_repetition_145",
"fowler::match_repetition_147",
"fowler::match_repetition_15",
"fowler::match_repetition_128",
"fowler::match_repetition_102",
"fowler::match_repetition_131",
"fowler::match_repetition_137",
"fowler::match_repetition_106",
"fowler::match_repetition_129",
"fowler::match_repetition_135",
"fowler::match_repetition_14",
"fowler::match_repetition_20",
"fowler::match_repetition_132",
"fowler::match_repetition_21",
"fowler::match_repetition_115",
"fowler::match_repetition_112",
"fowler::match_repetition_156",
"fowler::match_repetition_136",
"fowler::match_repetition_143",
"fowler::match_repetition_163",
"fowler::match_repetition_30",
"fowler::match_repetition_159",
"fowler::match_repetition_16",
"fowler::match_repetition_25",
"fowler::match_basic_74",
"fowler::match_repetition_134",
"fowler::match_repetition_12",
"fowler::match_repetition_161",
"fowler::match_repetition_18",
"fowler::match_repetition_24",
"fowler::match_repetition_149",
"fowler::match_repetition_22",
"fowler::match_basic_75",
"fowler::match_repetition_38",
"fowler::match_repetition_40",
"fowler::match_repetition_150",
"fowler::match_repetition_26",
"fowler::match_repetition_28",
"fowler::match_repetition_41",
"fowler::match_repetition_53",
"fowler::match_repetition_68",
"fowler::match_repetition_75",
"fowler::match_repetition_32",
"fowler::match_repetition_31",
"fowler::match_repetition_34",
"fowler::match_repetition_73",
"fowler::match_repetition_158",
"fowler::match_repetition_154",
"fowler::match_repetition_64",
"fowler::match_repetition_46",
"fowler::match_repetition_42",
"fowler::match_repetition_76",
"fowler::match_repetition_152",
"fowler::match_repetition_36",
"fowler::match_repetition_65",
"fowler::match_repetition_57",
"fowler::match_repetition_47",
"fowler::match_repetition_81",
"fowler::match_repetition_77",
"fowler::match_repetition_90",
"fowler::match_repetition_67",
"fowler::match_repetition_44",
"fowler::match_repetition_70",
"fowler::match_repetition_59",
"fowler::match_repetition_50",
"fowler::match_repetition_35",
"fowler::match_repetition_61",
"fowler::match_repetition_79",
"fowler::match_repetition_83",
"fowler::match_repetition_94",
"fowler::match_repetition_96",
"fowler::match_repetition_56",
"fowler::match_repetition_63",
"fowler::match_repetition_93",
"fowler::match_repetition_52",
"fowler::match_repetition_91",
"misc::one_literal_edge",
"fowler::match_repetition_97",
"fowler::match_repetition_92",
"fowler::match_repetition_95",
"multiline::match_multi_rep_10",
"fowler::match_repetition_80",
"misc::prefix_literal_nomatch",
"multiline::match_multi_rep_16",
"multiline::match_multi_7",
"multiline::match_multi_8",
"multiline::match_multi_rep_17",
"multiline::match_multi_rep_13",
"misc::terminates",
"fowler::match_repetition_54",
"multiline::match_multi_4",
"multiline::match_multi_rep_4",
"fowler::match_repetition_98",
"multiline::match_multi_rep_12",
"multiline::match_multi_9",
"multiline::match_multi_rep_3",
"misc::prefix_literal_match",
"multiline::match_multi_2",
"multiline::match_multi_5",
"multiline::match_multi_1",
"multiline::match_multi_3",
"multiline::match_multi_rep_1",
"multiline::match_multi_rep_9",
"multiline::match_multi_rep_11",
"noparse::fail_bad_flag",
"noparse::fail_dupe_named",
"multiline::match_multi_6",
"multiline::match_multi_rep_5",
"multiline::match_multi_rep_2",
"noparse::fail_close_paren",
"multiline::match_multi_rep_14",
"noparse::fail_class_no_boundary",
"multiline::match_multi_rep_6",
"multiline::match_multi_rep_7",
"noparse::fail_empty_alt5",
"noparse::fail_empty_alt1",
"multiline::match_multi_rep_8",
"noparse::fail_class_incomplete",
"noparse::fail_class_no_begin",
"noparse::fail_bad_capture_name",
"noparse::fail_class_no_end",
"multiline::match_multi_rep_15",
"noparse::fail_class_not_closed",
"noparse::fail_counted_no_close",
"noparse::fail_empty_alt3",
"noparse::fail_hex_short",
"noparse::fail_empty_alt2",
"noparse::fail_hex_long_digits",
"noparse::fail_empty_alt4",
"noparse::fail_empty_alt6",
"noparse::fail_double_neg",
"noparse::fail_flag_bad",
"noparse::fail_empty_capture_name",
"noparse::fail_invalid_range",
"noparse::fail_empty_alt7",
"noparse::fail_neg_empty",
"noparse::fail_flag_empty",
"noparse::fail_hex_digit",
"noparse::fail_incomplete_escape",
"noparse::fail_no_repeat_arg",
"noparse::fail_octal_digit",
"noparse::fail_range_end_no_begin",
"noparse::fail_unfinished_cap",
"oibits",
"noparse::fail_range_end_no_boundary",
"regression::anchored_prefix2",
"regression::ahocorasick1",
"regression::lits_unambiguous1",
"noparse::fail_unfinished_escape",
"regression::blank_matches_nothing_between_space_and_tab",
"regression::inverted_blank_matches_everything_between_space_and_tab",
"noparse::fail_open_paren",
"regression::anchored_prefix1",
"regression::invalid_regexes_no_crash",
"regression::partial_anchor",
"regression::regression_invalid_flags_expression",
"regression::partial_anchor_alternate_begin",
"noparse::fail_range_end_no_class",
"oibits_regression",
"regression::captures_after_dfa_premature_end3",
"regression::partial_anchor_alternate_end",
"regression::regression_unsorted_binary_search_1",
"regression::many_alternates",
"regression::anchored_prefix3",
"regression::captures_after_dfa_premature_end1",
"regression::captures_after_dfa_premature_end2",
"regression::endl_or_wb",
"regression::reverse_suffix1",
"regression::reverse_suffix2",
"regression::strange_anchor_non_complete_prefix",
"noparse::fail_range_end_no_end",
"replace::closure_returning_reference",
"replace::closure_returning_value",
"regression::regression_invalid_repetition_expr",
"regression::regression_alt_in_alt1",
"regression::regression_captures_rep",
"regression::lits_unambiguous2",
"regression::regression_ascii_word_underscore",
"regression::regression_leftmost_first_prefix",
"replace::match_at_start_replace_with_empty",
"regression::literal_panic",
"regression::regression_alt_in_alt2",
"replace::all",
"replace::no_expand1",
"replace::plus",
"replace::single_empty_match",
"replace::literal_dollar2",
"replace::double_dollar",
"replace::simple_expand",
"searcher::searcher_empty_regex_empty_haystack",
"searcher::searcher_many_zero_length_matches",
"replace::trim",
"regression::strange_anchor_non_complete_suffix",
"regression::reverse_suffix3",
"replace::capture_longest_possible_name",
"regression::y_or_endl",
"searcher::searcher_empty_haystack",
"searcher::searcher_reject_first",
"replace::first",
"replace::no_expand2",
"searcher::searcher_no_match",
"searcher::searcher_one_match",
"searcher::searcher_one_zero_length_matches",
"searcher::searcher_two_adjacent_matches",
"regression::zero_or_end",
"replace::groups",
"replace::number_hypen",
"replace::literal_dollar1",
"set::nset1",
"searcher::searcher_empty_regex",
"searcher::searcher_two_non_adjacent_matches",
"searcher::searcher_unicode",
"regression::regression_unsorted_binary_search_2",
"set::get_set_patterns",
"replace::named",
"set::regression_subsequent_matches",
"set::set1",
"set::nset2",
"set::set12",
"set::set17",
"set::set11",
"set::set18",
"set::nset4",
"set::nset3",
"set::set2",
"set::set16",
"suffix_reverse::t01",
"set::set3",
"set::set13",
"set::set10",
"set::set9",
"shortest_match::t01",
"set::set14",
"set::set4",
"set::set5",
"set::set6",
"set::set15",
"suffix_reverse::t05",
"set::set8",
"shortest_match::t02",
"set::set7",
"suffix_reverse::t06",
"suffix_reverse::t02",
"suffix_reverse::t03",
"suffix_reverse::t04",
"crazy::nest_limit_makes_it_parse",
"regression::regression_many_repeat_stack_overflow",
"noparse::fail_too_big",
"crazy::dfa_handles_pathological_case",
"bytes::ascii_boundary_no_capture",
"bytes::case_not_unicode",
"bytes::dotstar_prefix_not_unicode2",
"bytes::case_ascii_class",
"bytes::ascii_boundary_capture",
"bytes::end_not_wb",
"bytes::negated_full_byte_range",
"bytes::dotstar_prefix_not_unicode1",
"bytes::negate_unicode",
"bytes::case_ascii_one",
"bytes::perl_s_ascii",
"bytes::invalidutf8_anchor3",
"bytes::perl_w_ascii",
"bytes::word_boundary_ascii1",
"bytes::invalidutf8_anchor1",
"bytes::word_boundary_ascii2",
"bytes::perl_d_ascii",
"bytes::negate_not_unicode",
"bytes::mixed1",
"bytes::word_not_boundary",
"bytes::null_bytes",
"bytes::invalidutf8_anchor2",
"bytes::word_boundary",
"invalid_utf8_nfa2",
"invalid_utf8_nfa3",
"invalid_utf8_nfa4",
"invalid_utf8_nfa1",
"regression::regression_negated_char_class_2",
"regression::split_on_word_boundary",
"regression::wb_start_x",
"regression::word_boundary_dfa",
"regression::regression_negated_char_class_1",
"regression::regression_nfa_stops1",
"unicode::uni_class_gcb_prepend",
"unicode::uni_class_gencat_connector_punctuation",
"unicode::uni_class_gencat_close_punctuation",
"unicode::uni_boundary_none",
"unicode::uni_class_gcb_ri2",
"unicode::uni_class_gencat_enclosing_mark",
"unicode::uni_class_gencat_control",
"unicode::uni_class_gcb_zwj",
"unicode::uni_boundary_ogham",
"unicode::uni_class_gencat_decimal_numer",
"unicode::uni_class_gcb_ri1",
"unicode::uni_case",
"regression::uni_case_lower_nocase_flag",
"unicode::uni_class_gencat_currency_symbol",
"unicode::uni_class_gencat_format",
"unicode::uni_class_gcb_ri3",
"unicode::uni_class_gencat_final_punctuation",
"unicode::uni_class_gencat_modifier_letter",
"unicode::uni_class_gencat_modifier_symbol",
"unicode::uni_class_gencat_initial_punctuation",
"unicode::uni_class_gencat_line_separator",
"unicode::uni_class_gencat_letter_number",
"unicode::uni_class_gencat_other_number",
"unicode::uni_class_gencat_paragraph_separator",
"unicode::uni_class_gencat_dash_punctuation",
"unicode::uni_class_gencat_cased_letter",
"unicode::uni_class_gencat_math",
"unicode::uni_class_gencat_separator",
"unicode::uni_class_gencat_private_use",
"unicode::uni_class_gencat_open_punctuation",
"unicode::uni_case_upper_nocase_flag",
"unicode::uni_class_gencat_space_separator",
"unicode::uni_class_gencat_other_punctuation",
"unicode::uni_class_gencat_number",
"unicode::uni_class_plus",
"unicode::uni_class_gencat_mark",
"unicode::uni_class_prop_picto2",
"unicode::uni_class_gencat_spacing_mark",
"unicode::uni_class_gencat_titlecase_letter",
"unicode::uni_class_gencat_other_symbol",
"unicode::uni_class_wb4",
"unicode::uni_class_sb4",
"unicode::uni_class_prop_picto1",
"unicode::uni_literal",
"unicode::uni_class_gencat_punctuation",
"unicode::uni_class_prop_emoji2",
"unicode::uni_class_sb5",
"unicode::uni_class_prop_emoji1",
"unicode::uni_class_sb3",
"unicode::uni_class_wb1",
"unicode::uni_class_wb5",
"unicode::uni_class_gencat_nonspacing_mark",
"unicode::uni_class_wb2",
"unicode::uni_literal_plus",
"unicode::uni_mixed",
"unicode::uni_not_boundary_ogham",
"unicode::uni_class_wb3",
"unicode::uni_case_upper",
"unicode::uni_not_boundary_none",
"unicode::uni_perl_d_neg",
"unicode::uni_perl_d_not",
"unicode::uni_not_class_neg",
"unicode::uni_class_gencat_symbol",
"unicode::uni_literal_casei_plus",
"unicode::uni_case_upper_nocase",
"unicode::uni_perl_d",
"unicode::uni_one",
"word_boundary::nb11",
"word_boundary::nb13",
"unicode::uni_perl_s",
"unicode::uni_class_gcb_lvt",
"unicode::uni_perl_s_neg",
"unicode::uni_perl_s_not",
"word_boundary::nb14",
"unicode::uni_case_lower",
"word_boundary::nb10",
"word_boundary::nb12",
"word_boundary::nb15",
"word_boundary::nb17",
"word_boundary::nb2",
"word_boundary::nb1",
"word_boundary::nb22",
"word_boundary::nb21",
"word_boundary::nb18",
"word_boundary::nb19",
"word_boundary::nb26",
"word_boundary::nb16",
"word_boundary::nb20",
"unicode::uni_class_gencat_unassigned",
"unicode::uni_not_class",
"unicode::uni_class_gencat_lowercase_letter",
"word_boundary::nb29",
"word_boundary::nb33",
"word_boundary::nb35",
"word_boundary::nb23",
"word_boundary::nb24",
"word_boundary::nb30",
"word_boundary::nb31",
"word_boundary::nb25",
"word_boundary::nb28",
"word_boundary::nb38",
"word_boundary::nb36",
"word_boundary::nb37",
"word_boundary::nb8",
"unicode::uni_not",
"word_boundary::unicode1",
"word_boundary::unicode2",
"word_boundary::wb1",
"word_boundary::nb27",
"word_boundary::nb34",
"unicode::uni_class_sb1",
"word_boundary::nb9",
"word_boundary::nb32",
"word_boundary::nb39",
"word_boundary::nb3",
"word_boundary::nb4",
"word_boundary::nb5",
"word_boundary::nb7",
"word_boundary::nb6",
"word_boundary::wb2",
"word_boundary::wb12",
"word_boundary::wb21",
"word_boundary::wb26",
"word_boundary::wb20",
"word_boundary::wb17",
"word_boundary::wb24",
"word_boundary::wb14",
"word_boundary::wb13",
"word_boundary::wb11",
"unicode::uni_class_gencat_letter",
"word_boundary::wb33",
"word_boundary::wb30",
"word_boundary::wb18",
"word_boundary::wb19",
"word_boundary::wb10",
"word_boundary::wb15",
"word_boundary::wb16",
"word_boundary::wb31",
"word_boundary::wb22",
"word_boundary::wb27",
"word_boundary::wb34",
"word_boundary::wb28",
"word_boundary::wb25",
"word_boundary::wb23",
"word_boundary::wb35",
"word_boundary::wb38",
"word_boundary::wb32",
"word_boundary::wb3",
"word_boundary::wb29",
"word_boundary::wb37",
"word_boundary::wb7",
"word_boundary::wb4",
"word_boundary::wb9",
"word_boundary::wb41",
"word_boundary::wb40",
"word_boundary::wb5",
"word_boundary::wb6",
"word_boundary::wb36",
"word_boundary::wb8",
"word_boundary::wb39",
"word_boundary_unicode::unicode2",
"word_boundary_unicode::ascii1",
"unicode::uni_class_gencat_uppercase_letter",
"unicode::uni_class_sb2",
"word_boundary_unicode::unicode1",
"unicode::uni_class_gencat_other_letter",
"unicode::uni_class_gencat_other",
"unicode::uni_perl_w_neg",
"unicode::uni_perl_w",
"unicode::uni_perl_w_not",
"bytes::word_not_boundary_unicode",
"bytes::perl_d_unicode",
"bytes::word_boundary_unicode",
"bytes::case_unicode",
"bytes::perl_s_unicode",
"bytes::perl_w_unicode"
] |
[] |
[] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.