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

difftreelog

source

runtime/Cargo.toml11.6 KiBsourcehistory
1################################################################################2# Package34[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    'cumulus-pallet-aura-ext/std',38    'cumulus-pallet-parachain-system/std',39    'cumulus-pallet-xcm/std',40    'cumulus-pallet-xcmp-queue/std',41    'cumulus-primitives-core/std',42    'cumulus-primitives-utility/std',43    'frame-executive/std',44    'frame-support/std',45    'frame-system/std',46    'frame-system-rpc-runtime-api/std',47    'pallet-aura/std',48    'pallet-balances/std',49    # 'pallet-contracts/std',50    # 'pallet-contracts-primitives/std',51    # 'pallet-contracts-rpc-runtime-api/std',52    # 'pallet-contract-helpers/std',53    'pallet-randomness-collective-flip/std',54    'pallet-sudo/std',55    'pallet-timestamp/std',56    'pallet-transaction-payment/std',57    'pallet-transaction-payment-rpc-runtime-api/std',58    'pallet-treasury/std',59    'pallet-vesting/std',60    'pallet-evm/std',61    'pallet-evm-migration/std',62    'pallet-evm-contract-helpers/std',63    'pallet-evm-transaction-payment/std',64    'pallet-evm-coder-substrate/std',65    'pallet-ethereum/std',66    'fp-rpc/std',67    'fp-self-contained/std',68    'parachain-info/std',69    'serde',70    'pallet-inflation/std',71    'pallet-nft/std',72    'pallet-unq-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 = ['pallet-nft/limit-testing', 'nft-data-structs/limit-testing']9394################################################################################95# Substrate Dependencies9697[dependencies.codec]98default-features = false99features = ['derive']100package = 'parity-scale-codec'101version = '2.3.0'102103[dependencies.frame-benchmarking]104default-features = false105git = 'https://github.com/paritytech/substrate.git'106optional = true107branch = 'polkadot-v0.9.12'108109[dependencies.frame-executive]110default-features = false111git = 'https://github.com/paritytech/substrate.git'112branch = 'polkadot-v0.9.12'113114[dependencies.frame-support]115default-features = false116git = 'https://github.com/paritytech/substrate.git'117branch = 'polkadot-v0.9.12'118119[dependencies.frame-system]120default-features = false121git = 'https://github.com/paritytech/substrate.git'122branch = 'polkadot-v0.9.12'123124[dependencies.frame-system-benchmarking]125default-features = false126git = 'https://github.com/paritytech/substrate.git'127optional = true128branch = 'polkadot-v0.9.12'129130[dependencies.frame-system-rpc-runtime-api]131default-features = false132git = 'https://github.com/paritytech/substrate.git'133branch = 'polkadot-v0.9.12'134135[dependencies.hex-literal]136optional = true137version = '0.3.3'138139[dependencies.serde]140default-features = false141features = ['derive']142optional = true143version = '1.0.130'144145[dependencies.pallet-aura]146default-features = false147git = 'https://github.com/paritytech/substrate.git'148branch = 'polkadot-v0.9.12'149150[dependencies.pallet-balances]151default-features = false152git = 'https://github.com/paritytech/substrate.git'153branch = 'polkadot-v0.9.12'154155# Contracts specific packages156# [dependencies.pallet-contracts]157# git = 'https://github.com/paritytech/substrate.git'158# default-features = false159# branch = 'polkadot-v0.9.9'160# version = '4.0.0-dev'161162# [dependencies.pallet-contracts-primitives]163# git = 'https://github.com/paritytech/substrate.git'164# default-features = false165# branch = 'polkadot-v0.9.9'166# version = '4.0.0-dev'167168# [dependencies.pallet-contracts-rpc-runtime-api]169# git = 'https://github.com/paritytech/substrate.git'170# default-features = false171# branch = 'polkadot-v0.9.9'172# version = '4.0.0-dev'173174[dependencies.pallet-randomness-collective-flip]175default-features = false176git = 'https://github.com/paritytech/substrate.git'177branch = 'polkadot-v0.9.12'178179[dependencies.pallet-sudo]180default-features = false181git = 'https://github.com/paritytech/substrate.git'182branch = 'polkadot-v0.9.12'183184[dependencies.pallet-timestamp]185default-features = false186git = 'https://github.com/paritytech/substrate.git'187branch = 'polkadot-v0.9.12'188189[dependencies.pallet-transaction-payment]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.12'193194[dependencies.pallet-transaction-payment-rpc-runtime-api]195default-features = false196git = 'https://github.com/paritytech/substrate.git'197branch = 'polkadot-v0.9.12'198199[dependencies.pallet-treasury]200default-features = false201git = 'https://github.com/paritytech/substrate.git'202branch = 'polkadot-v0.9.12'203204[dependencies.pallet-vesting]205default-features = false206git = 'https://github.com/paritytech/substrate.git'207branch = 'polkadot-v0.9.12'208209[dependencies.sp-arithmetic]210default-features = false211git = 'https://github.com/paritytech/substrate.git'212branch = 'polkadot-v0.9.12'213214[dependencies.sp-api]215default-features = false216git = 'https://github.com/paritytech/substrate.git'217branch = 'polkadot-v0.9.12'218219[dependencies.sp-block-builder]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.12'223224[dependencies.sp-core]225default-features = false226git = 'https://github.com/paritytech/substrate.git'227branch = 'polkadot-v0.9.12'228229[dependencies.sp-consensus-aura]230default-features = false231git = 'https://github.com/paritytech/substrate.git'232branch = 'polkadot-v0.9.12'233234[dependencies.sp-inherents]235default-features = false236git = 'https://github.com/paritytech/substrate.git'237branch = 'polkadot-v0.9.12'238239[dependencies.sp-io]240default-features = false241git = 'https://github.com/paritytech/substrate.git'242branch = 'polkadot-v0.9.12'243244[dependencies.sp-offchain]245default-features = false246git = 'https://github.com/paritytech/substrate.git'247branch = 'polkadot-v0.9.12'248249[dependencies.sp-runtime]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.12'253254[dependencies.sp-session]255default-features = false256git = 'https://github.com/paritytech/substrate.git'257branch = 'polkadot-v0.9.12'258259[dependencies.sp-std]260default-features = false261git = 'https://github.com/paritytech/substrate.git'262branch = 'polkadot-v0.9.12'263264[dependencies.sp-transaction-pool]265default-features = false266git = 'https://github.com/paritytech/substrate.git'267branch = 'polkadot-v0.9.12'268269[dependencies.sp-version]270default-features = false271git = 'https://github.com/paritytech/substrate.git'272branch = 'polkadot-v0.9.12'273274[dependencies.smallvec]275version = '1.6.1'276277################################################################################278# Cumulus dependencies279280[dependencies.parachain-info]281default-features = false282git = 'https://github.com/paritytech/cumulus.git'283branch = 'polkadot-v0.9.12'284285[dependencies.cumulus-pallet-aura-ext]286git = 'https://github.com/paritytech/cumulus.git'287branch = 'polkadot-v0.9.12'288default-features = false289290[dependencies.cumulus-pallet-parachain-system]291git = 'https://github.com/paritytech/cumulus.git'292branch = 'polkadot-v0.9.12'293default-features = false294295[dependencies.cumulus-primitives-core]296git = 'https://github.com/paritytech/cumulus.git'297branch = 'polkadot-v0.9.12'298default-features = false299300[dependencies.cumulus-pallet-xcm]301git = 'https://github.com/paritytech/cumulus.git'302branch = 'polkadot-v0.9.12'303default-features = false304305[dependencies.cumulus-pallet-dmp-queue]306git = 'https://github.com/paritytech/cumulus.git'307branch = 'polkadot-v0.9.12'308default-features = false309310[dependencies.cumulus-pallet-xcmp-queue]311git = 'https://github.com/paritytech/cumulus.git'312branch = 'polkadot-v0.9.12'313default-features = false314315[dependencies.cumulus-primitives-utility]316git = 'https://github.com/paritytech/cumulus.git'317branch = 'polkadot-v0.9.12'318default-features = false319320[dependencies.cumulus-primitives-timestamp]321git = 'https://github.com/paritytech/cumulus.git'322branch = 'polkadot-v0.9.12'323default-features = false324325################################################################################326# Polkadot dependencies327328[dependencies.polkadot-parachain]329git = 'https://github.com/paritytech/polkadot'330branch = 'release-v0.9.12'331default-features = false332333[dependencies.xcm]334git = 'https://github.com/paritytech/polkadot'335branch = 'release-v0.9.12'336default-features = false337338[dependencies.xcm-builder]339git = 'https://github.com/paritytech/polkadot'340branch = 'release-v0.9.12'341default-features = false342343[dependencies.xcm-executor]344git = 'https://github.com/paritytech/polkadot'345branch = 'release-v0.9.12'346default-features = false347348[dependencies.pallet-xcm]349git = 'https://github.com/paritytech/polkadot'350branch = 'release-v0.9.12'351default-features = false352353354################################################################################355# local dependencies356357[dependencies]358scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }359derivative = "2.2.0"360pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }361pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }362nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }363pallet-unq-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }364# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }365pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }366pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }367pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }368pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }369pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }370pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }371372pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }373pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }374fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }375fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }376377################################################################################378# Build Dependencies379380[build-dependencies.substrate-wasm-builder]381git = 'https://github.com/paritytech/substrate.git'382branch = 'polkadot-v0.9.12'