Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
964 changes: 449 additions & 515 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ itertools = "0.10.3"
serde_json = "1.0.95"
serde = { version = "1.0.159", features = ["derive"] }
zk-regex-apis = { git = "https://github.com/zkemail/zk-regex.git" }
zk-regex-compiler = { git = "https://github.com/zkemail/zk-regex.git" }
zk-regex-compiler = { git = "https://github.com/zkemail/zk-regex.git", branch = "feat/new-compiler"}
hex = "0.4.3"
anyhow = "1.0.75"
halo2curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves.git", rev = "8771fe5a5d54fc03e74dbc8915db5dad3ab46a83", default-features = false }
poseidon-rs = { git = "https://github.com/zkemail/poseidon-rs.git", version = "1.0.0" }
rand_core = { version = "0.6", default-features = false }
num-bigint = "0.4.4"
num-traits = "0.2.19"
rsa = { version = "0.9.6", features = ["serde"] }
cfdkim = { git = "https://github.com/zkemail/cfdkim.git" }
hmac-sha256 = { git = "https://github.com/zkemail/rust-hmac-sha256.git" }
Expand Down
24 changes: 24 additions & 0 deletions browser_test/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
746 changes: 746 additions & 0 deletions browser_test/bun.lock

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions browser_test/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Loading