mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-06 21:34:00 -05:00
26 lines
806 B
TOML
26 lines
806 B
TOML
[package]
|
|
name = "darkfi-contract-test-harness"
|
|
version = "0.5.0"
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
license = "AGPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
darkfi = {path = "../../../", features = ["validator"]}
|
|
darkfi-sdk = {path = "../../sdk"}
|
|
darkfi-serial = {path = "../../serial", features = ["crypto"]}
|
|
|
|
darkfi_dao_contract = {path = "../dao", features = ["client", "no-entrypoint"]}
|
|
darkfi_money_contract = {path = "../money", features = ["client", "no-entrypoint"]}
|
|
darkfi_deployooor_contract = {path = "../deployooor", features = ["client", "no-entrypoint"]}
|
|
|
|
num-bigint = "0.4.6"
|
|
blake3 = "1.8.2"
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] }
|
|
rand = "0.8.5"
|
|
sled-overlay = "0.1.15"
|
|
|
|
[lints]
|
|
workspace = true
|