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.

56 lines
1.2 KiB

4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
3 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.6.0"
  4. authors = ["Srinath Setty <srinath@microsoft.com>"]
  5. edition = "2018"
  6. description = "High-speed zkSNARKs without trusted setup"
  7. documentation = "https://docs.rs/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 = "3.2.0", features = ["serde", "simd_backend"]}
  14. merlin = "3.0.0"
  15. rand = "0.7.3"
  16. digest = "0.8.1"
  17. sha3 = "0.8.2"
  18. byteorder = "1.3.4"
  19. rayon = { version = "1.3.0", optional = true }
  20. serde = { version = "1.0.106", features = ["derive"] }
  21. bincode = "1.2.1"
  22. subtle = { version = "2.4", default-features = false }
  23. rand_core = { version = "0.5", default-features = false }
  24. zeroize = { version = "1", default-features = false }
  25. itertools = "0.10.0"
  26. colored = "2.0.0"
  27. flate2 = "1.0.14"
  28. thiserror = "1.0"
  29. [dev-dependencies]
  30. criterion = "0.3.1"
  31. [lib]
  32. name = "libspartan"
  33. path = "src/lib.rs"
  34. [[bin]]
  35. name = "snark"
  36. path = "profiler/snark.rs"
  37. [[bin]]
  38. name = "nizk"
  39. path = "profiler/nizk.rs"
  40. [[bench]]
  41. name = "snark"
  42. harness = false
  43. [[bench]]
  44. name = "nizk"
  45. harness = false
  46. [features]
  47. multicore = ["rayon"]
  48. profile = []