git.delta.rocks / unique-network / refs/commits / 4dff934f02cf

difftreelog

source

pallets/proxy-rmrk-equip/Cargo.toml2.0 KiBsourcehistory
1[package]2name = "pallet-rmrk-equip"3version = "0.1.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.36" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }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.36" }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24rmrk-traits = { default-features = false, path = "../../primitives/rmrk-traits" }25scale-info = { version = "2.0.1", default-features = false, features = [26    "derive",27] }28pallet-rmrk-core = { default-features = false, path = "../proxy-rmrk-core" }2930[features]31default = ["std"]32std = [33    "frame-support/std",34    "frame-system/std",35    "sp-runtime/std",36    "sp-std/std",37    "up-data-structs/std",38    "rmrk-traits/std",39    "pallet-common/std",40    "pallet-nonfungible/std",41    "pallet-rmrk-core/std",42    "pallet-evm/std",43    'frame-benchmarking/std',44]45runtime-benchmarks = [46    'frame-benchmarking',47    'frame-support/runtime-benchmarks',48    'frame-system/runtime-benchmarks',49]50try-runtime = ["frame-support/try-runtime"]