mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
28 lines
669 B
TOML
28 lines
669 B
TOML
[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.21.2", features = ["gil-refs"]}
|
|
rand = "0.8.5"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|