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.

52 lines
1.6 KiB

  1. [package]
  2. name = "subroutines"
  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. arithmetic = { path = "../arithmetic" }
  8. ark-bls12-381 = { version = "0.4.0", default-features = false, features = [ "curve" ] }
  9. ark-ec = { version = "^0.4.0", default-features = false }
  10. ark-ff = { version = "^0.4.0", default-features = false }
  11. ark-poly = { version = "^0.4.0", default-features = false }
  12. ark-serialize = { version = "^0.4.0", default-features = false }
  13. ark-std = { version = "^0.4.0", default-features = false }
  14. derivative = { version = "2", features = ["use_core"] }
  15. displaydoc = { version = "0.2.3", default-features = false }
  16. itertools = { version = "0.11.0", optional = true }
  17. rand_chacha = { version = "0.3.0", default-features = false }
  18. rayon = { version = "1.5.2", default-features = false, optional = true }
  19. transcript = { path = "../transcript" }
  20. util = { path = "../util" }
  21. # # Benchmarks
  22. # [[bench]]
  23. # name = "poly-iop-benches"
  24. # path = "benches/iop_bench.rs"
  25. # harness = false
  26. # Benchmarks
  27. [[bench]]
  28. name = "pcs-benches"
  29. path = "benches/pcs_bench.rs"
  30. harness = false
  31. [features]
  32. # default = [ "parallel", "print-trace" ]
  33. default = ["parallel"]
  34. # extensive sanity checks that are useful for debugging
  35. extensive_sanity_checks = [ ]
  36. parallel = [
  37. "rayon",
  38. "itertools",
  39. "ark-std/parallel",
  40. "ark-ff/parallel",
  41. "ark-poly/parallel",
  42. "ark-ec/parallel",
  43. "util/parallel",
  44. "arithmetic/parallel",
  45. ]
  46. print-trace = [
  47. "arithmetic/print-trace",
  48. "ark-std/print-trace",
  49. ]