difftreelog
fix restore frame-benchmarking in rft
in: master
1 file changed
pallets/refungible/Cargo.tomldiffbeforeafterboth1[package]2name = "pallet-refungible"3version = "0.2.2"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '3.1.2'1213[dependencies]14frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.25" }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }21pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }22pallet-common = { default-features = false, path = '../common' }23pallet-structure = { default-features = false, path = '../structure' }24struct-versioning = { path = "../../crates/struct-versioning" }25up-data-structs = { default-features = false, path = '../../primitives/data-structs' }26ethereum = { version = "0.12.0", default-features = false }27scale-info = { version = "2.0.1", default-features = false, features = ["derive",] }28derivative = { version = "2.2.0", features = ["use_core"] }2930[features]31default = ["std"]32std = [33 "ethereum/std",34 "evm-coder/std",35 'frame-benchmarking/std',36 "frame-support/std",37 "frame-system/std",38 "pallet-common/std",39 "pallet-evm/std",40 "pallet-evm-coder-substrate/std",41 "pallet-structure/std",42 "sp-runtime/std",43 "sp-std/std",44 "up-data-structs/std",45]46runtime-benchmarks = [47 'frame-benchmarking',48 'frame-support/runtime-benchmarks',49 'frame-system/runtime-benchmarks',50 'up-data-structs/runtime-benchmarks',51]1[package]2name = "pallet-refungible"3version = "0.2.2"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '3.1.2'1213[dependencies]14frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }16frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }17sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }18sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }19sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.25" }20pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.25" }21evm-coder = { default-features = false, path = '../../crates/evm-coder' }22pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }23pallet-common = { default-features = false, path = '../common' }24pallet-structure = { default-features = false, path = '../structure' }25struct-versioning = { path = "../../crates/struct-versioning" }26up-data-structs = { default-features = false, path = '../../primitives/data-structs' }27ethereum = { version = "0.12.0", default-features = false }28scale-info = { version = "2.0.1", default-features = false, features = ["derive",] }29derivative = { version = "2.2.0", features = ["use_core"] }3031[features]32default = ["std"]33std = [34 "ethereum/std",35 "evm-coder/std",36 'frame-benchmarking/std',37 "frame-support/std",38 "frame-system/std",39 "pallet-common/std",40 "pallet-evm/std",41 "pallet-evm-coder-substrate/std",42 "pallet-structure/std",43 "sp-runtime/std",44 "sp-std/std",45 "up-data-structs/std",46]47runtime-benchmarks = [48 'frame-benchmarking',49 'frame-support/runtime-benchmarks',50 'frame-system/runtime-benchmarks',51 'up-data-structs/runtime-benchmarks',52]