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.

48 lines
1.3 KiB

  1. [package]
  2. name = "poly-iop"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. ark-ff = { version = "^0.3.0", default-features = false }
  8. ark-std = { version = "^0.3.0", default-features = false }
  9. ark-ec = { version = "^0.3.0", default-features = false }
  10. ark-poly = { version = "^0.3.0", default-features = false }
  11. ark-serialize = { version = "^0.3.0", default-features = false }
  12. ark-bls12-381 = { version = "0.3.0", default-features = false, features = [ "curve" ] }
  13. rand_chacha = { version = "0.3.0", default-features = false }
  14. displaydoc = { version = "0.2.3", default-features = false }
  15. rayon = { version = "1.5.2", default-features = false, optional = true }
  16. transcript = { path = "../transcript" }
  17. arithmetic = { path = "../arithmetic" }
  18. pcs = { path = "../pcs" }
  19. [dev-dependencies]
  20. ark-ec = { version = "^0.3.0", default-features = false }
  21. # Benchmarks
  22. [[bench]]
  23. name = "poly-iop-benches"
  24. path = "benches/bench.rs"
  25. harness = false
  26. [features]
  27. # default = [ "parallel", "print-trace" ]
  28. default = [ "parallel" ]
  29. parallel = [
  30. "rayon",
  31. "arithmetic/parallel",
  32. "ark-std/parallel",
  33. "ark-ff/parallel",
  34. "ark-poly/parallel",
  35. "pcs/parallel",
  36. ]
  37. print-trace = [
  38. "arithmetic/print-trace",
  39. "ark-std/print-trace",
  40. "pcs/print-trace",
  41. ]