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

difftreelog

source

pallets/app-promotion/Cargo.toml3.3 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]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]3637################################################################################38# Substrate Dependencies3940[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.27"5152[dependencies.frame-support]53default-features = false54git = "https://github.com/paritytech/substrate"55branch = "polkadot-v0.9.27"5657[dependencies.frame-system]58default-features = false59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.27"6162[dependencies.pallet-balances]63default-features = false64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.27"6667[dependencies.pallet-timestamp]68default-features = false69git = "https://github.com/paritytech/substrate"70branch = "polkadot-v0.9.27"7172[dependencies.pallet-randomness-collective-flip]73default-features = false74git = "https://github.com/paritytech/substrate"75branch = "polkadot-v0.9.27"7677[dependencies.sp-std]78default-features = false79git = "https://github.com/paritytech/substrate"80branch = "polkadot-v0.9.27"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.27"9192[dependencies.sp-core]93default-features = false94git = "https://github.com/paritytech/substrate"95branch = "polkadot-v0.9.27"9697[dependencies.sp-io]98default-features = false99git = "https://github.com/paritytech/substrate"100branch = "polkadot-v0.9.27"101102[dependencies.pallet-evm]103default-features = false104git = "https://github.com/uniquenetwork/frontier"105branch = "unique-polkadot-v0.9.27"106107################################################################################108# local dependencies109[dependencies.up-data-structs]110default-features = false111path =  "../../primitives/data-structs"112113[dependencies.pallet-common]114default-features = false115path =  "../common"116117[dependencies.pallet-unique]118default-features = false119path =  "../unique"120121[dependencies.pallet-evm-contract-helpers]122default-features = false123path =  "../evm-contract-helpers"124125[dev-dependencies]126[dependencies.pallet-evm-migration]127default-features = false128path =  "../evm-migration"129130131################################################################################132133[dependencies]134scale-info = { version = "2.0.1", default-features = false, features = [135    "derive",136] }