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

difftreelog

source

pallets/nft/Cargo.toml4.4 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']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"]4546################################################################################47# Substrate Dependencies4849[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.10'60version = '4.0.0-dev'6162[dependencies.frame-support]63default-features = false64git = 'https://github.com/paritytech/substrate.git'65branch = 'polkadot-v0.9.10'66version = '4.0.0-dev'6768[dependencies.frame-system]69default-features = false70git = 'https://github.com/paritytech/substrate.git'71branch = 'polkadot-v0.9.10'72version = '4.0.0-dev'7374[dependencies.pallet-balances]75default-features = false76git = 'https://github.com/paritytech/substrate.git'77branch = 'polkadot-v0.9.10'78version = '4.0.0-dev'7980[dependencies.pallet-timestamp]81default-features = false82git = 'https://github.com/paritytech/substrate.git'83branch = 'polkadot-v0.9.10'84version = '4.0.0-dev'8586[dependencies.pallet-randomness-collective-flip]87default-features = false88git = 'https://github.com/paritytech/substrate.git'89branch = 'polkadot-v0.9.10'90version = '4.0.0-dev'9192[dependencies.sp-std]93default-features = false94git = 'https://github.com/paritytech/substrate.git'95branch = 'polkadot-v0.9.10'96version = '4.0.0-dev'9798[dependencies.pallet-transaction-payment]99default-features = false100git = 'https://github.com/paritytech/substrate.git'101branch = 'polkadot-v0.9.10'102version = '4.0.0-dev'103104[dependencies.serde]105default-features = false106features = ['derive']107version = '1.0.130'108109[dependencies.sp-runtime]110default-features = false111git = 'https://github.com/paritytech/substrate.git'112branch = 'polkadot-v0.9.10'113version = '4.0.0-dev'114115[dependencies.sp-core]116default-features = false117git = 'https://github.com/paritytech/substrate.git'118branch = 'polkadot-v0.9.10'119version = '4.0.0-dev'120121[dependencies.sp-io]122default-features = false123git = 'https://github.com/paritytech/substrate.git'124branch = 'polkadot-v0.9.10'125version = '4.0.0-dev'126127128################################################################################129# Local Dependencies130131[dependencies.nft-data-structs]132default-features = false133path = '../../primitives/nft'134version = '0.9.0'135136[dependencies.up-sponsorship]137default-features = false138path = '../../primitives/sponsorship'139version = '0.1.0'140141142[dependencies]143ethereum = { default-features = false, version = "0.9.0" }144rlp = { default-features = false, version = "0.5.0" }145sp-api = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }146147evm-coder = { default-features = false, path = "../../crates/evm-coder" }148pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }149primitive-types = { version = "0.10.1", default-features = false, features = [150    "serde_no_std",151] }152153pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }154pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }155fp-evm = { default-features = false, version = '3.0.0-dev', git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }156hex-literal = "0.3.3"