Skip to content

Commit

Permalink
feat: Add support for converting regex ASTs to NFAs. (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-He authored Dec 4, 2024
1 parent c23da18 commit c9aba92
Show file tree
Hide file tree
Showing 12 changed files with 688 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
mod nfa;
pub mod parser;

const VERSION: &str = "0.0.1";
Expand Down
1 change: 1 addition & 0 deletions src/nfa/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod nfa;
Loading

0 comments on commit c9aba92

Please sign in to comment.