difftreelog
build enable cargo workspace-inheritance
in: master
5 files changed
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,3 +1,5 @@
+cargo-features = ["workspace-inheritance"]
+
[workspace]
resolver = "2"
members = [
pallets/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']
runtime/opal/Cargo.tomldiffbeforeafterboth1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Opal Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'opal-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', 'opal-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-foreign-assets/runtime-benchmarks',39 'pallet-unique/runtime-benchmarks',40 'pallet-inflation/runtime-benchmarks',41 'pallet-app-promotion/runtime-benchmarks',42 'pallet-unique-scheduler/runtime-benchmarks',43 'pallet-xcm/runtime-benchmarks',44 'sp-runtime/runtime-benchmarks',45 'xcm-builder/runtime-benchmarks',46]47try-runtime = [48 'frame-try-runtime',49 'frame-executive/try-runtime',50 'frame-support/try-runtime',51 'frame-system/try-runtime',52 'cumulus-pallet-parachain-system/try-runtime',53 'parachain-info/try-runtime',54 'pallet-aura/try-runtime',55 'cumulus-pallet-aura-ext/try-runtime',56 'pallet-balances/try-runtime',57 'pallet-randomness-collective-flip/try-runtime',58 'pallet-timestamp/try-runtime',59 'pallet-transaction-payment/try-runtime',60 'pallet-treasury/try-runtime',61 'pallet-sudo/try-runtime',62 'orml-vesting/try-runtime',63 'orml-xtokens/try-runtime',64 'orml-tokens/try-runtime',65 'cumulus-pallet-xcmp-queue/try-runtime',66 'pallet-xcm/try-runtime',67 'cumulus-pallet-xcm/try-runtime',68 'cumulus-pallet-dmp-queue/try-runtime',69 'pallet-inflation/try-runtime',70 'pallet-unique/try-runtime',71 'pallet-unique-scheduler/try-runtime',72 'pallet-configuration/try-runtime',73 'pallet-charge-transaction/try-runtime',74 'pallet-common/try-runtime',75 'pallet-fungible/try-runtime',76 'pallet-refungible/try-runtime',77 'pallet-nonfungible/try-runtime',78 'pallet-structure/try-runtime',79 'pallet-proxy-rmrk-core/try-runtime',80 'pallet-proxy-rmrk-equip/try-runtime',81 'pallet-app-promotion/try-runtime',82 'pallet-foreign-assets/try-runtime',83 'pallet-evm/try-runtime',84 'pallet-ethereum/try-runtime',85 'pallet-evm-coder-substrate/try-runtime',86 'pallet-evm-contract-helpers/try-runtime',87 'pallet-evm-transaction-payment/try-runtime',88 'pallet-evm-migration/try-runtime',89]90std = [91 'codec/std',92 'cumulus-pallet-aura-ext/std',93 'cumulus-pallet-parachain-system/std',94 'cumulus-pallet-xcm/std',95 'cumulus-pallet-xcmp-queue/std',96 'cumulus-primitives-core/std',97 'cumulus-primitives-utility/std',98 'frame-try-runtime/std',99 'frame-executive/std',100 'frame-support/std',101 'frame-system/std',102 'frame-system-rpc-runtime-api/std',103 'pallet-aura/std',104 'pallet-balances/std',105 # 'pallet-contracts/std',106 # 'pallet-contracts-primitives/std',107 # 'pallet-contracts-rpc-runtime-api/std',108 # 'pallet-contract-helpers/std',109 'pallet-randomness-collective-flip/std',110 'pallet-sudo/std',111 'pallet-timestamp/std',112 'pallet-transaction-payment/std',113 'pallet-transaction-payment-rpc-runtime-api/std',114 'pallet-treasury/std',115 'pallet-evm/std',116 'pallet-evm-migration/std',117 'pallet-evm-contract-helpers/std',118 'pallet-evm-transaction-payment/std',119 'pallet-evm-coder-substrate/std',120 'pallet-ethereum/std',121 'pallet-base-fee/std',122 'fp-rpc/std',123 'up-rpc/std',124 'app-promotion-rpc/std',125 'fp-evm-mapping/std',126 'fp-self-contained/std',127 'parachain-info/std',128 'serde',129 'pallet-inflation/std',130 'pallet-configuration/std',131 'pallet-app-promotion/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']170opal-runtime = ['refungible', 'rmrk', 'app-promotion', 'foreign-assets']171172refungible = []173scheduler = []174rmrk = []175foreign-assets = []176app-promotion = []177178################################################################################179# Substrate Dependencies180181[dependencies.codec]182default-features = false183features = ['derive']184package = 'parity-scale-codec'185version = '3.1.2'186187[dependencies.frame-benchmarking]188default-features = false189git = "https://github.com/paritytech/substrate"190optional = true191branch = "polkadot-v0.9.30"192193[dependencies.frame-try-runtime]194default-features = false195git = "https://github.com/paritytech/substrate"196optional = true197branch = "polkadot-v0.9.30"198199[dependencies.frame-executive]200default-features = false201git = "https://github.com/paritytech/substrate"202branch = "polkadot-v0.9.30"203204[dependencies.frame-support]205default-features = false206git = "https://github.com/paritytech/substrate"207branch = "polkadot-v0.9.30"208209[dependencies.frame-system]210default-features = false211git = "https://github.com/paritytech/substrate"212branch = "polkadot-v0.9.30"213214[dependencies.frame-system-benchmarking]215default-features = false216git = "https://github.com/paritytech/substrate"217optional = true218branch = "polkadot-v0.9.30"219220[dependencies.frame-system-rpc-runtime-api]221default-features = false222git = "https://github.com/paritytech/substrate"223branch = "polkadot-v0.9.30"224225[dependencies.hex-literal]226optional = true227version = '0.3.3'228229[dependencies.serde]230default-features = false231features = ['derive']232optional = true233version = '1.0.130'234235[dependencies.pallet-aura]236default-features = false237git = "https://github.com/paritytech/substrate"238branch = "polkadot-v0.9.30"239240[dependencies.pallet-balances]241default-features = false242git = "https://github.com/paritytech/substrate"243branch = "polkadot-v0.9.30"244245# Contracts specific packages246# [dependencies.pallet-contracts]247# git = 'https://github.com/paritytech/substrate'248# default-features = false249# branch = 'master'250# version = '4.0.0-dev'251252# [dependencies.pallet-contracts-primitives]253# git = 'https://github.com/paritytech/substrate'254# default-features = false255# branch = 'master'256# version = '4.0.0-dev'257258# [dependencies.pallet-contracts-rpc-runtime-api]259# git = 'https://github.com/paritytech/substrate'260# default-features = false261# branch = 'master'262# version = '4.0.0-dev'263264[dependencies.pallet-randomness-collective-flip]265default-features = false266git = "https://github.com/paritytech/substrate"267branch = "polkadot-v0.9.30"268269[dependencies.pallet-sudo]270default-features = false271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.30"273274[dependencies.pallet-timestamp]275default-features = false276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.30"278279[dependencies.pallet-transaction-payment]280default-features = false281git = "https://github.com/paritytech/substrate"282branch = "polkadot-v0.9.30"283284[dependencies.pallet-transaction-payment-rpc-runtime-api]285default-features = false286git = "https://github.com/paritytech/substrate"287branch = "polkadot-v0.9.30"288289[dependencies.pallet-treasury]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.30"293294[dependencies.sp-arithmetic]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.30"298299[dependencies.sp-api]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.30"303304[dependencies.sp-block-builder]305default-features = false306git = "https://github.com/paritytech/substrate"307branch = "polkadot-v0.9.30"308309[dependencies.sp-core]310default-features = false311git = "https://github.com/paritytech/substrate"312branch = "polkadot-v0.9.30"313314[dependencies.sp-consensus-aura]315default-features = false316git = "https://github.com/paritytech/substrate"317branch = "polkadot-v0.9.30"318319[dependencies.sp-inherents]320default-features = false321git = "https://github.com/paritytech/substrate"322branch = "polkadot-v0.9.30"323324[dependencies.sp-io]325default-features = false326git = "https://github.com/paritytech/substrate"327branch = "polkadot-v0.9.30"328329[dependencies.sp-offchain]330default-features = false331git = "https://github.com/paritytech/substrate"332branch = "polkadot-v0.9.30"333334[dependencies.sp-runtime]335default-features = false336git = "https://github.com/paritytech/substrate"337branch = "polkadot-v0.9.30"338339[dependencies.sp-session]340default-features = false341git = "https://github.com/paritytech/substrate"342branch = "polkadot-v0.9.30"343344[dependencies.sp-std]345default-features = false346git = "https://github.com/paritytech/substrate"347branch = "polkadot-v0.9.30"348349[dependencies.sp-transaction-pool]350default-features = false351git = "https://github.com/paritytech/substrate"352branch = "polkadot-v0.9.30"353354[dependencies.sp-version]355default-features = false356git = "https://github.com/paritytech/substrate"357branch = "polkadot-v0.9.30"358359[dependencies.smallvec]360version = '1.6.1'361362################################################################################363# Cumulus dependencies364365[dependencies.parachain-info]366default-features = false367git = "https://github.com/paritytech/cumulus"368branch = "polkadot-v0.9.30"369370[dependencies.cumulus-pallet-aura-ext]371git = "https://github.com/paritytech/cumulus"372branch = "polkadot-v0.9.30"373default-features = false374375[dependencies.cumulus-pallet-parachain-system]376git = "https://github.com/paritytech/cumulus"377branch = "polkadot-v0.9.30"378default-features = false379380[dependencies.cumulus-primitives-core]381git = "https://github.com/paritytech/cumulus"382branch = "polkadot-v0.9.30"383default-features = false384385[dependencies.cumulus-pallet-xcm]386git = "https://github.com/paritytech/cumulus"387branch = "polkadot-v0.9.30"388default-features = false389390[dependencies.cumulus-pallet-dmp-queue]391git = "https://github.com/paritytech/cumulus"392branch = "polkadot-v0.9.30"393default-features = false394395[dependencies.cumulus-pallet-xcmp-queue]396git = "https://github.com/paritytech/cumulus"397branch = "polkadot-v0.9.30"398default-features = false399400[dependencies.cumulus-primitives-utility]401git = "https://github.com/paritytech/cumulus"402branch = "polkadot-v0.9.30"403default-features = false404405[dependencies.cumulus-primitives-timestamp]406git = "https://github.com/paritytech/cumulus"407branch = "polkadot-v0.9.30"408default-features = false409410################################################################################411# Polkadot dependencies412413[dependencies.polkadot-parachain]414git = "https://github.com/paritytech/polkadot"415branch = "release-v0.9.30"416default-features = false417418[dependencies.xcm]419git = "https://github.com/paritytech/polkadot"420branch = "release-v0.9.30"421default-features = false422423[dependencies.xcm-builder]424git = "https://github.com/paritytech/polkadot"425branch = "release-v0.9.30"426default-features = false427428[dependencies.xcm-executor]429git = "https://github.com/paritytech/polkadot"430branch = "release-v0.9.30"431default-features = false432433[dependencies.pallet-xcm]434git = "https://github.com/paritytech/polkadot"435branch = "release-v0.9.30"436default-features = false437438################################################################################439# local dependencies440441[dependencies]442orml-vesting.workspace = true443orml-xtokens.workspace = true444orml-tokens.workspace = true445orml-traits.workspace = true446447log = { version = "0.4.16", default-features = false }448up-common = { path = "../../primitives/common", default-features = false }449scale-info = { version = "2.0.1", default-features = false, features = [450 "derive",451] }452derivative = "2.2.0"453pallet-unique = { path = '../../pallets/unique', default-features = false }454up-rpc = { path = "../../primitives/rpc", default-features = false }455app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }456rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }457fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }458pallet-inflation = { path = '../../pallets/inflation', default-features = false }459pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }460up-data-structs = { path = '../../primitives/data-structs', default-features = false }461pallet-configuration = { default-features = false, path = "../../pallets/configuration" }462pallet-common = { default-features = false, path = "../../pallets/common" }463pallet-structure = { default-features = false, path = "../../pallets/structure" }464pallet-fungible = { default-features = false, path = "../../pallets/fungible" }465pallet-refungible = { default-features = false, path = "../../pallets/refungible" }466pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }467pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }468pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }469pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }470pallet-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" }471pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }472pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }473pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }474pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }475pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }476pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }477pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }478fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }479fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }480evm-coder = { default-features = false, path = '../../crates/evm-coder' }481up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }482pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }483484################################################################################485# Other Dependencies486487impl-trait-for-tuples = "0.2.2"488489################################################################################490# Dev Dependencies491492[dev-dependencies.logtest]493version = "2.0.0"494495################################################################################496# Build Dependencies497498[build-dependencies.substrate-wasm-builder]499git = "https://github.com/paritytech/substrate"500branch = "polkadot-v0.9.30"1################################################################################2# Package34cargo-features = ["workspace-inheritance"]56[package]7authors = ['Unique Network <support@uniquenetwork.io>']8build = 'build.rs'9description = 'Opal Runtime'10edition = '2021'11homepage = 'https://unique.network'12license = 'GPLv3'13name = 'opal-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', 'opal-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-foreign-assets/runtime-benchmarks',41 'pallet-unique/runtime-benchmarks',42 'pallet-inflation/runtime-benchmarks',43 'pallet-app-promotion/runtime-benchmarks',44 'pallet-unique-scheduler/runtime-benchmarks',45 'pallet-xcm/runtime-benchmarks',46 'sp-runtime/runtime-benchmarks',47 'xcm-builder/runtime-benchmarks',48]49try-runtime = [50 'frame-try-runtime',51 'frame-executive/try-runtime',52 'frame-support/try-runtime',53 'frame-system/try-runtime',54 'cumulus-pallet-parachain-system/try-runtime',55 'parachain-info/try-runtime',56 'pallet-aura/try-runtime',57 'cumulus-pallet-aura-ext/try-runtime',58 'pallet-balances/try-runtime',59 'pallet-randomness-collective-flip/try-runtime',60 'pallet-timestamp/try-runtime',61 'pallet-transaction-payment/try-runtime',62 'pallet-treasury/try-runtime',63 'pallet-sudo/try-runtime',64 'orml-vesting/try-runtime',65 'orml-xtokens/try-runtime',66 'orml-tokens/try-runtime',67 'cumulus-pallet-xcmp-queue/try-runtime',68 'pallet-xcm/try-runtime',69 'cumulus-pallet-xcm/try-runtime',70 'cumulus-pallet-dmp-queue/try-runtime',71 'pallet-inflation/try-runtime',72 'pallet-unique/try-runtime',73 'pallet-unique-scheduler/try-runtime',74 'pallet-configuration/try-runtime',75 'pallet-charge-transaction/try-runtime',76 'pallet-common/try-runtime',77 'pallet-fungible/try-runtime',78 'pallet-refungible/try-runtime',79 'pallet-nonfungible/try-runtime',80 'pallet-structure/try-runtime',81 'pallet-proxy-rmrk-core/try-runtime',82 'pallet-proxy-rmrk-equip/try-runtime',83 'pallet-app-promotion/try-runtime',84 'pallet-foreign-assets/try-runtime',85 'pallet-evm/try-runtime',86 'pallet-ethereum/try-runtime',87 'pallet-evm-coder-substrate/try-runtime',88 'pallet-evm-contract-helpers/try-runtime',89 'pallet-evm-transaction-payment/try-runtime',90 'pallet-evm-migration/try-runtime',91]92std = [93 'codec/std',94 'cumulus-pallet-aura-ext/std',95 'cumulus-pallet-parachain-system/std',96 'cumulus-pallet-xcm/std',97 'cumulus-pallet-xcmp-queue/std',98 'cumulus-primitives-core/std',99 'cumulus-primitives-utility/std',100 'frame-try-runtime/std',101 'frame-executive/std',102 'frame-support/std',103 'frame-system/std',104 'frame-system-rpc-runtime-api/std',105 'pallet-aura/std',106 'pallet-balances/std',107 # 'pallet-contracts/std',108 # 'pallet-contracts-primitives/std',109 # 'pallet-contracts-rpc-runtime-api/std',110 # 'pallet-contract-helpers/std',111 'pallet-randomness-collective-flip/std',112 'pallet-sudo/std',113 'pallet-timestamp/std',114 'pallet-transaction-payment/std',115 'pallet-transaction-payment-rpc-runtime-api/std',116 'pallet-treasury/std',117 'pallet-evm/std',118 'pallet-evm-migration/std',119 'pallet-evm-contract-helpers/std',120 'pallet-evm-transaction-payment/std',121 'pallet-evm-coder-substrate/std',122 'pallet-ethereum/std',123 'pallet-base-fee/std',124 'fp-rpc/std',125 'up-rpc/std',126 'app-promotion-rpc/std',127 'fp-evm-mapping/std',128 'fp-self-contained/std',129 'parachain-info/std',130 'serde',131 'pallet-inflation/std',132 'pallet-configuration/std',133 'pallet-app-promotion/std',134 'pallet-common/std',135 'pallet-structure/std',136 'pallet-fungible/std',137 'pallet-refungible/std',138 'pallet-nonfungible/std',139 'pallet-proxy-rmrk-core/std',140 'pallet-proxy-rmrk-equip/std',141 'pallet-unique/std',142 'pallet-unique-scheduler/std',143 'pallet-charge-transaction/std',144 'up-data-structs/std',145 'sp-api/std',146 'sp-block-builder/std',147 "sp-consensus-aura/std",148 'sp-core/std',149 'sp-inherents/std',150 'sp-io/std',151 'sp-offchain/std',152 'sp-runtime/std',153 'sp-session/std',154 'sp-std/std',155 'sp-transaction-pool/std',156 'sp-version/std',157 'xcm/std',158 'xcm-builder/std',159 'xcm-executor/std',160 'up-common/std',161 'rmrk-rpc/std',162 'evm-coder/std',163 'up-sponsorship/std',164165 "orml-vesting/std",166 "orml-tokens/std",167 "orml-xtokens/std",168 "orml-traits/std",169 "pallet-foreign-assets/std",170]171limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']172opal-runtime = ['refungible', 'rmrk', 'app-promotion', 'foreign-assets']173174refungible = []175scheduler = []176rmrk = []177foreign-assets = []178app-promotion = []179180################################################################################181# Substrate Dependencies182183[dependencies.codec]184default-features = false185features = ['derive']186package = 'parity-scale-codec'187version = '3.1.2'188189[dependencies.frame-benchmarking]190default-features = false191git = "https://github.com/paritytech/substrate"192optional = true193branch = "polkadot-v0.9.30"194195[dependencies.frame-try-runtime]196default-features = false197git = "https://github.com/paritytech/substrate"198optional = true199branch = "polkadot-v0.9.30"200201[dependencies.frame-executive]202default-features = false203git = "https://github.com/paritytech/substrate"204branch = "polkadot-v0.9.30"205206[dependencies.frame-support]207default-features = false208git = "https://github.com/paritytech/substrate"209branch = "polkadot-v0.9.30"210211[dependencies.frame-system]212default-features = false213git = "https://github.com/paritytech/substrate"214branch = "polkadot-v0.9.30"215216[dependencies.frame-system-benchmarking]217default-features = false218git = "https://github.com/paritytech/substrate"219optional = true220branch = "polkadot-v0.9.30"221222[dependencies.frame-system-rpc-runtime-api]223default-features = false224git = "https://github.com/paritytech/substrate"225branch = "polkadot-v0.9.30"226227[dependencies.hex-literal]228optional = true229version = '0.3.3'230231[dependencies.serde]232default-features = false233features = ['derive']234optional = true235version = '1.0.130'236237[dependencies.pallet-aura]238default-features = false239git = "https://github.com/paritytech/substrate"240branch = "polkadot-v0.9.30"241242[dependencies.pallet-balances]243default-features = false244git = "https://github.com/paritytech/substrate"245branch = "polkadot-v0.9.30"246247# Contracts specific packages248# [dependencies.pallet-contracts]249# git = 'https://github.com/paritytech/substrate'250# default-features = false251# branch = 'master'252# version = '4.0.0-dev'253254# [dependencies.pallet-contracts-primitives]255# git = 'https://github.com/paritytech/substrate'256# default-features = false257# branch = 'master'258# version = '4.0.0-dev'259260# [dependencies.pallet-contracts-rpc-runtime-api]261# git = 'https://github.com/paritytech/substrate'262# default-features = false263# branch = 'master'264# version = '4.0.0-dev'265266[dependencies.pallet-randomness-collective-flip]267default-features = false268git = "https://github.com/paritytech/substrate"269branch = "polkadot-v0.9.30"270271[dependencies.pallet-sudo]272default-features = false273git = "https://github.com/paritytech/substrate"274branch = "polkadot-v0.9.30"275276[dependencies.pallet-timestamp]277default-features = false278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.30"280281[dependencies.pallet-transaction-payment]282default-features = false283git = "https://github.com/paritytech/substrate"284branch = "polkadot-v0.9.30"285286[dependencies.pallet-transaction-payment-rpc-runtime-api]287default-features = false288git = "https://github.com/paritytech/substrate"289branch = "polkadot-v0.9.30"290291[dependencies.pallet-treasury]292default-features = false293git = "https://github.com/paritytech/substrate"294branch = "polkadot-v0.9.30"295296[dependencies.sp-arithmetic]297default-features = false298git = "https://github.com/paritytech/substrate"299branch = "polkadot-v0.9.30"300301[dependencies.sp-api]302default-features = false303git = "https://github.com/paritytech/substrate"304branch = "polkadot-v0.9.30"305306[dependencies.sp-block-builder]307default-features = false308git = "https://github.com/paritytech/substrate"309branch = "polkadot-v0.9.30"310311[dependencies.sp-core]312default-features = false313git = "https://github.com/paritytech/substrate"314branch = "polkadot-v0.9.30"315316[dependencies.sp-consensus-aura]317default-features = false318git = "https://github.com/paritytech/substrate"319branch = "polkadot-v0.9.30"320321[dependencies.sp-inherents]322default-features = false323git = "https://github.com/paritytech/substrate"324branch = "polkadot-v0.9.30"325326[dependencies.sp-io]327default-features = false328git = "https://github.com/paritytech/substrate"329branch = "polkadot-v0.9.30"330331[dependencies.sp-offchain]332default-features = false333git = "https://github.com/paritytech/substrate"334branch = "polkadot-v0.9.30"335336[dependencies.sp-runtime]337default-features = false338git = "https://github.com/paritytech/substrate"339branch = "polkadot-v0.9.30"340341[dependencies.sp-session]342default-features = false343git = "https://github.com/paritytech/substrate"344branch = "polkadot-v0.9.30"345346[dependencies.sp-std]347default-features = false348git = "https://github.com/paritytech/substrate"349branch = "polkadot-v0.9.30"350351[dependencies.sp-transaction-pool]352default-features = false353git = "https://github.com/paritytech/substrate"354branch = "polkadot-v0.9.30"355356[dependencies.sp-version]357default-features = false358git = "https://github.com/paritytech/substrate"359branch = "polkadot-v0.9.30"360361[dependencies.smallvec]362version = '1.6.1'363364################################################################################365# Cumulus dependencies366367[dependencies.parachain-info]368default-features = false369git = "https://github.com/paritytech/cumulus"370branch = "polkadot-v0.9.30"371372[dependencies.cumulus-pallet-aura-ext]373git = "https://github.com/paritytech/cumulus"374branch = "polkadot-v0.9.30"375default-features = false376377[dependencies.cumulus-pallet-parachain-system]378git = "https://github.com/paritytech/cumulus"379branch = "polkadot-v0.9.30"380default-features = false381382[dependencies.cumulus-primitives-core]383git = "https://github.com/paritytech/cumulus"384branch = "polkadot-v0.9.30"385default-features = false386387[dependencies.cumulus-pallet-xcm]388git = "https://github.com/paritytech/cumulus"389branch = "polkadot-v0.9.30"390default-features = false391392[dependencies.cumulus-pallet-dmp-queue]393git = "https://github.com/paritytech/cumulus"394branch = "polkadot-v0.9.30"395default-features = false396397[dependencies.cumulus-pallet-xcmp-queue]398git = "https://github.com/paritytech/cumulus"399branch = "polkadot-v0.9.30"400default-features = false401402[dependencies.cumulus-primitives-utility]403git = "https://github.com/paritytech/cumulus"404branch = "polkadot-v0.9.30"405default-features = false406407[dependencies.cumulus-primitives-timestamp]408git = "https://github.com/paritytech/cumulus"409branch = "polkadot-v0.9.30"410default-features = false411412################################################################################413# Polkadot dependencies414415[dependencies.polkadot-parachain]416git = "https://github.com/paritytech/polkadot"417branch = "release-v0.9.30"418default-features = false419420[dependencies.xcm]421git = "https://github.com/paritytech/polkadot"422branch = "release-v0.9.30"423default-features = false424425[dependencies.xcm-builder]426git = "https://github.com/paritytech/polkadot"427branch = "release-v0.9.30"428default-features = false429430[dependencies.xcm-executor]431git = "https://github.com/paritytech/polkadot"432branch = "release-v0.9.30"433default-features = false434435[dependencies.pallet-xcm]436git = "https://github.com/paritytech/polkadot"437branch = "release-v0.9.30"438default-features = false439440################################################################################441# local dependencies442443[dependencies]444orml-vesting.workspace = true445orml-xtokens.workspace = true446orml-tokens.workspace = true447orml-traits.workspace = true448449log = { version = "0.4.16", default-features = false }450up-common = { path = "../../primitives/common", default-features = false }451scale-info = { version = "2.0.1", default-features = false, features = [452 "derive",453] }454derivative = "2.2.0"455pallet-unique = { path = '../../pallets/unique', default-features = false }456up-rpc = { path = "../../primitives/rpc", default-features = false }457app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }458rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }459fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }460pallet-inflation = { path = '../../pallets/inflation', default-features = false }461pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }462up-data-structs = { path = '../../primitives/data-structs', default-features = false }463pallet-configuration = { default-features = false, path = "../../pallets/configuration" }464pallet-common = { default-features = false, path = "../../pallets/common" }465pallet-structure = { default-features = false, path = "../../pallets/structure" }466pallet-fungible = { default-features = false, path = "../../pallets/fungible" }467pallet-refungible = { default-features = false, path = "../../pallets/refungible" }468pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }469pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }470pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }471pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }472pallet-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" }473pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }474pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }475pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }476pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }477pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }478pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }479pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }480fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }481fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }482evm-coder = { default-features = false, path = '../../crates/evm-coder' }483up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }484pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }485486################################################################################487# Other Dependencies488489impl-trait-for-tuples = "0.2.2"490491################################################################################492# Dev Dependencies493494[dev-dependencies.logtest]495version = "2.0.0"496497################################################################################498# Build Dependencies499500[build-dependencies.substrate-wasm-builder]501git = "https://github.com/paritytech/substrate"502branch = "polkadot-v0.9.30"runtime/quartz/Cargo.tomldiffbeforeafterboth--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -1,6 +1,8 @@
################################################################################
# Package
+cargo-features = ["workspace-inheritance"]
+
[package]
authors = ['Unique Network <support@uniquenetwork.io>']
build = 'build.rs'
runtime/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'