1234[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']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"]4950515253[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.10'64version = '4.0.0-dev'6566[dependencies.frame-support]67default-features = false68git = 'https://github.com/paritytech/substrate.git'69branch = 'polkadot-v0.9.10'70version = '4.0.0-dev'7172[dependencies.frame-system]73default-features = false74git = 'https://github.com/paritytech/substrate.git'75branch = 'polkadot-v0.9.10'76version = '4.0.0-dev'7778[dependencies.pallet-balances]79default-features = false80git = 'https://github.com/paritytech/substrate.git'81branch = 'polkadot-v0.9.10'82version = '4.0.0-dev'8384[dependencies.pallet-timestamp]85default-features = false86git = 'https://github.com/paritytech/substrate.git'87branch = 'polkadot-v0.9.10'88version = '4.0.0-dev'8990[dependencies.pallet-randomness-collective-flip]91default-features = false92git = 'https://github.com/paritytech/substrate.git'93branch = 'polkadot-v0.9.10'94version = '4.0.0-dev'9596[dependencies.sp-std]97default-features = false98git = 'https://github.com/paritytech/substrate.git'99branch = 'polkadot-v0.9.10'100version = '4.0.0-dev'101102[dependencies.pallet-transaction-payment]103default-features = false104git = 'https://github.com/paritytech/substrate.git'105branch = 'polkadot-v0.9.10'106version = '4.0.0-dev'107108[dependencies.serde]109default-features = false110features = ['derive']111version = '1.0.130'112113[dependencies.sp-runtime]114default-features = false115git = 'https://github.com/paritytech/substrate.git'116branch = 'polkadot-v0.9.10'117version = '4.0.0-dev'118119[dependencies.sp-core]120default-features = false121git = 'https://github.com/paritytech/substrate.git'122branch = 'polkadot-v0.9.10'123version = '4.0.0-dev'124125[dependencies.sp-io]126default-features = false127git = 'https://github.com/paritytech/substrate.git'128branch = 'polkadot-v0.9.10'129version = '4.0.0-dev'130131132133134135[dependencies.nft-data-structs]136default-features = false137path = '../../primitives/nft'138version = '0.9.0'139140[dependencies.up-sponsorship]141default-features = false142path = '../../primitives/sponsorship'143version = '0.1.0'144145146[dependencies]147ethereum = { default-features = false, version = "0.9.0" }148rlp = { default-features = false, version = "0.5.0" }149sp-api = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }150151evm-coder = { default-features = false, path = "../../crates/evm-coder" }152pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }153primitive-types = { version = "0.10.1", default-features = false, features = [154 "serde_no_std",155] }156157pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }158pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }159fp-evm = { default-features = false, version = '3.0.0-dev', git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }160hex-literal = "0.3.3"161162pallet-common = { default-features = false, path = "../common" }163pallet-fungible = { default-features = false, path = "../fungible" }164pallet-nonfungible = { default-features = false, path = "../nonfungible" }165pallet-refungible = { default-features = false, path = "../refungible" }