-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
68 lines (63 loc) · 2.08 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "halo2-zkcert"
version = "0.1.0"
edition = "2021"
authors = ["richardliang", "0xSachinK"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num-bigint = { version = "0.4", features = ["rand"] }
sha2 = "0.10.6"
rand = "0.8.5"
rsa = { version = "0.6.1", features = ["serde"] }
halo2-rsa = { branch = "community-edition", default-features = false, features = [
"halo2-axiom",
"display"
], git = "https://github.com/zkcert/halo2-rsa.git"}
halo2-base = { branch = "community-edition", default-features = false, features = [
"halo2-axiom",
"display",
"test-utils"
], git = "https://github.com/axiom-crypto/halo2-lib.git"}
zkevm-hashes = { branch = "feat/zkevm-sha256", default-features = false, features = [
"halo2-axiom",
"display"
], git = "https://github.com/axiom-crypto/halo2-lib.git"}
halo2-sha256-unoptimized = { branch = "main", default-features = false, features = [
"halo2-axiom",
"display",
], git = "https://github.com/zkcert/halo2-sha256-unoptimized.git"}
snark-verifier-sdk = { branch = "community-edition", default-features = false, features = [
"halo2-axiom",
"display",
"loader_evm",
"loader_halo2",
], git = "https://github.com/axiom-crypto/snark-verifier.git"}
x509-parser = { version = "0.15", features= ["verify"] }
openssl = "0.10"
num-traits = "0.2.15"
env_logger = "0.10.0"
itertools = "0.10.3"
getset = "0.1.2"
clap = { version = "=4.2.1", features = ["derive"] }
serde_json = "1.0.95"
serde = { version = "1.0.159", features = ["derive"] }
tokio = { version = "1.16", features = [
"net",
"io-util",
"time",
"rt-multi-thread",
"macros",
] }
[target.'cfg(target_family = "wasm")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
console_error_panic_hook = "0.1.7"
rayon = "1.7"
serde = { version = "1.0", features = ["derive"] }
rand = "0.8.5"
[dev-dependencies]
criterion = "0.4"
[features]
default = ["halo2-axiom", "display"]
display = ["halo2-base/display"]
halo2-pse = ["halo2-base/halo2-pse"]
halo2-axiom = ["halo2-base/halo2-axiom"]