git.delta.rocks / unique-network / refs/commits / 7f81f6c5a2ab

difftreelog

source

runtime/opal/Cargo.toml11.6 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Opal Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'opal-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['opal-runtime', 'std']20limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']21opal-runtime = [22	'app-promotion',23	'collator-selection',24	'foreign-assets',25	'governance',26	'pallet-test-utils',27	'preimage',28	'refungible',29]30pov-estimate = []31runtime-benchmarks = [32	"pallet-preimage/runtime-benchmarks",33	'cumulus-pallet-parachain-system/runtime-benchmarks',34	'frame-benchmarking',35	'frame-support/runtime-benchmarks',36	'frame-system-benchmarking',37	'frame-system/runtime-benchmarks',38	'pallet-app-promotion/runtime-benchmarks',39	'pallet-balances/runtime-benchmarks',40	'pallet-collator-selection/runtime-benchmarks',41	'pallet-collective/runtime-benchmarks',42	'pallet-common/runtime-benchmarks',43	'pallet-configuration/runtime-benchmarks',44	'pallet-democracy/runtime-benchmarks',45	'pallet-ethereum/runtime-benchmarks',46	'pallet-evm-coder-substrate/runtime-benchmarks',47	'pallet-evm-migration/runtime-benchmarks',48	'pallet-foreign-assets/runtime-benchmarks',49	'pallet-fungible/runtime-benchmarks',50	'pallet-identity/runtime-benchmarks',51	'pallet-inflation/runtime-benchmarks',52	'pallet-maintenance/runtime-benchmarks',53	'pallet-membership/runtime-benchmarks',54	'pallet-nonfungible/runtime-benchmarks',55	'pallet-ranked-collective/runtime-benchmarks',56	'pallet-referenda/runtime-benchmarks',57	'pallet-refungible/runtime-benchmarks',58	'pallet-scheduler/runtime-benchmarks',59	'pallet-structure/runtime-benchmarks',60	'pallet-timestamp/runtime-benchmarks',61	'pallet-unique/runtime-benchmarks',62	'pallet-utility/runtime-benchmarks',63	'pallet-xcm/runtime-benchmarks',64	'sp-runtime/runtime-benchmarks',65	'staging-xcm-builder/runtime-benchmarks',66]67std = [68	'cumulus-pallet-aura-ext/std',69	'cumulus-pallet-parachain-system/std',70	'cumulus-pallet-xcm/std',71	'cumulus-pallet-xcmp-queue/std',72	'cumulus-primitives-aura/std',73	'cumulus-primitives-core/std',74	'cumulus-primitives-utility/std',75	'frame-executive/std',76	'frame-support/std',77	'frame-system-rpc-runtime-api/std',78	'frame-system/std',79	'frame-try-runtime/std',80	'pallet-aura/std',81	'pallet-balances/std',82	'pallet-collective/std',83	'pallet-democracy/std',84	'pallet-gov-origins/std',85	'pallet-membership/std',86	'pallet-ranked-collective/std',87	'pallet-referenda/std',88	'pallet-scheduler/std',89	'parity-scale-codec/std',90	# 'pallet-contracts/std',91	# 'pallet-contracts-primitives/std',92	# 'pallet-contracts-rpc-runtime-api/std',93	# 'pallet-contract-helpers/std',94	"pallet-authorship/std",95	"pallet-preimage/std",96	"pallet-session/std",97	"pallet-state-trie-migration/std",98	"sp-consensus-aura/std",99	'app-promotion-rpc/std',100	'evm-coder/std',101	'fp-rpc/std',102	'fp-self-contained/std',103	'pallet-app-promotion/std',104	'pallet-balances-adapter/std',105	'pallet-base-fee/std',106	'pallet-charge-transaction/std',107	'pallet-collator-selection/std',108	'pallet-common/std',109	'pallet-configuration/std',110	'pallet-ethereum/std',111	'pallet-evm-coder-substrate/std',112	'pallet-evm-contract-helpers/std',113	'pallet-evm-migration/std',114	'pallet-evm-transaction-payment/std',115	'pallet-evm/std',116	'pallet-fungible/std',117	'pallet-identity/std',118	'pallet-inflation/std',119	'pallet-nonfungible/std',120	'pallet-refungible/std',121	'pallet-structure/std',122	'pallet-sudo/std',123	'pallet-timestamp/std',124	'pallet-transaction-payment-rpc-runtime-api/std',125	'pallet-transaction-payment/std',126	'pallet-treasury/std',127	'pallet-unique/std',128	'pallet-utility/std',129	'staging-parachain-info/std',130	'polkadot-runtime-common/std',131	'serde',132	'sp-api/std',133	'sp-block-builder/std',134	'sp-core/std',135	'sp-inherents/std',136	'sp-io/std',137	'sp-offchain/std',138	'sp-runtime/std',139	'sp-session/std',140	'sp-std/std',141	'sp-storage/std',142	'sp-transaction-pool/std',143	'sp-version/std',144	'staging-xcm-builder/std',145	'staging-xcm-executor/std',146	'staging-xcm/std',147	'up-common/std',148	'up-data-structs/std',149	'up-pov-estimate-rpc/std',150	'up-rpc/std',151	'up-sponsorship/std',152153	"orml-tokens/std",154	"orml-traits/std",155	"orml-vesting/std",156	"orml-xcm-support/std",157	"orml-xtokens/std",158	"pallet-foreign-assets/std",159160	'pallet-maintenance/std',161	'pallet-test-utils?/std',162]163try-runtime = [164	"pallet-authorship/try-runtime",165	"pallet-collator-selection/try-runtime",166	"pallet-identity/try-runtime",167	"pallet-preimage/try-runtime",168	"pallet-session/try-runtime",169	"pallet-state-trie-migration/try-runtime",170	'cumulus-pallet-aura-ext/try-runtime',171	'cumulus-pallet-dmp-queue/try-runtime',172	'cumulus-pallet-parachain-system/try-runtime',173	'cumulus-pallet-xcm/try-runtime',174	'cumulus-pallet-xcmp-queue/try-runtime',175	'fp-self-contained/try-runtime',176	'frame-executive/try-runtime',177	'frame-support/try-runtime',178	'frame-system/try-runtime',179	'frame-try-runtime',180	'frame-try-runtime?/try-runtime',181	'orml-tokens/try-runtime',182	'orml-vesting/try-runtime',183	'orml-xtokens/try-runtime',184	'pallet-app-promotion/try-runtime',185	'pallet-aura/try-runtime',186	'pallet-balances-adapter/try-runtime',187	'pallet-balances/try-runtime',188	'pallet-base-fee/try-runtime',189	'pallet-charge-transaction/try-runtime',190	'pallet-collective/try-runtime',191	'pallet-collective/try-runtime',192	'pallet-common/try-runtime',193	'pallet-configuration/try-runtime',194	'pallet-democracy/try-runtime',195	'pallet-democracy/try-runtime',196	'pallet-ethereum/try-runtime',197	'pallet-evm-coder-substrate/try-runtime',198	'pallet-evm-contract-helpers/try-runtime',199	'pallet-evm-migration/try-runtime',200	'pallet-evm-transaction-payment/try-runtime',201	'pallet-evm/try-runtime',202	'pallet-foreign-assets/try-runtime',203	'pallet-fungible/try-runtime',204	'pallet-gov-origins/try-runtime',205	'pallet-inflation/try-runtime',206	'pallet-maintenance/try-runtime',207	'pallet-membership/try-runtime',208	'pallet-membership/try-runtime',209	'pallet-nonfungible/try-runtime',210	'pallet-ranked-collective/try-runtime',211	'pallet-referenda/try-runtime',212	'pallet-refungible/try-runtime',213	'pallet-scheduler/try-runtime',214	'pallet-scheduler/try-runtime',215	'pallet-structure/try-runtime',216	'pallet-sudo/try-runtime',217	'pallet-test-utils?/try-runtime',218	'pallet-timestamp/try-runtime',219	'pallet-transaction-payment/try-runtime',220	'pallet-treasury/try-runtime',221	'pallet-unique/try-runtime',222	'pallet-utility/try-runtime',223	'pallet-xcm/try-runtime',224	'staging-parachain-info/try-runtime',225	'polkadot-runtime-common/try-runtime',226]227228app-promotion = []229collator-selection = []230foreign-assets = []231gov-test-timings = []232governance = []233lookahead = ['cumulus-pallet-parachain-system/parameterized-consensus-hook', 'pallet-aura/experimental']234preimage = []235refungible = []236session-test-timings = []237fast-inflation = []238239################################################################################240# local dependencies241242[dependencies]243cumulus-pallet-aura-ext = { workspace = true }244cumulus-pallet-dmp-queue = { workspace = true }245cumulus-pallet-parachain-system = { workspace = true }246cumulus-pallet-xcm = { workspace = true }247cumulus-pallet-xcmp-queue = { workspace = true }248cumulus-primitives-aura = { workspace = true }249cumulus-primitives-core = { workspace = true }250cumulus-primitives-timestamp = { workspace = true }251cumulus-primitives-utility = { workspace = true }252frame-executive = { workspace = true }253frame-support = { workspace = true }254frame-system = { workspace = true }255frame-system-rpc-runtime-api = { workspace = true }256orml-tokens = { workspace = true }257orml-traits = { workspace = true }258orml-vesting = { workspace = true }259orml-xcm-support = { workspace = true }260orml-xtokens = { workspace = true }261pallet-aura = { workspace = true }262pallet-authorship = { workspace = true }263pallet-balances = { features = ["insecure_zero_ed"], workspace = true }264pallet-preimage = { workspace = true }265pallet-session = { workspace = true }266pallet-state-trie-migration = { workspace = true }267pallet-sudo = { workspace = true }268pallet-timestamp = { workspace = true }269pallet-transaction-payment = { workspace = true }270pallet-transaction-payment-rpc-runtime-api = { workspace = true }271pallet-treasury = { workspace = true }272pallet-utility = { workspace = true }273pallet-xcm = { workspace = true }274staging-parachain-info = { workspace = true }275parity-scale-codec = { workspace = true }276polkadot-parachain-primitives = { workspace = true }277polkadot-runtime-common = { workspace = true }278smallvec = { workspace = true }279sp-api = { workspace = true }280sp-arithmetic = { workspace = true }281sp-block-builder = { workspace = true }282sp-consensus-aura = { workspace = true }283sp-core = { workspace = true }284sp-inherents = { workspace = true }285sp-io = { workspace = true }286sp-offchain = { workspace = true }287sp-runtime = { workspace = true }288sp-session = { workspace = true }289sp-std = { workspace = true }290sp-storage = { workspace = true }291sp-transaction-pool = { workspace = true }292sp-version = { workspace = true }293staging-xcm = { workspace = true }294staging-xcm-builder = { workspace = true }295staging-xcm-executor = { workspace = true }296297app-promotion-rpc = { workspace = true }298derivative = { workspace = true }299evm-coder = { workspace = true }300fp-evm = { workspace = true }301fp-rpc = { workspace = true }302fp-self-contained = { workspace = true }303log = { workspace = true }304num_enum = { workspace = true }305pallet-app-promotion = { workspace = true }306pallet-balances-adapter = { workspace = true }307pallet-base-fee = { workspace = true }308pallet-charge-transaction = { workspace = true }309pallet-collator-selection = { workspace = true }310pallet-collective = { workspace = true }311pallet-common = { workspace = true }312pallet-configuration = { workspace = true }313pallet-democracy = { workspace = true }314pallet-ethereum = { workspace = true }315pallet-evm = { workspace = true }316pallet-evm-coder-substrate = { workspace = true }317pallet-evm-contract-helpers = { workspace = true }318pallet-evm-migration = { workspace = true }319pallet-evm-precompile-simple = { workspace = true }320pallet-evm-transaction-payment = { workspace = true }321pallet-foreign-assets = { workspace = true }322pallet-fungible = { workspace = true }323pallet-gov-origins = { workspace = true }324pallet-identity = { workspace = true }325pallet-inflation = { workspace = true }326pallet-maintenance = { workspace = true }327pallet-membership = { workspace = true }328pallet-nonfungible = { workspace = true }329pallet-ranked-collective = { workspace = true }330pallet-referenda = { workspace = true }331pallet-refungible = { workspace = true }332pallet-scheduler = { workspace = true }333pallet-structure = { workspace = true }334pallet-unique = { workspace = true }335precompile-utils-macro = { workspace = true }336scale-info = { workspace = true }337up-common = { workspace = true }338up-data-structs = { workspace = true }339up-pov-estimate-rpc = { workspace = true }340up-rpc = { workspace = true }341up-sponsorship = { workspace = true }342343################################################################################344# Optional dependencies345346frame-benchmarking = { workspace = true, optional = true }347frame-system-benchmarking = { workspace = true, optional = true }348frame-try-runtime = { workspace = true, optional = true }349serde = { workspace = true, optional = true }350351################################################################################352# Test dependencies353354pallet-test-utils = { workspace = true, optional = true }355356################################################################################357# Other Dependencies358359hex-literal = { workspace = true }360impl-trait-for-tuples = { workspace = true }361362[build-dependencies]363substrate-wasm-builder = { workspace = true }