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

difftreelog

source

runtime/opal/Cargo.toml15.5 KiBsourcehistory
1################################################################################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.29"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-system/try-runtime',51]52std = [53    'codec/std',54    'cumulus-pallet-aura-ext/std',55    'cumulus-pallet-parachain-system/std',56    'cumulus-pallet-xcm/std',57    'cumulus-pallet-xcmp-queue/std',58    'cumulus-primitives-core/std',59    'cumulus-primitives-utility/std',60    'frame-try-runtime/std',61    'frame-executive/std',62    'frame-support/std',63    'frame-system/std',64    'frame-system-rpc-runtime-api/std',65    'pallet-aura/std',66    'pallet-balances/std',67    # 'pallet-contracts/std',68    # 'pallet-contracts-primitives/std',69    # 'pallet-contracts-rpc-runtime-api/std',70    # 'pallet-contract-helpers/std',71    'pallet-randomness-collective-flip/std',72    'pallet-sudo/std',73    'pallet-timestamp/std',74    'pallet-transaction-payment/std',75    'pallet-transaction-payment-rpc-runtime-api/std',76    'pallet-treasury/std',77    # 'pallet-vesting/std',78    'pallet-evm/std',79    'pallet-evm-migration/std',80    'pallet-evm-contract-helpers/std',81    'pallet-evm-transaction-payment/std',82    'pallet-evm-coder-substrate/std',83    'pallet-ethereum/std',84    'pallet-base-fee/std',85    'fp-rpc/std',86    'up-rpc/std',87    'app-promotion-rpc/std',88    'fp-evm-mapping/std',89    'fp-self-contained/std',90    'parachain-info/std',91    'serde',92    'pallet-inflation/std',93    'pallet-configuration/std',94    'pallet-app-promotion/std',95    'pallet-common/std',96    'pallet-structure/std',97    'pallet-fungible/std',98    'pallet-refungible/std',99    'pallet-nonfungible/std',100    'pallet-proxy-rmrk-core/std',101    'pallet-proxy-rmrk-equip/std',102    'pallet-unique/std',103    'pallet-unique-scheduler/std',104    'pallet-charge-transaction/std',105    'up-data-structs/std',106    'sp-api/std',107    'sp-block-builder/std',108    "sp-consensus-aura/std",109    'sp-core/std',110    'sp-inherents/std',111    'sp-io/std',112    'sp-offchain/std',113    'sp-runtime/std',114    'sp-session/std',115    'sp-std/std',116    'sp-transaction-pool/std',117    'sp-version/std',118    'xcm/std',119    'xcm-builder/std',120    'xcm-executor/std',121    'up-common/std',122    'rmrk-rpc/std',123    'evm-coder/std',124    'up-sponsorship/std',125126    "orml-vesting/std",127    "orml-tokens/std",128    "orml-xtokens/std",129    "orml-traits/std",130    "pallet-foreign-assets/std"131]132limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']133opal-runtime = ['refungible', 'scheduler', 'rmrk', 'app-promotion', 'foreign-assets']134135refungible = []136scheduler = []137rmrk = []138foreign-assets = []139app-promotion = []140141################################################################################142# Substrate Dependencies143144[dependencies.codec]145default-features = false146features = ['derive']147package = 'parity-scale-codec'148version = '3.1.2'149150[dependencies.frame-benchmarking]151default-features = false152git = "https://github.com/paritytech/substrate"153optional = true154branch = "polkadot-v0.9.29"155156[dependencies.frame-try-runtime]157default-features = false158git = "https://github.com/paritytech/substrate"159optional = true160branch = "polkadot-v0.9.29"161162[dependencies.frame-executive]163default-features = false164git = "https://github.com/paritytech/substrate"165branch = "polkadot-v0.9.29"166167[dependencies.frame-support]168default-features = false169git = "https://github.com/paritytech/substrate"170branch = "polkadot-v0.9.29"171172[dependencies.frame-system]173default-features = false174git = "https://github.com/paritytech/substrate"175branch = "polkadot-v0.9.29"176177[dependencies.frame-system-benchmarking]178default-features = false179git = "https://github.com/paritytech/substrate"180optional = true181branch = "polkadot-v0.9.29"182183[dependencies.frame-system-rpc-runtime-api]184default-features = false185git = "https://github.com/paritytech/substrate"186branch = "polkadot-v0.9.29"187188[dependencies.hex-literal]189optional = true190version = '0.3.3'191192[dependencies.serde]193default-features = false194features = ['derive']195optional = true196version = '1.0.130'197198[dependencies.pallet-aura]199default-features = false200git = "https://github.com/paritytech/substrate"201branch = "polkadot-v0.9.29"202203[dependencies.pallet-balances]204default-features = false205git = "https://github.com/paritytech/substrate"206branch = "polkadot-v0.9.29"207208# Contracts specific packages209# [dependencies.pallet-contracts]210# git = 'https://github.com/paritytech/substrate'211# default-features = false212# branch = 'master'213# version = '4.0.0-dev'214215# [dependencies.pallet-contracts-primitives]216# git = 'https://github.com/paritytech/substrate'217# default-features = false218# branch = 'master'219# version = '4.0.0-dev'220221# [dependencies.pallet-contracts-rpc-runtime-api]222# git = 'https://github.com/paritytech/substrate'223# default-features = false224# branch = 'master'225# version = '4.0.0-dev'226227[dependencies.pallet-randomness-collective-flip]228default-features = false229git = "https://github.com/paritytech/substrate"230branch = "polkadot-v0.9.29"231232[dependencies.pallet-sudo]233default-features = false234git = "https://github.com/paritytech/substrate"235branch = "polkadot-v0.9.29"236237[dependencies.pallet-timestamp]238default-features = false239git = "https://github.com/paritytech/substrate"240branch = "polkadot-v0.9.29"241242[dependencies.pallet-transaction-payment]243default-features = false244git = "https://github.com/paritytech/substrate"245branch = "polkadot-v0.9.29"246247[dependencies.pallet-transaction-payment-rpc-runtime-api]248default-features = false249git = "https://github.com/paritytech/substrate"250branch = "polkadot-v0.9.29"251252[dependencies.pallet-treasury]253default-features = false254git = "https://github.com/paritytech/substrate"255branch = "polkadot-v0.9.29"256257# [dependencies.pallet-vesting]258# default-features = false259# git = 'https://github.com/paritytech/substrate'260# branch = 'master'261262[dependencies.sp-arithmetic]263default-features = false264git = "https://github.com/paritytech/substrate"265branch = "polkadot-v0.9.29"266267[dependencies.sp-api]268default-features = false269git = "https://github.com/paritytech/substrate"270branch = "polkadot-v0.9.29"271272[dependencies.sp-block-builder]273default-features = false274git = "https://github.com/paritytech/substrate"275branch = "polkadot-v0.9.29"276277[dependencies.sp-core]278default-features = false279git = "https://github.com/paritytech/substrate"280branch = "polkadot-v0.9.29"281282[dependencies.sp-consensus-aura]283default-features = false284git = "https://github.com/paritytech/substrate"285branch = "polkadot-v0.9.29"286287[dependencies.sp-inherents]288default-features = false289git = "https://github.com/paritytech/substrate"290branch = "polkadot-v0.9.29"291292[dependencies.sp-io]293default-features = false294git = "https://github.com/paritytech/substrate"295branch = "polkadot-v0.9.29"296297[dependencies.sp-offchain]298default-features = false299git = "https://github.com/paritytech/substrate"300branch = "polkadot-v0.9.29"301302[dependencies.sp-runtime]303default-features = false304git = "https://github.com/paritytech/substrate"305branch = "polkadot-v0.9.29"306307[dependencies.sp-session]308default-features = false309git = "https://github.com/paritytech/substrate"310branch = "polkadot-v0.9.29"311312[dependencies.sp-std]313default-features = false314git = "https://github.com/paritytech/substrate"315branch = "polkadot-v0.9.29"316317[dependencies.sp-transaction-pool]318default-features = false319git = "https://github.com/paritytech/substrate"320branch = "polkadot-v0.9.29"321322[dependencies.sp-version]323default-features = false324git = "https://github.com/paritytech/substrate"325branch = "polkadot-v0.9.29"326327[dependencies.smallvec]328version = '1.6.1'329330################################################################################331# Cumulus dependencies332333[dependencies.parachain-info]334default-features = false335git = "https://github.com/paritytech/cumulus"336branch = "polkadot-v0.9.29"337338[dependencies.cumulus-pallet-aura-ext]339git = "https://github.com/paritytech/cumulus"340branch = "polkadot-v0.9.29"341default-features = false342343[dependencies.cumulus-pallet-parachain-system]344git = "https://github.com/paritytech/cumulus"345branch = "polkadot-v0.9.29"346default-features = false347348[dependencies.cumulus-primitives-core]349git = "https://github.com/paritytech/cumulus"350branch = "polkadot-v0.9.29"351default-features = false352353[dependencies.cumulus-pallet-xcm]354git = "https://github.com/paritytech/cumulus"355branch = "polkadot-v0.9.29"356default-features = false357358[dependencies.cumulus-pallet-dmp-queue]359git = "https://github.com/paritytech/cumulus"360branch = "polkadot-v0.9.29"361default-features = false362363[dependencies.cumulus-pallet-xcmp-queue]364git = "https://github.com/paritytech/cumulus"365branch = "polkadot-v0.9.29"366default-features = false367368[dependencies.cumulus-primitives-utility]369git = "https://github.com/paritytech/cumulus"370branch = "polkadot-v0.9.29"371default-features = false372373[dependencies.cumulus-primitives-timestamp]374git = "https://github.com/paritytech/cumulus"375branch = "polkadot-v0.9.29"376default-features = false377378################################################################################379# Polkadot dependencies380381[dependencies.polkadot-parachain]382git = "https://github.com/paritytech/polkadot"383branch = "release-v0.9.29"384default-features = false385386[dependencies.xcm]387git = "https://github.com/paritytech/polkadot"388branch = "release-v0.9.29"389default-features = false390391[dependencies.xcm-builder]392git = "https://github.com/paritytech/polkadot"393branch = "release-v0.9.29"394default-features = false395396[dependencies.xcm-executor]397git = "https://github.com/paritytech/polkadot"398branch = "release-v0.9.29"399default-features = false400401[dependencies.pallet-xcm]402git = "https://github.com/paritytech/polkadot"403branch = "release-v0.9.29"404default-features = false405406[dependencies.orml-vesting]407git = "https://github.com/UniqueNetwork/open-runtime-module-library"408branch = "polkadot-v0.9.29"409version = "0.4.1-dev"410default-features = false411412[dependencies.orml-xtokens]413git = "https://github.com/UniqueNetwork/open-runtime-module-library"414branch = "polkadot-v0.9.29"415version = "0.4.1-dev"416default-features = false417418[dependencies.orml-tokens]419git = "https://github.com/UniqueNetwork/open-runtime-module-library"420branch = "polkadot-v0.9.29"421version = "0.4.1-dev"422default-features = false423424[dependencies.orml-traits]425git = "https://github.com/UniqueNetwork/open-runtime-module-library"426branch = "polkadot-v0.9.29"427version = "0.4.1-dev"428default-features = false429430################################################################################431# local dependencies432433[dependencies]434log = { version = "0.4.16", default-features = false }435up-common = { path = "../../primitives/common", default-features = false }436scale-info = { version = "2.0.1", default-features = false, features = [437    "derive",438] }439derivative = "2.2.0"440pallet-unique = { path = '../../pallets/unique', default-features = false }441up-rpc = { path = "../../primitives/rpc", default-features = false }442app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}443rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }444fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }445pallet-inflation = { path = '../../pallets/inflation', default-features = false }446pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }447up-data-structs = { path = '../../primitives/data-structs', default-features = false }448pallet-configuration = { default-features = false, path = "../../pallets/configuration" }449pallet-common = { default-features = false, path = "../../pallets/common" }450pallet-structure = { default-features = false, path = "../../pallets/structure" }451pallet-fungible = { default-features = false, path = "../../pallets/fungible" }452pallet-refungible = { default-features = false, path = "../../pallets/refungible" }453pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }454pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }455pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }456pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }457# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }458pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.29", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }459pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }460pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }461pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }462pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }463pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }464pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }465pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }466fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }467fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }468evm-coder = { default-features = false, path = '../../crates/evm-coder' }469up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.29' }470pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }471472################################################################################473# Other Dependencies474475impl-trait-for-tuples = "0.2.2"476477################################################################################478# Dev Dependencies479480[dev-dependencies.logtest]481version = "2.0.0"482483################################################################################484# Build Dependencies485486[build-dependencies.substrate-wasm-builder]487git = "https://github.com/paritytech/substrate"488branch = "polkadot-v0.9.29"