| 123456789101112131415161718192021222324252627282930 |
- [package]
- name = "darkfi_deployooor_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]
- darkfi-sdk = { path = "../../sdk" }
- darkfi-serial = { path = "../../serial", features = ["derive", "crypto"] }
- thiserror = "1.0.56"
- wasmparser = "0.118.1"
- async-trait = { version = "0.1.77", optional = true }
- # 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"] }
- [features]
- default = []
- no-entrypoint = []
- client = [
- "darkfi-sdk/async",
- "darkfi-serial/async",
- ]
|