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

difftreelog

source

runtime/opal/Cargo.toml14.7 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-collator-selection/runtime-benchmarks",31    'pallet-timestamp/runtime-benchmarks',32    'pallet-common/runtime-benchmarks',33    'pallet-structure/runtime-benchmarks',34    'pallet-fungible/runtime-benchmarks',35    'pallet-refungible/runtime-benchmarks',36    'pallet-nonfungible/runtime-benchmarks',37    'pallet-proxy-rmrk-core/runtime-benchmarks',38    'pallet-proxy-rmrk-equip/runtime-benchmarks',39    'pallet-unique/runtime-benchmarks',40    'pallet-inflation/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-authorship/std",71	'pallet-collator-selection/std',72	"pallet-session/std",73    'pallet-randomness-collective-flip/std',74    'pallet-sudo/std',75    'pallet-timestamp/std',76    'pallet-transaction-payment/std',77    'pallet-transaction-payment-rpc-runtime-api/std',78    'pallet-treasury/std',79    # 'pallet-vesting/std',80    'pallet-evm/std',81    'pallet-evm-migration/std',82    'pallet-evm-contract-helpers/std',83    'pallet-evm-transaction-payment/std',84    'pallet-evm-coder-substrate/std',85    'pallet-ethereum/std',86    'pallet-base-fee/std',87    'fp-rpc/std',88    'up-rpc/std',89    'fp-evm-mapping/std',90    'fp-self-contained/std',91    'parachain-info/std',92    'serde',93    'pallet-inflation/std',94    'pallet-configuration/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]128limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']129opal-runtime = ['refungible', 'scheduler', 'rmrk']130131refungible = []132scheduler = []133rmrk = []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-collator-selection]198default-features = false199git = 'https://github.com/paritytech/cumulus'200branch = 'polkadot-v0.9.27'201202[dependencies.pallet-authorship]203default-features = false204git = 'https://github.com/paritytech/substrate'205branch = 'polkadot-v0.9.27'206207[dependencies.pallet-session]208default-features = false209git = 'https://github.com/paritytech/substrate'210branch = 'polkadot-v0.9.27'211212[dependencies.pallet-balances]213default-features = false214git = "https://github.com/paritytech/substrate"215branch = "polkadot-v0.9.27"216217# Contracts specific packages218# [dependencies.pallet-contracts]219# git = 'https://github.com/paritytech/substrate'220# default-features = false221# branch = 'master'222# version = '4.0.0-dev'223224# [dependencies.pallet-contracts-primitives]225# git = 'https://github.com/paritytech/substrate'226# default-features = false227# branch = 'master'228# version = '4.0.0-dev'229230# [dependencies.pallet-contracts-rpc-runtime-api]231# git = 'https://github.com/paritytech/substrate'232# default-features = false233# branch = 'master'234# version = '4.0.0-dev'235236[dependencies.pallet-randomness-collective-flip]237default-features = false238git = "https://github.com/paritytech/substrate"239branch = "polkadot-v0.9.27"240241[dependencies.pallet-sudo]242default-features = false243git = "https://github.com/paritytech/substrate"244branch = "polkadot-v0.9.27"245246[dependencies.pallet-timestamp]247default-features = false248git = "https://github.com/paritytech/substrate"249branch = "polkadot-v0.9.27"250251[dependencies.pallet-transaction-payment]252default-features = false253git = "https://github.com/paritytech/substrate"254branch = "polkadot-v0.9.27"255256[dependencies.pallet-transaction-payment-rpc-runtime-api]257default-features = false258git = "https://github.com/paritytech/substrate"259branch = "polkadot-v0.9.27"260261[dependencies.pallet-treasury]262default-features = false263git = "https://github.com/paritytech/substrate"264branch = "polkadot-v0.9.27"265266# [dependencies.pallet-vesting]267# default-features = false268# git = 'https://github.com/paritytech/substrate'269# branch = 'master'270271[dependencies.sp-arithmetic]272default-features = false273git = "https://github.com/paritytech/substrate"274branch = "polkadot-v0.9.27"275276[dependencies.sp-api]277default-features = false278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.27"280281[dependencies.sp-block-builder]282default-features = false283git = "https://github.com/paritytech/substrate"284branch = "polkadot-v0.9.27"285286[dependencies.sp-core]287default-features = false288git = "https://github.com/paritytech/substrate"289branch = "polkadot-v0.9.27"290291[dependencies.sp-consensus-aura]292default-features = false293git = "https://github.com/paritytech/substrate"294branch = "polkadot-v0.9.27"295296[dependencies.sp-inherents]297default-features = false298git = "https://github.com/paritytech/substrate"299branch = "polkadot-v0.9.27"300301[dependencies.sp-io]302default-features = false303git = "https://github.com/paritytech/substrate"304branch = "polkadot-v0.9.27"305306[dependencies.sp-offchain]307default-features = false308git = "https://github.com/paritytech/substrate"309branch = "polkadot-v0.9.27"310311[dependencies.sp-runtime]312default-features = false313git = "https://github.com/paritytech/substrate"314branch = "polkadot-v0.9.27"315316[dependencies.sp-session]317default-features = false318git = "https://github.com/paritytech/substrate"319branch = "polkadot-v0.9.27"320321[dependencies.sp-std]322default-features = false323git = "https://github.com/paritytech/substrate"324branch = "polkadot-v0.9.27"325326[dependencies.sp-transaction-pool]327default-features = false328git = "https://github.com/paritytech/substrate"329branch = "polkadot-v0.9.27"330331[dependencies.sp-version]332default-features = false333git = "https://github.com/paritytech/substrate"334branch = "polkadot-v0.9.27"335336[dependencies.smallvec]337version = '1.6.1'338339################################################################################340# Cumulus dependencies341342[dependencies.parachain-info]343default-features = false344git = "https://github.com/paritytech/cumulus"345branch = "polkadot-v0.9.27"346347[dependencies.cumulus-pallet-aura-ext]348git = "https://github.com/paritytech/cumulus"349branch = "polkadot-v0.9.27"350default-features = false351352[dependencies.cumulus-pallet-parachain-system]353git = "https://github.com/paritytech/cumulus"354branch = "polkadot-v0.9.27"355default-features = false356357[dependencies.cumulus-primitives-core]358git = "https://github.com/paritytech/cumulus"359branch = "polkadot-v0.9.27"360default-features = false361362[dependencies.cumulus-pallet-xcm]363git = "https://github.com/paritytech/cumulus"364branch = "polkadot-v0.9.27"365default-features = false366367[dependencies.cumulus-pallet-dmp-queue]368git = "https://github.com/paritytech/cumulus"369branch = "polkadot-v0.9.27"370default-features = false371372[dependencies.cumulus-pallet-xcmp-queue]373git = "https://github.com/paritytech/cumulus"374branch = "polkadot-v0.9.27"375default-features = false376377[dependencies.cumulus-primitives-utility]378git = "https://github.com/paritytech/cumulus"379branch = "polkadot-v0.9.27"380default-features = false381382[dependencies.cumulus-primitives-timestamp]383git = "https://github.com/paritytech/cumulus"384branch = "polkadot-v0.9.27"385default-features = false386387################################################################################388# Polkadot dependencies389390[dependencies.polkadot-parachain]391git = "https://github.com/paritytech/polkadot"392branch = "release-v0.9.27"393default-features = false394395[dependencies.xcm]396git = "https://github.com/paritytech/polkadot"397branch = "release-v0.9.27"398default-features = false399400[dependencies.xcm-builder]401git = "https://github.com/paritytech/polkadot"402branch = "release-v0.9.27"403default-features = false404405[dependencies.xcm-executor]406git = "https://github.com/paritytech/polkadot"407branch = "release-v0.9.27"408default-features = false409410[dependencies.pallet-xcm]411git = "https://github.com/paritytech/polkadot"412branch = "release-v0.9.27"413default-features = false414415[dependencies.orml-vesting]416git = "https://github.com/open-web3-stack/open-runtime-module-library"417branch = "polkadot-v0.9.27"418version = "0.4.1-dev"419default-features = false420421################################################################################422# local dependencies423424[dependencies]425log = { version = "0.4.16", default-features = false }426up-common = { path = "../../primitives/common", default-features = false }427scale-info = { version = "2.0.1", default-features = false, features = [428    "derive",429] }430derivative = "2.2.0"431pallet-unique = { path = '../../pallets/unique', default-features = false }432up-rpc = { path = "../../primitives/rpc", default-features = false }433rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }434fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }435pallet-inflation = { path = '../../pallets/inflation', default-features = false }436up-data-structs = { path = '../../primitives/data-structs', default-features = false }437pallet-configuration = { default-features = false, path = "../../pallets/configuration" }438pallet-common = { default-features = false, path = "../../pallets/common" }439pallet-structure = { default-features = false, path = "../../pallets/structure" }440pallet-fungible = { default-features = false, path = "../../pallets/fungible" }441pallet-refungible = { default-features = false, path = "../../pallets/refungible" }442pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }443pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }444pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }445pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }446# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }447pallet-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" }448pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }449pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }450pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }451pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }452pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }453pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }454pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }455fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }456fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }457evm-coder = { default-features = false, path = '../../crates/evm-coder' }458up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.27' }459460################################################################################461# Build Dependencies462463[build-dependencies.substrate-wasm-builder]464git = "https://github.com/paritytech/substrate"465branch = "polkadot-v0.9.27"