git.delta.rocks / unique-network / refs/commits / 4176e4ddae02

difftreelog

source

runtime/unique/Cargo.toml17.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-collator-selection/runtime-benchmarks',42    'pallet-identity/runtime-benchmarks',43    'pallet-app-promotion/runtime-benchmarks',44    'pallet-xcm/runtime-benchmarks',45    'sp-runtime/runtime-benchmarks',46    'xcm-builder/runtime-benchmarks',47    'up-data-structs/runtime-benchmarks',48    'pallet-maintenance/runtime-benchmarks',49]50try-runtime = [51    'frame-try-runtime',52    'frame-executive/try-runtime',53    'frame-support/try-runtime',54    'frame-system/try-runtime',55    'cumulus-pallet-parachain-system/try-runtime',56    'parachain-info/try-runtime',57    'pallet-aura/try-runtime',58    'cumulus-pallet-aura-ext/try-runtime',59    'pallet-balances/try-runtime',60    'pallet-randomness-collective-flip/try-runtime',61    'pallet-timestamp/try-runtime',62    'pallet-transaction-payment/try-runtime',63    'pallet-treasury/try-runtime',64    'pallet-sudo/try-runtime',65    'orml-vesting/try-runtime',66    'orml-xtokens/try-runtime',67    'orml-tokens/try-runtime',68    'cumulus-pallet-xcmp-queue/try-runtime',69    'pallet-xcm/try-runtime',70    'cumulus-pallet-xcm/try-runtime',71    'cumulus-pallet-dmp-queue/try-runtime',72	"pallet-authorship/try-runtime",73	"pallet-collator-selection/try-runtime",74	"pallet-session/try-runtime",75	"pallet-identity/try-runtime",76    'pallet-inflation/try-runtime',77    'pallet-unique/try-runtime',78    'pallet-configuration/try-runtime',79    'pallet-charge-transaction/try-runtime',80    'pallet-common/try-runtime',81    'pallet-fungible/try-runtime',82    'pallet-refungible/try-runtime',83    'pallet-nonfungible/try-runtime',84    'pallet-structure/try-runtime',85    'pallet-proxy-rmrk-core/try-runtime',86    'pallet-proxy-rmrk-equip/try-runtime',87    'pallet-app-promotion/try-runtime',88    'pallet-foreign-assets/try-runtime',89    'pallet-ethereum/try-runtime',90    'pallet-evm/try-runtime',91    'pallet-evm-coder-substrate/try-runtime',92    'pallet-evm-contract-helpers/try-runtime',93    'pallet-evm-transaction-payment/try-runtime',94    'pallet-evm-migration/try-runtime',95    'pallet-maintenance/try-runtime',96    'fp-self-contained/try-runtime',97]98std = [99    'codec/std',100    'cumulus-pallet-aura-ext/std',101    'cumulus-pallet-parachain-system/std',102    'cumulus-pallet-xcm/std',103    'cumulus-pallet-xcmp-queue/std',104    'cumulus-primitives-core/std',105    'cumulus-primitives-utility/std',106    'frame-try-runtime/std',107    'frame-executive/std',108    'frame-support/std',109    'frame-system/std',110    'frame-system-rpc-runtime-api/std',111    'pallet-aura/std',112    'pallet-balances/std',113    # 'pallet-contracts/std',114    # 'pallet-contracts-primitives/std',115    # 'pallet-contracts-rpc-runtime-api/std',116    # 'pallet-contract-helpers/std',117	"pallet-authorship/std",118	'pallet-collator-selection/std',119	"pallet-session/std",120	"pallet-identity/std",121    'pallet-randomness-collective-flip/std',122    'pallet-sudo/std',123    'pallet-timestamp/std',124    'pallet-transaction-payment/std',125    'pallet-transaction-payment-rpc-runtime-api/std',126    'pallet-treasury/std',127    'pallet-evm/std',128    'pallet-evm-migration/std',129    'pallet-evm-contract-helpers/std',130    'pallet-evm-transaction-payment/std',131    'pallet-evm-coder-substrate/std',132    'pallet-ethereum/std',133    'pallet-base-fee/std',134    'fp-rpc/std',135    'up-rpc/std',136    'up-pov-estimate-rpc/std',137    'app-promotion-rpc/std',138    'fp-evm-mapping/std',139    'fp-self-contained/std',140    'parachain-info/std',141    'serde',142    'pallet-inflation/std',143    'pallet-configuration/std',144    'pallet-app-promotion/std',145    'pallet-common/std',146    'pallet-structure/std',147    'pallet-fungible/std',148    'pallet-refungible/std',149    'pallet-nonfungible/std',150    'pallet-proxy-rmrk-core/std',151    'pallet-proxy-rmrk-equip/std',152    'pallet-unique/std',153    'pallet-charge-transaction/std',154    'up-data-structs/std',155    'sp-api/std',156    'sp-block-builder/std',157    "sp-consensus-aura/std",158    'sp-core/std',159    'sp-inherents/std',160    'sp-io/std',161    'sp-offchain/std',162    'sp-runtime/std',163    'sp-session/std',164    'sp-std/std',165    'sp-transaction-pool/std',166    'sp-version/std',167    'xcm/std',168    'xcm-builder/std',169    'xcm-executor/std',170    'up-common/std',171    'rmrk-rpc/std',172    'evm-coder/std',173    'up-sponsorship/std',174175    "orml-vesting/std",176    "orml-tokens/std",177    "orml-xtokens/std",178    "orml-traits/std",179    "pallet-foreign-assets/std",180    "pallet-maintenance/std",181]182limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']183unique-runtime = ['foreign-assets']184pov-estimate = []185stubgen = ["evm-coder/stubgen"]186187refungible = []188scheduler = []189rmrk = []190foreign-assets = []191collator-selection = []192193################################################################################194# Substrate Dependencies195196[dependencies.codec]197default-features = false198features = ['derive']199package = 'parity-scale-codec'200version = '3.1.2'201202[dependencies.frame-benchmarking]203default-features = false204git = "https://github.com/paritytech/substrate"205optional = true206branch = "polkadot-v0.9.36"207208[dependencies.frame-try-runtime]209default-features = false210git = "https://github.com/paritytech/substrate"211optional = true212branch = "polkadot-v0.9.36"213214[dependencies.frame-executive]215default-features = false216git = "https://github.com/paritytech/substrate"217branch = "polkadot-v0.9.36"218219[dependencies.frame-support]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.36"223224[dependencies.frame-system]225default-features = false226git = "https://github.com/paritytech/substrate"227branch = "polkadot-v0.9.36"228229[dependencies.frame-system-benchmarking]230default-features = false231git = "https://github.com/paritytech/substrate"232optional = true233branch = "polkadot-v0.9.36"234235[dependencies.frame-system-rpc-runtime-api]236default-features = false237git = "https://github.com/paritytech/substrate"238branch = "polkadot-v0.9.36"239240[dependencies.hex-literal]241optional = true242version = '0.3.3'243244[dependencies.serde]245default-features = false246features = ['derive']247optional = true248version = '1.0.130'249250[dependencies.pallet-aura]251default-features = false252git = "https://github.com/paritytech/substrate"253branch = "polkadot-v0.9.36"254255[dependencies.pallet-authorship]256default-features = false257git = 'https://github.com/paritytech/substrate'258branch = 'polkadot-v0.9.36'259260[dependencies.pallet-session]261default-features = false262git = 'https://github.com/paritytech/substrate'263branch = 'polkadot-v0.9.36'264265[dependencies.pallet-balances]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.36"269270# Contracts specific packages271# [dependencies.pallet-contracts]272# git = 'https://github.com/paritytech/substrate'273# default-features = false274# branch = 'master'275# version = '4.0.0-dev'276277# [dependencies.pallet-contracts-primitives]278# git = 'https://github.com/paritytech/substrate'279# default-features = false280# branch = 'master'281# version = '4.0.0-dev'282283# [dependencies.pallet-contracts-rpc-runtime-api]284# git = 'https://github.com/paritytech/substrate'285# default-features = false286# branch = 'master'287# version = '4.0.0-dev'288289[dependencies.pallet-randomness-collective-flip]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.36"293294[dependencies.pallet-sudo]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.36"298299[dependencies.pallet-timestamp]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.36"303304[dependencies.pallet-transaction-payment]305default-features = false306git = "https://github.com/paritytech/substrate"307branch = "polkadot-v0.9.36"308309[dependencies.pallet-transaction-payment-rpc-runtime-api]310default-features = false311git = "https://github.com/paritytech/substrate"312branch = "polkadot-v0.9.36"313314[dependencies.pallet-treasury]315default-features = false316git = "https://github.com/paritytech/substrate"317branch = "polkadot-v0.9.36"318319[dependencies.sp-arithmetic]320default-features = false321git = "https://github.com/paritytech/substrate"322branch = "polkadot-v0.9.36"323324[dependencies.sp-api]325default-features = false326git = "https://github.com/paritytech/substrate"327branch = "polkadot-v0.9.36"328329[dependencies.sp-block-builder]330default-features = false331git = "https://github.com/paritytech/substrate"332branch = "polkadot-v0.9.36"333334[dependencies.sp-core]335default-features = false336git = "https://github.com/paritytech/substrate"337branch = "polkadot-v0.9.36"338339[dependencies.sp-consensus-aura]340default-features = false341git = "https://github.com/paritytech/substrate"342branch = "polkadot-v0.9.36"343344[dependencies.sp-inherents]345default-features = false346git = "https://github.com/paritytech/substrate"347branch = "polkadot-v0.9.36"348349[dependencies.sp-io]350default-features = false351git = "https://github.com/paritytech/substrate"352branch = "polkadot-v0.9.36"353354[dependencies.sp-offchain]355default-features = false356git = "https://github.com/paritytech/substrate"357branch = "polkadot-v0.9.36"358359[dependencies.sp-runtime]360default-features = false361git = "https://github.com/paritytech/substrate"362branch = "polkadot-v0.9.36"363364[dependencies.sp-session]365default-features = false366git = "https://github.com/paritytech/substrate"367branch = "polkadot-v0.9.36"368369[dependencies.sp-std]370default-features = false371git = "https://github.com/paritytech/substrate"372branch = "polkadot-v0.9.36"373374[dependencies.sp-transaction-pool]375default-features = false376git = "https://github.com/paritytech/substrate"377branch = "polkadot-v0.9.36"378379[dependencies.sp-version]380default-features = false381git = "https://github.com/paritytech/substrate"382branch = "polkadot-v0.9.36"383384[dependencies.smallvec]385version = '1.6.1'386387################################################################################388# Cumulus dependencies389390[dependencies.parachain-info]391default-features = false392git = "https://github.com/paritytech/cumulus"393branch = "polkadot-v0.9.36"394395[dependencies.cumulus-pallet-aura-ext]396git = "https://github.com/paritytech/cumulus"397branch = "polkadot-v0.9.36"398default-features = false399400[dependencies.cumulus-pallet-parachain-system]401git = "https://github.com/paritytech/cumulus"402branch = "polkadot-v0.9.36"403default-features = false404405[dependencies.cumulus-primitives-core]406git = "https://github.com/paritytech/cumulus"407branch = "polkadot-v0.9.36"408default-features = false409410[dependencies.cumulus-pallet-xcm]411git = "https://github.com/paritytech/cumulus"412branch = "polkadot-v0.9.36"413default-features = false414415[dependencies.cumulus-pallet-dmp-queue]416git = "https://github.com/paritytech/cumulus"417branch = "polkadot-v0.9.36"418default-features = false419420[dependencies.cumulus-pallet-xcmp-queue]421git = "https://github.com/paritytech/cumulus"422branch = "polkadot-v0.9.36"423default-features = false424425[dependencies.cumulus-primitives-utility]426git = "https://github.com/paritytech/cumulus"427branch = "polkadot-v0.9.36"428default-features = false429430[dependencies.cumulus-primitives-timestamp]431git = "https://github.com/paritytech/cumulus"432branch = "polkadot-v0.9.36"433default-features = false434435################################################################################436# Polkadot dependencies437438[dependencies.polkadot-parachain]439git = "https://github.com/paritytech/polkadot"440branch = "release-v0.9.36"441default-features = false442443[dependencies.xcm]444git = "https://github.com/paritytech/polkadot"445branch = "release-v0.9.36"446default-features = false447448[dependencies.xcm-builder]449git = "https://github.com/paritytech/polkadot"450branch = "release-v0.9.36"451default-features = false452453[dependencies.xcm-executor]454git = "https://github.com/paritytech/polkadot"455branch = "release-v0.9.36"456default-features = false457458[dependencies.pallet-xcm]459git = "https://github.com/paritytech/polkadot"460branch = "release-v0.9.36"461default-features = false462463################################################################################464# local dependencies465466[dependencies]467orml-vesting.workspace = true468orml-xtokens.workspace = true469orml-tokens.workspace = true470orml-traits.workspace = true471472log = { version = "0.4.16", default-features = false }473up-common = { path = "../../primitives/common", default-features = false }474scale-info = { version = "2.0.1", default-features = false, features = [475    "derive",476] }477derivative = "2.2.0"478pallet-unique = { path = '../../pallets/unique', default-features = false }479up-rpc = { path = "../../primitives/rpc", default-features = false }480up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }481app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }482rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }483pallet-inflation = { path = '../../pallets/inflation', default-features = false }484pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }485up-data-structs = { path = '../../primitives/data-structs', default-features = false }486pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }487pallet-identity = { default-features = false, path = "../../pallets/identity" }488pallet-configuration = { default-features = false, path = "../../pallets/configuration" }489pallet-common = { default-features = false, path = "../../pallets/common" }490pallet-structure = { default-features = false, path = "../../pallets/structure" }491pallet-fungible = { default-features = false, path = "../../pallets/fungible" }492pallet-refungible = { default-features = false, path = "../../pallets/refungible" }493pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }494pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }495pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }496# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }497pallet-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" }498pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }499pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }500pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }501pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }502pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }503pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }504pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }505fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }506fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }507fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }508fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }509pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }510evm-coder = { default-features = false, path = '../../crates/evm-coder' }511up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.36' }512pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }513pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }514precompile-utils-macro = { path = "../common/ethereum/precompiles/utils/macro" }515num_enum = { version = "0.5.3", default-features = false }516517################################################################################518# Other Dependencies519520impl-trait-for-tuples = "0.2.2"521522################################################################################523# Dev Dependencies524525[dev-dependencies.logtest]526version = "2.0.0"527528################################################################################529# Build Dependencies530531[build-dependencies.substrate-wasm-builder]532git = "https://github.com/paritytech/substrate"533branch = "polkadot-v0.9.36"