You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.6 KiB

  1. [package]
  2. name = "frontends"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. ark-ff = { version = "^0.4.0", default-features = false, features = ["parallel", "asm"] }
  7. ark-std = { version = "^0.4.0", default-features = false, features = ["parallel"] }
  8. ark-relations = { version = "^0.4.0", default-features = false }
  9. # ark-r1cs-std is patched at the workspace level
  10. ark-r1cs-std = { version = "0.4.0", default-features = false, features = ["parallel"] }
  11. ark-serialize = { version = "^0.4.0", default-features = false }
  12. ark-circom = { git = "https://github.com/arnaucube/circom-compat", default-features = false }
  13. num-bigint = "0.4"
  14. ark-noname = { git = "https://github.com/dmpierre/ark-noname", branch = "feat/sonobe-integration" }
  15. noname = { git = "https://github.com/dmpierre/noname" }
  16. serde_json = "1.0.85" # to (de)serialize JSON
  17. acvm = { git = "https://github.com/noir-lang/noir", rev="2b4853e", default-features = false }
  18. noir_arkworks_backend = { package="arkworks_backend", git = "https://github.com/dmpierre/arkworks_backend", branch = "feat/sonobe-integration" }
  19. folding-schemes = { path = "../folding-schemes/"}
  20. [dev-dependencies]
  21. ark-bn254 = {version="0.4.0", features=["r1cs"]}
  22. # This allows the crate to be built when targeting WASM.
  23. # See more at: https://docs.rs/getrandom/#webassembly-support
  24. [target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
  25. getrandom = { version = "0.2", features = ["js"] }
  26. [features]
  27. default = ["ark-circom/default", "parallel"]
  28. parallel = []
  29. wasm = ["ark-circom/wasm"]