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.

37 lines
1.0 KiB

  1. [package]
  2. name = "folding-schemes"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. ark-ec = "0.4.2"
  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"] }
  11. ark-relations = { version = "^0.4.0", default-features = false }
  12. ark-r1cs-std = { version = "^0.4.0", default-features = false }
  13. thiserror = "1.0"
  14. rayon = "1.7.0"
  15. # tmp imports for espresso's sumcheck
  16. ark-serialize = "0.4.2"
  17. espresso_subroutines = {git="https://github.com/EspressoSystems/hyperplonk", package="subroutines"}
  18. espresso_transcript = {git="https://github.com/EspressoSystems/hyperplonk", package="transcript"}
  19. [dev-dependencies]
  20. ark-pallas = {version="0.4.0", features=["r1cs"]}
  21. ark-vesta = {version="0.4.0"}
  22. ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = ["crh"] }
  23. [features]
  24. default = ["parallel", "nova", "hypernova"]
  25. hypernova=[]
  26. nova=[]
  27. parallel = [
  28. "ark-std/parallel",
  29. "ark-ff/parallel",
  30. "ark-poly/parallel",
  31. ]