[package] name = "darkirc-rln" version = "0.0.1" authors = ["Dyne.org foundation "] license = "AGPL-3.0-only" edition = "2021" [lib] crate-type = ["cdylib", "rlib"] [dependencies] darkfi-sdk = {git = "https://git.dark.fi/darkrenaissance/darkfi"} darkfi-serial = {git = "https://git.dark.fi/darkrenaissance/darkfi", features = ["crypto"]} darkfi_money_contract = {git = "https://git.dark.fi/darkrenaissance/darkfi", features = ["no-entrypoint"]} thiserror = "1.0.58" # 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 = []