git.delta.rocks / unique-network / refs/commits / 764dfd599fff

difftreelog

source

pallets/proxy-rmrk-core/Cargo.toml1.8 KiBsourcehistory
1[package]2name = "pallet-rmrk-core"3version = "0.1.0"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.21" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }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.21-logs" }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }24scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }2526[features]27default = ["std"]28std = [29    "frame-support/std",30    "frame-system/std",31    "sp-runtime/std",32    "sp-std/std",33    "up-data-structs/std",34    "pallet-common/std",35    "pallet-nonfungible/std",36    "pallet-evm/std",37    'frame-benchmarking/std',38]39runtime-benchmarks = [40    'frame-benchmarking',41    'frame-support/runtime-benchmarks',42    'frame-system/runtime-benchmarks',43]