Cargo.toml 594 B

123456789101112131415161718192021
  1. [package]
  2. name = "darkfi-sdk-py"
  3. description = "Python bindings for 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. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [lib]
  12. name = "darkfi_sdk_py"
  13. crate-type = ["cdylib"]
  14. [dependencies]
  15. darkfi = { path = "../../../", features = ["zk", "zkas"] }
  16. darkfi-sdk = { path = "../" }
  17. halo2_gadgets = "0.3.0"
  18. pyo3 = "0.19.1"
  19. rand = "0.8.5"