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.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 24]25std = [26 'codec/std',27 'frame-benchmarking/std',28 'frame-support/std',29 'frame-system/std',30 'pallet-evm/std',31 'sp-core/std',32 'sp-runtime/std',33 'sp-std/std',3435]36try-runtime = ["frame-support/try-runtime"]3738[dependencies]3940414243codec = { workspace = true, package = "parity-scale-codec" }4445scale-info = { workspace = true }4647frame-benchmarking = { workspace = true, optional = true }48frame-support = { workspace = true }49frame-system = { workspace = true }5051pallet-evm = { workspace = true }52sp-core = { workspace = true }53sp-runtime = { workspace = true }54sp-std = { workspace = true }5556575859pallet-common = { workspace = true }60pallet-configuration = { workspace = true }61pallet-evm-contract-helpers = { workspace = true }62pallet-evm-migration = { workspace = true }63pallet-unique = { workspace = true }64up-data-structs = { workspace = true }65666768697071log = { version = "0.4.16", default-features = false }