git.delta.rocks / unique-network / refs/commits / 25c961748e58

difftreelog

source

pallets/app-promotion/Cargo.toml3.4 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique App Promotion Pallet'7edition = '2021'8homepage = 'https://unique.network'9license = 'GPLv3'10name = 'pallet-app-promotion'11repository = 'https://github.com/UniqueNetwork/unique-chain'12version = '0.1.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std',]19runtime-benchmarks = [20    'frame-benchmarking',21    'frame-support/runtime-benchmarks',22    'frame-system/runtime-benchmarks',23    # 'pallet-unique/runtime-benchmarks',24]25std = [26    'codec/std',27    'frame-benchmarking/std',28    'frame-support/std',29    'frame-system/std',30    'pallet-balances/std',31    'pallet-timestamp/std',32    'pallet-randomness-collective-flip/std',33    'pallet-evm/std',34    'sp-io/std',35    'sp-std/std',36    'sp-runtime/std',37    'sp-core/std',38    'serde/std',3940]4142################################################################################43# Substrate Dependencies4445[dependencies.codec]46default-features = false47features = ['derive']48package = 'parity-scale-codec'49version = '3.1.2'5051[dependencies.frame-benchmarking]52default-features = false53optional = true54git = "https://github.com/paritytech/substrate"55branch = "polkadot-v0.9.27"5657[dependencies.frame-support]58default-features = false59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.27"6162[dependencies.frame-system]63default-features = false64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.27"6667[dependencies.pallet-balances]68default-features = false69git = "https://github.com/paritytech/substrate"70branch = "polkadot-v0.9.27"7172[dependencies.pallet-timestamp]73default-features = false74git = "https://github.com/paritytech/substrate"75branch = "polkadot-v0.9.27"7677[dependencies.pallet-randomness-collective-flip]78default-features = false79git = "https://github.com/paritytech/substrate"80branch = "polkadot-v0.9.27"8182[dependencies.sp-std]83default-features = false84git = "https://github.com/paritytech/substrate"85branch = "polkadot-v0.9.27"8687[dependencies.serde]88default-features = false89features = ['derive']90version = '1.0.130'9192[dependencies.sp-runtime]93default-features = false94git = "https://github.com/paritytech/substrate"95branch = "polkadot-v0.9.27"9697[dependencies.sp-core]98default-features = false99git = "https://github.com/paritytech/substrate"100branch = "polkadot-v0.9.27"101102[dependencies.sp-io]103default-features = false104git = "https://github.com/paritytech/substrate"105branch = "polkadot-v0.9.27"106107[dependencies.pallet-evm]108default-features = false109git = "https://github.com/uniquenetwork/frontier"110branch = "unique-polkadot-v0.9.27"111112################################################################################113# local dependencies114[dependencies.up-data-structs]115default-features = false116path = "../../primitives/data-structs"117118[dependencies.pallet-common]119default-features = false120path = "../common"121122[dependencies.pallet-unique]123default-features = false124path = "../unique"125126[dependencies.pallet-evm-contract-helpers]127default-features = false128path = "../evm-contract-helpers"129130[dev-dependencies]131[dependencies.pallet-evm-migration]132default-features = false133path = "../evm-migration"134135136################################################################################137138[dependencies]139scale-info = { version = "2.0.1", default-features = false, features = [140    "derive",141] }