sunshine-bank-offchain 0.0.2

log confirmation for off-chain transactions on-chain
Documentation
[package]
name = "sunshine-bank-offchain"
version = "0.0.2"
authors = ["Amar Singh <asinghchrony@protonmail.com>"]
edition = "2018"

license = "GPL-3.0"
repository = "https://github.com/sunshine-protocol/sunshine-node"
description = "log confirmation for off-chain transactions on-chain"
keywords = ["sunshine", "substrate", "blockchain"]

[dependencies]
serde = { version = "1.0.106", optional = true }
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false, features = ["derive"] }
pallet-balances = { version = "2.0.0-rc2", default-features = false }
sp-std = { version = "2.0.0-rc2", default-features = false }
sp-runtime = { version = "2.0.0-rc2", default-features = false }
frame-support = { version = "2.0.0-rc2", default-features = false }
frame-system = { version = "2.0.0-rc2", default-features = false }
util = { package = "sunshine-util", version = "0.0.3", default-features = false }
membership = { package = "sunshine-membership", version = "0.0.2", default-features = false }
shares-membership = { package = "sunshine-shares-membership", version = "0.0.2", default-features = false }
shares-atomic = { package = "sunshine-shares-atomic", version = "0.0.3", default-features = false }
org = { package = "sunshine-org", version = "0.0.2", default-features=false}
clear_on_drop = { version = "0.2.3", features = ["no_cc"] } # https://github.com/paritytech/substrate/issues/4179

[dev-dependencies]
pallet-balances = { version = "2.0.0-rc2", default-features = false }
sp-io = { version = "2.0.0-rc2", default-features = false }
sp-core = { version = "2.0.0-rc2", default-features = false }

[features]
default = ["std"]
std = [
    "serde",
    "codec/std",
    "sp-std/std",
    "sp-runtime/std",
    "frame-support/std",
    "frame-system/std",
    "pallet-balances/std",
    "membership/std",
    "shares-membership/std",
    "shares-atomic/std",
    "org/std",
]