Cargo.toml 603 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "darkfi-sdk-py"
  3. description = "Python bindings for the DarkFi SDK"
  4. version = "0.4.1"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [lib]
  11. name = "darkfi_sdk"
  12. crate-type = ["cdylib"]
  13. doc = false
  14. [dependencies]
  15. darkfi = {path = "../../../", features = ["zk", "zkas"]}
  16. darkfi-sdk = {path = "../"}
  17. halo2_proofs = {version = "0.3.0", features = ["dev-graph", "sanity-checks"]}
  18. halo2_gadgets = "0.3.0"
  19. plotters = "0.3.5"
  20. pyo3 = "0.20.3"
  21. rand = "0.8.5"