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

difftreelog

build enable cargo workspace-inheritance

Yaroslav Bolyukin2022-10-20parent: #91cf06e.patch.diff
in: master

5 files changed

modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,3 +1,5 @@
+cargo-features = ["workspace-inheritance"]
+
 [workspace]
 resolver = "2"
 members = [
modifiedpallets/foreign-assets/Cargo.tomldiffbeforeafterboth
--- a/pallets/foreign-assets/Cargo.toml
+++ b/pallets/foreign-assets/Cargo.toml
@@ -1,3 +1,5 @@
+cargo-features = ["workspace-inheritance"]
+
 [package]
 name = "pallet-foreign-assets"
 version = "0.1.0"
@@ -7,10 +9,12 @@
 [dependencies]
 log = { version = "0.4.16", default-features = false }
 serde = { version = "1.0.136", optional = true }
-scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
+scale-info = { version = "2.0.1", default-features = false, features = [
+	"derive",
+] }
 codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
 sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }
-sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false  }
+sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }
 frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }
 frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }
 up-data-structs = { default-features = false, path = '../../primitives/data-structs' }
@@ -46,7 +50,7 @@
 	"pallet-common/std",
 	"pallet-balances/std",
 	"pallet-fungible/std",
-	"orml-tokens/std"
+	"orml-tokens/std",
 ]
 try-runtime = ["frame-support/try-runtime"]
 runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -1,6 +1,8 @@
 ################################################################################
 # Package
 
