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 'fp-evm/std',31 'nft-data-structs/std',32 'up-sponsorship/std',33 'sp-std/std',34 'sp-api/std',35 'sp-runtime/std',36 'frame-benchmarking/std',37 'ethereum/std',38 'rlp/std',3940 'primitive-types/std',41 'evm-coder/std',42 'pallet-evm-coder-substrate/std',43]44limit-testing = ["nft-data-structs/limit-testing"]4546474849[dependencies.codec]50default-features = false51features = ['derive']52package = 'parity-scale-codec'53version = '2.3.0'5455[dependencies.frame-benchmarking]56default-features = false57optional = true58git = 'https://github.com/paritytech/substrate.git'59branch = 'polkadot-v0.9.12'6061[dependencies.frame-support]62default-features = false63git = 'https://github.com/paritytech/substrate.git'64branch = 'polkadot-v0.9.12'6566[dependencies.frame-system]67default-features = false68git = 'https://github.com/paritytech/substrate.git'69branch = 'polkadot-v0.9.12'7071[dependencies.pallet-balances]72default-features = false73git = 'https://github.com/paritytech/substrate.git'74branch = 'polkadot-v0.9.12'7576[dependencies.pallet-timestamp]77default-features = false78git = 'https://github.com/paritytech/substrate.git'79branch = 'polkadot-v0.9.12'8081[dependencies.pallet-randomness-collective-flip]82default-features = false83git = 'https://github.com/paritytech/substrate.git'84branch = 'polkadot-v0.9.12'8586[dependencies.sp-std]87default-features = false88git = 'https://github.com/paritytech/substrate.git'89branch = 'polkadot-v0.9.12'9091[dependencies.pallet-transaction-payment]92default-features = false93git = 'https://github.com/paritytech/substrate.git'94branch = 'polkadot-v0.9.12'9596[dependencies.serde]97default-features = false98features = ['derive']99version = '1.0.130'100101[dependencies.sp-runtime]102default-features = false103git = 'https://github.com/paritytech/substrate.git'104branch = 'polkadot-v0.9.12'105106[dependencies.sp-core]107default-features = false108git = 'https://github.com/paritytech/substrate.git'109branch = 'polkadot-v0.9.12'110111[dependencies.sp-io]112default-features = false113git = 'https://github.com/paritytech/substrate.git'114branch = 'polkadot-v0.9.12'115116117118119120[dependencies.nft-data-structs]121default-features = false122path = '../../primitives/nft'123version = '0.9.0'124125[dependencies.up-sponsorship]126default-features = false127path = '../../primitives/sponsorship'128version = '0.1.0'129130131[dependencies]132scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }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" }136137evm-coder = { default-features = false, path = "../../crates/evm-coder" }138pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }139primitive-types = { version = "0.10.1", default-features = false, features = [140 "serde_no_std",141] }142143pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }144pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }145fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }146hex-literal = "0.3.3"