1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-rmrk-equip"5version = "0.1.2"67[dependencies]89codec = { workspace = true, package = "parity-scale-codec" }1011scale-info = { workspace = true }1213frame-benchmarking = {workspace = true, optional = true }14frame-support = { workspace = true }15frame-system = { workspace = true }16pallet-common = { workspace = true }17pallet-evm = { workspace = true }18pallet-nonfungible = { workspace = true }19pallet-proxy-rmrk-core = { workspace = true }20sp-runtime = { workspace = true }21sp-std = { workspace = true }22up-data-structs = { workspace = true }2324[features]25default = ["std"]26runtime-benchmarks = ['frame-benchmarking', 'frame-support/runtime-benchmarks', 'frame-system/runtime-benchmarks']27std = [28 "frame-support/std",29 "frame-system/std",30 "pallet-common/std",31 "pallet-evm/std",32 "pallet-nonfungible/std",33 "pallet-proxy-rmrk-core/std",34 "sp-runtime/std",35 "sp-std/std",36 "up-data-structs/std",37 'frame-benchmarking/std',38]39try-runtime = ["frame-support/try-runtime"]