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.

50 lines
1.5 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. [package]
  2. name = "ark-circom"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. # WASM operations
  7. wasmer = { version = "2.0" }
  8. fnv = { version = "1.0.3", default-features = false }
  9. num = { version = "0.4.0" }
  10. num-traits = { version = "0.2.0", default-features = false }
  11. num-bigint = { version = "0.4", default-features = false, features = ["rand"] }
  12. # ZKP Generation
  13. ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] }
  14. ark-ff = { version = "0.3.0", default-features = false, features = ["parallel", "asm"] }
  15. ark-std = { version = "0.3.0", default-features = false, features = ["parallel"] }
  16. ark-bn254 = { version = "0.3.0" }
  17. ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] }
  18. ark-poly = { version = "^0.3.0", default-features = false, features = ["parallel"] }
  19. ark-relations = { version = "0.3.0", default-features = false }
  20. ark-serialize = { version = "0.3.0", default-features = false }
  21. # decoding of data
  22. hex = "0.4.3"
  23. byteorder = "1.4.3"
  24. # ethereum compat
  25. ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
  26. # error handling
  27. thiserror = "1.0.26"
  28. color-eyre = "0.5"
  29. criterion = "0.3.4"
  30. cfg-if = "1.0"
  31. [dev-dependencies]
  32. hex-literal = "0.2.1"
  33. tokio = { version = "1.7.1", features = ["macros"] }
  34. serde_json = "1.0.64"
  35. ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen"] }
  36. [[bench]]
  37. name = "groth16"
  38. harness = false
  39. [features]
  40. bench-complex-all = []
  41. circom-2 = []