1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-rmrk-equip"5version = "0.1.2"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }1011frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14pallet-common = { default-features = false, path = "../common" }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }16pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }17pallet-rmrk-core = { default-features = false, path = "../proxy-rmrk-core" }18sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2122[features]23default = ["std"]24runtime-benchmarks = ['frame-benchmarking', 'frame-support/runtime-benchmarks', 'frame-system/runtime-benchmarks']25std = [26 "frame-support/std",27 "frame-system/std",28 "pallet-common/std",29 "pallet-evm/std",30 "pallet-nonfungible/std",31 "pallet-rmrk-core/std",32 "sp-runtime/std",33 "sp-std/std",34 "up-data-structs/std",35 'frame-benchmarking/std',36]37try-runtime = ["frame-support/try-runtime"]