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

difftreelog

source

pallets/app-promotion/Cargo.toml3.4 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.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    'codec/std',27    'frame-benchmarking/std',28    'frame-support/std',29    'frame-system/std',30    'pallet-balances/std',31    'pallet-timestamp/std',32    'pallet-randomness-collective-flip/std',33    'pallet-evm/std',34    'sp-io/std',35    'sp-std/std',36    'sp-runtime/std',37    'sp-core/std',38    'serde/std',3940]41try-runtime = ["frame-support/try-runtime"]4243[dependencies]44scale-info = { version = "2.0.1", default-features = false, features = [45    "derive",46] }47################################################################################48# Substrate Dependencies4950codec = { default-features = false, features = [51    'derive',52], package = 'parity-scale-codec', version = '3.1.2' }53frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }54frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }55frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }56pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }57pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }58pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }59pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }60sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }61sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }62sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }63sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }64serde = { default-features = false, features = ['derive'], version = '1.0.130' }6566################################################################################67# local dependencies6869up-data-structs = { default-features = false, path = "../../primitives/data-structs" }70pallet-common = { default-features = false, path = "../common" }71pallet-configuration = { default-features = false, path = "../configuration" }72pallet-unique = { default-features = false, path = "../unique" }73pallet-evm-contract-helpers = { default-features = false, path = "../evm-contract-helpers" }74pallet-evm-migration = { default-features = false, path = "../evm-migration" }7576# [dev-dependencies]7778################################################################################