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.

55 lines
1.1 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. [package]
  2. name = "spartan"
  3. version = "0.2.0"
  4. authors = ["Srinath Setty <srinath@microsoft.com>"]
  5. edition = "2018"
  6. description = "High-speed zkSNARKs without trusted setup"
  7. documentation = "https://github.com/microsoft/Spartan"
  8. readme = "README.md"
  9. repository = "https://github.com/microsoft/Spartan"
  10. license-file = "LICENSE"
  11. keywords = ["zkSNARKs", "cryptography", "proofs"]
  12. [dependencies]
  13. curve25519-dalek = { version = "2", features = ["serde", "simd_backend"]}
  14. merlin = "2.0.0"
  15. rand = "0.7.3"
  16. digest = "0.8.1"
  17. sha3 = "0.8.2"
  18. byteorder = "1.3.4"
  19. rayon = "1.3.0"
  20. serde = { version = "1.0.106", features = ["derive"] }
  21. bincode = "1.2.1"
  22. subtle = { version = "^2.2.3", default-features = false }
  23. rand_core = { version = "0.5", default-features = false }
  24. zeroize = { version = "1", default-features = false }
  25. itertools = "0.9.0"
  26. colored = "1.9.3"
  27. flate2 = "1.0.14"
  28. [dev-dependencies]
  29. criterion = "0.3.1"
  30. [lib]
  31. name = "libspartan"
  32. path = "src/lib.rs"
  33. [[bin]]
  34. name = "snark"
  35. path = "profiler/snark.rs"
  36. [[bin]]
  37. name = "nizk"
  38. path = "profiler/nizk.rs"
  39. [[bench]]
  40. name = "snark"
  41. harness = false
  42. [[bench]]
  43. name = "nizk"
  44. harness = false
  45. [features]
  46. multicore = []
  47. profile = []