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.

39 lines
861 B

3 years ago
  1. [package]
  2. name = "ark-circom"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. # WASM operations
  7. wasmer = "1.0.1"
  8. fnv = "1.0.3"
  9. num-traits = "0.2.0"
  10. num-bigint = { version = "0.4", features = ["rand"] }
  11. color-eyre = "0.5"
  12. # ZKP Generation
  13. ark-ec = "0.3.0"
  14. ark-ff = "0.3.0"
  15. ark-std = "0.3.0"
  16. ark-bn254 = "0.3.0"
  17. ark-r1cs-std = "0.3.1"
  18. ark-groth16 = { git = "https://github.com/kobigurk/groth16", version = "0.3.0", branch = "feat/customizable-r1cs-to-qap" }
  19. ark-poly = { version = "^0.3.0", default-features = false }
  20. ark-relations = "0.3.0"
  21. hex = "0.4.3"
  22. byteorder = "1.4.3"
  23. ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen"] }
  24. serde_json = "1.0.64"
  25. serde = "1.0.126"
  26. thiserror = "1.0.26"
  27. memmap = "0.7.0"
  28. ark-serialize = "0.3.0"
  29. [dev-dependencies]
  30. hex-literal = "0.2.1"
  31. tokio = { version = "1.7.1", features = ["macros"] }