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

difftreelog

source

pallets/contract-helpers/Cargo.toml1.3 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.up-sponsorship]13default-features = false14path = '../../primitives/sponsorship'15version = '0.1.0'1617[dependencies]18scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }19frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }20frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }21pallet-contracts = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }22sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }23sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }2425[features]26default = ["std"]27std = [28    "frame-support/std",29    "frame-system/std",30    "pallet-contracts/std",31    "sp-runtime/std",32    "sp-std/std",33]