-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 1.33 KB
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
[package]
name = "arkworks-solidity-verifier"
version = "0.1.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/Tetration-Lab/arkworks-solidity-verifier"
keywords = ["verifier", "solidity", "zk-snarks", "zero-knowledge", "crypto"]
description = "Solidity SNARK verifier generator for Arkwork's proof systems."
license = "LGPL-3.0-only"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
# Proving Schemes
ark-groth16 = { version = "^0.5.0", default-features = false }
# Not avaliable yet
#ark-gm17 = { version = "^0.5.0", default-features = false }
#ark-marlin = { version = "^0.5.0", default-features = false }
# Parings
ark-bn254 = { version = "^0.5.0", default-features = false, features = ["curve"] }
ark-snark = { version = "^0.5.0", default-features = false }
ark-ff = { version = "^0.5.0", default-features = false }
ark-ec = { version = "^0.5.0", default-features = false }
#ark-poly = { version = "^0.5.0", default-features = false }
#ark-poly-commit = { version = "^0.5.0", default-features = false }
digest = "0.9"
regex = "1.7.1"
hex = "0.4.3"
[dev-dependencies]
ark-relations = { version = "^0.5.0", default-features = false }
ark-r1cs-std = { version = "^0.5.0", default-features = false }
ark-std = { version = "^0.5.0", default-features = false }
rand = "0.8.5"
blake2 = { version = "0.9", default-features = false }