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

difftreelog

source

runtime/unique/Cargo.toml16.6 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.workspace = true1415[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-app-promotion/runtime-benchmarks',42    'pallet-xcm/runtime-benchmarks',43    'sp-runtime/runtime-benchmarks',44    'xcm-builder/runtime-benchmarks',45    'up-data-structs/runtime-benchmarks',46    'pallet-maintenance/runtime-benchmarks',47]48try-runtime = [49    'frame-try-runtime',50    'frame-executive/try-runtime',51    'frame-support/try-runtime',52    'frame-system/try-runtime',53    'cumulus-pallet-parachain-system/try-runtime',54    'parachain-info/try-runtime',55    'pallet-aura/try-runtime',56    'cumulus-pallet-aura-ext/try-runtime',57    'pallet-balances/try-runtime',58    'pallet-randomness-collective-flip/try-runtime',59    'pallet-timestamp/try-runtime',60    'pallet-transaction-payment/try-runtime',61    'pallet-treasury/try-runtime',62    'pallet-sudo/try-runtime',63    'orml-vesting/try-runtime',64    'orml-xtokens/try-runtime',65    'orml-tokens/try-runtime',66    'cumulus-pallet-xcmp-queue/try-runtime',67    'pallet-xcm/try-runtime',68    'cumulus-pallet-xcm/try-runtime',69    'cumulus-pallet-dmp-queue/try-runtime',70    'pallet-inflation/try-runtime',71    'pallet-unique/try-runtime',72    'pallet-configuration/try-runtime',73    'pallet-charge-transaction/try-runtime',74    'pallet-common/try-runtime',75    'pallet-fungible/try-runtime',76    'pallet-refungible/try-runtime',77    'pallet-nonfungible/try-runtime',78    'pallet-structure/try-runtime',79    'pallet-proxy-rmrk-core/try-runtime',80    'pallet-proxy-rmrk-equip/try-runtime',81    'pallet-app-promotion/try-runtime',82    'pallet-foreign-assets/try-runtime',83    'pallet-ethereum/try-runtime',84    'pallet-evm/try-runtime',85    'pallet-evm-coder-substrate/try-runtime',86    'pallet-evm-contract-helpers/try-runtime',87    'pallet-evm-transaction-payment/try-runtime',88    'pallet-evm-migration/try-runtime',89    'pallet-maintenance/try-runtime',90]91std = [92    'codec/std',93    'cumulus-pallet-aura-ext/std',94    'cumulus-pallet-parachain-system/std',95    'cumulus-pallet-xcm/std',96    'cumulus-pallet-xcmp-queue/std',97    'cumulus-primitives-core/std',98    'cumulus-primitives-utility/std',99    'frame-try-runtime/std',100    'frame-executive/std',101    'frame-support/std',102    'frame-system/std',103    'frame-system-rpc-runtime-api/std',104    'pallet-aura/std',105    'pallet-balances/std',106    # 'pallet-contracts/std',107    # 'pallet-contracts-primitives/std',108    # 'pallet-contracts-rpc-runtime-api/std',109    # 'pallet-contract-helpers/std',110    'pallet-randomness-collective-flip/std',111    'pallet-sudo/std',112    'pallet-timestamp/std',113    'pallet-transaction-payment/std',114    'pallet-transaction-payment-rpc-runtime-api/std',115    'pallet-treasury/std',116    'pallet-evm/std',117    'pallet-evm-migration/std',118    'pallet-evm-contract-helpers/std',119    'pallet-evm-transaction-payment/std',120    'pallet-evm-coder-substrate/std',121    'pallet-ethereum/std',122    'pallet-base-fee/std',123    'fp-rpc/std',124    'up-rpc/std',125    'app-promotion-rpc/std',126    'fp-evm-mapping/std',127    'fp-self-contained/std',128    'parachain-info/std',129    'serde',130    'pallet-inflation/std',131    'pallet-configuration/std',132    'pallet-app-promotion/std',133    'pallet-common/std',134    'pallet-structure/std',135    'pallet-fungible/std',136    'pallet-refungible/std',137    'pallet-nonfungible/std',138    'pallet-proxy-rmrk-core/std',139    'pallet-proxy-rmrk-equip/std',140    'pallet-unique/std',141    'pallet-charge-transaction/std',142    'up-data-structs/std',143    'sp-api/std',144    'sp-block-builder/std',145    "sp-consensus-aura/std",146    'sp-core/std',147    'sp-inherents/std',148    'sp-io/std',149    'sp-offchain/std',150    'sp-runtime/std',151    'sp-session/std',152    'sp-std/std',153    'sp-transaction-pool/std',154    'sp-version/std',155    'xcm/std',156    'xcm-builder/std',157    'xcm-executor/std',158    'up-common/std',159    'rmrk-rpc/std',160    'evm-coder/std',161    'up-sponsorship/std',162163    "orml-vesting/std",164    "orml-tokens/std",165    "orml-xtokens/std",166    "orml-traits/std",167    "pallet-foreign-assets/std",168    "pallet-maintenance/std",169]170limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']171unique-runtime = ['foreign-assets']172stubgen = ["evm-coder/stubgen"]173174refungible = []175scheduler = []176rmrk = []177foreign-assets = []178179################################################################################180# Substrate Dependencies181182[dependencies.codec]183default-features = false184features = ['derive']185package = 'parity-scale-codec'186version = '3.1.2'187188[dependencies.frame-benchmarking]189default-features = false190git = "https://github.com/paritytech/substrate"191optional = true192branch = "polkadot-v0.9.36"193194[dependencies.frame-try-runtime]195default-features = false196git = "https://github.com/paritytech/substrate"197optional = true198branch = "polkadot-v0.9.36"199200[dependencies.frame-executive]201default-features = false202git = "https://github.com/paritytech/substrate"203branch = "polkadot-v0.9.36"204205[dependencies.frame-support]206default-features = false207git = "https://github.com/paritytech/substrate"208branch = "polkadot-v0.9.36"209210[dependencies.frame-system]211default-features = false212git = "https://github.com/paritytech/substrate"213branch = "polkadot-v0.9.36"214215[dependencies.frame-system-benchmarking]216default-features = false217git = "https://github.com/paritytech/substrate"218optional = true219branch = "polkadot-v0.9.36"220221[dependencies.frame-system-rpc-runtime-api]222default-features = false223git = "https://github.com/paritytech/substrate"224branch = "polkadot-v0.9.36"225226[dependencies.hex-literal]227optional = true228version = '0.3.3'229230[dependencies.serde]231default-features = false232features = ['derive']233optional = true234version = '1.0.130'235236[dependencies.pallet-aura]237default-features = false238git = "https://github.com/paritytech/substrate"239branch = "polkadot-v0.9.36"240241[dependencies.pallet-balances]242default-features = false243git = "https://github.com/paritytech/substrate"244branch = "polkadot-v0.9.36"245246# Contracts specific packages247# [dependencies.pallet-contracts]248# git = 'https://github.com/paritytech/substrate'249# default-features = false250# branch = 'master'251# version = '4.0.0-dev'252253# [dependencies.pallet-contracts-primitives]254# git = 'https://github.com/paritytech/substrate'255# default-features = false256# branch = 'master'257# version = '4.0.0-dev'258259# [dependencies.pallet-contracts-rpc-runtime-api]260# git = 'https://github.com/paritytech/substrate'261# default-features = false262# branch = 'master'263# version = '4.0.0-dev'264265[dependencies.pallet-randomness-collective-flip]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.36"269270[dependencies.pallet-sudo]271default-features = false272git = "https://github.com/paritytech/substrate"273branch = "polkadot-v0.9.36"274275[dependencies.pallet-timestamp]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.36"279280[dependencies.pallet-transaction-payment]281default-features = false282git = "https://github.com/paritytech/substrate"283branch = "polkadot-v0.9.36"284285[dependencies.pallet-transaction-payment-rpc-runtime-api]286default-features = false287git = "https://github.com/paritytech/substrate"288branch = "polkadot-v0.9.36"289290[dependencies.pallet-treasury]291default-features = false292git = "https://github.com/paritytech/substrate"293branch = "polkadot-v0.9.36"294295[dependencies.sp-arithmetic]296default-features = false297git = "https://github.com/paritytech/substrate"298branch = "polkadot-v0.9.36"299300[dependencies.sp-api]301default-features = false302git = "https://github.com/paritytech/substrate"303branch = "polkadot-v0.9.36"304305[dependencies.sp-block-builder]306default-features = false307git = "https://github.com/paritytech/substrate"308branch = "polkadot-v0.9.36"309310[dependencies.sp-core]311default-features = false312git = "https://github.com/paritytech/substrate"313branch = "polkadot-v0.9.36"314315[dependencies.sp-consensus-aura]316default-features = false317git = "https://github.com/paritytech/substrate"318branch = "polkadot-v0.9.36"319320[dependencies.sp-inherents]321default-features = false322git = "https://github.com/paritytech/substrate"323branch = "polkadot-v0.9.36"324325[dependencies.sp-io]326default-features = false327git = "https://github.com/paritytech/substrate"328branch = "polkadot-v0.9.36"329330[dependencies.sp-offchain]331default-features = false332git = "https://github.com/paritytech/substrate"333branch = "polkadot-v0.9.36"334335[dependencies.sp-runtime]336default-features = false337git = "https://github.com/paritytech/substrate"338branch = "polkadot-v0.9.36"339340[dependencies.sp-session]341default-features = false342git = "https://github.com/paritytech/substrate"343branch = "polkadot-v0.9.36"344345[dependencies.sp-std]346default-features = false347git = "https://github.com/paritytech/substrate"348branch = "polkadot-v0.9.36"349350[dependencies.sp-transaction-pool]351default-features = false352git = "https://github.com/paritytech/substrate"353branch = "polkadot-v0.9.36"354355[dependencies.sp-version]356default-features = false357git = "https://github.com/paritytech/substrate"358branch = "polkadot-v0.9.36"359360[dependencies.smallvec]361version = '1.6.1'362363################################################################################364# Cumulus dependencies365366[dependencies.parachain-info]367default-features = false368git = "https://github.com/paritytech/cumulus"369branch = "polkadot-v0.9.36"370371[dependencies.cumulus-pallet-aura-ext]372git = "https://github.com/paritytech/cumulus"373branch = "polkadot-v0.9.36"374default-features = false375376[dependencies.cumulus-pallet-parachain-system]377git = "https://github.com/paritytech/cumulus"378branch = "polkadot-v0.9.36"379default-features = false380381[dependencies.cumulus-primitives-core]382git = "https://github.com/paritytech/cumulus"383branch = "polkadot-v0.9.36"384default-features = false385386[dependencies.cumulus-pallet-xcm]387git = "https://github.com/paritytech/cumulus"388branch = "polkadot-v0.9.36"389default-features = false390391[dependencies.cumulus-pallet-dmp-queue]392git = "https://github.com/paritytech/cumulus"393branch = "polkadot-v0.9.36"394default-features = false395396[dependencies.cumulus-pallet-xcmp-queue]397git = "https://github.com/paritytech/cumulus"398branch = "polkadot-v0.9.36"399default-features = false400401[dependencies.cumulus-primitives-utility]402git = "https://github.com/paritytech/cumulus"403branch = "polkadot-v0.9.36"404default-features = false405406[dependencies.cumulus-primitives-timestamp]407git = "https://github.com/paritytech/cumulus"408branch = "polkadot-v0.9.36"409default-features = false410411################################################################################412# Polkadot dependencies413414[dependencies.polkadot-parachain]415git = "https://github.com/paritytech/polkadot"416branch = "release-v0.9.36"417default-features = false418419[dependencies.xcm]420git = "https://github.com/paritytech/polkadot"421branch = "release-v0.9.36"422default-features = false423424[dependencies.xcm-builder]425git = "https://github.com/paritytech/polkadot"426branch = "release-v0.9.36"427default-features = false428429[dependencies.xcm-executor]430git = "https://github.com/paritytech/polkadot"431branch = "release-v0.9.36"432default-features = false433434[dependencies.pallet-xcm]435git = "https://github.com/paritytech/polkadot"436branch = "release-v0.9.36"437default-features = false438439################################################################################440# local dependencies441442[dependencies]443orml-vesting.workspace = true444orml-xtokens.workspace = true445orml-tokens.workspace = true446orml-traits.workspace = true447448log = { version = "0.4.16", default-features = false }449up-common = { path = "../../primitives/common", default-features = false }450scale-info = { version = "2.0.1", default-features = false, features = [451    "derive",452] }453derivative = "2.2.0"454pallet-unique = { path = '../../pallets/unique', default-features = false }455up-rpc = { path = "../../primitives/rpc", default-features = false }456app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }457rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }458pallet-inflation = { path = '../../pallets/inflation', default-features = false }459pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }460up-data-structs = { path = '../../primitives/data-structs', default-features = false }461pallet-configuration = { default-features = false, path = "../../pallets/configuration" }462pallet-common = { default-features = false, path = "../../pallets/common" }463pallet-structure = { default-features = false, path = "../../pallets/structure" }464pallet-fungible = { default-features = false, path = "../../pallets/fungible" }465pallet-refungible = { default-features = false, path = "../../pallets/refungible" }466pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }467pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }468pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }469# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }470pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }471pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }472pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }473pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }474pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }475pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }476pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }477pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }478fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }479fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }480fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }481fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }482pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }483evm-coder = { default-features = false, path = '../../crates/evm-coder' }484up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.36' }485pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }486pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }487precompile-utils-macro = { path = "../common/ethereum/precompiles/utils/macro" }488num_enum = { version = "0.5.3", default-features = false }489490################################################################################491# Other Dependencies492493impl-trait-for-tuples = "0.2.2"494495################################################################################496# Dev Dependencies497498[dev-dependencies.logtest]499version = "2.0.0"500501################################################################################502# Build Dependencies503504[build-dependencies.substrate-wasm-builder]505git = "https://github.com/paritytech/substrate"506branch = "polkadot-v0.9.36"