1234[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]24std = [25 'codec/std',26 'serde/std',27 'frame-support/std',28 'frame-system/std',29 'pallet-balances/std',30 'pallet-timestamp/std',31 'pallet-randomness-collective-flip/std',32 'sp-std/std',33 'sp-runtime/std',34 'frame-benchmarking/std',35]3637383940[dependencies.codec]41default-features = false42features = ['derive']43package = 'parity-scale-codec'44version = '3.1.2'4546[dependencies.frame-benchmarking]47default-features = false48optional = true49git = "https://github.com/paritytech/substrate"50branch = "polkadot-v0.9.24"5152[dependencies.frame-support]53default-features = false54git = "https://github.com/paritytech/substrate"55branch = "polkadot-v0.9.24"5657[dependencies.frame-system]58default-features = false59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.24"6162[dependencies.pallet-balances]63default-features = false64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.24"6667[dependencies.pallet-timestamp]68default-features = false69git = "https://github.com/paritytech/substrate"70branch = "polkadot-v0.9.24"7172[dependencies.pallet-randomness-collective-flip]73default-features = false74git = "https://github.com/paritytech/substrate"75branch = "polkadot-v0.9.24"7677[dependencies.sp-std]78default-features = false79git = "https://github.com/paritytech/substrate"80branch = "polkadot-v0.9.24"8182[dependencies.serde]83default-features = false84features = ['derive']85version = '1.0.130'8687[dependencies.sp-runtime]88default-features = false89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.24"9192[dependencies.sp-core]93default-features = false94git = "https://github.com/paritytech/substrate"95branch = "polkadot-v0.9.24"9697[dependencies.sp-io]98default-features = false99git = "https://github.com/paritytech/substrate"100branch = "polkadot-v0.9.24"101102[dependencies.pallet-evm]103default-features = false104git = "https://github.com/uniquenetwork/frontier"105branch = "unique-polkadot-v0.9.24"106107[dependencies]108scale-info = { version = "2.0.1", default-features = false, features = [109 "derive",110] }