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.

88 lines
3.3 KiB

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. [dependencies]
  15. ark-ff = { version = "^0.3.0", default-features = false }
  16. ark-ec = { version = "^0.3.0", default-features = false }
  17. ark-std = { version = "^0.3.0", default-features = false }
  18. ark-relations = { version = "^0.3.0", default-features = false }
  19. derivative = { version = "2", features = ["use_core"] }
  20. tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
  21. num-bigint = {version = "0.4", default-features = false }
  22. num-traits = {version = "0.2", default-features = false }
  23. num-integer = { version = "0.1.44", default-features = false }
  24. [dev-dependencies]
  25. ark-test-curves = { version = "^0.3.0", default-features = false, features = ["bls12_381_scalar_field", "bls12_381_curve", "mnt4_753_scalar_field"] }
  26. ark-poly = { version = "^0.3.0", default-features = false }
  27. paste = "1.0"
  28. ark-bls12-377 = { version = "^0.3.0", features = ["curve"], default-features = false }
  29. ark-bls12-381 = { version = "^0.3.0", features = ["curve"], default-features = false }
  30. ark-mnt4-298 = { version = "^0.3.0", features = ["curve"], default-features = false }
  31. ark-mnt4-753 = { version = "^0.3.0", features = ["curve"], default-features = false }
  32. ark-mnt6-298 = { version = "^0.3.0", default-features = false }
  33. ark-mnt6-753 = { version = "^0.3.0", default-features = false }
  34. ark-pallas = { version = "^0.3.0", features = ["curve"], default-features = false }
  35. [features]
  36. default = ["std"]
  37. std = [ "ark-ff/std", "ark-relations/std", "ark-std/std", "num-bigint/std" ]
  38. parallel = [ "std", "ark-ff/parallel", "ark-std/parallel"]
  39. [[bench]]
  40. name = "nonnative-bench"
  41. path = "benches/bench.rs"
  42. harness = false
  43. [profile.release]
  44. opt-level = 3
  45. lto = "thin"
  46. incremental = true
  47. panic = 'abort'
  48. [profile.bench]
  49. opt-level = 3
  50. debug = false
  51. rpath = false
  52. lto = "thin"
  53. incremental = true
  54. debug-assertions = false
  55. [profile.dev]
  56. opt-level = 0
  57. panic = 'abort'
  58. [profile.test]
  59. opt-level = 3
  60. lto = "thin"
  61. incremental = true
  62. debug-assertions = true
  63. debug = true
  64. # To be removed in the new release.
  65. [patch.crates-io]
  66. ark-std = { git = "https://github.com/arkworks-rs/std" }
  67. ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
  68. ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
  69. ark-poly = { git = "https://github.com/arkworks-rs/algebra" }
  70. ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
  71. ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" }
  72. ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves" }
  73. ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves" }
  74. ark-mnt4-298 = { git = "https://github.com/arkworks-rs/curves" }
  75. ark-mnt4-753 = { git = "https://github.com/arkworks-rs/curves" }
  76. ark-mnt6-298 = { git = "https://github.com/arkworks-rs/curves" }
  77. ark-mnt6-753 = { git = "https://github.com/arkworks-rs/curves" }
  78. ark-pallas = { git = "https://github.com/arkworks-rs/curves" }