git.delta.rocks / unique-network / refs/commits / e4fb88351df3

difftreelog

source

pallets/rmrk-core-proxy/Cargo.toml2.1 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" }21# pallet-structure = { default-features = false, path = '../structure' }22up-data-structs = { default-features = false, path = '../../primitives/data-structs' }23# evm-coder = { default-features = false, path = '../../crates/evm-coder' }24# pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }25pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }26frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }27scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }2829[features]30default = ["std"]31std = [32    "frame-support/std",33    "frame-system/std",34    "sp-runtime/std",35    "sp-std/std",36    "up-data-structs/std",37    "pallet-common/std",38    "pallet-nonfungible/std",39    "pallet-evm/std",40    # "pallet-structure/std",41    # "evm-coder/std",42    # "pallet-evm-coder-substrate/std",43    'frame-benchmarking/std',44]45runtime-benchmarks = [46    'frame-benchmarking',47    'frame-support/runtime-benchmarks',48    'frame-system/runtime-benchmarks',49]