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

difftreelog

source

runtime/Cargo.toml12.0 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-evm-migration/runtime-benchmarks',27    'pallet-balances/runtime-benchmarks',28    'pallet-timestamp/runtime-benchmarks',29    'pallet-nft/runtime-benchmarks',30    'pallet-inflation/runtime-benchmarks',31    'pallet-xcm/runtime-benchmarks',32    'sp-runtime/runtime-benchmarks',33    'xcm-builder/runtime-benchmarks',34]35std = [36    'codec/std',37    'max-encoded-len/std',38    'cumulus-pallet-aura-ext/std',39    'cumulus-pallet-parachain-system/std',40    'cumulus-pallet-xcm/std',41    'cumulus-pallet-xcmp-queue/std',42    'cumulus-primitives-core/std',43    'cumulus-primitives-utility/std',44    'frame-executive/std',45    'frame-support/std',46    'frame-system/std',47    'frame-system-rpc-runtime-api/std',48    'pallet-aura/std',49    'pallet-balances/std',50    # 'pallet-contracts/std',51    # 'pallet-contracts-primitives/std',52    # 'pallet-contracts-rpc-runtime-api/std',53    # 'pallet-contract-helpers/std',54    'pallet-randomness-collective-flip/std',55    'pallet-sudo/std',56    'pallet-timestamp/std',57    'pallet-transaction-payment/std',58    'pallet-transaction-payment-rpc-runtime-api/std',59    'pallet-treasury/std',60    'pallet-vesting/std',61    'pallet-evm/std',62    'pallet-evm-migration/std',63    'pallet-evm-contract-helpers/std',64    'pallet-evm-transaction-payment/std',65    'pallet-evm-coder-substrate/std',66    'pallet-ethereum/std',67    'fp-rpc/std',68    'parachain-info/std',69    'serde',70    'pallet-inflation/std',71    'pallet-nft/std',72    'pallet-scheduler/std',73    'pallet-nft-charge-transaction/std',74    'pallet-nft-transaction-payment/std',75    'nft-data-structs/std',76    'sp-api/std',77    'sp-block-builder/std',78    "sp-consensus-aura/std",79    'sp-core/std',80    'sp-inherents/std',81    'sp-io/std',82    'sp-offchain/std',83    'sp-runtime/std',84    'sp-session/std',85    'sp-std/std',86    'sp-transaction-pool/std',87    'sp-version/std',88    'xcm/std',89    'xcm-builder/std',90    'xcm-executor/std',91]92limit-testing = [93    'pallet-nft/limit-testing',94    'nft-data-structs/limit-testing',95]9697################################################################################98# Substrate Dependencies99100[dependencies.codec]101default-features = false102features = ['derive']103package = 'parity-scale-codec'104version = '2.0.0'105106[dependencies.frame-benchmarking]107default-features = false108git = 'https://github.com/paritytech/substrate.git'109optional = true110branch = 'polkadot-v0.9.8'111version = '3.0.0'112113[dependencies.frame-executive]114default-features = false115git = 'https://github.com/paritytech/substrate.git'116branch = 'polkadot-v0.9.8'117version = '3.0.0'118119[dependencies.frame-support]120default-features = false121git = 'https://github.com/paritytech/substrate.git'122branch = 'polkadot-v0.9.8'123version = '3.0.0'124125[dependencies.frame-system]126default-features = false127git = 'https://github.com/paritytech/substrate.git'128branch = 'polkadot-v0.9.8'129version = '3.0.0'130131[dependencies.frame-system-benchmarking]132default-features = false133git = 'https://github.com/paritytech/substrate.git'134optional = true135branch = 'polkadot-v0.9.8'136version = '3.0.0'137138[dependencies.frame-system-rpc-runtime-api]139default-features = false140git = 'https://github.com/paritytech/substrate.git'141branch = 'polkadot-v0.9.8'142version = '3.0.0'143144[dependencies.hex-literal]145optional = true146version = '0.3.1'147148[dependencies.serde]149default-features = false150features = ['derive']151optional = true152version = '1.0.119'153154[dependencies.pallet-aura]155default-features = false156git = 'https://github.com/paritytech/substrate.git'157branch = 'polkadot-v0.9.8'158version = '3.0.0'159160[dependencies.pallet-balances]161default-features = false162git = 'https://github.com/paritytech/substrate.git'163branch = 'polkadot-v0.9.8'164version = '3.0.0'165166# Contracts specific packages167# [dependencies.pallet-contracts]168# git = 'https://github.com/paritytech/substrate.git'169# default-features = false170# branch = 'polkadot-v0.9.8'171# version = '3.0.0'172173# [dependencies.pallet-contracts-primitives]174# git = 'https://github.com/paritytech/substrate.git'175# default-features = false176# branch = 'polkadot-v0.9.8'177# version = '3.0.0'178179# [dependencies.pallet-contracts-rpc-runtime-api]180# git = 'https://github.com/paritytech/substrate.git'181# default-features = false182# branch = 'polkadot-v0.9.8'183# version = '3.0.0'184185[dependencies.pallet-randomness-collective-flip]186default-features = false187git = 'https://github.com/paritytech/substrate.git'188branch = 'polkadot-v0.9.8'189version = '3.0.0'190191[dependencies.pallet-sudo]192default-features = false193git = 'https://github.com/paritytech/substrate.git'194branch = 'polkadot-v0.9.8'195version = '3.0.0'196197[dependencies.pallet-timestamp]198default-features = false199git = 'https://github.com/paritytech/substrate.git'200branch = 'polkadot-v0.9.8'201version = '3.0.0'202203[dependencies.pallet-transaction-payment]204default-features = false205git = 'https://github.com/paritytech/substrate.git'206branch = 'polkadot-v0.9.8'207version = '3.0.0'208209[dependencies.pallet-transaction-payment-rpc-runtime-api]210default-features = false211git = 'https://github.com/paritytech/substrate.git'212branch = 'polkadot-v0.9.8'213version = '3.0.0'214215[dependencies.pallet-treasury]216default-features = false217git = 'https://github.com/paritytech/substrate.git'218branch = 'polkadot-v0.9.8'219version = '3.0.0'220221[dependencies.pallet-vesting]222default-features = false223git = 'https://github.com/paritytech/substrate.git'224branch = 'polkadot-v0.9.8'225version = '3.0.0'226227[dependencies.sp-arithmetic]228default-features = false229git = 'https://github.com/paritytech/substrate.git'230branch = 'polkadot-v0.9.8'231version = '3.0.0'232233[dependencies.sp-api]234default-features = false235git = 'https://github.com/paritytech/substrate.git'236branch = 'polkadot-v0.9.8'237version = '3.0.0'238239[dependencies.sp-block-builder]240default-features = false241git = 'https://github.com/paritytech/substrate.git'242branch = 'polkadot-v0.9.8'243version = '3.0.0'244245[dependencies.sp-core]246default-features = false247git = 'https://github.com/paritytech/substrate.git'248branch = 'polkadot-v0.9.8'249version = '3.0.0'250251[dependencies.sp-consensus-aura]252default-features = false253git = 'https://github.com/paritytech/substrate.git'254branch = 'polkadot-v0.9.8'255version = '0.9.0'256257[dependencies.sp-inherents]258default-features = false259git = 'https://github.com/paritytech/substrate.git'260branch = 'polkadot-v0.9.8'261version = '3.0.0'262263[dependencies.sp-io]264default-features = false265git = 'https://github.com/paritytech/substrate.git'266branch = 'polkadot-v0.9.8'267version = '3.0.0'268269[dependencies.sp-offchain]270default-features = false271git = 'https://github.com/paritytech/substrate.git'272branch = 'polkadot-v0.9.8'273version = '3.0.0'274275[dependencies.sp-runtime]276default-features = false277git = 'https://github.com/paritytech/substrate.git'278branch = 'polkadot-v0.9.8'279version = '3.0.0'280281[dependencies.sp-session]282default-features = false283git = 'https://github.com/paritytech/substrate.git'284branch = 'polkadot-v0.9.8'285version = '3.0.0'286287[dependencies.sp-std]288default-features = false289git = 'https://github.com/paritytech/substrate.git'290branch = 'polkadot-v0.9.8'291version = '3.0.0'292293[dependencies.sp-transaction-pool]294default-features = false295git = 'https://github.com/paritytech/substrate.git'296branch = 'polkadot-v0.9.8'297version = '3.0.0'298299[dependencies.sp-version]300default-features = false301git = 'https://github.com/paritytech/substrate.git'302branch = 'polkadot-v0.9.8'303version = '3.0.0'304305[dependencies.smallvec]306version = '1.4.1'307308################################################################################309# Cumulus dependencies310311[dependencies.parachain-info]312default-features = false313git = 'https://github.com/paritytech/cumulus.git'314branch = 'polkadot-v0.9.8'315version = '0.1.0'316317[dependencies.cumulus-pallet-aura-ext]318git = 'https://github.com/paritytech/cumulus.git'319branch = 'polkadot-v0.9.8'320default-features = false321322[dependencies.cumulus-pallet-parachain-system]323git = 'https://github.com/paritytech/cumulus.git'324branch = 'polkadot-v0.9.8'325default-features = false326327[dependencies.cumulus-primitives-core]328git = 'https://github.com/paritytech/cumulus.git'329branch = 'polkadot-v0.9.8'330default-features = false331332[dependencies.cumulus-pallet-xcm]333git = 'https://github.com/paritytech/cumulus.git'334branch = 'polkadot-v0.9.8'335default-features = false336337[dependencies.cumulus-pallet-dmp-queue]338git = 'https://github.com/paritytech/cumulus.git'339branch = 'polkadot-v0.9.8'340default-features = false341342[dependencies.cumulus-pallet-xcmp-queue]343git = 'https://github.com/paritytech/cumulus.git'344branch = 'polkadot-v0.9.8'345default-features = false346347[dependencies.cumulus-primitives-utility]348git = 'https://github.com/paritytech/cumulus.git'349branch = 'polkadot-v0.9.8'350default-features = false351352[dependencies.cumulus-primitives-timestamp]353git = 'https://github.com/paritytech/cumulus.git'354branch = 'polkadot-v0.9.8'355default-features = false356357################################################################################358# Polkadot dependencies359360[dependencies.polkadot-parachain]361git = 'https://github.com/paritytech/polkadot'362branch = 'release-v0.9.8'363default-features = false364365[dependencies.xcm]366git = 'https://github.com/paritytech/polkadot'367branch = 'release-v0.9.8'368default-features = false369370[dependencies.xcm-builder]371git = 'https://github.com/paritytech/polkadot'372branch = 'release-v0.9.8'373default-features = false374375[dependencies.xcm-executor]376git = 'https://github.com/paritytech/polkadot'377branch = 'release-v0.9.8'378default-features = false379380[dependencies.pallet-xcm]381git = 'https://github.com/paritytech/polkadot'382branch = 'release-v0.9.8'383default-features = false384385386################################################################################387# local dependencies388389[dependencies]390max-encoded-len = { default-features = false, features = ['derive'], version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }391derivative = "2.2.0"392pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }393pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }394nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }395pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }396# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }397pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }398pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }399pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }400pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }401pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }402pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }403404pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }405pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }406fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }407408################################################################################409# Build Dependencies410411[build-dependencies]412substrate-wasm-builder = '4.0.0'