git.delta.rocks / unique-network / refs/commits / 8a829ea38883

difftreelog

source

pallets/app-promotion/Cargo.toml2.8 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.3'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-evm/std',32	'sp-core/std',33	'sp-runtime/std',34	'sp-std/std',3536]37try-runtime = ["frame-support/try-runtime"]3839[dependencies]40################################################################################41# Substrate Dependencies4243codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }44scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }4546frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }47frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }48frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }49pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }50pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }51sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }52sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }53sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }5455################################################################################56# local dependencies5758pallet-common = { default-features = false, path = "../common" }59pallet-configuration = { default-features = false, path = "../configuration" }60pallet-evm-contract-helpers = { default-features = false, path = "../evm-contract-helpers" }61pallet-evm-migration = { default-features = false, path = "../evm-migration" }62pallet-unique = { default-features = false, path = "../unique" }63up-data-structs = { default-features = false, path = "../../primitives/data-structs" }6465# [dev-dependencies]6667################################################################################