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.

39 lines
1.1 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 = { version = "^0.4.0", default-features = false }
  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. [features]
  27. default = ["parallel", "nova", "hypernova"]
  28. hypernova=[]
  29. nova=[]
  30. parallel = [
  31. "ark-std/parallel",
  32. "ark-ff/parallel",
  33. "ark-poly/parallel",
  34. ]