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.

69 lines
3.0 KiB

5 years ago
5 years ago
5 years ago
5 years ago
  1. [package]
  2. name = "ark-r1cs-std"
  3. version = "0.3.1"
  4. authors = [ "arkworks contributors" ]
  5. description = "A standard library for constraint system gadgets"
  6. homepage = "https://arkworks.rs"
  7. repository = "https://github.com/arkworks-rs/r1cs-std"
  8. documentation = "https://docs.rs/ark-r1cs-std/"
  9. keywords = ["zero-knowledge", "cryptography", "zkSNARK", "SNARK", "r1cs"]
  10. categories = ["cryptography"]
  11. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  12. license = "MIT/Apache-2.0"
  13. edition = "2018"
  14. [profile.release]
  15. panic = 'abort'
  16. [profile.dev]
  17. panic = 'abort'
  18. [dependencies]
  19. ark-ff = { version = "^0.3.0", default-features = false }
  20. ark-ec = { version = "^0.3.0", default-features = false }
  21. ark-std = { version = "^0.3.0", default-features = false }
  22. ark-relations = { version = "^0.3.0", default-features = false }
  23. derivative = { version = "2", features = ["use_core"] }
  24. tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
  25. num-bigint = {version = "0.4", default-features = false }
  26. num-traits = {version = "0.2", default-features = false }
  27. num-integer = { version = "0.1.44", default-features = false }
  28. [dev-dependencies]
  29. ark-test-curves = { version = "^0.3.0", default-features = false, features = ["bls12_381_scalar_field", "bls12_381_curve", "mnt4_753_scalar_field"] }
  30. ark-poly = { version = "^0.3.0", default-features = false }
  31. paste = "1.0"
  32. ark-bls12-377 = { version = "^0.3.0", features = ["curve"], default-features = false }
  33. ark-bls12-381 = { version = "^0.3.0", features = ["curve"], default-features = false }
  34. ark-mnt4-298 = { version = "^0.3.0", features = ["curve"], default-features = false }
  35. ark-mnt4-753 = { version = "^0.3.0", features = ["curve"], default-features = false }
  36. ark-mnt6-298 = { version = "^0.3.0", default-features = false }
  37. ark-mnt6-753 = { version = "^0.3.0", default-features = false }
  38. ark-pallas = { version = "^0.3.0", features = ["curve"], default-features = false }
  39. [features]
  40. default = ["std"]
  41. std = [ "ark-ff/std", "ark-relations/std", "ark-std/std", "num-bigint/std" ]
  42. parallel = [ "std", "ark-ff/parallel", "ark-std/parallel"]
  43. [[bench]]
  44. name = "nonnative-bench"
  45. path = "benches/bench.rs"
  46. harness = false
  47. # To be removed in the new release.
  48. [patch.crates-io]
  49. ark-std = { git = "https://github.com/arkworks-rs/std" }
  50. ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
  51. ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
  52. ark-poly = { git = "https://github.com/arkworks-rs/algebra" }
  53. ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
  54. ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" }
  55. ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves" }
  56. ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves" }
  57. ark-mnt4-298 = { git = "https://github.com/arkworks-rs/curves" }
  58. ark-mnt4-753 = { git = "https://github.com/arkworks-rs/curves" }
  59. ark-mnt6-298 = { git = "https://github.com/arkworks-rs/curves" }
  60. ark-mnt6-753 = { git = "https://github.com/arkworks-rs/curves" }
  61. ark-pallas = { git = "https://github.com/arkworks-rs/curves" }