Skip to content

Commit

Permalink
Merge pull request #4 from zkemail/feat/e2e-integration
Browse files Browse the repository at this point in the history
feat: Finish e2e Integration
  • Loading branch information
Bisht13 authored Sep 6, 2024
2 parents aefb00f + 7abe8d8 commit c9371a3
Show file tree
Hide file tree
Showing 10 changed files with 1,192 additions and 472 deletions.
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "relayer-utils"
version = "0.3.2"
version = "0.3.7"
authors = ["Sora Suegami", "Aditya Bisht"]
license = "MIT"
edition = "2018"
Expand Down Expand Up @@ -43,6 +43,7 @@ slog-term = "2.9.0"
slog-json = "2.6.1"
lazy_static = "1.4"
file-rotate = "0.7.5"
regex = "1.10.6"

[dependencies.neon]
version = "0.10"
Expand Down
Binary file modified bin/binary-arm64.node
Binary file not shown.
Binary file modified bin/binary-x64.node
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zk-email/relayer-utils",
"version": "0.3.2",
"version": "0.3.7",
"description": "",
"main": "index.js",
"contributors": [
Expand Down
28 changes: 14 additions & 14 deletions regexes/command.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"parts": [
{
"is_public": false,
"regex_def": "<div id=3D\"zkemail\">"
},
{
"is_public": true,
"regex_def": "[^<>/]+"
},
{
"is_public": false,
"regex_def": "</div>"
}
]
"parts": [
{
"is_public": false,
"regex_def": "<div id=3D\"[^\"]*zkemail[^\"]*\"[^>]*>"
},
{
"is_public": true,
"regex_def": "[^<>/]+"
},
{
"is_public": false,
"regex_def": "</div>"
}
]
}
Loading

0 comments on commit c9371a3

Please sign in to comment.