git.delta.rocks / unique-network / refs/commits / 1d12e73b766b

difftreelog

source

pallets/nonfungible/Cargo.toml1.8 KiBsourcehistory
1[package]2name = "pallet-nonfungible"3version = "0.1.0"4edition = "2018"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.0.0'1112[dependencies]13frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }14frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }15sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }16sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }17sp-core = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }18pallet-common = { default-features = false, path = '../common' }19nft-data-structs = { default-features = false, path = '../../primitives/nft' }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }21pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }22ethereum = { default-features = false, version = "0.9.0" }23frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }2425[features]26default = ["std"]27std = [28    "frame-support/std",29    "frame-system/std",30    "sp-runtime/std",31    "sp-std/std",32    "nft-data-structs/std",33    "pallet-common/std",34    "evm-coder/std",35    "ethereum/std",36    "pallet-evm-coder-substrate/std",37    'frame-benchmarking/std',38]39runtime-benchmarks = [40    'frame-benchmarking',41    'frame-support/runtime-benchmarks',42    'frame-system/runtime-benchmarks',43]