-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
24 lines (22 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "relayer-smtp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
relayer-utils = { git = "https://github.com/zkemail/relayer-utils" }
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
lettre = { version = "0.10.4", features = ["tokio1", "tokio1-native-tls"] }
serde_json = "1.0"
handlebars = "4.0"
hex = "0.4"
actix-web = "4.6.0"
dotenv = "0.15.0"
serde = { version = "1.0.203", features = ["derive"] }
halo2curves = { version = "0.4.0", git = "https://github.com/privacy-scaling-explorations/halo2curves.git", rev = "81a078254518a7a4b7c69fab120621deaace9389" }
ethers = "2.0.14"
poseidon-rs = { git = "https://github.com/SoraSuegami/poseidon-rs.git", version = "0.0.10", branch = "master" }
zk-regex-apis = { version = "2.0.2", git = "https://github.com/zkemail/zk-regex.git", branch = "main", default-features = false }
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_warn"] }
uuid = { version = "1.10.0", features = ["v4"] }