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

difftreelog

source

runtime/quartz/Cargo.toml14.2 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Quartz Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'quartz-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.24'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'quartz-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-inflation/runtime-benchmarks',40    'pallet-unique-scheduler/runtime-benchmarks',41    'pallet-xcm/runtime-benchmarks',42    'sp-runtime/runtime-benchmarks',43    'xcm-builder/runtime-benchmarks',44]45try-runtime = [46    'frame-try-runtime',47    'frame-executive/try-runtime',48    'frame-system/try-runtime',49]50std = [51    'codec/std',52    'cumulus-pallet-aura-ext/std',53    'cumulus-pallet-parachain-system/std',54    'cumulus-pallet-xcm/std',55    'cumulus-pallet-xcmp-queue/std',56    'cumulus-primitives-core/std',57    'cumulus-primitives-utility/std',58    'frame-try-runtime/std',59    'frame-executive/std',60    'frame-support/std',61    'frame-system/std',62    'frame-system-rpc-runtime-api/std',63    'pallet-aura/std',64    'pallet-balances/std',65    # 'pallet-contracts/std',66    # 'pallet-contracts-primitives/std',67    # 'pallet-contracts-rpc-runtime-api/std',68    # 'pallet-contract-helpers/std',69    'pallet-randomness-collective-flip/std',70    'pallet-sudo/std',71    'pallet-timestamp/std',72    'pallet-transaction-payment/std',73    'pallet-transaction-payment-rpc-runtime-api/std',74    'pallet-treasury/std',75    # 'pallet-vesting/std',76    'pallet-evm/std',77    'pallet-evm-migration/std',78    'pallet-evm-contract-helpers/std',79    'pallet-evm-transaction-payment/std',80    'pallet-evm-coder-substrate/std',81    'pallet-ethereum/std',82    'pallet-base-fee/std',83    'fp-rpc/std',84    'up-rpc/std',85    'fp-evm-mapping/std',86    'fp-self-contained/std',87    'parachain-info/std',88    'serde',89    'pallet-inflation/std',90    'pallet-configuration/std',91    'pallet-common/std',92    'pallet-structure/std',93    'pallet-fungible/std',94    'pallet-refungible/std',95    'pallet-nonfungible/std',96    'pallet-proxy-rmrk-core/std',97    'pallet-proxy-rmrk-equip/std',98    'pallet-unique/std',99    'pallet-unique-scheduler/std',100    'pallet-charge-transaction/std',101    'up-data-structs/std',102    'sp-api/std',103    'sp-block-builder/std',104    "sp-consensus-aura/std",105    'sp-core/std',106    'sp-inherents/std',107    'sp-io/std',108    'sp-offchain/std',109    'sp-runtime/std',110    'sp-session/std',111    'sp-std/std',112    'sp-transaction-pool/std',113    'sp-version/std',114    'xcm/std',115    'xcm-builder/std',116    'xcm-executor/std',117    'up-common/std',118119    "orml-vesting/std",120]121limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']122quartz-runtime = []123124refungible = []125scheduler = []126rmrk = []127128################################################################################129# Substrate Dependencies130131[dependencies.codec]132default-features = false133features = ['derive']134package = 'parity-scale-codec'135version = '3.1.2'136137[dependencies.frame-benchmarking]138default-features = false139git = "https://github.com/paritytech/substrate"140optional = true141branch = "polkadot-v0.9.24"142143[dependencies.frame-try-runtime]144default-features = false145git = 'https://github.com/paritytech/substrate'146optional = true147branch = 'polkadot-v0.9.24'148149[dependencies.frame-executive]150default-features = false151git = "https://github.com/paritytech/substrate"152branch = "polkadot-v0.9.24"153154[dependencies.frame-support]155default-features = false156git = "https://github.com/paritytech/substrate"157branch = "polkadot-v0.9.24"158159[dependencies.frame-system]160default-features = false161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.24"163164[dependencies.frame-system-benchmarking]165default-features = false166git = "https://github.com/paritytech/substrate"167optional = true168branch = "polkadot-v0.9.24"169170[dependencies.frame-system-rpc-runtime-api]171default-features = false172git = "https://github.com/paritytech/substrate"173branch = "polkadot-v0.9.24"174175[dependencies.hex-literal]176optional = true177version = '0.3.3'178179[dependencies.serde]180default-features = false181features = ['derive']182optional = true183version = '1.0.130'184185[dependencies.pallet-aura]186default-features = false187git = "https://github.com/paritytech/substrate"188branch = "polkadot-v0.9.24"189190[dependencies.pallet-balances]191default-features = false192git = "https://github.com/paritytech/substrate"193branch = "polkadot-v0.9.24"194195# Contracts specific packages196# [dependencies.pallet-contracts]197# git = 'https://github.com/paritytech/substrate'198# default-features = false199# branch = 'master'200# version = '4.0.0-dev'201202# [dependencies.pallet-contracts-primitives]203# git = 'https://github.com/paritytech/substrate'204# default-features = false205# branch = 'master'206# version = '4.0.0-dev'207208# [dependencies.pallet-contracts-rpc-runtime-api]209# git = 'https://github.com/paritytech/substrate'210# default-features = false211# branch = 'master'212# version = '4.0.0-dev'213214[dependencies.pallet-randomness-collective-flip]215default-features = false216git = "https://github.com/paritytech/substrate"217branch = "polkadot-v0.9.24"218219[dependencies.pallet-sudo]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.24"223224[dependencies.pallet-timestamp]225default-features = false226git = "https://github.com/paritytech/substrate"227branch = "polkadot-v0.9.24"228229[dependencies.pallet-transaction-payment]230default-features = false231git = "https://github.com/paritytech/substrate"232branch = "polkadot-v0.9.24"233234[dependencies.pallet-transaction-payment-rpc-runtime-api]235default-features = false236git = "https://github.com/paritytech/substrate"237branch = "polkadot-v0.9.24"238239[dependencies.pallet-treasury]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.24"243244# [dependencies.pallet-vesting]245# default-features = false246# git = 'https://github.com/paritytech/substrate'247# branch = 'master'248249[dependencies.sp-arithmetic]250default-features = false251git = "https://github.com/paritytech/substrate"252branch = "polkadot-v0.9.24"253254[dependencies.sp-api]255default-features = false256git = "https://github.com/paritytech/substrate"257branch = "polkadot-v0.9.24"258259[dependencies.sp-block-builder]260default-features = false261git = "https://github.com/paritytech/substrate"262branch = "polkadot-v0.9.24"263264[dependencies.sp-core]265default-features = false266git = "https://github.com/paritytech/substrate"267branch = "polkadot-v0.9.24"268269[dependencies.sp-consensus-aura]270default-features = false271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.24"273274[dependencies.sp-inherents]275default-features = false276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.24"278279[dependencies.sp-io]280default-features = false281git = "https://github.com/paritytech/substrate"282branch = "polkadot-v0.9.24"283284[dependencies.sp-offchain]285default-features = false286git = "https://github.com/paritytech/substrate"287branch = "polkadot-v0.9.24"288289[dependencies.sp-runtime]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.24"293294[dependencies.sp-session]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.24"298299[dependencies.sp-std]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.24"303304[dependencies.sp-transaction-pool]305default-features = false306git = "https://github.com/paritytech/substrate"307branch = "polkadot-v0.9.24"308309[dependencies.sp-version]310default-features = false311git = "https://github.com/paritytech/substrate"312branch = "polkadot-v0.9.24"313314[dependencies.smallvec]315version = '1.6.1'316317################################################################################318# Cumulus dependencies319320[dependencies.parachain-info]321default-features = false322git = "https://github.com/paritytech/cumulus"323branch = "polkadot-v0.9.24"324325[dependencies.cumulus-pallet-aura-ext]326git = "https://github.com/paritytech/cumulus"327branch = "polkadot-v0.9.24"328default-features = false329330[dependencies.cumulus-pallet-parachain-system]331git = "https://github.com/paritytech/cumulus"332branch = "polkadot-v0.9.24"333default-features = false334335[dependencies.cumulus-primitives-core]336git = "https://github.com/paritytech/cumulus"337branch = "polkadot-v0.9.24"338default-features = false339340[dependencies.cumulus-pallet-xcm]341git = "https://github.com/paritytech/cumulus"342branch = "polkadot-v0.9.24"343default-features = false344345[dependencies.cumulus-pallet-dmp-queue]346git = "https://github.com/paritytech/cumulus"347branch = "polkadot-v0.9.24"348default-features = false349350[dependencies.cumulus-pallet-xcmp-queue]351git = "https://github.com/paritytech/cumulus"352branch = "polkadot-v0.9.24"353default-features = false354355[dependencies.cumulus-primitives-utility]356git = "https://github.com/paritytech/cumulus"357branch = "polkadot-v0.9.24"358default-features = false359360[dependencies.cumulus-primitives-timestamp]361git = "https://github.com/paritytech/cumulus"362branch = "polkadot-v0.9.24"363default-features = false364365################################################################################366# Polkadot dependencies367368[dependencies.polkadot-parachain]369git = "https://github.com/paritytech/polkadot"370branch = "release-v0.9.24"371default-features = false372373[dependencies.xcm]374git = "https://github.com/paritytech/polkadot"375branch = "release-v0.9.24"376default-features = false377378[dependencies.xcm-builder]379git = "https://github.com/paritytech/polkadot"380branch = "release-v0.9.24"381default-features = false382383[dependencies.xcm-executor]384git = "https://github.com/paritytech/polkadot"385branch = "release-v0.9.24"386default-features = false387388[dependencies.pallet-xcm]389git = "https://github.com/paritytech/polkadot"390branch = "release-v0.9.24"391default-features = false392393[dependencies.orml-vesting]394git = "https://github.com/uniquenetwork/open-runtime-module-library"395branch = "unique-polkadot-v0.9.24"396version = "0.4.1-dev"397default-features = false398399################################################################################400# RMRK dependencies401402# todo git403[dependencies.rmrk-rpc]404default-features = false405path = "../../primitives/rmrk-rpc"406407################################################################################408# local dependencies409410[dependencies]411log = { version = "0.4.16", default-features = false }412up-common = { path = "../../primitives/common", default-features = false }413scale-info = { version = "2.0.1", default-features = false, features = [414    "derive",415] }416derivative = "2.2.0"417pallet-unique = { path = '../../pallets/unique', default-features = false }418up-rpc = { path = "../../primitives/rpc", default-features = false }419fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }420pallet-inflation = { path = '../../pallets/inflation', default-features = false }421up-data-structs = { path = '../../primitives/data-structs', default-features = false }422pallet-configuration = { default-features = false, path = "../../pallets/configuration" }423pallet-common = { default-features = false, path = "../../pallets/common" }424pallet-structure = { default-features = false, path = "../../pallets/structure" }425pallet-fungible = { default-features = false, path = "../../pallets/fungible" }426pallet-refungible = { default-features = false, path = "../../pallets/refungible" }427pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }428pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }429pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }430pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }431# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }432pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.24", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }433pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }434pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }435pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }436pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }437pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }438pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }439pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }440fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }441fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }442evm-coder = { default-features = false, path = '../../crates/evm-coder' }443up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }444445################################################################################446# Build Dependencies447448[build-dependencies.substrate-wasm-builder]449git = "https://github.com/paritytech/substrate"450branch = "polkadot-v0.9.24"