We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26808ad commit 32c5e6eCopy full SHA for 32c5e6e
src/lib.rs
@@ -7,6 +7,8 @@ pub mod logger;
7
pub mod parse_email;
8
pub mod proof;
9
pub mod regex;
10
+
11
+#[cfg(target_arch = "wasm32")]
12
pub mod wasm;
13
14
pub use circuit::*;
src/regex/wasm.rs
@@ -5,7 +5,7 @@ use wasm_bindgen::prelude::*;
5
use crate::regex::extract::{extract_substr, extract_substr_idxes};
6
use crate::regex::padding::pad_string;
use crate::regex::patterns::*;
-use crate::regex::types::{DecomposedRegexConfig, ExtractionError};
+use crate::regex::types::DecomposedRegexConfig;
// Core extraction functions
// Note: WASM uses standalone mode (no NFAGraph) for simplicity
0 commit comments