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.

34 lines
1.5 KiB

5 years ago
5 years ago
5 years ago
5 years ago
  1. [package]
  2. name = "ark-r1cs-std"
  3. version = "0.1.0"
  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 = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  16. ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  17. ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false }
  18. ark-relations = { git = "https://github.com/arkworks-rs/snark", 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.3", default-features = false }
  22. num-traits = {version = "0.2", default-features = false }
  23. [dev-dependencies]
  24. rand = { version = "0.7", default-features = false }
  25. rand_xorshift = "0.2"
  26. ark-test-curves = { git = "https://github.com/arkworks-rs/algebra", default-features = false, features = ["bls12_381_scalar_field", "mnt4_753_scalar_field"] }
  27. [features]
  28. default = ["std"]
  29. std = [ "ark-ff/std", "ark-relations/std", "ark-std/std", "num-bigint/std" ]
  30. parallel = [ "std", "ark-ff/parallel" ]