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.

37 lines
1.1 KiB

  1. [package]
  2. name = "arithmetic"
  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-bls12-381 = { version = "0.3.0", default-features = false, features = [ "curve" ] }
  8. ark-ff = { version = "^0.3.0", default-features = false }
  9. ark-poly = { version = "^0.3.0", default-features = false }
  10. ark-serialize = { version = "^0.3.0", default-features = false }
  11. ark-std = { version = "^0.3.0", default-features = false }
  12. displaydoc = { version = "0.2.3", default-features = false }
  13. rand_chacha = { version = "0.3.0", default-features = false }
  14. rayon = { version = "1.5.2", default-features = false, optional = true }
  15. [dev-dependencies]
  16. ark-ec = { version = "^0.3.0", default-features = false }
  17. criterion = "0.4.0"
  18. [features]
  19. # default = [ "parallel", "print-trace" ]
  20. default = ["parallel"]
  21. parallel = [
  22. "rayon",
  23. "ark-std/parallel",
  24. "ark-ff/parallel",
  25. "ark-poly/parallel"
  26. ]
  27. print-trace = [
  28. "ark-std/print-trace"
  29. ]
  30. [[bench]]
  31. name = "mle_eval"
  32. path = "benches/bench.rs"
  33. harness = false