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.

34 lines
926 B

  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-bls12-377 = {version="0.4.0", features=["r1cs"]}
  21. ark-bw6-761 = {version="0.4.0"}
  22. [features]
  23. default = ["parallel"]
  24. parallel = [
  25. "ark-std/parallel",
  26. "ark-ff/parallel",
  27. "ark-poly/parallel",
  28. ]