+cargo-features = ["workspace-inheritance"]
+
 [package]
 authors = ['Unique Network <support@uniquenetwork.io>']
 build = 'build.rs'
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
before · runtime/quartz/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Quartz Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'quartz-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.30'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'quartz-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]46try-runtime = [47    'frame-try-runtime',48    'frame-executive/try-runtime',49    'frame-support/try-runtime',50    'frame-system/try-runtime',51    'cumulus-pallet-parachain-system/try-runtime',52    'parachain-info/try-runtime',53    'pallet-aura/try-runtime',54    'cumulus-pallet-aura-ext/try-runtime',55    'pallet-balances/try-runtime',56    'pallet-randomness-collective-flip/try-runtime',57    'pallet-timestamp/try-runtime',58    'pallet-transaction-payment/try-runtime',59    'pallet-treasury/try-runtime',60    'pallet-sudo/try-runtime',61    'orml-vesting/try-runtime',62    'orml-xtokens/try-runtime',63    'orml-tokens/try-runtime',64    'cumulus-pallet-xcmp-queue/try-runtime',65    'pallet-xcm/try-runtime',66    'cumulus-pallet-xcm/try-runtime',67    'cumulus-pallet-dmp-queue/try-runtime',68    'pallet-inflation/try-runtime',69    'pallet-unique/try-runtime',70    'pallet-unique-scheduler/try-runtime',71    'pallet-configuration/try-runtime',72    'pallet-charge-transaction/try-runtime',73    'pallet-common/try-runtime',74    'pallet-fungible/try-runtime',75    'pallet-refungible/try-runtime',76    'pallet-nonfungible/try-runtime',77    'pallet-structure/try-runtime',78    'pallet-proxy-rmrk-core/try-runtime',79    'pallet-proxy-rmrk-equip/try-runtime',80    'pallet-app-promotion/try-runtime',81    'pallet-foreign-assets/try-runtime',82    'pallet-evm/try-runtime',83    'pallet-ethereum/try-runtime',84    'pallet-evm-coder-substrate/try-runtime',85    'pallet-evm-contract-helpers/try-runtime',86    'pallet-evm-transaction-payment/try-runtime',87    'pallet-evm-migration/try-runtime',88]89std = [90    'codec/std',91    'cumulus-pallet-aura-ext/std',92    'cumulus-pallet-parachain-system/std',93    'cumulus-pallet-xcm/std',94    'cumulus-pallet-xcmp-queue/std',95    'cumulus-primitives-core/std',96    'cumulus-primitives-utility/std',97    'frame-try-runtime/std',98    'frame-executive/std',99    'frame-support/std',100    'frame-system/std',101    'frame-system-rpc-runtime-api/std',102    'pallet-aura/std',103    'pallet-balances/std',104    # 'pallet-contracts/std',105    # 'pallet-contracts-primitives/std',106    # 'pallet-contracts-rpc-runtime-api/std',107    # 'pallet-contract-helpers/std',108    'pallet-randomness-collective-flip/std',109    'pallet-sudo/std',110    'pallet-timestamp/std',111    'pallet-transaction-payment/std',112    'pallet-transaction-payment-rpc-runtime-api/std',113    'pallet-treasury/std',114    'pallet-evm/std',115    'pallet-evm-migration/std',116    'pallet-evm-contract-helpers/std',117    'pallet-evm-transaction-payment/std',118    'pallet-evm-coder-substrate/std',119    'pallet-ethereum/std',120    'pallet-base-fee/std',121    'fp-rpc/std',122    'up-rpc/std',123    'app-promotion-rpc/std',124    'fp-evm-mapping/std',125    'fp-self-contained/std',126    'parachain-info/std',127    'serde',128    'pallet-inflation/std',129    'pallet-configuration/std',130    'pallet-common/std',131    'pallet-structure/std',132    'pallet-fungible/std',133    'pallet-refungible/std',134    'pallet-nonfungible/std',135    'pallet-proxy-rmrk-core/std',136    'pallet-proxy-rmrk-equip/std',137    'pallet-unique/std',138    'pallet-unique-scheduler/std',139    'pallet-charge-transaction/std',140    'up-data-structs/std',141    'sp-api/std',142    'sp-block-builder/std',143    "sp-consensus-aura/std",144    'sp-core/std',145    'sp-inherents/std',146    'sp-io/std',147    'sp-offchain/std',148    'sp-runtime/std',149    'sp-session/std',150    'sp-std/std',151    'sp-transaction-pool/std',152    'sp-version/std',153    'xcm/std',154    'xcm-builder/std',155    'xcm-executor/std',156    'up-common/std',157    'rmrk-rpc/std',158    'evm-coder/std',159    'up-sponsorship/std',160161    "orml-vesting/std",162    "orml-tokens/std",163    "orml-xtokens/std",164    "orml-traits/std",165    "pallet-foreign-assets/std",166]167limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']168quartz-runtime = ['refungible']169170refungible = []171scheduler = []172rmrk = []173foreign-assets = []174175################################################################################176# Substrate Dependencies177178[dependencies.codec]179default-features = false180features = ['derive']181package = 'parity-scale-codec'182version = '3.1.2'183184[dependencies.frame-benchmarking]185default-features = false186git = "https://github.com/paritytech/substrate"187optional = true188branch = "polkadot-v0.9.30"189190[dependencies.frame-try-runtime]191default-features = false192git = "https://github.com/paritytech/substrate"193optional = true194branch = "polkadot-v0.9.30"195196[dependencies.frame-executive]197default-features = false198git = "https://github.com/paritytech/substrate"199branch = "polkadot-v0.9.30"200201[dependencies.frame-support]202default-features = false203git = "https://github.com/paritytech/substrate"204branch = "polkadot-v0.9.30"205206[dependencies.frame-system]207default-features = false208git = "https://github.com/paritytech/substrate"209branch = "polkadot-v0.9.30"210211[dependencies.frame-system-benchmarking]212default-features = false213git = "https://github.com/paritytech/substrate"214optional = true215branch = "polkadot-v0.9.30"216217[dependencies.frame-system-rpc-runtime-api]218default-features = false219git = "https://github.com/paritytech/substrate"220branch = "polkadot-v0.9.30"221222[dependencies.hex-literal]223optional = true224version = '0.3.3'225226[dependencies.serde]227default-features = false228features = ['derive']229optional = true230version = '1.0.130'231232[dependencies.pallet-aura]233default-features = false234git = "https://github.com/paritytech/substrate"235branch = "polkadot-v0.9.30"236237[dependencies.pallet-balances]238default-features = false239git = "https://github.com/paritytech/substrate"240branch = "polkadot-v0.9.30"241242# Contracts specific packages243# [dependencies.pallet-contracts]244# git = 'https://github.com/paritytech/substrate'245# default-features = false246# branch = 'master'247# version = '4.0.0-dev'248249# [dependencies.pallet-contracts-primitives]250# git = 'https://github.com/paritytech/substrate'251# default-features = false252# branch = 'master'253# version = '4.0.0-dev'254255# [dependencies.pallet-contracts-rpc-runtime-api]256# git = 'https://github.com/paritytech/substrate'257# default-features = false258# branch = 'master'259# version = '4.0.0-dev'260261[dependencies.pallet-randomness-collective-flip]262default-features = false263git = "https://github.com/paritytech/substrate"264branch = "polkadot-v0.9.30"265266[dependencies.pallet-sudo]267default-features = false268git = "https://github.com/paritytech/substrate"269branch = "polkadot-v0.9.30"270271[dependencies.pallet-timestamp]272default-features = false273git = "https://github.com/paritytech/substrate"274branch = "polkadot-v0.9.30"275276[dependencies.pallet-transaction-payment]277default-features = false278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.30"280281[dependencies.pallet-transaction-payment-rpc-runtime-api]282default-features = false283git = "https://github.com/paritytech/substrate"284branch = "polkadot-v0.9.30"285286[dependencies.pallet-treasury]287default-features = false288git = "https://github.com/paritytech/substrate"289branch = "polkadot-v0.9.30"290291[dependencies.sp-arithmetic]292default-features = false293git = "https://github.com/paritytech/substrate"294branch = "polkadot-v0.9.30"295296[dependencies.sp-api]297default-features = false298git = "https://github.com/paritytech/substrate"299branch = "polkadot-v0.9.30"300301[dependencies.sp-block-builder]302default-features = false303git = "https://github.com/paritytech/substrate"304branch = "polkadot-v0.9.30"305306[dependencies.sp-core]307default-features = false308git = "https://github.com/paritytech/substrate"309branch = "polkadot-v0.9.30"310311[dependencies.sp-consensus-aura]312default-features = false313git = "https://github.com/paritytech/substrate"314branch = "polkadot-v0.9.30"315316[dependencies.sp-inherents]317default-features = false318git = "https://github.com/paritytech/substrate"319branch = "polkadot-v0.9.30"320321[dependencies.sp-io]322default-features = false323git = "https://github.com/paritytech/substrate"324branch = "polkadot-v0.9.30"325326[dependencies.sp-offchain]327default-features = false328git = "https://github.com/paritytech/substrate"329branch = "polkadot-v0.9.30"330331[dependencies.sp-runtime]332default-features = false333git = "https://github.com/paritytech/substrate"334branch = "polkadot-v0.9.30"335336[dependencies.sp-session]337default-features = false338git = "https://github.com/paritytech/substrate"339branch = "polkadot-v0.9.30"340341[dependencies.sp-std]342default-features = false343git = "https://github.com/paritytech/substrate"344branch = "polkadot-v0.9.30"345346[dependencies.sp-transaction-pool]347default-features = false348git = "https://github.com/paritytech/substrate"349branch = "polkadot-v0.9.30"350351[dependencies.sp-version]352default-features = false353git = "https://github.com/paritytech/substrate"354branch = "polkadot-v0.9.30"355356[dependencies.smallvec]357version = '1.6.1'358359################################################################################360# Cumulus dependencies361362[dependencies.parachain-info]363default-features = false364git = "https://github.com/paritytech/cumulus"365branch = "polkadot-v0.9.30"366367[dependencies.cumulus-pallet-aura-ext]368git = "https://github.com/paritytech/cumulus"369branch = "polkadot-v0.9.30"370default-features = false371372[dependencies.cumulus-pallet-parachain-system]373git = "https://github.com/paritytech/cumulus"374branch = "polkadot-v0.9.30"375default-features = false376377[dependencies.cumulus-primitives-core]378git = "https://github.com/paritytech/cumulus"379branch = "polkadot-v0.9.30"380default-features = false381382[dependencies.cumulus-pallet-xcm]383git = "https://github.com/paritytech/cumulus"384branch = "polkadot-v0.9.30"385default-features = false386387[dependencies.cumulus-pallet-dmp-queue]388git = "https://github.com/paritytech/cumulus"389branch = "polkadot-v0.9.30"390default-features = false391392[dependencies.cumulus-pallet-xcmp-queue]393git = "https://github.com/paritytech/cumulus"394branch = "polkadot-v0.9.30"395default-features = false396397[dependencies.cumulus-primitives-utility]398git = "https://github.com/paritytech/cumulus"399branch = "polkadot-v0.9.30"400default-features = false401402[dependencies.cumulus-primitives-timestamp]403git = "https://github.com/paritytech/cumulus"404branch = "polkadot-v0.9.30"405default-features = false406407################################################################################408# Polkadot dependencies409410[dependencies.polkadot-parachain]411git = "https://github.com/paritytech/polkadot"412branch = "release-v0.9.30"413default-features = false414415[dependencies.xcm]416git = "https://github.com/paritytech/polkadot"417branch = "release-v0.9.30"418default-features = false419420[dependencies.xcm-builder]421git = "https://github.com/paritytech/polkadot"422branch = "release-v0.9.30"423default-features = false424425[dependencies.xcm-executor]426git = "https://github.com/paritytech/polkadot"427branch = "release-v0.9.30"428default-features = false429430[dependencies.pallet-xcm]431git = "https://github.com/paritytech/polkadot"432branch = "release-v0.9.30"433default-features = false434435################################################################################436# RMRK dependencies437438# todo git439[dependencies.rmrk-rpc]440default-features = false441path = "../../primitives/rmrk-rpc"442443################################################################################444# local dependencies445446[dependencies]447orml-vesting.workspace = true448orml-xtokens.workspace = true449orml-tokens.workspace = true450orml-traits.workspace = true451452log = { version = "0.4.16", default-features = false }453up-common = { path = "../../primitives/common", default-features = false }454scale-info = { version = "2.0.1", default-features = false, features = [455    "derive",456] }457derivative = "2.2.0"458pallet-unique = { path = '../../pallets/unique', default-features = false }459up-rpc = { path = "../../primitives/rpc", default-features = false }460app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }461fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }462pallet-inflation = { path = '../../pallets/inflation', default-features = false }463pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }464up-data-structs = { path = '../../primitives/data-structs', default-features = false }465pallet-configuration = { default-features = false, path = "../../pallets/configuration" }466pallet-common = { default-features = false, path = "../../pallets/common" }467pallet-structure = { default-features = false, path = "../../pallets/structure" }468pallet-fungible = { default-features = false, path = "../../pallets/fungible" }469pallet-refungible = { default-features = false, path = "../../pallets/refungible" }470pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }471pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }472pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }473pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }474# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }475pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.30", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }476pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }477pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }478pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }479pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }480pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }481pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }482pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }483fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }484fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }485evm-coder = { default-features = false, path = '../../crates/evm-coder' }486up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }487pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }488489################################################################################490# Other Dependencies491492impl-trait-for-tuples = "0.2.2"493494################################################################################495# Dev Dependencies496497[dev-dependencies.logtest]498version = "2.0.0"499500################################################################################501# Build Dependencies502503[build-dependencies.substrate-wasm-builder]504git = "https://github.com/paritytech/substrate"505branch = "polkadot-v0.9.30"
after · runtime/quartz/Cargo.toml
1################################################################################2# Package34cargo-features = ["workspace-inheritance"]56[package]7authors = ['Unique Network <support@uniquenetwork.io>']8build = 'build.rs'9description = 'Quartz Runtime'10edition = '2021'11homepage = 'https://unique.network'12license = 'GPLv3'13name = 'quartz-runtime'14repository = 'https://github.com/UniqueNetwork/unique-chain'15version = '0.9.30'1617[package.metadata.docs.rs]18targets = ['x86_64-unknown-linux-gnu']1920[features]21default = ['std', 'quartz-runtime']22runtime-benchmarks = [23    'hex-literal',24    'frame-benchmarking',25    'frame-support/runtime-benchmarks',26    'frame-system-benchmarking',27    'frame-system/runtime-benchmarks',28    'pallet-ethereum/runtime-benchmarks',29    'pallet-evm-migration/runtime-benchmarks',30    'pallet-evm-coder-substrate/runtime-benchmarks',31    'pallet-balances/runtime-benchmarks',32    'pallet-timestamp/runtime-benchmarks',33    'pallet-common/runtime-benchmarks',34    'pallet-structure/runtime-benchmarks',35    'pallet-fungible/runtime-benchmarks',36    'pallet-refungible/runtime-benchmarks',37    'pallet-nonfungible/runtime-benchmarks',38    'pallet-proxy-rmrk-core/runtime-benchmarks',39    'pallet-proxy-rmrk-equip/runtime-benchmarks',40    'pallet-unique/runtime-benchmarks',41    'pallet-foreign-assets/runtime-benchmarks',42    'pallet-inflation/runtime-benchmarks',43    'pallet-unique-scheduler/runtime-benchmarks',44    'pallet-xcm/runtime-benchmarks',45    'sp-runtime/runtime-benchmarks',46    'xcm-builder/runtime-benchmarks',47]48try-runtime = [49    'frame-try-runtime',50    'frame-executive/try-runtime',51    'frame-support/try-runtime',52    'frame-system/try-runtime',53    'cumulus-pallet-parachain-system/try-runtime',54    'parachain-info/try-runtime',55    'pallet-aura/try-runtime',56    'cumulus-pallet-aura-ext/try-runtime',57    'pallet-balances/try-runtime',58    'pallet-randomness-collective-flip/try-runtime',59    'pallet-timestamp/try-runtime',60    'pallet-transaction-payment/try-runtime',61    'pallet-treasury/try-runtime',62    'pallet-sudo/try-runtime',63    'orml-vesting/try-runtime',64    'orml-xtokens/try-runtime',65    'orml-tokens/try-runtime',66    'cumulus-pallet-xcmp-queue/try-runtime',67    'pallet-xcm/try-runtime',68    'cumulus-pallet-xcm/try-runtime',69    'cumulus-pallet-dmp-queue/try-runtime',70    'pallet-inflation/try-runtime',71    'pallet-unique/try-runtime',72    'pallet-unique-scheduler/try-runtime',73    'pallet-configuration/try-runtime',74    'pallet-charge-transaction/try-runtime',75    'pallet-common/try-runtime',76    'pallet-fungible/try-runtime',77    'pallet-refungible/try-runtime',78    'pallet-nonfungible/try-runtime',79    'pallet-structure/try-runtime',80    'pallet-proxy-rmrk-core/try-runtime',81    'pallet-proxy-rmrk-equip/try-runtime',82    'pallet-app-promotion/try-runtime',83    'pallet-foreign-assets/try-runtime',84    'pallet-evm/try-runtime',85    'pallet-ethereum/try-runtime',86    'pallet-evm-coder-substrate/try-runtime',87    'pallet-evm-contract-helpers/try-runtime',88    'pallet-evm-transaction-payment/try-runtime',89    'pallet-evm-migration/try-runtime',90]91std = [92    'codec/std',93    'cumulus-pallet-aura-ext/std',94    'cumulus-pallet-parachain-system/std',95    'cumulus-pallet-xcm/std',96    'cumulus-pallet-xcmp-queue/std',97    'cumulus-primitives-core/std',98    'cumulus-primitives-utility/std',99    'frame-try-runtime/std',100    'frame-executive/std',101    'frame-support/std',102    'frame-system/std',103    'frame-system-rpc-runtime-api/std',104    'pallet-aura/std',105    'pallet-balances/std',106    # 'pallet-contracts/std',107    # 'pallet-contracts-primitives/std',108    # 'pallet-contracts-rpc-runtime-api/std',109    # 'pallet-contract-helpers/std',110    'pallet-randomness-collective-flip/std',111    'pallet-sudo/std',112    'pallet-timestamp/std',113    'pallet-transaction-payment/std',114    'pallet-transaction-payment-rpc-runtime-api/std',115    'pallet-treasury/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']170quartz-runtime = ['refungible']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.30"191192[dependencies.frame-try-runtime]193default-features = false194git = "https://github.com/paritytech/substrate"195optional = true196branch = "polkadot-v0.9.30"197198[dependencies.frame-executive]199default-features = false200git = "https://github.com/paritytech/substrate"201branch = "polkadot-v0.9.30"202203[dependencies.frame-support]204default-features = false205git = "https://github.com/paritytech/substrate"206branch = "polkadot-v0.9.30"207208[dependencies.frame-system]209default-features = false210git = "https://github.com/paritytech/substrate"211branch = "polkadot-v0.9.30"212213[dependencies.frame-system-benchmarking]214default-features = false215git = "https://github.com/paritytech/substrate"216optional = true217branch = "polkadot-v0.9.30"218219[dependencies.frame-system-rpc-runtime-api]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.30"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.30"238239[dependencies.pallet-balances]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.30"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.30"267268[dependencies.pallet-sudo]269default-features = false270git = "https://github.com/paritytech/substrate"271branch = "polkadot-v0.9.30"272273[dependencies.pallet-timestamp]274default-features = false275git = "https://github.com/paritytech/substrate"276branch = "polkadot-v0.9.30"277278[dependencies.pallet-transaction-payment]279default-features = false280git = "https://github.com/paritytech/substrate"281branch = "polkadot-v0.9.30"282283[dependencies.pallet-transaction-payment-rpc-runtime-api]284default-features = false285git = "https://github.com/paritytech/substrate"286branch = "polkadot-v0.9.30"287288[dependencies.pallet-treasury]289default-features = false290git = "https://github.com/paritytech/substrate"291branch = "polkadot-v0.9.30"292293[dependencies.sp-arithmetic]294default-features = false295git = "https://github.com/paritytech/substrate"296branch = "polkadot-v0.9.30"297298[dependencies.sp-api]299default-features = false300git = "https://github.com/paritytech/substrate"301branch = "polkadot-v0.9.30"302303[dependencies.sp-block-builder]304default-features = false305git = "https://github.com/paritytech/substrate"306branch = "polkadot-v0.9.30"307308[dependencies.sp-core]309default-features = false310git = "https://github.com/paritytech/substrate"311branch = "polkadot-v0.9.30"312313[dependencies.sp-consensus-aura]314default-features = false315git = "https://github.com/paritytech/substrate"316branch = "polkadot-v0.9.30"317318[dependencies.sp-inherents]319default-features = false320git = "https://github.com/paritytech/substrate"321branch = "polkadot-v0.9.30"322323[dependencies.sp-io]324default-features = false325git = "https://github.com/paritytech/substrate"326branch = "polkadot-v0.9.30"327328[dependencies.sp-offchain]329default-features = false330git = "https://github.com/paritytech/substrate"331branch = "polkadot-v0.9.30"332333[dependencies.sp-runtime]334default-features = false335git = "https://github.com/paritytech/substrate"336branch = "polkadot-v0.9.30"337338[dependencies.sp-session]339default-features = false340git = "https://github.com/paritytech/substrate"341branch = "polkadot-v0.9.30"342343[dependencies.sp-std]344default-features = false345git = "https://github.com/paritytech/substrate"346branch = "polkadot-v0.9.30"347348[dependencies.sp-transaction-pool]349default-features = false350git = "https://github.com/paritytech/substrate"351branch = "polkadot-v0.9.30"352353[dependencies.sp-version]354default-features = false355git = "https://github.com/paritytech/substrate"356branch = "polkadot-v0.9.30"357358[dependencies.smallvec]359version = '1.6.1'360361################################################################################362# Cumulus dependencies363364[dependencies.parachain-info]365default-features = false366git = "https://github.com/paritytech/cumulus"367branch = "polkadot-v0.9.30"368369[dependencies.cumulus-pallet-aura-ext]370git = "https://github.com/paritytech/cumulus"371branch = "polkadot-v0.9.30"372default-features = false373374[dependencies.cumulus-pallet-parachain-system]375git = "https://github.com/paritytech/cumulus"376branch = "polkadot-v0.9.30"377default-features = false378379[dependencies.cumulus-primitives-core]380git = "https://github.com/paritytech/cumulus"381branch = "polkadot-v0.9.30"382default-features = false383384[dependencies.cumulus-pallet-xcm]385git = "https://github.com/paritytech/cumulus"386branch = "polkadot-v0.9.30"387default-features = false388389[dependencies.cumulus-pallet-dmp-queue]390git = "https://github.com/paritytech/cumulus"391branch = "polkadot-v0.9.30"392default-features = false393394[dependencies.cumulus-pallet-xcmp-queue]395git = "https://github.com/paritytech/cumulus"396branch = "polkadot-v0.9.30"397default-features = false398399[dependencies.cumulus-primitives-utility]400git = "https://github.com/paritytech/cumulus"401branch = "polkadot-v0.9.30"402default-features = false403404[dependencies.cumulus-primitives-timestamp]405git = "https://github.com/paritytech/cumulus"406branch = "polkadot-v0.9.30"407default-features = false408409################################################################################410# Polkadot dependencies411412[dependencies.polkadot-parachain]413git = "https://github.com/paritytech/polkadot"414branch = "release-v0.9.30"415default-features = false416417[dependencies.xcm]418git = "https://github.com/paritytech/polkadot"419branch = "release-v0.9.30"420default-features = false421422[dependencies.xcm-builder]423git = "https://github.com/paritytech/polkadot"424branch = "release-v0.9.30"425default-features = false426427[dependencies.xcm-executor]428git = "https://github.com/paritytech/polkadot"429branch = "release-v0.9.30"430default-features = false431432[dependencies.pallet-xcm]433git = "https://github.com/paritytech/polkadot"434branch = "release-v0.9.30"435default-features = false436437################################################################################438# RMRK dependencies439440# todo git441[dependencies.rmrk-rpc]442default-features = false443path = "../../primitives/rmrk-rpc"444445################################################################################446# local dependencies447448[dependencies]449orml-vesting.workspace = true450orml-xtokens.workspace = true451orml-tokens.workspace = true452orml-traits.workspace = true453454log = { version = "0.4.16", default-features = false }455up-common = { path = "../../primitives/common", default-features = false }456scale-info = { version = "2.0.1", default-features = false, features = [457    "derive",458] }459derivative = "2.2.0"460pallet-unique = { path = '../../pallets/unique', default-features = false }461up-rpc = { path = "../../primitives/rpc", default-features = false }462app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }463fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }464pallet-inflation = { path = '../../pallets/inflation', default-features = false }465pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }466up-data-structs = { path = '../../primitives/data-structs', default-features = false }467pallet-configuration = { default-features = false, path = "../../pallets/configuration" }468pallet-common = { default-features = false, path = "../../pallets/common" }469pallet-structure = { default-features = false, path = "../../pallets/structure" }470pallet-fungible = { default-features = false, path = "../../pallets/fungible" }471pallet-refungible = { default-features = false, path = "../../pallets/refungible" }472pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }473pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }474pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }475pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }476# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }477pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.30", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }478pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }479pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }480pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }481pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }482pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }483pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }484pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }485fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }486fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }487evm-coder = { default-features = false, path = '../../crates/evm-coder' }488up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }489pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }490491################################################################################492# Other Dependencies493494impl-trait-for-tuples = "0.2.2"495496################################################################################497# Dev Dependencies498499[dev-dependencies.logtest]500version = "2.0.0"501502################################################################################503# Build Dependencies504505[build-dependencies.substrate-wasm-builder]506git = "https://github.com/paritytech/substrate"507branch = "polkadot-v0.9.30"
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -1,6 +1,8 @@
 ################################################################################
 # Package
 
+cargo-features = ["workspace-inheritance"]
+
 [package]
 authors = ['Unique Network <support@uniquenetwork.io>']
 build = 'build.rs'