git.delta.rocks / unique-network / refs/commits / 3bbb454c8e7e

difftreelog

Merge pull request #594 from UniqueNetwork/fix/app-promotion-bench

Yaroslav Bolyukin2022-09-15parents: #85b56f6 #6ca1269.patch.diff
in: master
fix cargo.toml

1 file changed

modifiedpallets/app-promotion/Cargo.tomldiffbeforeafterboth
before · pallets/app-promotion/Cargo.toml
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    # '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]41[dependencies]42scale-info = { version = "2.0.1", default-features = false, features = [43    "derive",44] }45################################################################################46# Substrate Dependencies4748codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = '3.1.2' }49frame-benchmarking = {default-features = false, optional = true,  git = "https://github.com/paritytech/substrate",  branch = "polkadot-v0.9.27" }50frame-support = { default-features = false,  git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }51frame-system ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }52pallet-balances ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }53pallet-timestamp ={ default-features = false,  git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }54pallet-randomness-collective-flip ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }55pallet-evm ={ default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }56sp-std ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }57sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }58sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }59sp-io ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }60serde = { default-features = false, features = ['derive'], version = '1.0.130' }6162################################################################################63# local dependencies6465up-data-structs ={ default-features = false, path = "../../primitives/data-structs" }66pallet-common ={ default-features = false, path = "../common" }67pallet-unique ={ default-features = false, path = "../unique" }68pallet-evm-contract-helpers ={ default-features = false, path = "../evm-contract-helpers" }6970[dev-dependencies]71pallet-evm-migration ={ default-features = false, path = "../evm-migration" }7273################################################################################
after · pallets/app-promotion/Cargo.toml
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    # '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]41[dependencies]42scale-info = { version = "2.0.1", default-features = false, features = [43    "derive",44] }45################################################################################46# Substrate Dependencies4748codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = '3.1.2' }49frame-benchmarking = {default-features = false, optional = true,  git = "https://github.com/paritytech/substrate",  branch = "polkadot-v0.9.27" }50frame-support = { default-features = false,  git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }51frame-system ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }52pallet-balances ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }53pallet-timestamp ={ default-features = false,  git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }54pallet-randomness-collective-flip ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }55pallet-evm ={ default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }56sp-std ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }57sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }58sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }59sp-io ={ default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }60serde = { default-features = false, features = ['derive'], version = '1.0.130' }6162################################################################################63# local dependencies6465up-data-structs ={ default-features = false, path = "../../primitives/data-structs" }66pallet-common ={ default-features = false, path = "../common" }67pallet-unique ={ default-features = false, path = "../unique" }68pallet-evm-contract-helpers ={ default-features = false, path = "../evm-contract-helpers" }69pallet-evm-migration ={ default-features = false, path = "../evm-migration" }7071# [dev-dependencies]7273################################################################################