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

difftreelog

source

pallets/nft/Cargo.toml3.2 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-timestamp/std',27    'pallet-contracts/std',28    'pallet-randomness-collective-flip/std',29    'pallet-transaction-payment/std',30    'nft-data-structs/std',31    'sp-std/std',32    'sp-runtime/std',33    'frame-benchmarking/std',34]3536################################################################################37# Substrate Dependencies3839[dependencies.codec]40default-features = false41features = ['derive']42package = 'parity-scale-codec'43version = '2.0.0'4445[dependencies.frame-benchmarking]46default-features = false47optional = true48git = 'https://github.com/paritytech/substrate.git'49branch = 'polkadot-v0.9.3'50version = '3.0.0'5152[dependencies.frame-support]53default-features = false54git = 'https://github.com/paritytech/substrate.git'55branch = 'polkadot-v0.9.3'56version = '3.0.0'5758[dependencies.frame-system]59default-features = false60git = 'https://github.com/paritytech/substrate.git'61branch = 'polkadot-v0.9.3'62version = '3.0.0'6364[dependencies.pallet-balances]65default-features = false66git = 'https://github.com/paritytech/substrate.git'67branch = 'polkadot-v0.9.3'68version = '3.0.0'6970[dependencies.pallet-timestamp]71default-features = false72git = 'https://github.com/paritytech/substrate.git'73branch = 'polkadot-v0.9.3'74version = '3.0.0'7576[dependencies.pallet-randomness-collective-flip]77default-features = false78git = 'https://github.com/paritytech/substrate.git'79branch = 'polkadot-v0.9.3'80version = '3.0.0'8182[dependencies.sp-std]83default-features = false84git = 'https://github.com/paritytech/substrate.git'85branch = 'polkadot-v0.9.3'86version = '3.0.0'8788[dependencies.pallet-contracts]89default-features = false90git = 'https://github.com/paritytech/substrate.git'91branch = 'polkadot-v0.9.3'92version = '3.0.0'9394[dependencies.pallet-transaction-payment]95default-features = false96git = 'https://github.com/paritytech/substrate.git'97branch = 'polkadot-v0.9.3'98version = '3.0.0'99100[dependencies.serde]101features = ['derive']102version = '1.0.119'103104[dependencies.sp-runtime]105default-features = false106git = 'https://github.com/paritytech/substrate.git'107branch = 'polkadot-v0.9.3'108version = '3.0.0'109110[dependencies.sp-core]111default-features = false112git = 'https://github.com/paritytech/substrate.git'113branch = 'polkadot-v0.9.3'114version = '3.0.0'115116[dependencies.sp-io]117default-features = false118git = 'https://github.com/paritytech/substrate.git'119branch = 'polkadot-v0.9.3'120version = '3.0.0'121122################################################################################123# Local Dependencies124125[dependencies.nft-data-structs]126default-features = false127path = '../../primitives'128version = '0.9.0'