| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- [package]
- name = "darkfi_dao_contract"
- version = "0.4.1"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- license = "AGPL-3.0-only"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "rlib"]
- [dependencies]
- blake2b_simd = "1.0.2"
- bs58 = "0.5.1"
- darkfi-sdk = { path = "../../sdk", features = ["wasm"] }
- darkfi-serial = { version = "0.4.2", features = ["derive", "crypto"] }
- darkfi_money_contract = { path = "../money", features = ["no-entrypoint"] }
- thiserror = "2.0.11"
- # The following dependencies are used for the client API and
- # probably shouldn't be in WASM
- chacha20poly1305 = { version = "0.10.1", optional = true }
- darkfi = { path = "../../../", features = ["zk", "rpc", "blockchain"], optional = true }
- halo2_proofs = { version = "0.3.0", optional = true }
- log = { version = "0.4.25", optional = true }
- rand = { version = "0.8.5", optional = true }
- # These are used just for the integration tests
- [dev-dependencies]
- smol = "2.0.2"
- darkfi-contract-test-harness = {path = "../test-harness"}
- # We need to disable random using "custom" which makes the crate a noop
- # so the wasm32-unknown-unknown target is enabled.
- [target.'cfg(target_arch = "wasm32")'.dependencies]
- getrandom = { version = "0.2.8", features = ["custom"] }
- darkfi-sdk = { path = "../../sdk", features = ["wasm"] }
- [features]
- default = []
- no-entrypoint = []
- client = [
- "darkfi",
- "darkfi-serial/async",
- "darkfi_money_contract/client",
- "darkfi_money_contract/no-entrypoint",
- "rand",
- "chacha20poly1305",
- "log",
- "halo2_proofs",
- ]
- [lints]
- workspace = true
|