| 123456789101112131415161718192021222324252627282930 |
- [package]
- name = "smart-contract"
- version = "0.3.0"
- authors = ["darkfi <dev@dark.fi>"]
- license = "AGPL-3.0-only"
- edition = "2021"
- [workspace]
- [lib]
- crate-type = ["cdylib", "rlib"]
- [profile.release]
- lto = true
- codegen-units = 1
- overflow-checks = true
- [dependencies]
- darkfi-sdk = { path = "../../src/sdk" }
- #darkfi = { path = "../../", features = [] }
- darkfi-serial = { path = "../../src/serial" }
- # We need to disable random using "custom" which makes the crate a noop
- # so the wasm32-unknown-unknown target is enabled.
- getrandom = { version = "0.2", features = ["custom"] }
- [dev-dependencies]
- darkfi = { path = "../../", features = ["wasm-runtime"] }
- simplelog = "0.12.0"
|