| 123456789101112131415161718192021222324252627 |
- [package]
- name = "darkfi-sdk-py"
- description = "Python bindings for the DarkFi SDK"
- version = "0.4.1"
- edition = "2021"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- license = "AGPL-3.0-only"
- homepage = "https://dark.fi"
- repository = "https://codeberg.org/darkrenaissance/darkfi"
- [lib]
- name = "darkfi_sdk"
- crate-type = ["cdylib"]
- doc = false
- [dependencies]
- darkfi = {path = "../../../", features = ["zk", "zkas"]}
- darkfi-sdk = {path = "../"}
- halo2_proofs = {version = "0.3.0", features = ["dev-graph", "sanity-checks"]}
- halo2_gadgets = "0.3.0"
- plotters = "0.3.7"
- pyo3 = {version = "0.22.6", features = ["gil-refs"]}
- rand = "0.8.5"
- [lints]
- workspace = true
|