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

difftreelog

source

runtime/Cargo.toml10.1 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-aura-ext/std',35	'cumulus-pallet-parachain-system/std',36	'cumulus-pallet-xcm/std',37	'cumulus-pallet-xcmp-queue/std',38	'cumulus-primitives-core/std',39	'cumulus-primitives-utility/std',40    'frame-executive/std',41    'frame-support/std',42    'frame-system/std',43    'frame-system-rpc-runtime-api/std',44	'pallet-aura/std',45    'pallet-balances/std',46    'pallet-contracts/std',47    'pallet-contracts-primitives/std',48    'pallet-contracts-rpc-runtime-api/std',49    'pallet-randomness-collective-flip/std',50    'pallet-sudo/std',51    'pallet-timestamp/std',52    'pallet-transaction-payment/std',53    'pallet-transaction-payment-rpc-runtime-api/std',54    'pallet-treasury/std',55    'pallet-vesting/std',56	'parachain-info/std',57    'serde',58    'pallet-inflation/std',59    'pallet-nft/std',60    'pallet-scheduler/std',61    'pallet-nft-charge-transaction/std',62    'pallet-nft-transaction-payment/std', 63    'nft-data-structs/std',64    'sp-api/std',65    'sp-block-builder/std',66	"sp-consensus-aura/std",67    'sp-core/std',68    'sp-inherents/std',69	'sp-io/std',70    'sp-offchain/std',71    'sp-runtime/std',72    'sp-session/std',73    'sp-std/std',74    'sp-transaction-pool/std',75    'sp-version/std',76	'xcm/std',77	'xcm-builder/std',78	'xcm-executor/std',79]8081################################################################################82# Substrate Dependencies8384[dependencies.codec]85default-features = false86features = ['derive']87package = 'parity-scale-codec'88version = '2.0.0'8990[dependencies.frame-benchmarking]91default-features = false92git = 'https://github.com/paritytech/substrate.git'93optional = true94branch = 'polkadot-v0.9.3'95version = '3.0.0'9697[dependencies.frame-executive]98default-features = false99git = 'https://github.com/paritytech/substrate.git'100branch = 'polkadot-v0.9.3'101version = '3.0.0'102103[dependencies.frame-support]104default-features = false105git = 'https://github.com/paritytech/substrate.git'106branch = 'polkadot-v0.9.3'107version = '3.0.0'108109[dependencies.frame-system]110default-features = false111git = 'https://github.com/paritytech/substrate.git'112branch = 'polkadot-v0.9.3'113version = '3.0.0'114115[dependencies.frame-system-benchmarking]116default-features = false117git = 'https://github.com/paritytech/substrate.git'118optional = true119branch = 'polkadot-v0.9.3'120version = '3.0.0'121122[dependencies.frame-system-rpc-runtime-api]123default-features = false124git = 'https://github.com/paritytech/substrate.git'125branch = 'polkadot-v0.9.3'126version = '3.0.0'127128[dependencies.hex-literal]129optional = true130version = '0.3.1'131132[dependencies.serde]133features = ['derive']134optional = true135version = '1.0.119'136137[dependencies.pallet-aura]138default-features = false139git = 'https://github.com/paritytech/substrate.git'140branch = 'polkadot-v0.9.3'141version = '3.0.0'142143[dependencies.pallet-balances]144default-features = false145git = 'https://github.com/paritytech/substrate.git'146branch = 'polkadot-v0.9.3'147version = '3.0.0'148149# Contracts specific packages150[dependencies.pallet-contracts]151git = 'https://github.com/paritytech/substrate.git'152default-features = false153branch = 'polkadot-v0.9.3'154version = '3.0.0'155156[dependencies.pallet-contracts-primitives]157git = 'https://github.com/paritytech/substrate.git'158default-features = false159branch = 'polkadot-v0.9.3'160version = '3.0.0'161162[dependencies.pallet-contracts-rpc-runtime-api]163git = 'https://github.com/paritytech/substrate.git'164default-features = false165branch = 'polkadot-v0.9.3'166version = '3.0.0'167168[dependencies.pallet-randomness-collective-flip]169default-features = false170git = 'https://github.com/paritytech/substrate.git'171branch = 'polkadot-v0.9.3'172version = '3.0.0'173174[dependencies.pallet-sudo]175default-features = false176git = 'https://github.com/paritytech/substrate.git'177branch = 'polkadot-v0.9.3'178version = '3.0.0'179180[dependencies.pallet-timestamp]181default-features = false182git = 'https://github.com/paritytech/substrate.git'183branch = 'polkadot-v0.9.3'184version = '3.0.0'185186[dependencies.pallet-transaction-payment]187default-features = false188git = 'https://github.com/paritytech/substrate.git'189branch = 'polkadot-v0.9.3'190version = '3.0.0'191192[dependencies.pallet-transaction-payment-rpc-runtime-api]193default-features = false194git = 'https://github.com/paritytech/substrate.git'195branch = 'polkadot-v0.9.3'196version = '3.0.0'197198[dependencies.pallet-treasury]199default-features = false200git = 'https://github.com/paritytech/substrate.git'201branch = 'polkadot-v0.9.3'202version = '3.0.0'203204[dependencies.pallet-vesting]205default-features = false206git = 'https://github.com/paritytech/substrate.git'207branch = 'polkadot-v0.9.3'208version = '3.0.0'209210[dependencies.sp-arithmetic]211default-features = false212git = 'https://github.com/paritytech/substrate.git'213branch = 'polkadot-v0.9.3'214version = '3.0.0'215216[dependencies.sp-api]217default-features = false218git = 'https://github.com/paritytech/substrate.git'219branch = 'polkadot-v0.9.3'220version = '3.0.0'221222[dependencies.sp-block-builder]223default-features = false224git = 'https://github.com/paritytech/substrate.git'225branch = 'polkadot-v0.9.3'226version = '3.0.0'227228[dependencies.sp-core]229default-features = false230git = 'https://github.com/paritytech/substrate.git'231branch = 'polkadot-v0.9.3'232version = '3.0.0'233234[dependencies.sp-consensus-aura]235default-features = false236git = 'https://github.com/paritytech/substrate.git'237branch = 'polkadot-v0.9.3'238version = '0.9.0'239240[dependencies.sp-inherents]241default-features = false242git = 'https://github.com/paritytech/substrate.git'243branch = 'polkadot-v0.9.3'244version = '3.0.0'245246[dependencies.sp-io]247default-features = false248git = 'https://github.com/paritytech/substrate.git'249branch = 'polkadot-v0.9.3'250version = '3.0.0'251252[dependencies.sp-offchain]253default-features = false254git = 'https://github.com/paritytech/substrate.git'255branch = 'polkadot-v0.9.3'256version = '3.0.0'257258[dependencies.sp-runtime]259default-features = false260git = 'https://github.com/paritytech/substrate.git'261branch = 'polkadot-v0.9.3'262version = '3.0.0'263264[dependencies.sp-session]265default-features = false266git = 'https://github.com/paritytech/substrate.git'267branch = 'polkadot-v0.9.3'268version = '3.0.0'269270[dependencies.sp-std]271default-features = false272git = 'https://github.com/paritytech/substrate.git'273branch = 'polkadot-v0.9.3'274version = '3.0.0'275276[dependencies.sp-transaction-pool]277default-features = false278git = 'https://github.com/paritytech/substrate.git'279branch = 'polkadot-v0.9.3'280version = '3.0.0'281282[dependencies.sp-version]283default-features = false284git = 'https://github.com/paritytech/substrate.git'285branch = 'polkadot-v0.9.3'286version = '3.0.0'287288[dependencies.smallvec]289version = '1.4.1'290291################################################################################292# Cumulus dependencies293294[dependencies.parachain-info]295default-features = false296git = 'https://github.com/paritytech/cumulus.git'297branch = 'polkadot-v0.9.3'298version = '0.1.0'299300[dependencies.cumulus-pallet-aura-ext]301git = 'https://github.com/paritytech/cumulus.git'302branch = 'polkadot-v0.9.3'303default-features = false304305[dependencies.cumulus-pallet-parachain-system]306git = 'https://github.com/paritytech/cumulus.git'307branch = 'polkadot-v0.9.3'308default-features = false309310[dependencies.cumulus-primitives-core]311git = 'https://github.com/paritytech/cumulus.git'312branch = 'polkadot-v0.9.3'313default-features = false314315[dependencies.cumulus-pallet-xcm]316git = 'https://github.com/paritytech/cumulus.git'317branch = 'polkadot-v0.9.3'318default-features = false319320[dependencies.cumulus-pallet-dmp-queue]321git = 'https://github.com/paritytech/cumulus.git'322branch = 'polkadot-v0.9.3'323default-features = false324325[dependencies.cumulus-pallet-xcmp-queue]326git = 'https://github.com/paritytech/cumulus.git'327branch = 'polkadot-v0.9.3'328default-features = false329330[dependencies.cumulus-primitives-utility]331git = 'https://github.com/paritytech/cumulus.git'332branch = 'polkadot-v0.9.3'333default-features = false334335################################################################################336# Polkadot dependencies337338[dependencies.polkadot-parachain]339git = 'https://github.com/paritytech/polkadot'340branch = 'release-v0.9.3'341default-features = false342343[dependencies.xcm]344git = 'https://github.com/paritytech/polkadot'345branch = 'release-v0.9.3'346default-features = false347348[dependencies.xcm-builder]349git = 'https://github.com/paritytech/polkadot'350branch = 'release-v0.9.3'351default-features = false352353[dependencies.xcm-executor]354git = 'https://github.com/paritytech/polkadot'355branch = 'release-v0.9.3'356default-features = false357358[dependencies.pallet-xcm]359git = 'https://github.com/paritytech/polkadot'360branch = 'release-v0.9.3'361default-features = false362363364365################################################################################366# local dependencies367368[dependencies]369pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }370pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }371nft-data-structs = { path = '../primitives', default-features = false,  version = '0.9.0' }372pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }373pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }374pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }375376################################################################################377# Build Dependencies378379[build-dependencies]380substrate-wasm-builder = '4.0.0'381