git.delta.rocks / unique-network / refs/commits / 8ee00409a037

difftreelog

source

runtime/opal/Cargo.toml14.3 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    'fp-evm-mapping/std',87    'fp-self-contained/std',88    'parachain-info/std',89    'serde',90    'pallet-inflation/std',91    'pallet-configuration/std',92    'pallet-app-promotion/std',93    'pallet-common/std',94    'pallet-structure/std',95    'pallet-fungible/std',96    'pallet-refungible/std',97    'pallet-nonfungible/std',98    'pallet-proxy-rmrk-core/std',99    'pallet-proxy-rmrk-equip/std',100    'pallet-unique/std',101    'pallet-unique-scheduler/std',102    'pallet-charge-transaction/std',103    'up-data-structs/std',104    'sp-api/std',105    'sp-block-builder/std',106    "sp-consensus-aura/std",107    'sp-core/std',108    'sp-inherents/std',109    'sp-io/std',110    'sp-offchain/std',111    'sp-runtime/std',112    'sp-session/std',113    'sp-std/std',114    'sp-transaction-pool/std',115    'sp-version/std',116    'xcm/std',117    'xcm-builder/std',118    'xcm-executor/std',119    'up-common/std',120    'rmrk-rpc/std',121    'evm-coder/std',122    'up-sponsorship/std',123124    "orml-vesting/std",125]126limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']127opal-runtime = ['refungible', 'scheduler', 'rmrk', 'app-promotion']128129refungible = []130scheduler = []131rmrk = []132app-promotion = []133134################################################################################135# Substrate Dependencies136137[dependencies.codec]138default-features = false139features = ['derive']140package = 'parity-scale-codec'141version = '3.1.2'142143[dependencies.frame-benchmarking]144default-features = false145git = "https://github.com/paritytech/substrate"146optional = true147branch = "polkadot-v0.9.27"148149[dependencies.frame-try-runtime]150default-features = false151git = "https://github.com/paritytech/substrate"152optional = true153branch = "polkadot-v0.9.27"154155[dependencies.frame-executive]156default-features = false157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.27"159160[dependencies.frame-support]161default-features = false162git = "https://github.com/paritytech/substrate"163branch = "polkadot-v0.9.27"164165[dependencies.frame-system]166default-features = false167git = "https://github.com/paritytech/substrate"168branch = "polkadot-v0.9.27"169170[dependencies.frame-system-benchmarking]171default-features = false172git = "https://github.com/paritytech/substrate"173optional = true174branch = "polkadot-v0.9.27"175176[dependencies.frame-system-rpc-runtime-api]177default-features = false178git = "https://github.com/paritytech/substrate"179branch = "polkadot-v0.9.27"180181[dependencies.hex-literal]182optional = true183version = '0.3.3'184185[dependencies.serde]186default-features = false187features = ['derive']188optional = true189version = '1.0.130'190191[dependencies.pallet-aura]192default-features = false193git = "https://github.com/paritytech/substrate"194branch = "polkadot-v0.9.27"195196[dependencies.pallet-balances]197default-features = false198git = "https://github.com/paritytech/substrate"199branch = "polkadot-v0.9.27"200201# Contracts specific packages202# [dependencies.pallet-contracts]203# git = 'https://github.com/paritytech/substrate'204# default-features = false205# branch = 'master'206# version = '4.0.0-dev'207208# [dependencies.pallet-contracts-primitives]209# git = 'https://github.com/paritytech/substrate'210# default-features = false211# branch = 'master'212# version = '4.0.0-dev'213214# [dependencies.pallet-contracts-rpc-runtime-api]215# git = 'https://github.com/paritytech/substrate'216# default-features = false217# branch = 'master'218# version = '4.0.0-dev'219220[dependencies.pallet-randomness-collective-flip]221default-features = false222git = "https://github.com/paritytech/substrate"223branch = "polkadot-v0.9.27"224225[dependencies.pallet-sudo]226default-features = false227git = "https://github.com/paritytech/substrate"228branch = "polkadot-v0.9.27"229230[dependencies.pallet-timestamp]231default-features = false232git = "https://github.com/paritytech/substrate"233branch = "polkadot-v0.9.27"234235[dependencies.pallet-transaction-payment]236default-features = false237git = "https://github.com/paritytech/substrate"238branch = "polkadot-v0.9.27"239240[dependencies.pallet-transaction-payment-rpc-runtime-api]241default-features = false242git = "https://github.com/paritytech/substrate"243branch = "polkadot-v0.9.27"244245[dependencies.pallet-treasury]246default-features = false247git = "https://github.com/paritytech/substrate"248branch = "polkadot-v0.9.27"249250# [dependencies.pallet-vesting]251# default-features = false252# git = 'https://github.com/paritytech/substrate'253# branch = 'master'254255[dependencies.sp-arithmetic]256default-features = false257git = "https://github.com/paritytech/substrate"258branch = "polkadot-v0.9.27"259260[dependencies.sp-api]261default-features = false262git = "https://github.com/paritytech/substrate"263branch = "polkadot-v0.9.27"264265[dependencies.sp-block-builder]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.27"269270[dependencies.sp-core]271default-features = false272git = "https://github.com/paritytech/substrate"273branch = "polkadot-v0.9.27"274275[dependencies.sp-consensus-aura]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.27"279280[dependencies.sp-inherents]281default-features = false282git = "https://github.com/paritytech/substrate"283branch = "polkadot-v0.9.27"284285[dependencies.sp-io]286default-features = false287git = "https://github.com/paritytech/substrate"288branch = "polkadot-v0.9.27"289290[dependencies.sp-offchain]291default-features = false292git = "https://github.com/paritytech/substrate"293branch = "polkadot-v0.9.27"294295[dependencies.sp-runtime]296default-features = false297git = "https://github.com/paritytech/substrate"298branch = "polkadot-v0.9.27"299300[dependencies.sp-session]301default-features = false302git = "https://github.com/paritytech/substrate"303branch = "polkadot-v0.9.27"304305[dependencies.sp-std]306default-features = false307git = "https://github.com/paritytech/substrate"308branch = "polkadot-v0.9.27"309310[dependencies.sp-transaction-pool]311default-features = false312git = "https://github.com/paritytech/substrate"313branch = "polkadot-v0.9.27"314315[dependencies.sp-version]316default-features = false317git = "https://github.com/paritytech/substrate"318branch = "polkadot-v0.9.27"319320[dependencies.smallvec]321version = '1.6.1'322323################################################################################324# Cumulus dependencies325326[dependencies.parachain-info]327default-features = false328git = "https://github.com/paritytech/cumulus"329branch = "polkadot-v0.9.27"330331[dependencies.cumulus-pallet-aura-ext]332git = "https://github.com/paritytech/cumulus"333branch = "polkadot-v0.9.27"334default-features = false335336[dependencies.cumulus-pallet-parachain-system]337git = "https://github.com/paritytech/cumulus"338branch = "polkadot-v0.9.27"339default-features = false340341[dependencies.cumulus-primitives-core]342git = "https://github.com/paritytech/cumulus"343branch = "polkadot-v0.9.27"344default-features = false345346[dependencies.cumulus-pallet-xcm]347git = "https://github.com/paritytech/cumulus"348branch = "polkadot-v0.9.27"349default-features = false350351[dependencies.cumulus-pallet-dmp-queue]352git = "https://github.com/paritytech/cumulus"353branch = "polkadot-v0.9.27"354default-features = false355356[dependencies.cumulus-pallet-xcmp-queue]357git = "https://github.com/paritytech/cumulus"358branch = "polkadot-v0.9.27"359default-features = false360361[dependencies.cumulus-primitives-utility]362git = "https://github.com/paritytech/cumulus"363branch = "polkadot-v0.9.27"364default-features = false365366[dependencies.cumulus-primitives-timestamp]367git = "https://github.com/paritytech/cumulus"368branch = "polkadot-v0.9.27"369default-features = false370371################################################################################372# Polkadot dependencies373374[dependencies.polkadot-parachain]375git = "https://github.com/paritytech/polkadot"376branch = "release-v0.9.27"377default-features = false378379[dependencies.xcm]380git = "https://github.com/paritytech/polkadot"381branch = "release-v0.9.27"382default-features = false383384[dependencies.xcm-builder]385git = "https://github.com/paritytech/polkadot"386branch = "release-v0.9.27"387default-features = false388389[dependencies.xcm-executor]390git = "https://github.com/paritytech/polkadot"391branch = "release-v0.9.27"392default-features = false393394[dependencies.pallet-xcm]395git = "https://github.com/paritytech/polkadot"396branch = "release-v0.9.27"397default-features = false398399[dependencies.orml-vesting]400git = "https://github.com/open-web3-stack/open-runtime-module-library"401branch = "polkadot-v0.9.27"402version = "0.4.1-dev"403default-features = false404405################################################################################406# local dependencies407408[dependencies]409log = { version = "0.4.16", default-features = false }410up-common = { path = "../../primitives/common", default-features = false }411scale-info = { version = "2.0.1", default-features = false, features = [412    "derive",413] }414derivative = "2.2.0"415pallet-unique = { path = '../../pallets/unique', default-features = false }416up-rpc = { path = "../../primitives/rpc", default-features = false }417rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }418fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }419pallet-inflation = { path = '../../pallets/inflation', default-features = false }420pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }421up-data-structs = { path = '../../primitives/data-structs', default-features = false }422pallet-configuration = { default-features = false, path = "../../pallets/configuration" }423pallet-common = { default-features = false, path = "../../pallets/common" }424pallet-structure = { default-features = false, path = "../../pallets/structure" }425pallet-fungible = { default-features = false, path = "../../pallets/fungible" }426pallet-refungible = { default-features = false, path = "../../pallets/refungible" }427pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }428pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }429pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }430pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }431# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }432pallet-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" }433pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }434pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }435pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }436pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }437pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }438pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }439pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }440fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }441fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }442evm-coder = { default-features = false, path = '../../crates/evm-coder' }443up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.27' }444445################################################################################446# Build Dependencies447448[build-dependencies.substrate-wasm-builder]449git = "https://github.com/paritytech/substrate"450branch = "polkadot-v0.9.27"