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.

49 lines
1.7 KiB

  1. [package]
  2. name = "folding-schemes"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. ark-ec = "^0.4.0"
  7. ark-ff = "^0.4.0"
  8. ark-poly = "^0.4.0"
  9. ark-std = "^0.4.0"
  10. ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = ["r1cs", "sponge", "crh"] }
  11. ark-relations = { version = "^0.4.0", default-features = false }
  12. ark-r1cs-std = { default-features = false } # use latest version from the patch
  13. ark-circom = { git = "https://github.com/gakonst/ark-circom.git" }
  14. thiserror = "1.0"
  15. rayon = "1.7.0"
  16. num-bigint = "0.4"
  17. color-eyre = "=0.6.2"
  18. # tmp imports for espresso's sumcheck
  19. ark-serialize = "^0.4.0"
  20. espresso_subroutines = {git="https://github.com/EspressoSystems/hyperplonk", package="subroutines"}
  21. espresso_transcript = {git="https://github.com/EspressoSystems/hyperplonk", package="transcript"}
  22. [dev-dependencies]
  23. ark-pallas = {version="0.4.0", features=["r1cs"]}
  24. ark-vesta = {version="0.4.0"}
  25. ark-bn254 = "0.4.0"
  26. tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
  27. tracing-subscriber = { version = "0.2" }
  28. [features]
  29. default = ["parallel", "nova", "hypernova"]
  30. hypernova=[]
  31. nova=[]
  32. parallel = [
  33. "ark-std/parallel",
  34. "ark-ff/parallel",
  35. "ark-poly/parallel",
  36. ]
  37. # The following patch is to use a version of ark-r1cs-std compatible with
  38. # v0.4.0 but that includes a cherry-picked commit from after v0.4.0 which fixes
  39. # the in-circuit scalar multiplication of the zero point. The commit is from
  40. # https://github.com/arkworks-rs/r1cs-std/pull/124, without including other
  41. # changes done between v0.4.0 and this fix which would break compatibility.
  42. [patch.crates-io]
  43. ark-r1cs-std = { git = "https://github.com/arnaucube/ark-r1cs-std-cherry-picked/" }