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

difftreelog

source

runtime/unique/Cargo.toml15.5 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Unique Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'unique-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', 'unique-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-foreign-assets/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    'up-data-structs/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-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    "orml-tokens/std",127    "orml-xtokens/std",128    "orml-traits/std",129    "pallet-foreign-assets/std"130]131limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']132unique-runtime = []133134refungible = []135scheduler = []136rmrk = []137foreign-assets = []138139################################################################################140# Substrate Dependencies141142[dependencies.codec]143default-features = false144features = ['derive']145package = 'parity-scale-codec'146version = '3.1.2'147148[dependencies.frame-benchmarking]149default-features = false150git = "https://github.com/paritytech/substrate"151optional = true152branch = "polkadot-v0.9.29"153154[dependencies.frame-try-runtime]155default-features = false156git = "https://github.com/paritytech/substrate"157optional = true158branch = "polkadot-v0.9.29"159160[dependencies.frame-executive]161default-features = false162git = "https://github.com/paritytech/substrate"163branch = "polkadot-v0.9.29"164165[dependencies.frame-support]166default-features = false167git = "https://github.com/paritytech/substrate"168branch = "polkadot-v0.9.29"169170[dependencies.frame-system]171default-features = false172git = "https://github.com/paritytech/substrate"173branch = "polkadot-v0.9.29"174175[dependencies.frame-system-benchmarking]176default-features = false177git = "https://github.com/paritytech/substrate"178optional = true179branch = "polkadot-v0.9.29"180181[dependencies.frame-system-rpc-runtime-api]182default-features = false183git = "https://github.com/paritytech/substrate"184branch = "polkadot-v0.9.29"185186[dependencies.hex-literal]187optional = true188version = '0.3.3'189190[dependencies.serde]191default-features = false192features = ['derive']193optional = true194version = '1.0.130'195196[dependencies.pallet-aura]197default-features = false198git = "https://github.com/paritytech/substrate"199branch = "polkadot-v0.9.29"200201[dependencies.pallet-balances]202default-features = false203git = "https://github.com/paritytech/substrate"204branch = "polkadot-v0.9.29"205206# Contracts specific packages207# [dependencies.pallet-contracts]208# git = 'https://github.com/paritytech/substrate'209# default-features = false210# branch = 'master'211# version = '4.0.0-dev'212213# [dependencies.pallet-contracts-primitives]214# git = 'https://github.com/paritytech/substrate'215# default-features = false216# branch = 'master'217# version = '4.0.0-dev'218219# [dependencies.pallet-contracts-rpc-runtime-api]220# git = 'https://github.com/paritytech/substrate'221# default-features = false222# branch = 'master'223# version = '4.0.0-dev'224225[dependencies.pallet-randomness-collective-flip]226default-features = false227git = "https://github.com/paritytech/substrate"228branch = "polkadot-v0.9.29"229230[dependencies.pallet-sudo]231default-features = false232git = "https://github.com/paritytech/substrate"233branch = "polkadot-v0.9.29"234235[dependencies.pallet-timestamp]236default-features = false237git = "https://github.com/paritytech/substrate"238branch = "polkadot-v0.9.29"239240[dependencies.pallet-transaction-payment]241default-features = false242git = "https://github.com/paritytech/substrate"243branch = "polkadot-v0.9.29"244245[dependencies.pallet-transaction-payment-rpc-runtime-api]246default-features = false247git = "https://github.com/paritytech/substrate"248branch = "polkadot-v0.9.29"249250[dependencies.pallet-treasury]251default-features = false252git = "https://github.com/paritytech/substrate"253branch = "polkadot-v0.9.29"254255# [dependencies.pallet-vesting]256# default-features = false257# git = 'https://github.com/paritytech/substrate'258# branch = 'master'259260[dependencies.sp-arithmetic]261default-features = false262git = "https://github.com/paritytech/substrate"263branch = "polkadot-v0.9.29"264265[dependencies.sp-api]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.29"269270[dependencies.sp-block-builder]271default-features = false272git = "https://github.com/paritytech/substrate"273branch = "polkadot-v0.9.29"274275[dependencies.sp-core]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.29"279280[dependencies.sp-consensus-aura]281default-features = false282git = "https://github.com/paritytech/substrate"283branch = "polkadot-v0.9.29"284285[dependencies.sp-inherents]286default-features = false287git = "https://github.com/paritytech/substrate"288branch = "polkadot-v0.9.29"289290[dependencies.sp-io]291default-features = false292git = "https://github.com/paritytech/substrate"293branch = "polkadot-v0.9.29"294295[dependencies.sp-offchain]296default-features = false297git = "https://github.com/paritytech/substrate"298branch = "polkadot-v0.9.29"299300[dependencies.sp-runtime]301default-features = false302git = "https://github.com/paritytech/substrate"303branch = "polkadot-v0.9.29"304305[dependencies.sp-session]306default-features = false307git = "https://github.com/paritytech/substrate"308branch = "polkadot-v0.9.29"309310[dependencies.sp-std]311default-features = false312git = "https://github.com/paritytech/substrate"313branch = "polkadot-v0.9.29"314315[dependencies.sp-transaction-pool]316default-features = false317git = "https://github.com/paritytech/substrate"318branch = "polkadot-v0.9.29"319320[dependencies.sp-version]321default-features = false322git = "https://github.com/paritytech/substrate"323branch = "polkadot-v0.9.29"324325[dependencies.smallvec]326version = '1.6.1'327328################################################################################329# Cumulus dependencies330331[dependencies.parachain-info]332default-features = false333git = "https://github.com/paritytech/cumulus"334branch = "polkadot-v0.9.29"335336[dependencies.cumulus-pallet-aura-ext]337git = "https://github.com/paritytech/cumulus"338branch = "polkadot-v0.9.29"339default-features = false340341[dependencies.cumulus-pallet-parachain-system]342git = "https://github.com/paritytech/cumulus"343branch = "polkadot-v0.9.29"344default-features = false345346[dependencies.cumulus-primitives-core]347git = "https://github.com/paritytech/cumulus"348branch = "polkadot-v0.9.29"349default-features = false350351[dependencies.cumulus-pallet-xcm]352git = "https://github.com/paritytech/cumulus"353branch = "polkadot-v0.9.29"354default-features = false355356[dependencies.cumulus-pallet-dmp-queue]357git = "https://github.com/paritytech/cumulus"358branch = "polkadot-v0.9.29"359default-features = false360361[dependencies.cumulus-pallet-xcmp-queue]362git = "https://github.com/paritytech/cumulus"363branch = "polkadot-v0.9.29"364default-features = false365366[dependencies.cumulus-primitives-utility]367git = "https://github.com/paritytech/cumulus"368branch = "polkadot-v0.9.29"369default-features = false370371[dependencies.cumulus-primitives-timestamp]372git = "https://github.com/paritytech/cumulus"373branch = "polkadot-v0.9.29"374default-features = false375376################################################################################377# Polkadot dependencies378379[dependencies.polkadot-parachain]380git = "https://github.com/paritytech/polkadot"381branch = "release-v0.9.29"382default-features = false383384[dependencies.xcm]385git = "https://github.com/paritytech/polkadot"386branch = "release-v0.9.29"387default-features = false388389[dependencies.xcm-builder]390git = "https://github.com/paritytech/polkadot"391branch = "release-v0.9.29"392default-features = false393394[dependencies.xcm-executor]395git = "https://github.com/paritytech/polkadot"396branch = "release-v0.9.29"397default-features = false398399[dependencies.pallet-xcm]400git = "https://github.com/paritytech/polkadot"401branch = "release-v0.9.29"402default-features = false403404[dependencies.orml-vesting]405git = "https://github.com/UniqueNetwork/open-runtime-module-library"406branch = "polkadot-v0.9.29"407version = "0.4.1-dev"408default-features = false409410[dependencies.orml-xtokens]411git = "https://github.com/UniqueNetwork/open-runtime-module-library"412branch = "polkadot-v0.9.29"413version = "0.4.1-dev"414default-features = false415416[dependencies.orml-tokens]417git = "https://github.com/UniqueNetwork/open-runtime-module-library"418branch = "polkadot-v0.9.29"419version = "0.4.1-dev"420default-features = false421422[dependencies.orml-traits]423git = "https://github.com/UniqueNetwork/open-runtime-module-library"424branch = "polkadot-v0.9.29"425version = "0.4.1-dev"426default-features = false427################################################################################428# local dependencies429430[dependencies]431log = { version = "0.4.16", default-features = false }432up-common = { path = "../../primitives/common", default-features = false }433scale-info = { version = "2.0.1", default-features = false, features = [434    "derive",435] }436derivative = "2.2.0"437pallet-unique = { path = '../../pallets/unique', default-features = false }438up-rpc = { path = "../../primitives/rpc", default-features = false }439app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}440rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }441pallet-inflation = { path = '../../pallets/inflation', default-features = false }442pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }443up-data-structs = { path = '../../primitives/data-structs', default-features = false }444pallet-configuration = { default-features = false, path = "../../pallets/configuration" }445pallet-common = { default-features = false, path = "../../pallets/common" }446pallet-structure = { default-features = false, path = "../../pallets/structure" }447pallet-fungible = { default-features = false, path = "../../pallets/fungible" }448pallet-refungible = { default-features = false, path = "../../pallets/refungible" }449pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }450pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }451pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }452pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }453# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }454pallet-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" }455pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }456pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }457pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }458pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }459pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29-fee-limit" }460pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29-fee-limit" }461pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29-fee-limit" }462fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29-fee-limit" }463fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29-fee-limit" }464fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29-fee-limit" }465evm-coder = { default-features = false, path = '../../crates/evm-coder' }466up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.29' }467pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }468469################################################################################470# Other Dependencies471472impl-trait-for-tuples = "0.2.2"473474################################################################################475# Dev Dependencies476477[dev-dependencies.logtest]478version = "2.0.0"479480################################################################################481# Build Dependencies482483[build-dependencies.substrate-wasm-builder]484git = "https://github.com/paritytech/substrate"485branch = "polkadot-v0.9.29"