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.

50 lines
1.4 KiB

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