Cargo.toml 669 B

123456789101112131415161718192021222324252627
  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://codeberg.org/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.7"
  20. pyo3 = {version = "0.22.6", features = ["gil-refs"]}
  21. rand = "0.8.5"
  22. [lints]
  23. workspace = true