aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/mod.rs')
-rw-r--r--src/regex/mod.rs3
1 files changed, 1 insertions, 2 deletions
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>,)*
}