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.

29 lines
685 B

  1. [package]
  2. name = "crypto-primitives"
  3. version = "0.1.0"
  4. authors = ["Pratyush Mishra <pratyushmishra@berkeley.edu>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. algebra = { path = "../algebra" }
  9. r1cs-core = { path = "../r1cs-core", optional = true }
  10. r1cs-std = { path = "../r1cs-std", optional = true }
  11. gm17 = { path = "../gm17", optional = true }
  12. bench-utils = { path = "../bench-utils" }
  13. digest = "0.7"
  14. blake2 = "0.7"
  15. rand = { version = "0.7" }
  16. derivative = "1"
  17. rayon = "1"
  18. [features]
  19. r1cs = [ "r1cs-core", "r1cs-std" ]
  20. [dev-dependencies]
  21. criterion = "0.2"
  22. rand_xorshift = { version = "0.2" }