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

difftreelog

source

runtime/opal/Cargo.toml14.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.27"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-unique/runtime-benchmarks',39    'pallet-inflation/runtime-benchmarks',40    'pallet-app-promotion/runtime-benchmarks',41    'pallet-unique-scheduler/runtime-benchmarks',42    'pallet-xcm/runtime-benchmarks',43    'sp-runtime/runtime-benchmarks',44    'xcm-builder/runtime-benchmarks',45]46try-runtime = [47    'frame-try-runtime',48    'frame-executive/try-runtime',49    'frame-system/try-runtime',50]51std = [52    'codec/std',53    'cumulus-pallet-aura-ext/std',54    'cumulus-pallet-parachain-system/std',55    'cumulus-pallet-xcm/std',56    'cumulus-pallet-xcmp-queue/std',57    'cumulus-primitives-core/std',58    'cumulus-primitives-utility/std',59    'frame-try-runtime/std',60    'frame-executive/std',61    'frame-support/std',62    'frame-system/std',63    'frame-system-rpc-runtime-api/std',64    'pallet-aura/std',65    'pallet-balances/std',66    # 'pallet-contracts/std',67    # 'pallet-contracts-primitives/std',68    # 'pallet-contracts-rpc-runtime-api/std',69    # 'pallet-contract-helpers/std',70    'pallet-randomness-collective-flip/std',71    'pallet-sudo/std',72    'pallet-timestamp/std',73    'pallet-transaction-payment/std',74    'pallet-transaction-payment-rpc-runtime-api/std',75    'pallet-treasury/std',76    # 'pallet-vesting/std',77    'pallet-evm/std',78    'pallet-evm-migration/std',79    'pallet-evm-contract-helpers/std',80    'pallet-evm-transaction-payment/std',81    'pallet-evm-coder-substrate/std',82    'pallet-ethereum/std',83    'pallet-base-fee/std',84    'fp-rpc/std',85    'up-rpc/std',86    'app-promotion-rpc/std',87    'fp-evm-mapping/std',88    'fp-self-contained/std',89    'parachain-info/std',90    'serde',91    'pallet-inflation/std',92    'pallet-configuration/std',93    'pallet-app-promotion/std',94    'pallet-common/std',95    'pallet-structure/std',96    'pallet-fungible/std',97    'pallet-refungible/std',98    'pallet-nonfungible/std',99    'pallet-proxy-rmrk-core/std',100    'pallet-proxy-rmrk-equip/std',101    'pallet-unique/std',102    'pallet-unique-scheduler/std',103    'pallet-charge-transaction/std',104    'up-data-structs/std',105    'sp-api/std',106    'sp-block-builder/std',107    "sp-consensus-aura/std",108    'sp-core/std',109    'sp-inherents/std',110    'sp-io/std',111    'sp-offchain/std',112    'sp-runtime/std',113    'sp-session/std',114    'sp-std/std',115    'sp-transaction-pool/std',116    'sp-version/std',117    'xcm/std',118    'xcm-builder/std',119    'xcm-executor/std',120    'up-common/std',121    'rmrk-rpc/std',122    'evm-coder/std',123    'up-sponsorship/std',124125    "orml-vesting/std",126]127limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']128opal-runtime = ['refungible', 'scheduler', 'rmrk', 'app-promotion']129130refungible = []131scheduler = []132rmrk = []133app-promotion = []134135################################################################################136# Substrate Dependencies137138[dependencies.codec]139default-features = false140features = ['derive']141package = 'parity-scale-codec'142version = '3.1.2'143144[dependencies.frame-benchmarking]145default-features = false146git = "https://github.com/paritytech/substrate"147optional = true148branch = "polkadot-v0.9.27"149150[dependencies.frame-try-runtime]151default-features = false152git = "https://github.com/paritytech/substrate"153optional = true154branch = "polkadot-v0.9.27"155156[dependencies.frame-executive]157default-features = false158git = "https://github.com/paritytech/substrate"159branch = "polkadot-v0.9.27"160161[dependencies.frame-support]162default-features = false163git = "https://github.com/paritytech/substrate"164branch = "polkadot-v0.9.27"165166[dependencies.frame-system]167default-features = false168git = "https://github.com/paritytech/substrate"169branch = "polkadot-v0.9.27"170171[dependencies.frame-system-benchmarking]172default-features = false173git = "https://github.com/paritytech/substrate"174optional = true175branch = "polkadot-v0.9.27"176177[dependencies.frame-system-rpc-runtime-api]178default-features = false179git = "https://github.com/paritytech/substrate"180branch = "polkadot-v0.9.27"181182[dependencies.hex-literal]183optional = true184version = '0.3.3'185186[dependencies.serde]187default-features = false188features = ['derive']189optional = true190version = '1.0.130'191192[dependencies.pallet-aura]193default-features = false194git = "https://github.com/paritytech/substrate"195branch = "polkadot-v0.9.27"196197[dependencies.pallet-balances]198default-features = false199git = "https://github.com/paritytech/substrate"200branch = "polkadot-v0.9.27"201202# Contracts specific packages203# [dependencies.pallet-contracts]204# git = 'https://github.com/paritytech/substrate'205# default-features = false206# branch = 'master'207# version = '4.0.0-dev'208209# [dependencies.pallet-contracts-primitives]210# git = 'https://github.com/paritytech/substrate'211# default-features = false212# branch = 'master'213# version = '4.0.0-dev'214215# [dependencies.pallet-contracts-rpc-runtime-api]216# git = 'https://github.com/paritytech/substrate'217# default-features = false218# branch = 'master'219# version = '4.0.0-dev'220221[dependencies.pallet-randomness-collective-flip]222default-features = false223git = "https://github.com/paritytech/substrate"224branch = "polkadot-v0.9.27"225226[dependencies.pallet-sudo]227default-features = false228git = "https://github.com/paritytech/substrate"229branch = "polkadot-v0.9.27"230231[dependencies.pallet-timestamp]232default-features = false233git = "https://github.com/paritytech/substrate"234branch = "polkadot-v0.9.27"235236[dependencies.pallet-transaction-payment]237default-features = false238git = "https://github.com/paritytech/substrate"239branch = "polkadot-v0.9.27"240241[dependencies.pallet-transaction-payment-rpc-runtime-api]242default-features = false243git = "https://github.com/paritytech/substrate"244branch = "polkadot-v0.9.27"245246[dependencies.pallet-treasury]247default-features = false248git = "https://github.com/paritytech/substrate"249branch = "polkadot-v0.9.27"250251# [dependencies.pallet-vesting]252# default-features = false253# git = 'https://github.com/paritytech/substrate'254# branch = 'master'255256[dependencies.sp-arithmetic]257default-features = false258git = "https://github.com/paritytech/substrate"259branch = "polkadot-v0.9.27"260261[dependencies.sp-api]262default-features = false263git = "https://github.com/paritytech/substrate"264branch = "polkadot-v0.9.27"265266[dependencies.sp-block-builder]267default-features = false268git = "https://github.com/paritytech/substrate"269branch = "polkadot-v0.9.27"270271[dependencies.sp-core]272default-features = false273git = "https://github.com/paritytech/substrate"274branch = "polkadot-v0.9.27"275276[dependencies.sp-consensus-aura]277default-features = false278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.27"280281[dependencies.sp-inherents]282default-features = false283git = "https://github.com/paritytech/substrate"284branch = "polkadot-v0.9.27"285286[dependencies.sp-io]287default-features = false288git = "https://github.com/paritytech/substrate"289branch = "polkadot-v0.9.27"290291[dependencies.sp-offchain]292default-features = false293git = "https://github.com/paritytech/substrate"294branch = "polkadot-v0.9.27"295296[dependencies.sp-runtime]297default-features = false298git = "https://github.com/paritytech/substrate"299branch = "polkadot-v0.9.27"300301[dependencies.sp-session]302default-features = false303git = "https://github.com/paritytech/substrate"304branch = "polkadot-v0.9.27"305306[dependencies.sp-std]307default-features = false308git = "https://github.com/paritytech/substrate"309branch = "polkadot-v0.9.27"310311[dependencies.sp-transaction-pool]312default-features = false313git = "https://github.com/paritytech/substrate"314branch = "polkadot-v0.9.27"315316[dependencies.sp-version]317default-features = false318git = "https://github.com/paritytech/substrate"319branch = "polkadot-v0.9.27"320321[dependencies.smallvec]322version = '1.6.1'323324################################################################################325# Cumulus dependencies326327[dependencies.parachain-info]328default-features = false329git = "https://github.com/paritytech/cumulus"330branch = "polkadot-v0.9.27"331332[dependencies.cumulus-pallet-aura-ext]333git = "https://github.com/paritytech/cumulus"334branch = "polkadot-v0.9.27"335default-features = false336337[dependencies.cumulus-pallet-parachain-system]338git = "https://github.com/paritytech/cumulus"339branch = "polkadot-v0.9.27"340default-features = false341342[dependencies.cumulus-primitives-core]343git = "https://github.com/paritytech/cumulus"344branch = "polkadot-v0.9.27"345default-features = false346347[dependencies.cumulus-pallet-xcm]348git = "https://github.com/paritytech/cumulus"349branch = "polkadot-v0.9.27"350default-features = false351352[dependencies.cumulus-pallet-dmp-queue]353git = "https://github.com/paritytech/cumulus"354branch = "polkadot-v0.9.27"355default-features = false356357[dependencies.cumulus-pallet-xcmp-queue]358git = "https://github.com/paritytech/cumulus"359branch = "polkadot-v0.9.27"360default-features = false361362[dependencies.cumulus-primitives-utility]363git = "https://github.com/paritytech/cumulus"364branch = "polkadot-v0.9.27"365default-features = false366367[dependencies.cumulus-primitives-timestamp]368git = "https://github.com/paritytech/cumulus"369branch = "polkadot-v0.9.27"370default-features = false371372################################################################################373# Polkadot dependencies374375[dependencies.polkadot-parachain]376git = "https://github.com/paritytech/polkadot"377branch = "release-v0.9.27"378default-features = false379380[dependencies.xcm]381git = "https://github.com/paritytech/polkadot"382branch = "release-v0.9.27"383default-features = false384385[dependencies.xcm-builder]386git = "https://github.com/paritytech/polkadot"387branch = "release-v0.9.27"388default-features = false389390[dependencies.xcm-executor]391git = "https://github.com/paritytech/polkadot"392branch = "release-v0.9.27"393default-features = false394395[dependencies.pallet-xcm]396git = "https://github.com/paritytech/polkadot"397branch = "release-v0.9.27"398default-features = false399400[dependencies.orml-vesting]401git = "https://github.com/open-web3-stack/open-runtime-module-library"402branch = "polkadot-v0.9.27"403version = "0.4.1-dev"404default-features = false405406################################################################################407# local dependencies408409[dependencies]410log = { version = "0.4.16", default-features = false }411up-common = { path = "../../primitives/common", default-features = false }412scale-info = { version = "2.0.1", default-features = false, features = [413    "derive",414] }415derivative = "2.2.0"416pallet-unique = { path = '../../pallets/unique', default-features = false }417up-rpc = { path = "../../primitives/rpc", default-features = false }418app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}419rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }420fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }421pallet-inflation = { path = '../../pallets/inflation', default-features = false }422pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }423up-data-structs = { path = '../../primitives/data-structs', default-features = false }424pallet-configuration = { default-features = false, path = "../../pallets/configuration" }425pallet-common = { default-features = false, path = "../../pallets/common" }426pallet-structure = { default-features = false, path = "../../pallets/structure" }427pallet-fungible = { default-features = false, path = "../../pallets/fungible" }428pallet-refungible = { default-features = false, path = "../../pallets/refungible" }429pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }430pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }431pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }432pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }433# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }434pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.27", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }435pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }436pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }437pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }438pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }439pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }440pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }441pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }442fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }443fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }444evm-coder = { default-features = false, path = '../../crates/evm-coder' }445up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.27" }446447################################################################################448# Build Dependencies449450[build-dependencies.substrate-wasm-builder]451git = "https://github.com/paritytech/substrate"452branch = "polkadot-v0.9.27"