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.

53 lines
1.5 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. util = { path = "../util" }
  20. [dev-dependencies]
  21. ark-ec = { version = "^0.3.0", default-features = false }
  22. # Benchmarks
  23. [[bench]]
  24. name = "poly-iop-benches"
  25. path = "benches/bench.rs"
  26. harness = false
  27. [features]
  28. # default = [ "parallel", "print-trace" ]
  29. default = [ "parallel" ]
  30. # extensive sanity checks that are useful for debugging
  31. extensive_sanity_checks = [
  32. "pcs/extensive_sanity_checks",
  33. ]
  34. parallel = [
  35. "rayon",
  36. "arithmetic/parallel",
  37. "ark-std/parallel",
  38. "ark-ff/parallel",
  39. "ark-poly/parallel",
  40. "pcs/parallel",
  41. "util/parallel"
  42. ]
  43. print-trace = [
  44. "arithmetic/print-trace",
  45. "ark-std/print-trace",
  46. ]