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

difftreelog

source

pallets/nft/Cargo.toml4.7 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Substrate node nft'7edition = '2018'8homepage = 'https://unique.network'9license = 'All Rights Reserved'10name = 'pallet-nft'11repository = 'https://github.com/usetech-llc/nft_private/'12version = '3.0.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']20std = [21    'codec/std',22    'serde/std',23    'frame-support/std',24    'frame-system/std',25    'pallet-balances/std',26    'pallet-evm/std',27    'pallet-timestamp/std',28    'pallet-randomness-collective-flip/std',29    'pallet-transaction-payment/std',30    'pallet-common/std',31    'pallet-fungible/std',32    'pallet-nonfungible/std',33    'pallet-refungible/std',34    'fp-evm/std',35    'nft-data-structs/std',36    'up-sponsorship/std',37    'sp-std/std',38    'sp-api/std',39    'sp-runtime/std',40    'frame-benchmarking/std',41    'ethereum/std',42    'rlp/std',4344    'primitive-types/std',45    'evm-coder/std',46    'pallet-evm-coder-substrate/std',47]48limit-testing = ["nft-data-structs/limit-testing"]4950################################################################################51# Substrate Dependencies5253[dependencies.codec]54default-features = false55features = ['derive']56package = 'parity-scale-codec'57version = '2.3.0'5859[dependencies.frame-benchmarking]60default-features = false61optional = true62git = 'https://github.com/paritytech/substrate.git'63branch = 'polkadot-v0.9.12'6465[dependencies.frame-support]66default-features = false67git = 'https://github.com/paritytech/substrate.git'68branch = 'polkadot-v0.9.12'6970[dependencies.frame-system]71default-features = false72git = 'https://github.com/paritytech/substrate.git'73branch = 'polkadot-v0.9.12'7475[dependencies.pallet-balances]76default-features = false77git = 'https://github.com/paritytech/substrate.git'78branch = 'polkadot-v0.9.12'7980[dependencies.pallet-timestamp]81default-features = false82git = 'https://github.com/paritytech/substrate.git'83branch = 'polkadot-v0.9.12'8485[dependencies.pallet-randomness-collective-flip]86default-features = false87git = 'https://github.com/paritytech/substrate.git'88branch = 'polkadot-v0.9.12'8990[dependencies.sp-std]91default-features = false92git = 'https://github.com/paritytech/substrate.git'93branch = 'polkadot-v0.9.12'9495[dependencies.pallet-transaction-payment]96default-features = false97git = 'https://github.com/paritytech/substrate.git'98branch = 'polkadot-v0.9.12'99100[dependencies.serde]101default-features = false102features = ['derive']103version = '1.0.130'104105[dependencies.sp-runtime]106default-features = false107git = 'https://github.com/paritytech/substrate.git'108branch = 'polkadot-v0.9.12'109110[dependencies.sp-core]111default-features = false112git = 'https://github.com/paritytech/substrate.git'113branch = 'polkadot-v0.9.12'114115[dependencies.sp-io]116default-features = false117git = 'https://github.com/paritytech/substrate.git'118branch = 'polkadot-v0.9.12'119120121################################################################################122# Local Dependencies123124[dependencies.nft-data-structs]125default-features = false126path = '../../primitives/nft'127version = '0.9.0'128129[dependencies]130scale-info = { version = "1.0.0", default-features = false, features = [131    "derive",132] }133ethereum = { version = "0.9", git = "https://github.com/purestake/ethereum", branch = "joshy-scale-info", default-features = false }134rlp = { default-features = false, version = "0.5.0" }135sp-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12" }136137up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring" } 138139evm-coder = { default-features = false, path = "../../crates/evm-coder" }140pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }141primitive-types = { version = "0.10.1", default-features = false, features = [142    "serde_no_std",143] }144145pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }146pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }147fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }148hex-literal = "0.3.3"149150pallet-common = { default-features = false, path = "../common" }151pallet-fungible = { default-features = false, path = "../fungible" }152pallet-nonfungible = { default-features = false, path = "../nonfungible" }153pallet-refungible = { default-features = false, path = "../refungible" }