git.delta.rocks / unique-network / refs/commits / 157619d37683

difftreelog

source

runtime/Cargo.toml8.6 KiBsourcehistory
1################################################################################2# Package 34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Substrate node nft'8edition = '2018'9homepage = 'https://unique.network'10license = 'All Rights Reserved'11name = 'nft-runtime'12repository = 'https://github.com/usetech-llc/nft_private/'13version = '3.0.0'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-balances/runtime-benchmarks',27    'pallet-timestamp/runtime-benchmarks',28    'pallet-nft/runtime-benchmarks',29    'pallet-inflation/runtime-benchmarks',30    'sp-runtime/runtime-benchmarks',31]32std = [33    'codec/std',34	'cumulus-pallet-parachain-system/std',35	'cumulus-pallet-xcm/std',36	'cumulus-pallet-xcmp-queue/std',37	'cumulus-primitives-core/std',38	'cumulus-primitives-utility/std',39    'frame-executive/std',40    'frame-support/std',41    'frame-system/std',42    'frame-system-rpc-runtime-api/std',43    'pallet-balances/std',44    'pallet-contracts/std',45    'pallet-contracts-primitives/std',46    'pallet-contracts-rpc-runtime-api/std',47    'pallet-randomness-collective-flip/std',48    'pallet-sudo/std',49    'pallet-timestamp/std',50    'pallet-transaction-payment/std',51    'pallet-transaction-payment-rpc-runtime-api/std',52    'pallet-treasury/std',53    'pallet-vesting/std',54    'serde',55    'sp-api/std',56    'sp-block-builder/std',57    'sp-core/std',58    'sp-inherents/std',59	'sp-io/std',60    'sp-offchain/std',61    'sp-runtime/std',62    'sp-session/std',63    'sp-std/std',64    'sp-transaction-pool/std',65    'sp-version/std',66	'xcm/std',67	'xcm-builder/std',68	'xcm-executor/std',6970    'pallet-inflation/std',71    'pallet-nft/std',72]7374################################################################################75# Substrate Dependencies7677[dependencies.codec]78default-features = false79features = ['derive']80package = 'parity-scale-codec'81version = '2.0.0'8283[dependencies.frame-benchmarking]84default-features = false85git = 'https://github.com/paritytech/substrate.git'86optional = true87branch = 'rococo-v1'88version = '3.0.0'8990[dependencies.frame-executive]91default-features = false92git = 'https://github.com/paritytech/substrate.git'93branch = 'rococo-v1'94version = '3.0.0'9596[dependencies.frame-support]97default-features = false98git = 'https://github.com/paritytech/substrate.git'99branch = 'rococo-v1'100version = '3.0.0'101102[dependencies.frame-system]103default-features = false104git = 'https://github.com/paritytech/substrate.git'105branch = 'rococo-v1'106version = '3.0.0'107108[dependencies.frame-system-benchmarking]109default-features = false110git = 'https://github.com/paritytech/substrate.git'111optional = true112branch = 'rococo-v1'113version = '3.0.0'114115[dependencies.frame-system-rpc-runtime-api]116default-features = false117git = 'https://github.com/paritytech/substrate.git'118branch = 'rococo-v1'119version = '3.0.0'120121[dependencies.hex-literal]122optional = true123version = '0.3.1'124125[dependencies.serde]126features = ['derive']127optional = true128version = '1.0.119'129130[dependencies.pallet-balances]131default-features = false132git = 'https://github.com/paritytech/substrate.git'133branch = 'rococo-v1'134version = '3.0.0'135136# Contracts specific packages137[dependencies.pallet-contracts]138git = 'https://github.com/paritytech/substrate.git'139default-features = false140branch = 'rococo-v1'141version = '3.0.0'142143[dependencies.pallet-contracts-primitives]144git = 'https://github.com/paritytech/substrate.git'145default-features = false146branch = 'rococo-v1'147version = '3.0.0'148149[dependencies.pallet-contracts-rpc-runtime-api]150git = 'https://github.com/paritytech/substrate.git'151default-features = false152branch = 'rococo-v1'153version = '3.0.0'154155[dependencies.pallet-randomness-collective-flip]156default-features = false157git = 'https://github.com/paritytech/substrate.git'158branch = 'rococo-v1'159version = '3.0.0'160161[dependencies.pallet-sudo]162default-features = false163git = 'https://github.com/paritytech/substrate.git'164branch = 'rococo-v1'165version = '3.0.0'166167[dependencies.pallet-timestamp]168default-features = false169git = 'https://github.com/paritytech/substrate.git'170branch = 'rococo-v1'171version = '3.0.0'172173[dependencies.pallet-transaction-payment]174default-features = false175git = 'https://github.com/paritytech/substrate.git'176branch = 'rococo-v1'177version = '3.0.0'178179[dependencies.pallet-transaction-payment-rpc-runtime-api]180default-features = false181git = 'https://github.com/paritytech/substrate.git'182branch = 'rococo-v1'183version = '3.0.0'184185[dependencies.pallet-treasury]186default-features = false187git = 'https://github.com/paritytech/substrate.git'188branch = 'rococo-v1'189version = '3.0.0'190191[dependencies.pallet-vesting]192default-features = false193git = 'https://github.com/paritytech/substrate.git'194branch = 'rococo-v1'195version = '3.0.0'196197[dependencies.sp-arithmetic]198default-features = false199git = 'https://github.com/paritytech/substrate.git'200branch = 'rococo-v1'201version = '3.0.0'202203[dependencies.sp-api]204default-features = false205git = 'https://github.com/paritytech/substrate.git'206branch = 'rococo-v1'207version = '3.0.0'208209[dependencies.sp-block-builder]210default-features = false211git = 'https://github.com/paritytech/substrate.git'212branch = 'rococo-v1'213version = '3.0.0'214215[dependencies.sp-core]216default-features = false217git = 'https://github.com/paritytech/substrate.git'218branch = 'rococo-v1'219version = '3.0.0'220221[dependencies.sp-inherents]222default-features = false223git = 'https://github.com/paritytech/substrate.git'224branch = 'rococo-v1'225version = '3.0.0'226227[dependencies.sp-io]228default-features = false229git = 'https://github.com/paritytech/substrate.git'230branch = 'rococo-v1'231version = '3.0.0'232233[dependencies.sp-offchain]234default-features = false235git = 'https://github.com/paritytech/substrate.git'236branch = 'rococo-v1'237version = '3.0.0'238239[dependencies.sp-runtime]240default-features = false241git = 'https://github.com/paritytech/substrate.git'242branch = 'rococo-v1'243version = '3.0.0'244245[dependencies.sp-session]246default-features = false247git = 'https://github.com/paritytech/substrate.git'248branch = 'rococo-v1'249version = '3.0.0'250251[dependencies.sp-std]252default-features = false253git = 'https://github.com/paritytech/substrate.git'254branch = 'rococo-v1'255version = '3.0.0'256257[dependencies.sp-transaction-pool]258default-features = false259git = 'https://github.com/paritytech/substrate.git'260branch = 'rococo-v1'261version = '3.0.0'262263[dependencies.sp-version]264default-features = false265git = 'https://github.com/paritytech/substrate.git'266branch = 'rococo-v1'267version = '3.0.0'268269[dependencies.smallvec]270version = '1.4.1'271272################################################################################273# Cumulus dependencies274275[dependencies.parachain-info]276default-features = false277git = 'https://github.com/paritytech/cumulus.git'278branch = 'rococo-v1'279version = '0.1.0'280281[dependencies.cumulus-pallet-parachain-system]282git = 'https://github.com/paritytech/cumulus.git'283branch = 'rococo-v1'284default-features = false285286[dependencies.cumulus-primitives-core]287git = 'https://github.com/paritytech/cumulus.git'288branch = 'rococo-v1'289default-features = false290291[dependencies.cumulus-pallet-xcm]292git = 'https://github.com/paritytech/cumulus.git'293branch = 'rococo-v1'294default-features = false295296[dependencies.cumulus-pallet-xcmp-queue]297git = 'https://github.com/paritytech/cumulus.git'298branch = 'rococo-v1'299default-features = false300301[dependencies.cumulus-primitives-utility]302git = 'https://github.com/paritytech/cumulus.git'303branch = 'rococo-v1'304default-features = false305306################################################################################307# Polkadot dependencies308309[dependencies.polkadot-parachain]310git = 'https://github.com/paritytech/polkadot'311branch = 'rococo-v1'312default-features = false313314[dependencies.xcm]315git = 'https://github.com/paritytech/polkadot'316branch = 'rococo-v1'317default-features = false318319[dependencies.xcm-builder]320git = 'https://github.com/paritytech/polkadot'321branch = 'rococo-v1'322default-features = false323324[dependencies.xcm-executor]325git = 'https://github.com/paritytech/polkadot'326branch = 'rococo-v1'327default-features = false328329[dependencies.pallet-xcm]330git = 'https://github.com/paritytech/polkadot'331branch = 'rococo-v1'332default-features = false333334335################################################################################336# Build Dependencies337338[build-dependencies]339substrate-wasm-builder = '4.0.0'340341342################################################################################343# local dependencies344345pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }346pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }347