-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1002 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1002 Bytes
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
[package]
name = "ark-snarkjs"
version = "0.2.0"
edition = "2024"
authors = ["Sergey Sobolev"]
description = "Rust library for exporting Arkworks Groth16 proofs and verifying keys into snarkjs-compatible JSON (BN254, BLS12-381), as well as garaga-compatible format."
license = "MIT"
repository = "https://github.com/mysteryon88/ark-to-snarkjs"
homepage = "https://github.com/mysteryon88/ark-to-snarkjs"
readme = "README.md"
keywords = ["arkworks", "zk", "groth16", "snarkjs", "garaga"]
categories = ["cryptography", "encoding", "algorithms"]
resolver = "2"
include = [
"/src/**",
"/README.md",
"/LICENSE*",
"/Cargo.toml",
]
[dependencies]
ark-bls12-381 = "0.6.0"
ark-bn254 = "0.6.0"
ark-ec = "0.6.0"
ark-ff = "0.6.0"
ark-groth16 = "0.6.0"
ark-std = "0.6.0"
num-bigint = "0.4.6"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
[dev-dependencies]
ark-crypto-primitives = "0.6.0"
ark-r1cs-std = "0.6.0"
ark-relations = "0.6.0"
ark-snark = "0.6.0"