git.delta.rocks / unique-network / refs/commits / 308db1642565

difftreelog

source

runtime/unique/Cargo.toml17.4 KiBsourcehistory
1################################################################################2# Package34cargo-features = ["workspace-inheritance"]56[package]7authors = ['Unique Network <support@uniquenetwork.io>']8build = 'build.rs'9description = 'Unique Runtime'10edition = '2021'11homepage = 'https://unique.network'12license = 'GPLv3'13name = 'unique-runtime'14repository = 'https://github.com/UniqueNetwork/unique-chain'15version = '0.9.33'1617[package.metadata.docs.rs]18targets = ['x86_64-unknown-linux-gnu']1920[features]21default = ['std', 'unique-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-data-management/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-unique/runtime-benchmarks',41    'pallet-foreign-assets/runtime-benchmarks',42    'pallet-inflation/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-data-management/try-runtime',95    'pallet-maintenance/try-runtime',96]97std = [98    'codec/std',99    'cumulus-pallet-aura-ext/std',100    'cumulus-pallet-parachain-system/std',101    'cumulus-pallet-xcm/std',102    'cumulus-pallet-xcmp-queue/std',103    'cumulus-primitives-core/std',104    'cumulus-primitives-utility/std',105    'frame-try-runtime/std',106    'frame-executive/std',107    'frame-support/std',108    'frame-system/std',109    'frame-system-rpc-runtime-api/std',110    'pallet-aura/std',111    'pallet-balances/std',112    # 'pallet-contracts/std',113    # 'pallet-contracts-primitives/std',114    # 'pallet-contracts-rpc-runtime-api/std',115    # 'pallet-contract-helpers/std',116	"pallet-authorship/std",117	'pallet-collator-selection/std',118	"pallet-session/std",119	"pallet-identity/std",120    'pallet-randomness-collective-flip/std',121    'pallet-sudo/std',122    'pallet-timestamp/std',123    'pallet-transaction-payment/std',124    'pallet-transaction-payment-rpc-runtime-api/std',125    'pallet-treasury/std',126    'pallet-evm/std',127    'pallet-data-management/std',128    'pallet-evm-contract-helpers/std',129    'pallet-evm-transaction-payment/std',130    'pallet-evm-coder-substrate/std',131    'pallet-ethereum/std',132    'pallet-base-fee/std',133    'fp-rpc/std',134    'up-rpc/std',135    'app-promotion-rpc/std',136    'fp-evm-mapping/std',137    'fp-self-contained/std',138    'parachain-info/std',139    'serde',140    'pallet-inflation/std',141    'pallet-configuration/std',142    'pallet-app-promotion/std',143    'pallet-common/std',144    'pallet-structure/std',145    'pallet-fungible/std',146    'pallet-refungible/std',147    'pallet-nonfungible/std',148    'pallet-proxy-rmrk-core/std',149    'pallet-proxy-rmrk-equip/std',150    'pallet-unique/std',151    'pallet-charge-transaction/std',152    'up-data-structs/std',153    'sp-api/std',154    'sp-block-builder/std',155    "sp-consensus-aura/std",156    'sp-core/std',157    'sp-inherents/std',158    'sp-io/std',159    'sp-offchain/std',160    'sp-runtime/std',161    'sp-session/std',162    'sp-std/std',163    'sp-transaction-pool/std',164    'sp-version/std',165    'xcm/std',166    'xcm-builder/std',167    'xcm-executor/std',168    'up-common/std',169    'rmrk-rpc/std',170    'evm-coder/std',171    'up-sponsorship/std',172173    "orml-vesting/std",174    "orml-tokens/std",175    "orml-xtokens/std",176    "orml-traits/std",177    "pallet-foreign-assets/std",178    "pallet-maintenance/std",179]180limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']181unique-runtime = ['foreign-assets']182stubgen = ["evm-coder/stubgen"]183184refungible = []185scheduler = []186rmrk = []187foreign-assets = []188collator-selection = []189190################################################################################191# Substrate Dependencies192193[dependencies.codec]194default-features = false195features = ['derive']196package = 'parity-scale-codec'197version = '3.1.2'198199[dependencies.frame-benchmarking]200default-features = false201git = "https://github.com/paritytech/substrate"202optional = true203branch = "polkadot-v0.9.33"204205[dependencies.frame-try-runtime]206default-features = false207git = "https://github.com/paritytech/substrate"208optional = true209branch = "polkadot-v0.9.33"210211[dependencies.frame-executive]212default-features = false213git = "https://github.com/paritytech/substrate"214branch = "polkadot-v0.9.33"215216[dependencies.frame-support]217default-features = false218git = "https://github.com/paritytech/substrate"219branch = "polkadot-v0.9.33"220221[dependencies.frame-system]222default-features = false223git = "https://github.com/paritytech/substrate"224branch = "polkadot-v0.9.33"225226[dependencies.frame-system-benchmarking]227default-features = false228git = "https://github.com/paritytech/substrate"229optional = true230branch = "polkadot-v0.9.33"231232[dependencies.frame-system-rpc-runtime-api]233default-features = false234git = "https://github.com/paritytech/substrate"235branch = "polkadot-v0.9.33"236237[dependencies.hex-literal]238optional = true239version = '0.3.3'240241[dependencies.serde]242default-features = false243features = ['derive']244optional = true245version = '1.0.130'246247[dependencies.pallet-aura]248default-features = false249git = "https://github.com/paritytech/substrate"250branch = "polkadot-v0.9.33"251252[dependencies.pallet-authorship]253default-features = false254git = 'https://github.com/paritytech/substrate'255branch = 'polkadot-v0.9.33'256257[dependencies.pallet-session]258default-features = false259git = 'https://github.com/paritytech/substrate'260branch = 'polkadot-v0.9.33'261262[dependencies.pallet-identity]263default-features = false264git = 'https://github.com/paritytech/substrate'265branch = 'polkadot-v0.9.33'266267[dependencies.pallet-balances]268default-features = false269git = "https://github.com/paritytech/substrate"270branch = "polkadot-v0.9.33"271272# Contracts specific packages273# [dependencies.pallet-contracts]274# git = 'https://github.com/paritytech/substrate'275# default-features = false276# branch = 'master'277# version = '4.0.0-dev'278279# [dependencies.pallet-contracts-primitives]280# git = 'https://github.com/paritytech/substrate'281# default-features = false282# branch = 'master'283# version = '4.0.0-dev'284285# [dependencies.pallet-contracts-rpc-runtime-api]286# git = 'https://github.com/paritytech/substrate'287# default-features = false288# branch = 'master'289# version = '4.0.0-dev'290291[dependencies.pallet-randomness-collective-flip]292default-features = false293git = "https://github.com/paritytech/substrate"294branch = "polkadot-v0.9.33"295296[dependencies.pallet-sudo]297default-features = false298git = "https://github.com/paritytech/substrate"299branch = "polkadot-v0.9.33"300301[dependencies.pallet-timestamp]302default-features = false303git = "https://github.com/paritytech/substrate"304branch = "polkadot-v0.9.33"305306[dependencies.pallet-transaction-payment]307default-features = false308git = "https://github.com/paritytech/substrate"309branch = "polkadot-v0.9.33"310311[dependencies.pallet-transaction-payment-rpc-runtime-api]312default-features = false313git = "https://github.com/paritytech/substrate"314branch = "polkadot-v0.9.33"315316[dependencies.pallet-treasury]317default-features = false318git = "https://github.com/paritytech/substrate"319branch = "polkadot-v0.9.33"320321[dependencies.sp-arithmetic]322default-features = false323git = "https://github.com/paritytech/substrate"324branch = "polkadot-v0.9.33"325326[dependencies.sp-api]327default-features = false328git = "https://github.com/paritytech/substrate"329branch = "polkadot-v0.9.33"330331[dependencies.sp-block-builder]332default-features = false333git = "https://github.com/paritytech/substrate"334branch = "polkadot-v0.9.33"335336[dependencies.sp-core]337default-features = false338git = "https://github.com/paritytech/substrate"339branch = "polkadot-v0.9.33"340341[dependencies.sp-consensus-aura]342default-features = false343git = "https://github.com/paritytech/substrate"344branch = "polkadot-v0.9.33"345346[dependencies.sp-inherents]347default-features = false348git = "https://github.com/paritytech/substrate"349branch = "polkadot-v0.9.33"350351[dependencies.sp-io]352default-features = false353git = "https://github.com/paritytech/substrate"354branch = "polkadot-v0.9.33"355356[dependencies.sp-offchain]357default-features = false358git = "https://github.com/paritytech/substrate"359branch = "polkadot-v0.9.33"360361[dependencies.sp-runtime]362default-features = false363git = "https://github.com/paritytech/substrate"364branch = "polkadot-v0.9.33"365366[dependencies.sp-session]367default-features = false368git = "https://github.com/paritytech/substrate"369branch = "polkadot-v0.9.33"370371[dependencies.sp-std]372default-features = false373git = "https://github.com/paritytech/substrate"374branch = "polkadot-v0.9.33"375376[dependencies.sp-transaction-pool]377default-features = false378git = "https://github.com/paritytech/substrate"379branch = "polkadot-v0.9.33"380381[dependencies.sp-version]382default-features = false383git = "https://github.com/paritytech/substrate"384branch = "polkadot-v0.9.33"385386[dependencies.smallvec]387version = '1.6.1'388389################################################################################390# Cumulus dependencies391392[dependencies.parachain-info]393default-features = false394git = "https://github.com/paritytech/cumulus"395branch = "polkadot-v0.9.33"396397[dependencies.cumulus-pallet-aura-ext]398git = "https://github.com/paritytech/cumulus"399branch = "polkadot-v0.9.33"400default-features = false401402[dependencies.cumulus-pallet-parachain-system]403git = "https://github.com/paritytech/cumulus"404branch = "polkadot-v0.9.33"405default-features = false406407[dependencies.cumulus-primitives-core]408git = "https://github.com/paritytech/cumulus"409branch = "polkadot-v0.9.33"410default-features = false411412[dependencies.cumulus-pallet-xcm]413git = "https://github.com/paritytech/cumulus"414branch = "polkadot-v0.9.33"415default-features = false416417[dependencies.cumulus-pallet-dmp-queue]418git = "https://github.com/paritytech/cumulus"419branch = "polkadot-v0.9.33"420default-features = false421422[dependencies.cumulus-pallet-xcmp-queue]423git = "https://github.com/paritytech/cumulus"424branch = "polkadot-v0.9.33"425default-features = false426427[dependencies.cumulus-primitives-utility]428git = "https://github.com/paritytech/cumulus"429branch = "polkadot-v0.9.33"430default-features = false431432[dependencies.cumulus-primitives-timestamp]433git = "https://github.com/paritytech/cumulus"434branch = "polkadot-v0.9.33"435default-features = false436437################################################################################438# Polkadot dependencies439440[dependencies.polkadot-parachain]441git = "https://github.com/paritytech/polkadot"442branch = "release-v0.9.33"443default-features = false444445[dependencies.xcm]446git = "https://github.com/paritytech/polkadot"447branch = "release-v0.9.33"448default-features = false449450[dependencies.xcm-builder]451git = "https://github.com/paritytech/polkadot"452branch = "release-v0.9.33"453default-features = false454455[dependencies.xcm-executor]456git = "https://github.com/paritytech/polkadot"457branch = "release-v0.9.33"458default-features = false459460[dependencies.pallet-xcm]461git = "https://github.com/paritytech/polkadot"462branch = "release-v0.9.33"463default-features = false464465################################################################################466# local dependencies467468[dependencies]469orml-vesting.workspace = true470orml-xtokens.workspace = true471orml-tokens.workspace = true472orml-traits.workspace = true473474log = { version = "0.4.16", default-features = false }475up-common = { path = "../../primitives/common", default-features = false }476scale-info = { version = "2.0.1", default-features = false, features = [477    "derive",478] }479derivative = "2.2.0"480pallet-unique = { path = '../../pallets/unique', default-features = false }481up-rpc = { path = "../../primitives/rpc", default-features = false }482app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }483rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }484pallet-inflation = { path = '../../pallets/inflation', default-features = false }485pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }486up-data-structs = { path = '../../primitives/data-structs', default-features = false }487pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }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.33", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }498pallet-data-management = { path = '../../pallets/data-management', 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.33" }503pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }504pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }505fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }506fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }507fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }508fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }509pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }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.33' }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.33"