git.delta.rocks / unique-network / refs/commits / 1d12e73b766b

difftreelog

source

pallets/nft/Cargo.toml4.9 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 = [20    'frame-benchmarking',21    'pallet-common/runtime-benchmarks',22]23std = [24    'codec/std',25    'serde/std',26    'frame-support/std',27    'frame-system/std',28    'pallet-balances/std',29    'pallet-evm/std',30    'pallet-timestamp/std',31    'pallet-randomness-collective-flip/std',32    'pallet-transaction-payment/std',33    'pallet-common/std',34    'pallet-fungible/std',35    'pallet-nonfungible/std',36    'pallet-refungible/std',37    'fp-evm/std',38    'nft-data-structs/std',39    'up-sponsorship/std',40    'sp-std/std',41    'sp-api/std',42    'sp-runtime/std',43    'frame-benchmarking/std',44    'ethereum/std',45    'rlp/std',4647    'primitive-types/std',48    'evm-coder/std',49    'pallet-evm-coder-substrate/std',50]51limit-testing = ["nft-data-structs/limit-testing"]5253################################################################################54# Substrate Dependencies5556[dependencies.codec]57default-features = false58features = ['derive']59package = 'parity-scale-codec'60version = '2.3.0'6162[dependencies.frame-benchmarking]63default-features = false64optional = true65git = 'https://github.com/paritytech/substrate.git'66branch = 'polkadot-v0.9.10'67version = '4.0.0-dev'6869[dependencies.frame-support]70default-features = false71git = 'https://github.com/paritytech/substrate.git'72branch = 'polkadot-v0.9.10'73version = '4.0.0-dev'7475[dependencies.frame-system]76default-features = false77git = 'https://github.com/paritytech/substrate.git'78branch = 'polkadot-v0.9.10'79version = '4.0.0-dev'8081[dependencies.pallet-balances]82default-features = false83git = 'https://github.com/paritytech/substrate.git'84branch = 'polkadot-v0.9.10'85version = '4.0.0-dev'8687[dependencies.pallet-timestamp]88default-features = false89git = 'https://github.com/paritytech/substrate.git'90branch = 'polkadot-v0.9.10'91version = '4.0.0-dev'9293[dependencies.pallet-randomness-collective-flip]94default-features = false95git = 'https://github.com/paritytech/substrate.git'96branch = 'polkadot-v0.9.10'97version = '4.0.0-dev'9899[dependencies.sp-std]100default-features = false101git = 'https://github.com/paritytech/substrate.git'102branch = 'polkadot-v0.9.10'103version = '4.0.0-dev'104105[dependencies.pallet-transaction-payment]106default-features = false107git = 'https://github.com/paritytech/substrate.git'108branch = 'polkadot-v0.9.10'109version = '4.0.0-dev'110111[dependencies.serde]112default-features = false113features = ['derive']114version = '1.0.130'115116[dependencies.sp-runtime]117default-features = false118git = 'https://github.com/paritytech/substrate.git'119branch = 'polkadot-v0.9.10'120version = '4.0.0-dev'121122[dependencies.sp-core]123default-features = false124git = 'https://github.com/paritytech/substrate.git'125branch = 'polkadot-v0.9.10'126version = '4.0.0-dev'127128[dependencies.sp-io]129default-features = false130git = 'https://github.com/paritytech/substrate.git'131branch = 'polkadot-v0.9.10'132version = '4.0.0-dev'133134135################################################################################136# Local Dependencies137138[dependencies.nft-data-structs]139default-features = false140path = '../../primitives/nft'141version = '0.9.0'142143[dependencies.up-sponsorship]144default-features = false145path = '../../primitives/sponsorship'146version = '0.1.0'147148149[dependencies]150ethereum = { default-features = false, version = "0.9.0" }151rlp = { default-features = false, version = "0.5.0" }152sp-api = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }153154evm-coder = { default-features = false, path = "../../crates/evm-coder" }155pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }156primitive-types = { version = "0.10.1", default-features = false, features = [157    "serde_no_std",158] }159160pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }161pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }162fp-evm = { default-features = false, version = '3.0.0-dev', git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }163hex-literal = "0.3.3"164165pallet-common = { default-features = false, path = "../common" }166pallet-fungible = { default-features = false, path = "../fungible" }167pallet-nonfungible = { default-features = false, path = "../nonfungible" }168pallet-refungible = { default-features = false, path = "../refungible" }