difftreelog
chore remove unique-scheduler leftovers
in: master
10 files changed
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,5 @@
[workspace]
default-members = ['client/*', 'node/*', 'runtime/opal']
-exclude = ['pallets/scheduler-v2']
members = [
'client/*',
'crates/*',
@@ -54,7 +53,6 @@
pallet-structure = { default-features = false, path = "pallets/structure" }
pallet-test-utils = { default-features = false, path = "test-pallets/utils" }
pallet-unique = { path = "pallets/unique", default-features = false }
-# pallet-unique-scheduler-v2 = { path = "pallets/scheduler-v2", default-features = false }
precompile-utils-macro = { path = "runtime/common/ethereum/precompiles/utils/macro" }
struct-versioning = { path = "crates/struct-versioning" }
uc-rpc = { path = "client/rpc" }
Makefilediffbeforeafterboth--- a/Makefile
+++ b/Makefile
@@ -128,10 +128,6 @@
bench-structure:
make _bench PALLET=structure
-.PHONY: bench-scheduler
-bench-scheduler:
- make _bench PALLET=unique-scheduler-v2 PALLET_DIR=scheduler-v2
-
.PHONY: bench-foreign-assets
bench-foreign-assets:
make _bench PALLET=foreign-assets
@@ -157,7 +153,6 @@
make _bench PALLET=xcm OUTPUT=./runtime/common/weights/xcm.rs TEMPLATE="--template=.maintain/external-weight-template.hbs"
.PHONY: bench
-# Disabled: bench-scheduler
bench: bench-app-promotion bench-common bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-configuration bench-foreign-assets bench-maintenance bench-xcm bench-collator-selection bench-identity
.PHONY: check
runtime/common/config/pallets/mod.rsdiffbeforeafterboth--- a/runtime/common/config/pallets/mod.rs
+++ b/runtime/common/config/pallets/mod.rs
@@ -40,9 +40,6 @@
Balances, Runtime, RuntimeCall, RuntimeEvent, DECIMALS, TOKEN_SYMBOL, VERSION,
};
-#[cfg(feature = "unique-scheduler")]
-pub mod scheduler;
-
#[cfg(feature = "foreign-assets")]
pub mod foreign_asset;
runtime/common/config/pallets/scheduler.rsdiffbeforeafterboth--- a/runtime/common/config/pallets/scheduler.rs
+++ /dev/null
@@ -1,88 +0,0 @@
-// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
-// This file is part of Unique Network.
-
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// Unique Network is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
-
-use core::cmp::Ordering;
-
-use frame_support::{
- parameter_types,
- traits::{EnsureOrigin, PrivilegeCmp},
- weights::Weight,
-};
-use frame_system::{EnsureRoot, RawOrigin};
-use pallet_unique_scheduler_v2::ScheduledEnsureOriginSuccess;
-use parity_scale_codec::Decode;
-use sp_runtime::Perbill;
-use up_common::types::AccountId;
-
-use crate::{
- runtime_common::{config::substrate::RuntimeBlockWeights, scheduler::SchedulerPaymentExecutor},
- OriginCaller, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin,
-};
-
-parameter_types! {
- pub MaximumSchedulerWeight: Weight = Perbill::from_percent(50) *
- RuntimeBlockWeights::get().max_block;
- pub const MaxScheduledPerBlock: u32 = 50;
-
- pub const NoPreimagePostponement: Option<u32> = Some(10);
- pub const Preimage: Option<u32> = Some(10);
-}
-
-pub struct EnsureSignedOrRoot<AccountId>(sp_std::marker::PhantomData<AccountId>);
-impl<O: Into<Result<RawOrigin<AccountId>, O>> + From<RawOrigin<AccountId>>, AccountId: Decode>
- EnsureOrigin<O> for EnsureSignedOrRoot<AccountId>
-{
- type Success = ScheduledEnsureOriginSuccess<AccountId>;
- fn try_origin(o: O) -> Result<Self::Success, O> {
- o.into().and_then(|o| match o {
- RawOrigin::Root => Ok(ScheduledEnsureOriginSuccess::Root),
- RawOrigin::Signed(who) => Ok(ScheduledEnsureOriginSuccess::Signed(who)),
- r => Err(O::from(r)),
- })
- }
-}
-
-pub struct EqualOrRootOnly;
-impl PrivilegeCmp<OriginCaller> for EqualOrRootOnly {
- fn cmp_privilege(left: &OriginCaller, right: &OriginCaller) -> Option<Ordering> {
- use RawOrigin::*;
-
- let left = left.clone().try_into().ok()?;
- let right = right.clone().try_into().ok()?;
-
- match (left, right) {
- (Root, Root) => Some(Ordering::Equal),
- (Root, _) => Some(Ordering::Greater),
- (_, Root) => Some(Ordering::Less),
- lr @ _ => (lr.0 == lr.1).then(|| Ordering::Equal),
- }
- }
-}
-
-impl pallet_unique_scheduler_v2::Config for Runtime {
- type RuntimeEvent = RuntimeEvent;
- type RuntimeOrigin = RuntimeOrigin;
- type PalletsOrigin = OriginCaller;
- type RuntimeCall = RuntimeCall;
- type MaximumWeight = MaximumSchedulerWeight;
- type ScheduleOrigin = EnsureSignedOrRoot<AccountId>;
- type OriginPrivilegeCmp = EqualOrRootOnly;
- type MaxScheduledPerBlock = MaxScheduledPerBlock;
- type WeightInfo = ();
- type Preimages = ();
- type CallExecutor = SchedulerPaymentExecutor;
- type PrioritySetOrigin = EnsureRoot<AccountId>;
-}
runtime/common/maintenance.rsdiffbeforeafterboth--- a/runtime/common/maintenance.rs
+++ b/runtime/common/maintenance.rs
@@ -67,9 +67,6 @@
| RuntimeCall::Structure(_)
| RuntimeCall::Unique(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
- #[cfg(feature = "unique-scheduler")]
- RuntimeCall::Scheduler(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
-
#[cfg(feature = "app-promotion")]
RuntimeCall::AppPromotion(_) => {
Err(TransactionValidityError::Invalid(InvalidTransaction::Call))
runtime/common/mod.rsdiffbeforeafterboth--- a/runtime/common/mod.rs
+++ b/runtime/common/mod.rs
@@ -23,9 +23,6 @@
pub mod maintenance;
pub mod runtime_apis;
-#[cfg(feature = "unique-scheduler")]
-pub mod scheduler;
-
pub mod sponsoring;
#[allow(missing_docs)]
pub mod weights;
runtime/common/runtime_apis.rsdiffbeforeafterboth--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -548,9 +548,6 @@
#[cfg(feature = "refungible")]
list_benchmark!(list, extra, pallet_refungible, Refungible);
- #[cfg(feature = "unique-scheduler")]
- list_benchmark!(list, extra, pallet_unique_scheduler_v2, Scheduler);
-
#[cfg(feature = "collator-selection")]
list_benchmark!(list, extra, pallet_collator_selection, CollatorSelection);
@@ -613,9 +610,6 @@
#[cfg(feature = "refungible")]
add_benchmark!(params, batches, pallet_refungible, Refungible);
-
- #[cfg(feature = "unique-scheduler")]
- add_benchmark!(params, batches, pallet_unique_scheduler_v2, Scheduler);
#[cfg(feature = "collator-selection")]
add_benchmark!(params, batches, pallet_collator_selection, CollatorSelection);
runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -229,7 +229,6 @@
preimage = []
refungible = []
session-test-timings = []
-unique-scheduler = []
################################################################################
# local dependencies
runtime/quartz/Cargo.tomldiffbeforeafterboth1################################################################################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 '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 'parachain-info/try-runtime',214]215216app-promotion = []217collator-selection = []218foreign-assets = []219gov-test-timings = []220governance = []221preimage = []222refungible = []223session-test-timings = []224unique-scheduler = []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 }260parachain-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-transaction-pool = { workspace = true }276sp-version = { workspace = true }277staging-xcm = { workspace = true }278staging-xcm-builder = { workspace = true }279staging-xcm-executor = { workspace = true }280281app-promotion-rpc = { workspace = true }282derivative = { workspace = true }283fp-evm = { workspace = true }284log = { workspace = true }285pallet-app-promotion = { workspace = true }286pallet-balances-adapter = { workspace = true }287pallet-collator-selection = { workspace = true }288pallet-collective = { workspace = true }289pallet-common = { workspace = true }290pallet-configuration = { workspace = true }291pallet-democracy = { workspace = true }292pallet-fungible = { workspace = true }293pallet-gov-origins = { workspace = true }294pallet-identity = { workspace = true }295pallet-inflation = { workspace = true }296pallet-membership = { workspace = true }297pallet-nonfungible = { workspace = true }298pallet-ranked-collective = { workspace = true }299pallet-referenda = { workspace = true }300pallet-refungible = { workspace = true }301pallet-scheduler = { workspace = true }302pallet-structure = { workspace = true }303pallet-unique = { workspace = true }304scale-info = { workspace = true }305up-common = { workspace = true }306up-data-structs = { workspace = true }307up-pov-estimate-rpc = { workspace = true }308up-rpc = { workspace = true }309# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }310evm-coder = { workspace = true }311fp-rpc = { workspace = true }312fp-self-contained = { workspace = true }313num_enum = { version = "0.7.0", default-features = false }314pallet-base-fee = { workspace = true }315pallet-charge-transaction = { workspace = true }316pallet-ethereum = { workspace = true }317pallet-evm = { workspace = true }318pallet-evm-coder-substrate = { workspace = true }319pallet-evm-contract-helpers = { workspace = true }320pallet-evm-migration = { workspace = true }321pallet-evm-precompile-simple = { workspace = true }322pallet-evm-transaction-payment = { workspace = true }323pallet-foreign-assets = { workspace = true }324pallet-maintenance = { workspace = true }325precompile-utils-macro = { workspace = true }326up-sponsorship = { workspace = true }327328################################################################################329# Optional dependencies330331frame-benchmarking = { workspace = true, optional = true }332frame-system-benchmarking = { workspace = true, optional = true }333frame-try-runtime = { workspace = true, optional = true }334serde = { workspace = true, optional = true }335336337################################################################################338# Test dependencies339340pallet-test-utils = { workspace = true }341342################################################################################343# Other Dependencies344345hex-literal = { workspace = true }346impl-trait-for-tuples = { workspace = true }347348[build-dependencies]349substrate-wasm-builder = { workspace = true }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 '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 'parachain-info/try-runtime',214]215216app-promotion = []217collator-selection = []218foreign-assets = []219gov-test-timings = []220governance = []221preimage = []222refungible = []223session-test-timings = []224225################################################################################226# local dependencies227228[dependencies]229cumulus-pallet-aura-ext = { workspace = true }230cumulus-pallet-dmp-queue = { workspace = true }231cumulus-pallet-parachain-system = { workspace = true }232cumulus-pallet-xcm = { workspace = true }233cumulus-pallet-xcmp-queue = { workspace = true }234cumulus-primitives-core = { workspace = true }235cumulus-primitives-timestamp = { workspace = true }236cumulus-primitives-utility = { workspace = true }237frame-executive = { workspace = true }238frame-support = { workspace = true }239frame-system = { workspace = true }240frame-system-rpc-runtime-api = { workspace = true }241orml-tokens = { workspace = true }242orml-traits = { workspace = true }243orml-vesting = { workspace = true }244orml-xcm-support = { workspace = true }245orml-xtokens = { workspace = true }246pallet-aura = { workspace = true }247pallet-authorship = { workspace = true }248pallet-balances = { features = ["insecure_zero_ed"], workspace = true }249pallet-preimage = { workspace = true }250pallet-session = { workspace = true }251pallet-state-trie-migration = { workspace = true }252pallet-sudo = { workspace = true }253pallet-timestamp = { workspace = true }254pallet-transaction-payment = { workspace = true }255pallet-transaction-payment-rpc-runtime-api = { workspace = true }256pallet-treasury = { workspace = true }257pallet-utility = { workspace = true }258pallet-xcm = { workspace = true }259parachain-info = { workspace = true }260parity-scale-codec = { workspace = true }261polkadot-parachain-primitives = { workspace = true }262smallvec = { workspace = true }263sp-api = { workspace = true }264sp-arithmetic = { workspace = true }265sp-block-builder = { workspace = true }266sp-consensus-aura = { workspace = true }267sp-core = { workspace = true }268sp-inherents = { workspace = true }269sp-io = { workspace = true }270sp-offchain = { workspace = true }271sp-runtime = { workspace = true }272sp-session = { workspace = true }273sp-std = { workspace = true }274sp-transaction-pool = { workspace = true }275sp-version = { workspace = true }276staging-xcm = { workspace = true }277staging-xcm-builder = { workspace = true }278staging-xcm-executor = { workspace = true }279280app-promotion-rpc = { workspace = true }281derivative = { workspace = true }282fp-evm = { workspace = true }283log = { workspace = true }284pallet-app-promotion = { workspace = true }285pallet-balances-adapter = { workspace = true }286pallet-collator-selection = { workspace = true }287pallet-collective = { workspace = true }288pallet-common = { workspace = true }289pallet-configuration = { workspace = true }290pallet-democracy = { workspace = true }291pallet-fungible = { workspace = true }292pallet-gov-origins = { workspace = true }293pallet-identity = { workspace = true }294pallet-inflation = { workspace = true }295pallet-membership = { workspace = true }296pallet-nonfungible = { workspace = true }297pallet-ranked-collective = { workspace = true }298pallet-referenda = { workspace = true }299pallet-refungible = { workspace = true }300pallet-scheduler = { workspace = true }301pallet-structure = { workspace = true }302pallet-unique = { workspace = true }303scale-info = { workspace = true }304up-common = { workspace = true }305up-data-structs = { workspace = true }306up-pov-estimate-rpc = { workspace = true }307up-rpc = { workspace = true }308# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }309evm-coder = { workspace = true }310fp-rpc = { workspace = true }311fp-self-contained = { workspace = true }312num_enum = { version = "0.7.0", default-features = false }313pallet-base-fee = { workspace = true }314pallet-charge-transaction = { workspace = true }315pallet-ethereum = { workspace = true }316pallet-evm = { workspace = true }317pallet-evm-coder-substrate = { workspace = true }318pallet-evm-contract-helpers = { workspace = true }319pallet-evm-migration = { workspace = true }320pallet-evm-precompile-simple = { workspace = true }321pallet-evm-transaction-payment = { workspace = true }322pallet-foreign-assets = { workspace = true }323pallet-maintenance = { workspace = true }324precompile-utils-macro = { workspace = true }325up-sponsorship = { workspace = true }326327################################################################################328# Optional dependencies329330frame-benchmarking = { workspace = true, optional = true }331frame-system-benchmarking = { workspace = true, optional = true }332frame-try-runtime = { workspace = true, optional = true }333serde = { workspace = true, optional = true }334335336################################################################################337# Test dependencies338339pallet-test-utils = { workspace = true }340341################################################################################342# Other Dependencies343344hex-literal = { workspace = true }345impl-trait-for-tuples = { workspace = true }346347[build-dependencies]348substrate-wasm-builder = { workspace = true }runtime/unique/Cargo.tomldiffbeforeafterboth--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -224,7 +224,6 @@
preimage = []
refungible = []
session-test-timings = []
-unique-scheduler = []
################################################################################
# local dependencies