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.

47 lines
1.4 KiB

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-traits = { version = "0.2.0", default-features = false }
  10. num-bigint = { version = "0.4", default-features = false, features = ["rand"] }
  11. # ZKP Generation
  12. ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] }
  13. ark-ff = { version = "0.3.0", default-features = false, features = ["parallel", "asm"] }
  14. ark-std = { version = "0.3.0", default-features = false, features = ["parallel"] }
  15. ark-bn254 = { version = "0.3.0" }
  16. ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] }
  17. ark-poly = { version = "^0.3.0", default-features = false, features = ["parallel"] }
  18. ark-relations = { version = "0.3.0", default-features = false }
  19. ark-serialize = { version = "0.3.0", default-features = false }
  20. # decoding of data
  21. hex = "0.4.3"
  22. byteorder = "1.4.3"
  23. # ethereum compat
  24. ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
  25. # error handling
  26. thiserror = "1.0.26"
  27. color-eyre = "0.5"
  28. criterion = "0.3.4"
  29. [dev-dependencies]
  30. hex-literal = "0.2.1"
  31. tokio = { version = "1.7.1", features = ["macros"] }
  32. serde_json = "1.0.64"
  33. ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen"] }
  34. cfg-if = "1.0"
  35. [[bench]]
  36. name = "groth16"
  37. harness = false
  38. [features]
  39. bench-complex-all = []