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

difftreelog

fix make check

Yaroslav Bolyukin2023-11-17parent: #7f81f6c.patch.diff
in: master

8 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -10160,6 +10160,7 @@
  "pallet-xcm",
  "parity-scale-codec",
  "polkadot-parachain-primitives",
+ "polkadot-runtime-common",
  "precompile-utils-macro",
  "scale-info",
  "serde",
@@ -15037,6 +15038,7 @@
  "pallet-xcm",
  "parity-scale-codec",
  "polkadot-parachain-primitives",
+ "polkadot-runtime-common",
  "precompile-utils-macro",
  "scale-info",
  "serde",
modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -131,13 +131,12 @@
 pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = "25.0.0" }
 pallet-treasury = { default-features = false, version = "24.0.0" }
 pallet-utility = { default-features = false, version = "25.0.0" }
-pallet-xcm = { default-features = false , version = "4.0.0" }
-staging-parachain-info = { default-features = false, version = "0.4.0" }
+pallet-xcm = { default-features = false, version = "4.0.0" }
 parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false }
 polkadot-cli = "4.0.0"
-polkadot-parachain-primitives = { default-features = false , version = "3.0.0" }
-polkadot-runtime-common = { default-features = false , version = "4.0.0" }
+polkadot-parachain-primitives = { default-features = false, version = "3.0.0" }
 polkadot-primitives = "4.0.0"
+polkadot-runtime-common = { default-features = false, version = "4.0.0" }
 polkadot-service = "4.0.0"
 sc-basic-authorship = "0.31.0"
 sc-chain-spec = "24.0.0"
@@ -179,9 +178,10 @@
 sp-trie = { default-features = false, version = "26.0.0" }
 sp-version = { default-features = false, version = "26.0.0" }
 sp-weights = { default-features = false, version = "24.0.0" }
-staging-xcm = { default-features = false , version = "4.0.0" }
-staging-xcm-builder = { default-features = false , version = "4.0.0" }
-staging-xcm-executor = { default-features = false , version = "4.0.0" }
+staging-parachain-info = { default-features = false, version = "0.4.0" }
+staging-xcm = { default-features = false, version = "4.0.0" }
+staging-xcm-builder = { default-features = false, version = "4.0.0" }
+staging-xcm-executor = { default-features = false, version = "4.0.0" }
 substrate-frame-rpc-system = "25.0.0"
 substrate-prometheus-endpoint = "0.16.0"
 
@@ -216,4 +216,3 @@
 num_enum = { version = "0.7.0", default-features = false }
 serde = { default-features = false, features = ['derive'], version = "1.0.188" }
 smallvec = "1.11.1"
-
modifiedpallets/inflation/Cargo.tomldiffbeforeafterboth
--- a/pallets/inflation/Cargo.toml
+++ b/pallets/inflation/Cargo.toml
@@ -16,6 +16,7 @@
 
 [features]
 default = ['std']
+fast-inflation = []
 runtime-benchmarks = ['frame-benchmarking']
 std = [
 	'frame-benchmarking/std',
@@ -27,7 +28,6 @@
 	'sp-std/std',
 ]
 try-runtime = ["frame-support/try-runtime"]
-fast-inflation = []
 
 [dependencies]
 parity-scale-codec = { workspace = true }
modifiedruntime/common/config/substrate.rsdiffbeforeafterboth
--- a/runtime/common/config/substrate.rs
+++ b/runtime/common/config/substrate.rs
@@ -241,6 +241,8 @@
 	type Paymaster = PayFromAccount<Balances, TreasuryAccount>;
 	type BalanceConverter = UnityAssetBalanceConversion;
 	type PayoutPeriod = ConstU32<10>;
