2021-07-26 09:45:07 +00:00
|
|
|
[package]
|
|
|
|
name = "ark-circom"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# WASM operations
|
2021-07-26 15:13:46 +00:00
|
|
|
wasmer = { version = "2.0" }
|
|
|
|
fnv = { version = "1.0.3", default-features = false }
|
|
|
|
num-traits = { version = "0.2.0", default-features = false }
|
|
|
|
num-bigint = { version = "0.4", default-features = false, features = ["rand"] }
|
2021-07-26 09:45:07 +00:00
|
|
|
|
|
|
|
# ZKP Generation
|
2021-07-26 15:13:46 +00:00
|
|
|
ark-ec = { version = "0.3.0", default-features = false }
|
|
|
|
ark-ff = { version = "0.3.0", default-features = false }
|
|
|
|
ark-std = { version = "0.3.0", default-features = false }
|
|
|
|
ark-bn254 = { version = "0.3.0" }
|
2021-08-10 15:09:32 +00:00
|
|
|
ark-groth16 = { git = "https://github.com/gakonst/groth16", version = "0.3.0", branch = "feat/customizable-r1cs-to-qap" }
|
2021-07-26 09:45:07 +00:00
|
|
|
ark-poly = { version = "^0.3.0", default-features = false }
|
2021-07-26 15:13:46 +00:00
|
|
|
ark-relations = { version = "0.3.0", default-features = false }
|
|
|
|
ark-serialize = { version = "0.3.0", default-features = false }
|
2021-07-26 09:45:07 +00:00
|
|
|
|
2021-07-26 15:13:46 +00:00
|
|
|
# decoding of data
|
2021-07-26 09:45:07 +00:00
|
|
|
hex = "0.4.3"
|
|
|
|
byteorder = "1.4.3"
|
|
|
|
|
2021-07-26 15:13:46 +00:00
|
|
|
# ethereum compat
|
|
|
|
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
|
|
|
|
|
|
|
|
# error handling
|
2021-07-26 09:45:07 +00:00
|
|
|
thiserror = "1.0.26"
|
2021-07-26 15:13:46 +00:00
|
|
|
color-eyre = "0.5"
|
2021-07-26 09:45:07 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
hex-literal = "0.2.1"
|
|
|
|
tokio = { version = "1.7.1", features = ["macros"] }
|
2021-07-26 15:13:46 +00:00
|
|
|
serde_json = "1.0.64"
|
|
|
|
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen"] }
|