Cargo.lock,sdk/python/Cargo.toml: add native contract money,dao,deployooor crates as dependency to python sdk crate for darkfid tx bindings

This commit is contained in:
oars
2025-08-27 01:32:57 +03:00
parent 99199786f7
commit 4b1cabd13f
2 changed files with 9 additions and 1 deletions

4
Cargo.lock generated
View File

@@ -1902,6 +1902,10 @@ version = "0.5.0"
dependencies = [
"darkfi",
"darkfi-sdk",
"darkfi-serial",
"darkfi_dao_contract",
"darkfi_deployooor_contract",
"darkfi_money_contract",
"halo2_gadgets",
"halo2_proofs",
"plotters",

View File

@@ -14,8 +14,12 @@ crate-type = ["cdylib"]
doc = false
[dependencies]
darkfi = {path = "../../../", features = ["zk", "zkas"]}
darkfi = {path = "../../../", features = ["zk", "zkas", "tx"]}
darkfi_money_contract = {path = "../../contract/money", features=["no-entrypoint", "client"]}
darkfi_dao_contract = {path = "../../contract/dao", features=["no-entrypoint", "client"]}
darkfi_deployooor_contract = {path = "../../contract/deployooor", features=["no-entrypoint", "client"]}
darkfi-sdk = {path = "../"}
darkfi-serial = {version = "0.5.1", features = ["crypto"]}
halo2_proofs = {version = "0.3.1", features = ["circuit-params", "dev-graph", "sanity-checks"]}
halo2_gadgets = {version = "0.3.1", features = ["circuit-params"]}
plotters = "0.3.7"