+	#[cfg(feature = "runtime-benchmarks")]
+	type BenchmarkHelper = ();
 }
 
 impl pallet_sudo::Config for Runtime {
modifiedruntime/common/tests/xcm.rsdiffbeforeafterboth
--- a/runtime/common/tests/xcm.rs
+++ b/runtime/common/tests/xcm.rs
@@ -37,7 +37,7 @@
 			Box::new(VersionedXcm::from(Xcm(vec![Transact {
 				origin_kind: OriginKind::Native,
 				require_weight_at_most: Weight::from_parts(1000, 1000),
-				call: RuntimeCall::Balances(pallet_balances::Call::<Runtime>::transfer {
+				call: RuntimeCall::Balances(pallet_balances::Call::<Runtime>::transfer_keep_alive {
 					dest: BOB.into(),
 					value: INITIAL_BALANCE / 2,
 				})
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -61,6 +61,7 @@
 	'pallet-unique/runtime-benchmarks',
 	'pallet-utility/runtime-benchmarks',
 	'pallet-xcm/runtime-benchmarks',
+	'polkadot-runtime-common/runtime-benchmarks',
 	'sp-runtime/runtime-benchmarks',
 	'staging-xcm-builder/runtime-benchmarks',
 ]
@@ -126,7 +127,6 @@
 	'pallet-treasury/std',
 	'pallet-unique/std',
 	'pallet-utility/std',
-	'staging-parachain-info/std',
 	'polkadot-runtime-common/std',
 	'serde',
 	'sp-api/std',
@@ -141,6 +141,7 @@
 	'sp-storage/std',
 	'sp-transaction-pool/std',
 	'sp-version/std',
+	'staging-parachain-info/std',
 	'staging-xcm-builder/std',
 	'staging-xcm-executor/std',
 	'staging-xcm/std',
@@ -221,12 +222,13 @@
 	'pallet-unique/try-runtime',
 	'pallet-utility/try-runtime',
 	'pallet-xcm/try-runtime',
+	'polkadot-runtime-common/try-runtime',
 	'staging-parachain-info/try-runtime',
-	'polkadot-runtime-common/try-runtime',
 ]
 
 app-promotion = []
 collator-selection = []
+fast-inflation = []
 foreign-assets = []
 gov-test-timings = []
 governance = []
@@ -234,7 +236,6 @@
 preimage = []
 refungible = []
 session-test-timings = []
-fast-inflation = []
 
 ################################################################################
 # local dependencies
@@ -271,7 +272,6 @@
 pallet-treasury = { workspace = true }
 pallet-utility = { workspace = true }
 pallet-xcm = { workspace = true }
-staging-parachain-info = { workspace = true }
 parity-scale-codec = { workspace = true }
 polkadot-parachain-primitives = { workspace = true }
 polkadot-runtime-common = { workspace = true }
@@ -290,6 +290,7 @@
 sp-storage = { workspace = true }
 sp-transaction-pool = { workspace = true }
 sp-version = { workspace = true }
+staging-parachain-info = { workspace = true }
 staging-xcm = { workspace = true }
 staging-xcm-builder = { workspace = true }
 staging-xcm-executor = { workspace = true }
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.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19become-sapphire = []20default = ['quartz-runtime', 'std']21limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']22pov-estimate = []23quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'governance', 'preimage', 'refungible']24runtime-benchmarks = [25	"pallet-preimage/runtime-benchmarks",26	'cumulus-pallet-parachain-system/runtime-benchmarks',27	'frame-benchmarking',28	'frame-support/runtime-benchmarks',29	'frame-system-benchmarking',30	'frame-system/runtime-benchmarks',31	'pallet-app-promotion/runtime-benchmarks',32	'pallet-balances/runtime-benchmarks',33	'pallet-collator-selection/runtime-benchmarks',34	'pallet-collective/runtime-benchmarks',35	'pallet-collective/runtime-benchmarks',36	'pallet-common/runtime-benchmarks',37	'pallet-configuration/runtime-benchmarks',38	'pallet-democracy/runtime-benchmarks',39	'pallet-democracy/runtime-benchmarks',40	'pallet-ethereum/runtime-benchmarks',41	'pallet-evm-coder-substrate/runtime-benchmarks',42	'pallet-evm-migration/runtime-benchmarks',43	'pallet-foreign-assets/runtime-benchmarks',44	'pallet-fungible/runtime-benchmarks',45	'pallet-identity/runtime-benchmarks',46	'pallet-inflation/runtime-benchmarks',47	'pallet-maintenance/runtime-benchmarks',48	'pallet-membership/runtime-benchmarks',49	'pallet-membership/runtime-benchmarks',50	'pallet-nonfungible/runtime-benchmarks',51	'pallet-ranked-collective/runtime-benchmarks',52	'pallet-referenda/runtime-benchmarks',53	'pallet-refungible/runtime-benchmarks',54	'pallet-scheduler/runtime-benchmarks',55	'pallet-scheduler/runtime-benchmarks',56	'pallet-structure/runtime-benchmarks',57	'pallet-timestamp/runtime-benchmarks',58	'pallet-unique/runtime-benchmarks',59	'pallet-utility/runtime-benchmarks',60	'pallet-xcm/runtime-benchmarks',61	'sp-runtime/runtime-benchmarks',62	'staging-xcm-builder/runtime-benchmarks',63]64std = [65	'cumulus-pallet-aura-ext/std',66	'cumulus-pallet-parachain-system/std',67	'cumulus-pallet-xcm/std',68	'cumulus-pallet-xcmp-queue/std',69	'cumulus-primitives-core/std',70	'cumulus-primitives-utility/std',71	'frame-executive/std',72	'frame-support/std',73	'frame-system-rpc-runtime-api/std',74	'frame-system/std',75	'frame-try-runtime/std',76	'pallet-aura/std',77	'pallet-balances-adapter/std',78	'pallet-balances/std',79	'pallet-collective/std',80	'pallet-democracy/std',81	'pallet-membership/std',82	'pallet-scheduler/std',83	'parity-scale-codec/std',84	# 'pallet-contracts/std',85	# 'pallet-contracts-primitives/std',86	# 'pallet-contracts-rpc-runtime-api/std',87	# 'pallet-contract-helpers/std',88	"pallet-authorship/std",89	"pallet-identity/std",90	"pallet-preimage/std",91	"pallet-session/std",92	"pallet-state-trie-migration/std",93	"sp-consensus-aura/std",94	'app-promotion-rpc/std',95	'evm-coder/std',96	'fp-rpc/std',97	'fp-self-contained/std',98	'pallet-app-promotion/std',99	'pallet-base-fee/std',100	'pallet-charge-transaction/std',101	'pallet-collator-selection/std',102	'pallet-collective/std',103	'pallet-common/std',104	'pallet-configuration/std',105	'pallet-democracy/std',106	'pallet-ethereum/std',107	'pallet-evm-coder-substrate/std',108	'pallet-evm-contract-helpers/std',109	'pallet-evm-migration/std',110	'pallet-evm-transaction-payment/std',111	'pallet-evm/std',112	'pallet-fungible/std',113	'pallet-gov-origins/std',114	'pallet-inflation/std',115	'pallet-membership/std',116	'pallet-nonfungible/std',117	'pallet-ranked-collective/std',118	'pallet-referenda/std',119	'pallet-refungible/std',120	'pallet-scheduler/std',121	'pallet-structure/std',122	'pallet-sudo/std',123	'pallet-timestamp/std',124	'pallet-transaction-payment-rpc-runtime-api/std',125	'pallet-transaction-payment/std',126	'pallet-treasury/std',127	'pallet-unique/std',128	'pallet-utility/std',129	'staging-parachain-info/std',130	'serde',131	'sp-api/std',132	'sp-block-builder/std',133	'sp-core/std',134	'sp-inherents/std',135	'sp-io/std',136	'sp-offchain/std',137	'sp-runtime/std',138	'sp-session/std',139	'sp-std/std',140	'sp-transaction-pool/std',141	'sp-version/std',142	'staging-xcm-builder/std',143	'staging-xcm-executor/std',144	'staging-xcm/std',145	'up-common/std',146	'up-data-structs/std',147	'up-pov-estimate-rpc/std',148	'up-rpc/std',149	'up-sponsorship/std',150151	"orml-tokens/std",152	"orml-traits/std",153	"orml-vesting/std",154	"orml-xcm-support/std",155	"orml-xtokens/std",156	"pallet-foreign-assets/std",157	"pallet-maintenance/std",158]159try-runtime = [160	"pallet-authorship/try-runtime",161	"pallet-collator-selection/try-runtime",162	"pallet-identity/try-runtime",163	"pallet-preimage/try-runtime",164	"pallet-session/try-runtime",165	"pallet-state-trie-migration/try-runtime",166	'cumulus-pallet-aura-ext/try-runtime',167	'cumulus-pallet-dmp-queue/try-runtime',168	'cumulus-pallet-parachain-system/try-runtime',169	'cumulus-pallet-xcm/try-runtime',170	'cumulus-pallet-xcmp-queue/try-runtime',171	'fp-self-contained/try-runtime',172	'frame-executive/try-runtime',173	'frame-support/try-runtime',174	'frame-system/try-runtime',175	'frame-try-runtime',176	'orml-tokens/try-runtime',177	'orml-vesting/try-runtime',178	'orml-xtokens/try-runtime',179	'pallet-app-promotion/try-runtime',180	'pallet-aura/try-runtime',181	'pallet-balances-adapter/try-runtime',182	'pallet-balances/try-runtime',183	'pallet-charge-transaction/try-runtime',184	'pallet-collective/try-runtime',185	'pallet-common/try-runtime',186	'pallet-configuration/try-runtime',187	'pallet-democracy/try-runtime',188	'pallet-ethereum/try-runtime',189	'pallet-evm-coder-substrate/try-runtime',190	'pallet-evm-contract-helpers/try-runtime',191	'pallet-evm-migration/try-runtime',192	'pallet-evm-transaction-payment/try-runtime',193	'pallet-evm/try-runtime',194	'pallet-foreign-assets/try-runtime',195	'pallet-fungible/try-runtime',196	'pallet-gov-origins/try-runtime',197	'pallet-inflation/try-runtime',198	'pallet-maintenance/try-runtime',199	'pallet-membership/try-runtime',200	'pallet-nonfungible/try-runtime',201	'pallet-ranked-collective/try-runtime',202	'pallet-referenda/try-runtime',203	'pallet-refungible/try-runtime',204	'pallet-scheduler/try-runtime',205	'pallet-structure/try-runtime',206	'pallet-sudo/try-runtime',207	'pallet-timestamp/try-runtime',208	'pallet-transaction-payment/try-runtime',209	'pallet-treasury/try-runtime',210	'pallet-unique/try-runtime',211	'pallet-utility/try-runtime',212	'pallet-xcm/try-runtime',213	'staging-parachain-info/try-runtime',214]215216app-promotion = []217collator-selection = []218foreign-assets = []219gov-test-timings = []220governance = []221preimage = []222refungible = []223session-test-timings = []224fast-inflation = []225226################################################################################227# local dependencies228229[dependencies]230cumulus-pallet-aura-ext = { workspace = true }231cumulus-pallet-dmp-queue = { workspace = true }232cumulus-pallet-parachain-system = { workspace = true }233cumulus-pallet-xcm = { workspace = true }234cumulus-pallet-xcmp-queue = { workspace = true }235cumulus-primitives-core = { workspace = true }236cumulus-primitives-timestamp = { workspace = true }237cumulus-primitives-utility = { workspace = true }238frame-executive = { workspace = true }239frame-support = { workspace = true }240frame-system = { workspace = true }241frame-system-rpc-runtime-api = { workspace = true }242orml-tokens = { workspace = true }243orml-traits = { workspace = true }244orml-vesting = { workspace = true }245orml-xcm-support = { workspace = true }246orml-xtokens = { workspace = true }247pallet-aura = { workspace = true }248pallet-authorship = { workspace = true }249pallet-balances = { features = ["insecure_zero_ed"], workspace = true }250pallet-preimage = { workspace = true }251pallet-session = { workspace = true }252pallet-state-trie-migration = { workspace = true }253pallet-sudo = { workspace = true }254pallet-timestamp = { workspace = true }255pallet-transaction-payment = { workspace = true }256pallet-transaction-payment-rpc-runtime-api = { workspace = true }257pallet-treasury = { workspace = true }258pallet-utility = { workspace = true }259pallet-xcm = { workspace = true }260staging-parachain-info = { workspace = true }261parity-scale-codec = { workspace = true }262polkadot-parachain-primitives = { workspace = true }263smallvec = { workspace = true }264sp-api = { workspace = true }265sp-arithmetic = { workspace = true }266sp-block-builder = { workspace = true }267sp-consensus-aura = { workspace = true }268sp-core = { workspace = true }269sp-inherents = { workspace = true }270sp-io = { workspace = true }271sp-offchain = { workspace = true }272sp-runtime = { workspace = true }273sp-session = { workspace = true }274sp-std = { workspace = true }275sp-storage = { workspace = true }276sp-transaction-pool = { workspace = true }277sp-version = { workspace = true }278staging-xcm = { workspace = true }279staging-xcm-builder = { workspace = true }280staging-xcm-executor = { workspace = true }281282app-promotion-rpc = { workspace = true }283derivative = { workspace = true }284fp-evm = { workspace = true }285log = { workspace = true }286pallet-app-promotion = { workspace = true }287pallet-balances-adapter = { workspace = true }288pallet-collator-selection = { workspace = true }289pallet-collective = { workspace = true }290pallet-common = { workspace = true }291pallet-configuration = { workspace = true }292pallet-democracy = { workspace = true }293pallet-fungible = { workspace = true }294pallet-gov-origins = { workspace = true }295pallet-identity = { workspace = true }296pallet-inflation = { workspace = true }297pallet-membership = { workspace = true }298pallet-nonfungible = { workspace = true }299pallet-ranked-collective = { workspace = true }300pallet-referenda = { workspace = true }301pallet-refungible = { workspace = true }302pallet-scheduler = { workspace = true }303pallet-structure = { workspace = true }304pallet-unique = { workspace = true }305scale-info = { workspace = true }306up-common = { workspace = true }307up-data-structs = { workspace = true }308up-pov-estimate-rpc = { workspace = true }309up-rpc = { workspace = true }310# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }311evm-coder = { workspace = true }312fp-rpc = { workspace = true }313fp-self-contained = { workspace = true }314num_enum = { version = "0.7.0", default-features = false }315pallet-base-fee = { workspace = true }316pallet-charge-transaction = { workspace = true }317pallet-ethereum = { workspace = true }318pallet-evm = { workspace = true }319pallet-evm-coder-substrate = { workspace = true }320pallet-evm-contract-helpers = { workspace = true }321pallet-evm-migration = { workspace = true }322pallet-evm-precompile-simple = { workspace = true }323pallet-evm-transaction-payment = { workspace = true }324pallet-foreign-assets = { workspace = true }325pallet-maintenance = { workspace = true }326precompile-utils-macro = { workspace = true }327up-sponsorship = { workspace = true }328329################################################################################330# Optional dependencies331332frame-benchmarking = { workspace = true, optional = true }333frame-system-benchmarking = { workspace = true, optional = true }334frame-try-runtime = { workspace = true, optional = true }335serde = { workspace = true, optional = true }336337338################################################################################339# Test dependencies340341pallet-test-utils = { workspace = true }342343################################################################################344# Other Dependencies345346hex-literal = { workspace = true }347impl-trait-for-tuples = { workspace = true }348349[build-dependencies]350substrate-wasm-builder = { workspace = true }
after · 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.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19become-sapphire = []20default = ['quartz-runtime', 'std']21limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']22pov-estimate = []23quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'governance', 'preimage', 'refungible']24runtime-benchmarks = [25	"pallet-preimage/runtime-benchmarks",26	'cumulus-pallet-parachain-system/runtime-benchmarks',27	'frame-benchmarking',28	'frame-support/runtime-benchmarks',29	'frame-system-benchmarking',30	'frame-system/runtime-benchmarks',31	'pallet-app-promotion/runtime-benchmarks',32	'pallet-balances/runtime-benchmarks',33	'pallet-collator-selection/runtime-benchmarks',34	'pallet-collective/runtime-benchmarks',35	'pallet-collective/runtime-benchmarks',36	'pallet-common/runtime-benchmarks',37	'pallet-configuration/runtime-benchmarks',38	'pallet-democracy/runtime-benchmarks',39	'pallet-democracy/runtime-benchmarks',40	'pallet-ethereum/runtime-benchmarks',41	'pallet-evm-coder-substrate/runtime-benchmarks',42	'pallet-evm-migration/runtime-benchmarks',43	'pallet-foreign-assets/runtime-benchmarks',44	'pallet-fungible/runtime-benchmarks',45	'pallet-identity/runtime-benchmarks',46	'pallet-inflation/runtime-benchmarks',47	'pallet-maintenance/runtime-benchmarks',48	'pallet-membership/runtime-benchmarks',49	'pallet-membership/runtime-benchmarks',50	'pallet-nonfungible/runtime-benchmarks',51	'pallet-ranked-collective/runtime-benchmarks',52	'pallet-referenda/runtime-benchmarks',53	'pallet-refungible/runtime-benchmarks',54	'pallet-scheduler/runtime-benchmarks',55	'pallet-scheduler/runtime-benchmarks',56	'pallet-structure/runtime-benchmarks',57	'pallet-timestamp/runtime-benchmarks',58	'pallet-unique/runtime-benchmarks',59	'pallet-utility/runtime-benchmarks',60	'pallet-xcm/runtime-benchmarks',61	'polkadot-runtime-common/runtime-benchmarks',62	'sp-runtime/runtime-benchmarks',63	'staging-xcm-builder/runtime-benchmarks',64]65std = [66	'cumulus-pallet-aura-ext/std',67	'cumulus-pallet-parachain-system/std',68	'cumulus-pallet-xcm/std',69	'cumulus-pallet-xcmp-queue/std',70	'cumulus-primitives-core/std',71	'cumulus-primitives-utility/std',72	'frame-executive/std',73	'frame-support/std',74	'frame-system-rpc-runtime-api/std',75	'frame-system/std',76	'frame-try-runtime/std',77	'pallet-aura/std',78	'pallet-balances-adapter/std',79	'pallet-balances/std',80	'pallet-collective/std',81	'pallet-democracy/std',82	'pallet-membership/std',83	'pallet-scheduler/std',84	'parity-scale-codec/std',85	# 'pallet-contracts/std',86	# 'pallet-contracts-primitives/std',87	# 'pallet-contracts-rpc-runtime-api/std',88	# 'pallet-contract-helpers/std',89	"pallet-authorship/std",90	"pallet-identity/std",91	"pallet-preimage/std",92	"pallet-session/std",93	"pallet-state-trie-migration/std",94	"sp-consensus-aura/std",95	'app-promotion-rpc/std',96	'evm-coder/std',97	'fp-rpc/std',98	'fp-self-contained/std',99	'pallet-app-promotion/std',100	'pallet-base-fee/std',101	'pallet-charge-transaction/std',102	'pallet-collator-selection/std',103	'pallet-collective/std',104	'pallet-common/std',105	'pallet-configuration/std',106	'pallet-democracy/std',107	'pallet-ethereum/std',108	'pallet-evm-coder-substrate/std',109	'pallet-evm-contract-helpers/std',110	'pallet-evm-migration/std',111	'pallet-evm-transaction-payment/std',112	'pallet-evm/std',113	'pallet-fungible/std',114	'pallet-gov-origins/std',115	'pallet-inflation/std',116	'pallet-membership/std',117	'pallet-nonfungible/std',118	'pallet-ranked-collective/std',119	'pallet-referenda/std',120	'pallet-refungible/std',121	'pallet-scheduler/std',122	'pallet-structure/std',123	'pallet-sudo/std',124	'pallet-timestamp/std',125	'pallet-transaction-payment-rpc-runtime-api/std',126	'pallet-transaction-payment/std',127	'pallet-treasury/std',128	'pallet-unique/std',129	'pallet-utility/std',130	'polkadot-runtime-common/std',131	'serde',132	'sp-api/std',133	'sp-block-builder/std',134	'sp-core/std',135	'sp-inherents/std',136	'sp-io/std',137	'sp-offchain/std',138	'sp-runtime/std',139	'sp-session/std',140	'sp-std/std',141	'sp-transaction-pool/std',142	'sp-version/std',143	'staging-parachain-info/std',144	'staging-xcm-builder/std',145	'staging-xcm-executor/std',146	'staging-xcm/std',147	'up-common/std',148	'up-data-structs/std',149	'up-pov-estimate-rpc/std',150	'up-rpc/std',151	'up-sponsorship/std',152153	"orml-tokens/std",154	"orml-traits/std",155	"orml-vesting/std",156	"orml-xcm-support/std",157	"orml-xtokens/std",158	"pallet-foreign-assets/std",159	"pallet-maintenance/std",160]161try-runtime = [162	"pallet-authorship/try-runtime",163	"pallet-collator-selection/try-runtime",164	"pallet-identity/try-runtime",165	"pallet-preimage/try-runtime",166	"pallet-session/try-runtime",167	"pallet-state-trie-migration/try-runtime",168	'cumulus-pallet-aura-ext/try-runtime',169	'cumulus-pallet-dmp-queue/try-runtime',170	'cumulus-pallet-parachain-system/try-runtime',171	'cumulus-pallet-xcm/try-runtime',172	'cumulus-pallet-xcmp-queue/try-runtime',173	'fp-self-contained/try-runtime',174	'frame-executive/try-runtime',175	'frame-support/try-runtime',176	'frame-system/try-runtime',177	'frame-try-runtime',178	'orml-tokens/try-runtime',179	'orml-vesting/try-runtime',180	'orml-xtokens/try-runtime',181	'pallet-app-promotion/try-runtime',182	'pallet-aura/try-runtime',183	'pallet-balances-adapter/try-runtime',184	'pallet-balances/try-runtime',185	'pallet-charge-transaction/try-runtime',186	'pallet-collective/try-runtime',187	'pallet-common/try-runtime',188	'pallet-configuration/try-runtime',189	'pallet-democracy/try-runtime',190	'pallet-ethereum/try-runtime',191	'pallet-evm-coder-substrate/try-runtime',192	'pallet-evm-contract-helpers/try-runtime',193	'pallet-evm-migration/try-runtime',194	'pallet-evm-transaction-payment/try-runtime',195	'pallet-evm/try-runtime',196	'pallet-foreign-assets/try-runtime',197	'pallet-fungible/try-runtime',198	'pallet-gov-origins/try-runtime',199	'pallet-inflation/try-runtime',200	'pallet-maintenance/try-runtime',201	'pallet-membership/try-runtime',202	'pallet-nonfungible/try-runtime',203	'pallet-ranked-collective/try-runtime',204	'pallet-referenda/try-runtime',205	'pallet-refungible/try-runtime',206	'pallet-scheduler/try-runtime',207	'pallet-structure/try-runtime',208	'pallet-sudo/try-runtime',209	'pallet-timestamp/try-runtime',210	'pallet-transaction-payment/try-runtime',211	'pallet-treasury/try-runtime',212	'pallet-unique/try-runtime',213	'pallet-utility/try-runtime',214	'pallet-xcm/try-runtime',215	'polkadot-runtime-common/try-runtime',216	'staging-parachain-info/try-runtime',217]218219app-promotion = []220collator-selection = []221fast-inflation = []222foreign-assets = []223gov-test-timings = []224governance = []225preimage = []226refungible = []227session-test-timings = []228229################################################################################230# local dependencies231232[dependencies]233cumulus-pallet-aura-ext = { workspace = true }234cumulus-pallet-dmp-queue = { workspace = true }235cumulus-pallet-parachain-system = { workspace = true }236cumulus-pallet-xcm = { workspace = true }237cumulus-pallet-xcmp-queue = { workspace = true }238cumulus-primitives-core = { workspace = true }239cumulus-primitives-timestamp = { workspace = true }240cumulus-primitives-utility = { workspace = true }241frame-executive = { workspace = true }242frame-support = { workspace = true }243frame-system = { workspace = true }244frame-system-rpc-runtime-api = { workspace = true }245orml-tokens = { workspace = true }246orml-traits = { workspace = true }247orml-vesting = { workspace = true }248orml-xcm-support = { workspace = true }249orml-xtokens = { workspace = true }250pallet-aura = { workspace = true }251pallet-authorship = { workspace = true }252pallet-balances = { features = ["insecure_zero_ed"], workspace = true }253pallet-preimage = { workspace = true }254pallet-session = { workspace = true }255pallet-state-trie-migration = { workspace = true }256pallet-sudo = { workspace = true }257pallet-timestamp = { workspace = true }258pallet-transaction-payment = { workspace = true }259pallet-transaction-payment-rpc-runtime-api = { workspace = true }260pallet-treasury = { workspace = true }261pallet-utility = { workspace = true }262pallet-xcm = { workspace = true }263parity-scale-codec = { workspace = true }264polkadot-parachain-primitives = { workspace = true }265polkadot-runtime-common = { workspace = true }266smallvec = { workspace = true }267sp-api = { workspace = true }268sp-arithmetic = { workspace = true }269sp-block-builder = { workspace = true }270sp-consensus-aura = { workspace = true }271sp-core = { workspace = true }272sp-inherents = { workspace = true }273sp-io = { workspace = true }274sp-offchain = { workspace = true }275sp-runtime = { workspace = true }276sp-session = { workspace = true }277sp-std = { workspace = true }278sp-storage = { workspace = true }279sp-transaction-pool = { workspace = true }280sp-version = { workspace = true }281staging-parachain-info = { workspace = true }282staging-xcm = { workspace = true }283staging-xcm-builder = { workspace = true }284staging-xcm-executor = { workspace = true }285286app-promotion-rpc = { workspace = true }287derivative = { workspace = true }288fp-evm = { workspace = true }289log = { workspace = true }290pallet-app-promotion = { workspace = true }291pallet-balances-adapter = { workspace = true }292pallet-collator-selection = { workspace = true }293pallet-collective = { workspace = true }294pallet-common = { workspace = true }295pallet-configuration = { workspace = true }296pallet-democracy = { workspace = true }297pallet-fungible = { workspace = true }298pallet-gov-origins = { workspace = true }299pallet-identity = { workspace = true }300pallet-inflation = { workspace = true }301pallet-membership = { workspace = true }302pallet-nonfungible = { workspace = true }303pallet-ranked-collective = { workspace = true }304pallet-referenda = { workspace = true }305pallet-refungible = { workspace = true }306pallet-scheduler = { workspace = true }307pallet-structure = { workspace = true }308pallet-unique = { workspace = true }309scale-info = { workspace = true }310up-common = { workspace = true }311up-data-structs = { workspace = true }312up-pov-estimate-rpc = { workspace = true }313up-rpc = { workspace = true }314# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }315evm-coder = { workspace = true }316fp-rpc = { workspace = true }317fp-self-contained = { workspace = true }318num_enum = { version = "0.7.0", default-features = false }319pallet-base-fee = { workspace = true }320pallet-charge-transaction = { workspace = true }321pallet-ethereum = { workspace = true }322pallet-evm = { workspace = true }323pallet-evm-coder-substrate = { workspace = true }324pallet-evm-contract-helpers = { workspace = true }325pallet-evm-migration = { workspace = true }326pallet-evm-precompile-simple = { workspace = true }327pallet-evm-transaction-payment = { workspace = true }328pallet-foreign-assets = { workspace = true }329pallet-maintenance = { workspace = true }330precompile-utils-macro = { workspace = true }331up-sponsorship = { workspace = true }332333################################################################################334# Optional dependencies335336frame-benchmarking = { workspace = true, optional = true }337frame-system-benchmarking = { workspace = true, optional = true }338frame-try-runtime = { workspace = true, optional = true }339serde = { workspace = true, optional = true }340341342################################################################################343# Test dependencies344345pallet-test-utils = { workspace = true }346347################################################################################348# Other Dependencies349350hex-literal = { workspace = true }351impl-trait-for-tuples = { workspace = true }352353[build-dependencies]354substrate-wasm-builder = { workspace = true }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -55,6 +55,7 @@
 	'pallet-unique/runtime-benchmarks',
 	'pallet-utility/runtime-benchmarks',
 	'pallet-xcm/runtime-benchmarks',
+	'polkadot-runtime-common/runtime-benchmarks',
 	'sp-runtime/runtime-benchmarks',
 	'staging-xcm-builder/runtime-benchmarks',
 	'up-data-structs/runtime-benchmarks',
@@ -124,7 +125,7 @@
 	'pallet-treasury/std',
 	'pallet-unique/std',
 	'pallet-utility/std',
-	'staging-parachain-info/std',
+	'polkadot-runtime-common/std',
 	'sp-api/std',
 	'sp-block-builder/std',
 	'sp-core/std',
@@ -136,6 +137,7 @@
 	'sp-std/std',
 	'sp-transaction-pool/std',
 	'sp-version/std',
+	'staging-parachain-info/std',
 	'staging-xcm-builder/std',
 	'staging-xcm-executor/std',
 	'staging-xcm/std',
@@ -212,19 +214,20 @@
 	'pallet-unique/try-runtime',
 	'pallet-utility/try-runtime',
 	'pallet-xcm/try-runtime',
+	'polkadot-runtime-common/try-runtime',
 	'staging-parachain-info/try-runtime',
 ]
-unique-runtime = ['app-promotion', 'foreign-assets', 'refungible', 'governance', 'preimage']
+unique-runtime = ['app-promotion', 'foreign-assets', 'governance', 'preimage', 'refungible']
 
 app-promotion = []
 collator-selection = []
+fast-inflation = []
 foreign-assets = []
 gov-test-timings = []
 governance = []
 preimage = []
 refungible = []
 session-test-timings = []
-fast-inflation = []
 
 ################################################################################
 # local dependencies
@@ -260,9 +263,9 @@
 pallet-treasury = { workspace = true }
 pallet-utility = { workspace = true }
 pallet-xcm = { workspace = true }
-staging-parachain-info = { workspace = true }
 parity-scale-codec = { workspace = true }
 polkadot-parachain-primitives = { workspace = true }
+polkadot-runtime-common = { workspace = true }
 smallvec = { workspace = true }
 sp-api = { workspace = true }
 sp-arithmetic = { workspace = true }
@@ -278,6 +281,7 @@
 sp-storage = { workspace = true }
 sp-transaction-pool = { workspace = true }
 sp-version = { workspace = true }
+staging-parachain-info = { workspace = true }
 staging-xcm = { workspace = true }
 staging-xcm-builder = { workspace = true }
 staging-xcm-executor = { workspace = true }