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

difftreelog

source

pallets/app-promotion/Cargo.toml1.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.2.1'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	'frame-benchmarking/std',27	'frame-support/std',28	'frame-system/std',29	'pallet-evm/std',30	'parity-scale-codec/std',31	'sp-core/std',32	'sp-runtime/std',33	'sp-std/std',3435]36try-runtime = ["frame-support/try-runtime"]3738[dependencies]39################################################################################40# Substrate Dependencies4142parity-scale-codec = { workspace = true }43scale-info = { workspace = true }4445frame-benchmarking = { workspace = true, optional = true }46frame-support = { workspace = true }47frame-system = { workspace = true }4849pallet-evm = { workspace = true }50sp-core = { workspace = true }51sp-runtime = { workspace = true }52sp-std = { workspace = true }5354################################################################################55# local dependencies5657pallet-common = { workspace = true }58pallet-configuration = { workspace = true }59pallet-evm-contract-helpers = { workspace = true }60pallet-evm-migration = { workspace = true }61pallet-unique = { workspace = true }62up-data-structs = { workspace = true }6364# [dev-dependencies]6566################################################################################67# Other6869log = { version = "0.4.20", default-features = false }