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.

61 lines
1.3 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
4 years ago
4 years ago
  1. [package]
  2. name = "spartan"
  3. version = "0.2.1"
  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.curve25519-dalek]
  13. features = ["serde", "simd_backend"]
  14. #version = "3"
  15. git = "https://github.com/dalek-cryptography/curve25519-dalek"
  16. rev = "a787300ba169ae035bcdf2d540cf2b61b950405c"
  17. [dependencies]
  18. merlin = "2.0.0"
  19. rand = "0.7.3"
  20. digest = "0.8.1"
  21. sha3 = "0.8.2"
  22. byteorder = "1.3.4"
  23. rayon = "1.3.0"
  24. serde = { version = "1.0.106", features = ["derive"] }
  25. bincode = "1.2.1"
  26. subtle = { version = "^2.2.3", default-features = false }
  27. rand_core = { version = "0.5", default-features = false }
  28. zeroize = { version = "1", default-features = false }
  29. itertools = "0.9.0"
  30. colored = "1.9.3"
  31. flate2 = "1.0.14"
  32. thiserror = "1.0"
  33. [dev-dependencies]
  34. criterion = "0.3.1"
  35. [lib]
  36. name = "libspartan"
  37. path = "src/lib.rs"
  38. [[bin]]
  39. name = "snark"
  40. path = "profiler/snark.rs"
  41. [[bin]]
  42. name = "nizk"
  43. path = "profiler/nizk.rs"
  44. [[bench]]
  45. name = "snark"
  46. harness = false
  47. [[bench]]
  48. name = "nizk"
  49. harness = false
  50. [features]
  51. multicore = []
  52. profile = []