git.delta.rocks / unique-network / refs/commits / b6f32fd78e2b

difftreelog

source

pallets/contract-helpers/Cargo.toml1.2 KiBsourcehistory
1[package]2name = "pallet-contract-helpers"3version = "0.1.0"4edition = "2018"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.3.0'1112[dependencies]13scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }14frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }15frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }16pallet-contracts = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }17sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }18sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }19up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring" } 2021[features]22default = ["std"]23std = [24    "frame-support/std",25    "frame-system/std",26    "pallet-contracts/std",27    "sp-runtime/std",28    "sp-std/std",29]