1[package]2name = "pallet-rmrk-equip"3version = "0.1.1"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.24" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }19pallet-common = { default-features = false, path = '../common' }20pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }21up-data-structs = { default-features = false, path = '../../primitives/data-structs' }22pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24rmrk-traits = { default-features = false, path = "../../primitives/rmrk-traits" }25scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }26pallet-rmrk-core = { default-features = false, path = "../proxy-rmrk-core" }2728[features]29default = ["std"]30std = [31 "frame-support/std",32 "frame-system/std",33 "sp-runtime/std",34 "sp-std/std",35 "up-data-structs/std",36 "rmrk-traits/std",37 "pallet-common/std",38 "pallet-nonfungible/std",39 "pallet-rmrk-core/std",40 "pallet-evm/std",41 'frame-benchmarking/std',42]43runtime-benchmarks = [44 'frame-benchmarking',45 'frame-support/runtime-benchmarks',46 'frame-system/runtime-benchmarks',47]