|
|
[package] name = "frontends" version = "0.1.0" edition = "2021"
[dependencies] ark-ff = { version = "^0.4.0", default-features = false, features = ["parallel", "asm"] } ark-std = { version = "^0.4.0", default-features = false, features = ["parallel"] } ark-relations = { version = "^0.4.0", default-features = false } # ark-r1cs-std is patched at the workspace level ark-r1cs-std = { version = "0.4.0", default-features = false, features = ["parallel"] } ark-serialize = { version = "^0.4.0", default-features = false } ark-circom = { git = "https://github.com/arnaucube/circom-compat", default-features = false } num-bigint = "0.4" ark-noname = { git = "https://github.com/dmpierre/ark-noname", branch = "feat/sonobe-integration" } noname = { git = "https://github.com/dmpierre/noname" } serde_json = "1.0.85" # to (de)serialize JSON acvm = { git = "https://github.com/noir-lang/noir", rev="2b4853e", default-features = false } noir_arkworks_backend = { package="arkworks_backend", git = "https://github.com/dmpierre/arkworks_backend", branch = "feat/sonobe-integration" } folding-schemes = { path = "../folding-schemes/"}
[dev-dependencies] ark-bn254 = {version="0.4.0", features=["r1cs"]}
# This allows the crate to be built when targeting WASM. # See more at: https://docs.rs/getrandom/#webassembly-support [target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies] getrandom = { version = "0.2", features = ["js"] }
[features] default = ["ark-circom/default", "parallel"] parallel = [] wasm = ["ark-circom/wasm"]
|