Cargo.toml 506 B

123456789101112131415161718192021
  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_gadgets = "0.3.0"
  18. pyo3 = "0.19.2"
  19. rand = "0.8.5"