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

difftreelog

fix restore frame-benchmarking in rft

Daniel Shiposha2022-08-12parent: #7fd36ce.patch.diff
in: master

1 file changed

modifiedpallets/refungible/Cargo.tomldiffbeforeafterboth
before · pallets/refungible/Cargo.toml
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-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]