From 150c732eefce15f142681b99ccdc8e22e9a05e04 Mon Sep 17 00:00:00 2001 From: Jonas Maier Date: Sat, 6 Jun 2026 20:49:07 +0200 Subject: regex: perf --- src/regex/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/regex/mod.rs') diff --git a/src/regex/mod.rs b/src/regex/mod.rs index f10a92d..cdbfe0d 100644 --- a/src/regex/mod.rs +++ b/src/regex/mod.rs @@ -3,7 +3,7 @@ mod byte_range; pub mod dfa; pub mod enfa; pub mod simple; -mod decision_tree; +pub mod decision_tree; #[derive(PartialEq, Eq, Debug, Clone, Copy, Hash)] pub enum LookDirection { @@ -284,7 +284,6 @@ impl RegexEngine for CompiledPattern { macro_rules! all_engines { ($ty_name:ident, $($x:ident : $ty:ty,)*) => { - #[derive(Debug)] pub struct $ty_name { $(pub $x: Option<$ty>,)* } -- cgit v1.2.3