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

difftreelog

fix try-runtime for quartz/unique

Daniel Shiposha2022-10-05parent: #1afec91.patch.diff
in: master

2 files changed

modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -46,7 +46,45 @@
 try-runtime = [
     'frame-try-runtime',
     'frame-executive/try-runtime',
+    'frame-support/try-runtime',
     'frame-system/try-runtime',
+    'cumulus-pallet-parachain-system/try-runtime',
+    'parachain-info/try-runtime',
+    'pallet-aura/try-runtime',
+    'cumulus-pallet-aura-ext/try-runtime',
+    'pallet-balances/try-runtime',
+    'pallet-randomness-collective-flip/try-runtime',
+    'pallet-timestamp/try-runtime',
+    'pallet-transaction-payment/try-runtime',
+    'pallet-treasury/try-runtime',
+    'pallet-sudo/try-runtime',
+    'orml-vesting/try-runtime',
+    'orml-xtokens/try-runtime',
+    'orml-tokens/try-runtime',
+    'cumulus-pallet-xcmp-queue/try-runtime',
+    'pallet-xcm/try-runtime',
+    'cumulus-pallet-xcm/try-runtime',
+    'cumulus-pallet-dmp-queue/try-runtime',
+    'pallet-inflation/try-runtime',
+    'pallet-unique/try-runtime',
+    'pallet-unique-scheduler/try-runtime',
+    'pallet-configuration/try-runtime',
+    'pallet-charge-transaction/try-runtime',
+    'pallet-common/try-runtime',
+    'pallet-fungible/try-runtime',
+    'pallet-refungible/try-runtime',
+    'pallet-nonfungible/try-runtime',
+    'pallet-structure/try-runtime',
+    'pallet-proxy-rmrk-core/try-runtime',
+    'pallet-proxy-rmrk-equip/try-runtime',
+    'pallet-app-promotion/try-runtime',
+    'pallet-foreign-assets/try-runtime',
+    'pallet-evm/try-runtime',
+    'pallet-ethereum/try-runtime',
+    'pallet-evm-coder-substrate/try-runtime',
+    'pallet-evm-contract-helpers/try-runtime',
+    'pallet-evm-transaction-payment/try-runtime',
+    'pallet-evm-migration/try-runtime',
 ]
 std = [
     'codec/std',
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
before · runtime/unique/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Unique Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'unique-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.27'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'unique-runtime']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-ethereum/runtime-benchmarks',27    'pallet-evm-migration/runtime-benchmarks',28    'pallet-evm-coder-substrate/runtime-benchmarks',29    'pallet-balances/runtime-benchmarks',30    'pallet-timestamp/runtime-benchmarks',31    'pallet-common/runtime-benchmarks',32    'pallet-structure/runtime-benchmarks',33    'pallet-fungible/runtime-benchmarks',34    'pallet-refungible/runtime-benchmarks',35    'pallet-nonfungible/runtime-benchmarks',36    'pallet-proxy-rmrk-core/runtime-benchmarks',37    'pallet-proxy-rmrk-equip/runtime-benchmarks',38    'pallet-unique/runtime-benchmarks',39    'pallet-foreign-assets/runtime-benchmarks',40    'pallet-inflation/runtime-benchmarks',41    'pallet-unique-scheduler/runtime-benchmarks',42    'pallet-xcm/runtime-benchmarks',43    'sp-runtime/runtime-benchmarks',44    'xcm-builder/runtime-benchmarks',45    'up-data-structs/runtime-benchmarks',46]47try-runtime = [48    'frame-try-runtime',49    'frame-executive/try-runtime',50    'frame-system/try-runtime',51]52std = [53    'codec/std',54    'cumulus-pallet-aura-ext/std',55    'cumulus-pallet-parachain-system/std',56    'cumulus-pallet-xcm/std',57    'cumulus-pallet-xcmp-queue/std',58    'cumulus-primitives-core/std',59    'cumulus-primitives-utility/std',60    'frame-try-runtime/std',61    'frame-executive/std',62    'frame-support/std',63    'frame-system/std',64    'frame-system-rpc-runtime-api/std',65    'pallet-aura/std',66    'pallet-balances/std',67    # 'pallet-contracts/std',68    # 'pallet-contracts-primitives/std',69    # 'pallet-contracts-rpc-runtime-api/std',70    # 'pallet-contract-helpers/std',71    'pallet-randomness-collective-flip/std',72    'pallet-sudo/std',73    'pallet-timestamp/std',74    'pallet-transaction-payment/std',75    'pallet-transaction-payment-rpc-runtime-api/std',76    'pallet-treasury/std',77    # 'pallet-vesting/std',78    'pallet-evm/std',79    'pallet-evm-migration/std',80    'pallet-evm-contract-helpers/std',81    'pallet-evm-transaction-payment/std',82    'pallet-evm-coder-substrate/std',83    'pallet-ethereum/std',84    'pallet-base-fee/std',85    'fp-rpc/std',86    'up-rpc/std',87    'app-promotion-rpc/std',88    'fp-evm-mapping/std',89    'fp-self-contained/std',90    'parachain-info/std',91    'serde',92    'pallet-inflation/std',93    'pallet-configuration/std',94    'pallet-common/std',95    'pallet-structure/std',96    'pallet-fungible/std',97    'pallet-refungible/std',98    'pallet-nonfungible/std',99    'pallet-proxy-rmrk-core/std',100    'pallet-proxy-rmrk-equip/std',101    'pallet-unique/std',102    'pallet-unique-scheduler/std',103    'pallet-charge-transaction/std',104    'up-data-structs/std',105    'sp-api/std',106    'sp-block-builder/std',107    "sp-consensus-aura/std",108    'sp-core/std',109    'sp-inherents/std',110    'sp-io/std',111    'sp-offchain/std',112    'sp-runtime/std',113    'sp-session/std',114    'sp-std/std',115    'sp-transaction-pool/std',116    'sp-version/std',117    'xcm/std',118    'xcm-builder/std',119    'xcm-executor/std',120    'up-common/std',121    'rmrk-rpc/std',122    'evm-coder/std',123    'up-sponsorship/std',124125    "orml-vesting/std",126    "orml-tokens/std",127    "orml-xtokens/std",128    "orml-traits/std",129    "pallet-foreign-assets/std"130]131limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']132unique-runtime = []133134refungible = []135scheduler = []136rmrk = []137foreign-assets = []138139################################################################################140# Substrate Dependencies141142[dependencies.codec]143default-features = false144features = ['derive']145package = 'parity-scale-codec'146version = '3.1.2'147148[dependencies.frame-benchmarking]149default-features = false150git = "https://github.com/paritytech/substrate"151optional = true152branch = "polkadot-v0.9.29"153154[dependencies.frame-try-runtime]155default-features = false156git = "https://github.com/paritytech/substrate"157optional = true158branch = "polkadot-v0.9.29"159160[dependencies.frame-executive]161default-features = false162git = "https://github.com/paritytech/substrate"163branch = "polkadot-v0.9.29"164165[dependencies.frame-support]166default-features = false167git = "https://github.com/paritytech/substrate"168branch = "polkadot-v0.9.29"169170[dependencies.frame-system]171default-features = false172git = "https://github.com/paritytech/substrate"173branch = "polkadot-v0.9.29"174175[dependencies.frame-system-benchmarking]176default-features = false177git = "https://github.com/paritytech/substrate"178optional = true179branch = "polkadot-v0.9.29"180181[dependencies.frame-system-rpc-runtime-api]182default-features = false183git = "https://github.com/paritytech/substrate"184branch = "polkadot-v0.9.29"185186[dependencies.hex-literal]187optional = true188version = '0.3.3'189190[dependencies.serde]191default-features = false192features = ['derive']193optional = true194version = '1.0.130'195196[dependencies.pallet-aura]197default-features = false198git = "https://github.com/paritytech/substrate"199branch = "polkadot-v0.9.29"200201[dependencies.pallet-balances]202default-features = false203git = "https://github.com/paritytech/substrate"204branch = "polkadot-v0.9.29"205206# Contracts specific packages207# [dependencies.pallet-contracts]208# git = 'https://github.com/paritytech/substrate'209# default-features = false210# branch = 'master'211# version = '4.0.0-dev'212213# [dependencies.pallet-contracts-primitives]214# git = 'https://github.com/paritytech/substrate'215# default-features = false216# branch = 'master'217# version = '4.0.0-dev'218219# [dependencies.pallet-contracts-rpc-runtime-api]220# git = 'https://github.com/paritytech/substrate'221# default-features = false222# branch = 'master'223# version = '4.0.0-dev'224225[dependencies.pallet-randomness-collective-flip]226default-features = false227git = "https://github.com/paritytech/substrate"228branch = "polkadot-v0.9.29"229230[dependencies.pallet-sudo]231default-features = false232git = "https://github.com/paritytech/substrate"233branch = "polkadot-v0.9.29"234235[dependencies.pallet-timestamp]236default-features = false237git = "https://github.com/paritytech/substrate"238branch = "polkadot-v0.9.29"239240[dependencies.pallet-transaction-payment]241default-features = false242git = "https://github.com/paritytech/substrate"243branch = "polkadot-v0.9.29"244245[dependencies.pallet-transaction-payment-rpc-runtime-api]246default-features = false247git = "https://github.com/paritytech/substrate"248branch = "polkadot-v0.9.29"249250[dependencies.pallet-treasury]251default-features = false252git = "https://github.com/paritytech/substrate"253branch = "polkadot-v0.9.29"254255# [dependencies.pallet-vesting]256# default-features = false257# git = 'https://github.com/paritytech/substrate'258# branch = 'master'259260[dependencies.sp-arithmetic]261default-features = false262git = "https://github.com/paritytech/substrate"263branch = "polkadot-v0.9.29"264265[dependencies.sp-api]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.29"269270[dependencies.sp-block-builder]271default-features = false272git = "https://github.com/paritytech/substrate"273branch = "polkadot-v0.9.29"274275[dependencies.sp-core]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.29"279280[dependencies.sp-consensus-aura]281default-features = false282git = "https://github.com/paritytech/substrate"283branch = "polkadot-v0.9.29"284285[dependencies.sp-inherents]286default-features = false287git = "https://github.com/paritytech/substrate"288branch = "polkadot-v0.9.29"289290[dependencies.sp-io]291default-features = false292git = "https://github.com/paritytech/substrate"293branch = "polkadot-v0.9.29"294295[dependencies.sp-offchain]296default-features = false297git = "https://github.com/paritytech/substrate"298branch = "polkadot-v0.9.29"299300[dependencies.sp-runtime]301default-features = false302git = "https://github.com/paritytech/substrate"303branch = "polkadot-v0.9.29"304305[dependencies.sp-session]306default-features = false307git = "https://github.com/paritytech/substrate"308branch = "polkadot-v0.9.29"309310[dependencies.sp-std]311default-features = false312git = "https://github.com/paritytech/substrate"313branch = "polkadot-v0.9.29"314315[dependencies.sp-transaction-pool]316default-features = false317git = "https://github.com/paritytech/substrate"318branch = "polkadot-v0.9.29"319320[dependencies.sp-version]321default-features = false322git = "https://github.com/paritytech/substrate"323branch = "polkadot-v0.9.29"324325[dependencies.smallvec]326version = '1.6.1'327328################################################################################329# Cumulus dependencies330331[dependencies.parachain-info]332default-features = false333git = "https://github.com/paritytech/cumulus"334branch = "polkadot-v0.9.29"335336[dependencies.cumulus-pallet-aura-ext]337git = "https://github.com/paritytech/cumulus"338branch = "polkadot-v0.9.29"339default-features = false340341[dependencies.cumulus-pallet-parachain-system]342git = "https://github.com/paritytech/cumulus"343branch = "polkadot-v0.9.29"344default-features = false345346[dependencies.cumulus-primitives-core]347git = "https://github.com/paritytech/cumulus"348branch = "polkadot-v0.9.29"349default-features = false350351[dependencies.cumulus-pallet-xcm]352git = "https://github.com/paritytech/cumulus"353branch = "polkadot-v0.9.29"354default-features = false355356[dependencies.cumulus-pallet-dmp-queue]357git = "https://github.com/paritytech/cumulus"358branch = "polkadot-v0.9.29"359default-features = false360361[dependencies.cumulus-pallet-xcmp-queue]362git = "https://github.com/paritytech/cumulus"363branch = "polkadot-v0.9.29"364default-features = false365366[dependencies.cumulus-primitives-utility]367git = "https://github.com/paritytech/cumulus"368branch = "polkadot-v0.9.29"369default-features = false370371[dependencies.cumulus-primitives-timestamp]372git = "https://github.com/paritytech/cumulus"373branch = "polkadot-v0.9.29"374default-features = false375376################################################################################377# Polkadot dependencies378379[dependencies.polkadot-parachain]380git = "https://github.com/paritytech/polkadot"381branch = "release-v0.9.29"382default-features = false383384[dependencies.xcm]385git = "https://github.com/paritytech/polkadot"386branch = "release-v0.9.29"387default-features = false388389[dependencies.xcm-builder]390git = "https://github.com/paritytech/polkadot"391branch = "release-v0.9.29"392default-features = false393394[dependencies.xcm-executor]395git = "https://github.com/paritytech/polkadot"396branch = "release-v0.9.29"397default-features = false398399[dependencies.pallet-xcm]400git = "https://github.com/paritytech/polkadot"401branch = "release-v0.9.29"402default-features = false403404[dependencies.orml-vesting]405git = "https://github.com/UniqueNetwork/open-runtime-module-library"406branch = "polkadot-v0.9.29"407version = "0.4.1-dev"408default-features = false409410[dependencies.orml-xtokens]411git = "https://github.com/UniqueNetwork/open-runtime-module-library"412branch = "polkadot-v0.9.29"413version = "0.4.1-dev"414default-features = false415416[dependencies.orml-tokens]417git = "https://github.com/UniqueNetwork/open-runtime-module-library"418branch = "polkadot-v0.9.29"419version = "0.4.1-dev"420default-features = false421422[dependencies.orml-traits]423git = "https://github.com/UniqueNetwork/open-runtime-module-library"424branch = "polkadot-v0.9.29"425version = "0.4.1-dev"426default-features = false427################################################################################428# local dependencies429430[dependencies]431log = { version = "0.4.16", default-features = false }432up-common = { path = "../../primitives/common", default-features = false }433scale-info = { version = "2.0.1", default-features = false, features = [434    "derive",435] }436derivative = "2.2.0"437pallet-unique = { path = '../../pallets/unique', default-features = false }438up-rpc = { path = "../../primitives/rpc", default-features = false }439app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}440rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }441pallet-inflation = { path = '../../pallets/inflation', default-features = false }442pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }443up-data-structs = { path = '../../primitives/data-structs', default-features = false }444pallet-configuration = { default-features = false, path = "../../pallets/configuration" }445pallet-common = { default-features = false, path = "../../pallets/common" }446pallet-structure = { default-features = false, path = "../../pallets/structure" }447pallet-fungible = { default-features = false, path = "../../pallets/fungible" }448pallet-refungible = { default-features = false, path = "../../pallets/refungible" }449pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }450pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }451pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }452pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }453# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }454pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.29", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }455pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }456pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }457pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }458pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }459pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }460pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }461pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }462fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }463fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }464fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }465evm-coder = { default-features = false, path = '../../crates/evm-coder' }466up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.29' }467pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }468469################################################################################470# Other Dependencies471472impl-trait-for-tuples = "0.2.2"473474################################################################################475# Dev Dependencies476477[dev-dependencies.logtest]478version = "2.0.0"479480################################################################################481# Build Dependencies482483[build-dependencies.substrate-wasm-builder]484git = "https://github.com/paritytech/substrate"485branch = "polkadot-v0.9.29"
after · runtime/unique/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Unique Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'unique-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.27'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'unique-runtime']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-ethereum/runtime-benchmarks',27    'pallet-evm-migration/runtime-benchmarks',28    'pallet-evm-coder-substrate/runtime-benchmarks',29    'pallet-balances/runtime-benchmarks',30    'pallet-timestamp/runtime-benchmarks',31    'pallet-common/runtime-benchmarks',32    'pallet-structure/runtime-benchmarks',33    'pallet-fungible/runtime-benchmarks',34    'pallet-refungible/runtime-benchmarks',35    'pallet-nonfungible/runtime-benchmarks',36    'pallet-proxy-rmrk-core/runtime-benchmarks',37    'pallet-proxy-rmrk-equip/runtime-benchmarks',38    'pallet-unique/runtime-benchmarks',39    'pallet-foreign-assets/runtime-benchmarks',40    'pallet-inflation/runtime-benchmarks',41    'pallet-unique-scheduler/runtime-benchmarks',42    'pallet-xcm/runtime-benchmarks',43    'sp-runtime/runtime-benchmarks',44    'xcm-builder/runtime-benchmarks',45    'up-data-structs/runtime-benchmarks',46]47try-runtime = [48    'frame-try-runtime',49    'frame-executive/try-runtime',50    'frame-support/try-runtime',51    'frame-system/try-runtime',52    'cumulus-pallet-parachain-system/try-runtime',53    'parachain-info/try-runtime',54    'pallet-aura/try-runtime',55    'cumulus-pallet-aura-ext/try-runtime',56    'pallet-balances/try-runtime',57    'pallet-randomness-collective-flip/try-runtime',58    'pallet-timestamp/try-runtime',59    'pallet-transaction-payment/try-runtime',60    'pallet-treasury/try-runtime',61    'pallet-sudo/try-runtime',62    'orml-vesting/try-runtime',63    'orml-xtokens/try-runtime',64    'orml-tokens/try-runtime',65    'cumulus-pallet-xcmp-queue/try-runtime',66    'pallet-xcm/try-runtime',67    'cumulus-pallet-xcm/try-runtime',68    'cumulus-pallet-dmp-queue/try-runtime',69    'pallet-inflation/try-runtime',70    'pallet-unique/try-runtime',71    'pallet-unique-scheduler/try-runtime',72    'pallet-configuration/try-runtime',73    'pallet-charge-transaction/try-runtime',74    'pallet-common/try-runtime',75    'pallet-fungible/try-runtime',76    'pallet-refungible/try-runtime',77    'pallet-nonfungible/try-runtime',78    'pallet-structure/try-runtime',79    'pallet-proxy-rmrk-core/try-runtime',80    'pallet-proxy-rmrk-equip/try-runtime',81    'pallet-app-promotion/try-runtime',82    'pallet-foreign-assets/try-runtime',83    'pallet-evm/try-runtime',84    'pallet-ethereum/try-runtime',85    'pallet-evm-coder-substrate/try-runtime',86    'pallet-evm-contract-helpers/try-runtime',87    'pallet-evm-transaction-payment/try-runtime',88    'pallet-evm-migration/try-runtime',89]90std = [91    'codec/std',92    'cumulus-pallet-aura-ext/std',93    'cumulus-pallet-parachain-system/std',94    'cumulus-pallet-xcm/std',95    'cumulus-pallet-xcmp-queue/std',96    'cumulus-primitives-core/std',97    'cumulus-primitives-utility/std',98    'frame-try-runtime/std',99    'frame-executive/std',100    'frame-support/std',101    'frame-system/std',102    'frame-system-rpc-runtime-api/std',103    'pallet-aura/std',104    'pallet-balances/std',105    # 'pallet-contracts/std',106    # 'pallet-contracts-primitives/std',107    # 'pallet-contracts-rpc-runtime-api/std',108    # 'pallet-contract-helpers/std',109    'pallet-randomness-collective-flip/std',110    'pallet-sudo/std',111    'pallet-timestamp/std',112    'pallet-transaction-payment/std',113    'pallet-transaction-payment-rpc-runtime-api/std',114    'pallet-treasury/std',115    # 'pallet-vesting/std',116    'pallet-evm/std',117    'pallet-evm-migration/std',118    'pallet-evm-contract-helpers/std',119    'pallet-evm-transaction-payment/std',120    'pallet-evm-coder-substrate/std',121    'pallet-ethereum/std',122    'pallet-base-fee/std',123    'fp-rpc/std',124    'up-rpc/std',125    'app-promotion-rpc/std',126    'fp-evm-mapping/std',127    'fp-self-contained/std',128    'parachain-info/std',129    'serde',130    'pallet-inflation/std',131    'pallet-configuration/std',132    'pallet-common/std',133    'pallet-structure/std',134    'pallet-fungible/std',135    'pallet-refungible/std',136    'pallet-nonfungible/std',137    'pallet-proxy-rmrk-core/std',138    'pallet-proxy-rmrk-equip/std',139    'pallet-unique/std',140    'pallet-unique-scheduler/std',141    'pallet-charge-transaction/std',142    'up-data-structs/std',143    'sp-api/std',144    'sp-block-builder/std',145    "sp-consensus-aura/std",146    'sp-core/std',147    'sp-inherents/std',148    'sp-io/std',149    'sp-offchain/std',150    'sp-runtime/std',151    'sp-session/std',152    'sp-std/std',153    'sp-transaction-pool/std',154    'sp-version/std',155    'xcm/std',156    'xcm-builder/std',157    'xcm-executor/std',158    'up-common/std',159    'rmrk-rpc/std',160    'evm-coder/std',161    'up-sponsorship/std',162163    "orml-vesting/std",164    "orml-tokens/std",165    "orml-xtokens/std",166    "orml-traits/std",167    "pallet-foreign-assets/std"168]169limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']170unique-runtime = []171172refungible = []173scheduler = []174rmrk = []175foreign-assets = []176177################################################################################178# Substrate Dependencies179180[dependencies.codec]181default-features = false182features = ['derive']183package = 'parity-scale-codec'184version = '3.1.2'185186[dependencies.frame-benchmarking]187default-features = false188git = "https://github.com/paritytech/substrate"189optional = true190branch = "polkadot-v0.9.29"191192[dependencies.frame-try-runtime]193default-features = false194git = "https://github.com/paritytech/substrate"195optional = true196branch = "polkadot-v0.9.29"197198[dependencies.frame-executive]199default-features = false200git = "https://github.com/paritytech/substrate"201branch = "polkadot-v0.9.29"202203[dependencies.frame-support]204default-features = false205git = "https://github.com/paritytech/substrate"206branch = "polkadot-v0.9.29"207208[dependencies.frame-system]209default-features = false210git = "https://github.com/paritytech/substrate"211branch = "polkadot-v0.9.29"212213[dependencies.frame-system-benchmarking]214default-features = false215git = "https://github.com/paritytech/substrate"216optional = true217branch = "polkadot-v0.9.29"218219[dependencies.frame-system-rpc-runtime-api]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.29"223224[dependencies.hex-literal]225optional = true226version = '0.3.3'227228[dependencies.serde]229default-features = false230features = ['derive']231optional = true232version = '1.0.130'233234[dependencies.pallet-aura]235default-features = false236git = "https://github.com/paritytech/substrate"237branch = "polkadot-v0.9.29"238239[dependencies.pallet-balances]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.29"243244# Contracts specific packages245# [dependencies.pallet-contracts]246# git = 'https://github.com/paritytech/substrate'247# default-features = false248# branch = 'master'249# version = '4.0.0-dev'250251# [dependencies.pallet-contracts-primitives]252# git = 'https://github.com/paritytech/substrate'253# default-features = false254# branch = 'master'255# version = '4.0.0-dev'256257# [dependencies.pallet-contracts-rpc-runtime-api]258# git = 'https://github.com/paritytech/substrate'259# default-features = false260# branch = 'master'261# version = '4.0.0-dev'262263[dependencies.pallet-randomness-collective-flip]264default-features = false265git = "https://github.com/paritytech/substrate"266branch = "polkadot-v0.9.29"267268[dependencies.pallet-sudo]269default-features = false270git = "https://github.com/paritytech/substrate"271branch = "polkadot-v0.9.29"272273[dependencies.pallet-timestamp]274default-features = false275git = "https://github.com/paritytech/substrate"276branch = "polkadot-v0.9.29"277278[dependencies.pallet-transaction-payment]279default-features = false280git = "https://github.com/paritytech/substrate"281branch = "polkadot-v0.9.29"282283[dependencies.pallet-transaction-payment-rpc-runtime-api]284default-features = false285git = "https://github.com/paritytech/substrate"286branch = "polkadot-v0.9.29"287288[dependencies.pallet-treasury]289default-features = false290git = "https://github.com/paritytech/substrate"291branch = "polkadot-v0.9.29"292293# [dependencies.pallet-vesting]294# default-features = false295# git = 'https://github.com/paritytech/substrate'296# branch = 'master'297298[dependencies.sp-arithmetic]299default-features = false300git = "https://github.com/paritytech/substrate"301branch = "polkadot-v0.9.29"302303[dependencies.sp-api]304default-features = false305git = "https://github.com/paritytech/substrate"306branch = "polkadot-v0.9.29"307308[dependencies.sp-block-builder]309default-features = false310git = "https://github.com/paritytech/substrate"311branch = "polkadot-v0.9.29"312313[dependencies.sp-core]314default-features = false315git = "https://github.com/paritytech/substrate"316branch = "polkadot-v0.9.29"317318[dependencies.sp-consensus-aura]319default-features = false320git = "https://github.com/paritytech/substrate"321branch = "polkadot-v0.9.29"322323[dependencies.sp-inherents]324default-features = false325git = "https://github.com/paritytech/substrate"326branch = "polkadot-v0.9.29"327328[dependencies.sp-io]329default-features = false330git = "https://github.com/paritytech/substrate"331branch = "polkadot-v0.9.29"332333[dependencies.sp-offchain]334default-features = false335git = "https://github.com/paritytech/substrate"336branch = "polkadot-v0.9.29"337338[dependencies.sp-runtime]339default-features = false340git = "https://github.com/paritytech/substrate"341branch = "polkadot-v0.9.29"342343[dependencies.sp-session]344default-features = false345git = "https://github.com/paritytech/substrate"346branch = "polkadot-v0.9.29"347348[dependencies.sp-std]349default-features = false350git = "https://github.com/paritytech/substrate"351branch = "polkadot-v0.9.29"352353[dependencies.sp-transaction-pool]354default-features = false355git = "https://github.com/paritytech/substrate"356branch = "polkadot-v0.9.29"357358[dependencies.sp-version]359default-features = false360git = "https://github.com/paritytech/substrate"361branch = "polkadot-v0.9.29"362363[dependencies.smallvec]364version = '1.6.1'365366################################################################################367# Cumulus dependencies368369[dependencies.parachain-info]370default-features = false371git = "https://github.com/paritytech/cumulus"372branch = "polkadot-v0.9.29"373374[dependencies.cumulus-pallet-aura-ext]375git = "https://github.com/paritytech/cumulus"376branch = "polkadot-v0.9.29"377default-features = false378379[dependencies.cumulus-pallet-parachain-system]380git = "https://github.com/paritytech/cumulus"381branch = "polkadot-v0.9.29"382default-features = false383384[dependencies.cumulus-primitives-core]385git = "https://github.com/paritytech/cumulus"386branch = "polkadot-v0.9.29"387default-features = false388389[dependencies.cumulus-pallet-xcm]390git = "https://github.com/paritytech/cumulus"391branch = "polkadot-v0.9.29"392default-features = false393394[dependencies.cumulus-pallet-dmp-queue]395git = "https://github.com/paritytech/cumulus"396branch = "polkadot-v0.9.29"397default-features = false398399[dependencies.cumulus-pallet-xcmp-queue]400git = "https://github.com/paritytech/cumulus"401branch = "polkadot-v0.9.29"402default-features = false403404[dependencies.cumulus-primitives-utility]405git = "https://github.com/paritytech/cumulus"406branch = "polkadot-v0.9.29"407default-features = false408409[dependencies.cumulus-primitives-timestamp]410git = "https://github.com/paritytech/cumulus"411branch = "polkadot-v0.9.29"412default-features = false413414################################################################################415# Polkadot dependencies416417[dependencies.polkadot-parachain]418git = "https://github.com/paritytech/polkadot"419branch = "release-v0.9.29"420default-features = false421422[dependencies.xcm]423git = "https://github.com/paritytech/polkadot"424branch = "release-v0.9.29"425default-features = false426427[dependencies.xcm-builder]428git = "https://github.com/paritytech/polkadot"429branch = "release-v0.9.29"430default-features = false431432[dependencies.xcm-executor]433git = "https://github.com/paritytech/polkadot"434branch = "release-v0.9.29"435default-features = false436437[dependencies.pallet-xcm]438git = "https://github.com/paritytech/polkadot"439branch = "release-v0.9.29"440default-features = false441442[dependencies.orml-vesting]443git = "https://github.com/UniqueNetwork/open-runtime-module-library"444branch = "polkadot-v0.9.29"445version = "0.4.1-dev"446default-features = false447448[dependencies.orml-xtokens]449git = "https://github.com/UniqueNetwork/open-runtime-module-library"450branch = "polkadot-v0.9.29"451version = "0.4.1-dev"452default-features = false453454[dependencies.orml-tokens]455git = "https://github.com/UniqueNetwork/open-runtime-module-library"456branch = "polkadot-v0.9.29"457version = "0.4.1-dev"458default-features = false459460[dependencies.orml-traits]461git = "https://github.com/UniqueNetwork/open-runtime-module-library"462branch = "polkadot-v0.9.29"463version = "0.4.1-dev"464default-features = false465################################################################################466# local dependencies467468[dependencies]469log = { version = "0.4.16", default-features = false }470up-common = { path = "../../primitives/common", default-features = false }471scale-info = { version = "2.0.1", default-features = false, features = [472    "derive",473] }474derivative = "2.2.0"475pallet-unique = { path = '../../pallets/unique', default-features = false }476up-rpc = { path = "../../primitives/rpc", default-features = false }477app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}478rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }479pallet-inflation = { path = '../../pallets/inflation', default-features = false }480pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }481up-data-structs = { path = '../../primitives/data-structs', default-features = false }482pallet-configuration = { default-features = false, path = "../../pallets/configuration" }483pallet-common = { default-features = false, path = "../../pallets/common" }484pallet-structure = { default-features = false, path = "../../pallets/structure" }485pallet-fungible = { default-features = false, path = "../../pallets/fungible" }486pallet-refungible = { default-features = false, path = "../../pallets/refungible" }487pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }488pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }489pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }490pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }491# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }492pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.29", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }493pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }494pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }495pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }496pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }497pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }498pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }499pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }500fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }501fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }502fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }503evm-coder = { default-features = false, path = '../../crates/evm-coder' }504up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.29' }505pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }506507################################################################################508# Other Dependencies509510impl-trait-for-tuples = "0.2.2"511512################################################################################513# Dev Dependencies514515[dev-dependencies.logtest]516version = "2.0.0"517518################################################################################519# Build Dependencies520521[build-dependencies.substrate-wasm-builder]522git = "https://github.com/paritytech/substrate"523branch = "polkadot-v0.9.29"