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

difftreelog

source

runtime/opal/Cargo.toml16.2 KiBsourcehistory
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"