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-contracts/std',29 'pallet-randomness-collective-flip/std',30 'pallet-transaction-payment/std',31 'fp-evm/std',32 'nft-data-structs/std',33 'sp-std/std',34 'sp-runtime/std',35 'frame-benchmarking/std',36 'ethereum/std',37 'rlp/std',3839 'ethereum-tx-sign',40 'primitive-types/std',41 'evm-coder/std',42]4344454647[dependencies.codec]48default-features = false49features = ['derive']50package = 'parity-scale-codec'51version = '2.0.0'5253[dependencies.frame-benchmarking]54default-features = false55optional = true56git = 'https://github.com/paritytech/substrate.git'57branch = 'polkadot-v0.9.3'58version = '3.0.0'5960[dependencies.frame-support]61default-features = false62git = 'https://github.com/paritytech/substrate.git'63branch = 'polkadot-v0.9.3'64version = '3.0.0'6566[dependencies.frame-system]67default-features = false68git = 'https://github.com/paritytech/substrate.git'69branch = 'polkadot-v0.9.3'70version = '3.0.0'7172[dependencies.pallet-balances]73default-features = false74git = 'https://github.com/paritytech/substrate.git'75branch = 'polkadot-v0.9.3'76version = '3.0.0'7778[dependencies.pallet-timestamp]79default-features = false80git = 'https://github.com/paritytech/substrate.git'81branch = 'polkadot-v0.9.3'82version = '3.0.0'8384[dependencies.pallet-randomness-collective-flip]85default-features = false86git = 'https://github.com/paritytech/substrate.git'87branch = 'polkadot-v0.9.3'88version = '3.0.0'8990[dependencies.sp-std]91default-features = false92git = 'https://github.com/paritytech/substrate.git'93branch = 'polkadot-v0.9.3'94version = '3.0.0'9596[dependencies.pallet-contracts]97default-features = false98git = 'https://github.com/paritytech/substrate.git'99branch = 'polkadot-v0.9.3'100version = '3.0.0'101102[dependencies.pallet-transaction-payment]103default-features = false104git = 'https://github.com/paritytech/substrate.git'105branch = 'polkadot-v0.9.3'106version = '3.0.0'107108[dependencies.serde]109features = ['derive']110version = '1.0.119'111112[dependencies.sp-runtime]113default-features = false114git = 'https://github.com/paritytech/substrate.git'115branch = 'polkadot-v0.9.3'116version = '3.0.0'117118[dependencies.sp-core]119default-features = false120git = 'https://github.com/paritytech/substrate.git'121branch = 'polkadot-v0.9.3'122version = '3.0.0'123124[dependencies.sp-io]125default-features = false126git = 'https://github.com/paritytech/substrate.git'127branch = 'polkadot-v0.9.3'128version = '3.0.0'129130131132133134[dependencies.nft-data-structs]135default-features = false136path = '../../primitives'137version = '0.9.0'138139140[dependencies]141ethereum-tx-sign = { version = "3.0.4", optional = true }142ethereum = { default-features = false, version = "0.7.1" }143rlp = { default-features = false, version = "0.5.0" }144145evm-coder = { default-features = false, path = "../../crates/evm-coder" }146primitive-types = { version = "0.9.0", default-features = false, features = ["serde_no_std"] }147148hex-literal = "0.3.1"