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

difftreelog

source

pallets/refungible/Cargo.toml1.5 KiBsourcehistory
1[package]2name = "pallet-refungible"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' }20frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }2122[features]23default = ["std"]24std = [25    "frame-support/std",26    "frame-system/std",27    "sp-runtime/std",28    "sp-std/std",29    "nft-data-structs/std",30    "pallet-common/std",31    'frame-benchmarking/std',32]33runtime-benchmarks = [34    'frame-benchmarking',35    'frame-support/runtime-benchmarks',36    'frame-system/runtime-benchmarks',37]