git.delta.rocks / unique-network / refs/commits / 0ef2a332f919

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	'polkadot-runtime-common/runtime-benchmarks',65	'sp-runtime/runtime-benchmarks',66	'staging-xcm-builder/runtime-benchmarks',67]68std = [69	'cumulus-pallet-aura-ext/std',70	'cumulus-pallet-parachain-system/std',71	'cumulus-pallet-xcm/std',72	'cumulus-pallet-xcmp-queue/std',73	'cumulus-primitives-aura/std',74	'cumulus-primitives-core/std',75	'cumulus-primitives-utility/std',76	'frame-executive/std',77	'frame-support/std',78	'frame-system-rpc-runtime-api/std',79	'frame-system/std',80	'frame-try-runtime/std',81	'pallet-aura/std',82	'pallet-balances/std',83	'pallet-collective/std',84	'pallet-democracy/std',85	'pallet-gov-origins/std',86	'pallet-membership/std',87	'pallet-ranked-collective/std',88	'pallet-referenda/std',89	'pallet-scheduler/std',90	'parity-scale-codec/std',91	# 'pallet-contracts/std',92	# 'pallet-contracts-primitives/std',93	# 'pallet-contracts-rpc-runtime-api/std',94	# 'pallet-contract-helpers/std',95	"pallet-authorship/std",96	"pallet-preimage/std",97	"pallet-session/std",98	"pallet-state-trie-migration/std",99	"sp-consensus-aura/std",100	'app-promotion-rpc/std',101	'evm-coder/std',102	'fp-rpc/std',103	'fp-self-contained/std',104	'pallet-app-promotion/std',105	'pallet-balances-adapter/std',106	'pallet-base-fee/std',107	'pallet-charge-transaction/std',108	'pallet-collator-selection/std',109	'pallet-common/std',110	'pallet-configuration/std',111	'pallet-ethereum/std',112	'pallet-evm-coder-substrate/std',113	'pallet-evm-contract-helpers/std',114	'pallet-evm-migration/std',115	'pallet-evm-transaction-payment/std',116	'pallet-evm/std',117	'pallet-fungible/std',118	'pallet-identity/std',119	'pallet-inflation/std',120	'pallet-nonfungible/std',121	'pallet-refungible/std',122	'pallet-structure/std',123	'pallet-sudo/std',124	'pallet-timestamp/std',125	'pallet-transaction-payment-rpc-runtime-api/std',126	'pallet-transaction-payment/std',127	'pallet-treasury/std',128	'pallet-unique/std',129	'pallet-utility/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-parachain-info/std',145	'staging-xcm-builder/std',146	'staging-xcm-executor/std',147	'staging-xcm/std',148	'up-common/std',149	'up-data-structs/std',150	'up-pov-estimate-rpc/std',151	'up-rpc/std',152	'up-sponsorship/std',153154	"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-vesting/try-runtime',182	'orml-xtokens/try-runtime',183	'pallet-app-promotion/try-runtime',184	'pallet-aura/try-runtime',185	'pallet-balances-adapter/try-runtime',186	'pallet-balances/try-runtime',187	'pallet-base-fee/try-runtime',188	'pallet-charge-transaction/try-runtime',189	'pallet-collective/try-runtime',190	'pallet-collective/try-runtime',191	'pallet-common/try-runtime',192	'pallet-configuration/try-runtime',193	'pallet-democracy/try-runtime',194	'pallet-democracy/try-runtime',195	'pallet-ethereum/try-runtime',196	'pallet-evm-coder-substrate/try-runtime',197	'pallet-evm-contract-helpers/try-runtime',198	'pallet-evm-migration/try-runtime',199	'pallet-evm-transaction-payment/try-runtime',200	'pallet-evm/try-runtime',201	'pallet-foreign-assets/try-runtime',202	'pallet-fungible/try-runtime',203	'pallet-gov-origins/try-runtime',204	'pallet-inflation/try-runtime',205	'pallet-maintenance/try-runtime',206	'pallet-membership/try-runtime',207	'pallet-membership/try-runtime',208	'pallet-nonfungible/try-runtime',209	'pallet-ranked-collective/try-runtime',210	'pallet-referenda/try-runtime',211	'pallet-refungible/try-runtime',212	'pallet-scheduler/try-runtime',213	'pallet-scheduler/try-runtime',214	'pallet-structure/try-runtime',215	'pallet-sudo/try-runtime',216	'pallet-test-utils?/try-runtime',217	'pallet-timestamp/try-runtime',218	'pallet-transaction-payment/try-runtime',219	'pallet-treasury/try-runtime',220	'pallet-unique/try-runtime',221	'pallet-utility/try-runtime',222	'pallet-xcm/try-runtime',223	'polkadot-runtime-common/try-runtime',224	'staging-parachain-info/try-runtime',225]226227app-promotion = []228collator-selection = []229fast-inflation = []230foreign-assets = []231gov-test-timings = []232governance = []233lookahead = ['cumulus-pallet-parachain-system/parameterized-consensus-hook', 'pallet-aura/experimental']234preimage = []235refungible = []236session-test-timings = []237238################################################################################239# local dependencies240241[dependencies]242cumulus-pallet-aura-ext = { workspace = true }243cumulus-pallet-dmp-queue = { workspace = true }244cumulus-pallet-parachain-system = { workspace = true }245cumulus-pallet-xcm = { workspace = true }246cumulus-pallet-xcmp-queue = { workspace = true }247cumulus-primitives-aura = { workspace = true }248cumulus-primitives-core = { workspace = true }249cumulus-primitives-timestamp = { workspace = true }250cumulus-primitives-utility = { workspace = true }251frame-executive = { workspace = true }252frame-support = { workspace = true }253frame-system = { workspace = true }254frame-system-rpc-runtime-api = { workspace = true }255orml-traits = { workspace = true }256orml-vesting = { workspace = true }257orml-xcm-support = { workspace = true }258orml-xtokens = { workspace = true }259pallet-aura = { workspace = true }260pallet-authorship = { workspace = true }261pallet-balances = { features = ["insecure_zero_ed"], workspace = true }262pallet-preimage = { workspace = true }263pallet-session = { workspace = true }264pallet-state-trie-migration = { workspace = true }265pallet-sudo = { workspace = true }266pallet-timestamp = { workspace = true }267pallet-transaction-payment = { workspace = true }268pallet-transaction-payment-rpc-runtime-api = { workspace = true }269pallet-treasury = { workspace = true }270pallet-utility = { workspace = true }271pallet-xcm = { workspace = true }272parity-scale-codec = { workspace = true }273polkadot-parachain-primitives = { workspace = true }274polkadot-runtime-common = { workspace = true }275smallvec = { workspace = true }276sp-api = { workspace = true }277sp-arithmetic = { workspace = true }278sp-block-builder = { workspace = true }279sp-consensus-aura = { workspace = true }280sp-core = { workspace = true }281sp-inherents = { workspace = true }282sp-io = { workspace = true }283sp-offchain = { workspace = true }284sp-runtime = { workspace = true }285sp-session = { workspace = true }286sp-std = { workspace = true }287sp-storage = { workspace = true }288sp-transaction-pool = { workspace = true }289sp-version = { workspace = true }290staging-parachain-info = { workspace = true }291staging-xcm = { workspace = true }292staging-xcm-builder = { workspace = true }293staging-xcm-executor = { workspace = true }294295app-promotion-rpc = { workspace = true }296derivative = { workspace = true }297evm-coder = { workspace = true }298fp-evm = { workspace = true }299fp-rpc = { workspace = true }300fp-self-contained = { workspace = true }301log = { workspace = true }302num_enum = { workspace = true }303pallet-app-promotion = { workspace = true }304pallet-balances-adapter = { workspace = true }305pallet-base-fee = { workspace = true }306pallet-charge-transaction = { workspace = true }307pallet-collator-selection = { workspace = true }308pallet-collective = { workspace = true }309pallet-common = { workspace = true }310pallet-configuration = { workspace = true }311pallet-democracy = { workspace = true }312pallet-ethereum = { workspace = true }313pallet-evm = { workspace = true }314pallet-evm-coder-substrate = { workspace = true }315pallet-evm-contract-helpers = { workspace = true }316pallet-evm-migration = { workspace = true }317pallet-evm-precompile-simple = { workspace = true }318pallet-evm-transaction-payment = { workspace = true }319pallet-foreign-assets = { workspace = true }320pallet-fungible = { workspace = true }321pallet-gov-origins = { workspace = true }322pallet-identity = { workspace = true }323pallet-inflation = { workspace = true }324pallet-maintenance = { workspace = true }325pallet-membership = { workspace = true }326pallet-nonfungible = { workspace = true }327pallet-ranked-collective = { workspace = true }328pallet-referenda = { workspace = true }329pallet-refungible = { workspace = true }330pallet-scheduler = { workspace = true }331pallet-structure = { workspace = true }332pallet-unique = { workspace = true }333precompile-utils-macro = { workspace = true }334scale-info = { workspace = true }335up-common = { workspace = true }336up-data-structs = { workspace = true }337up-pov-estimate-rpc = { workspace = true }338up-rpc = { workspace = true }339up-sponsorship = { workspace = true }340341################################################################################342# Optional dependencies343344frame-benchmarking = { workspace = true, optional = true }345frame-system-benchmarking = { workspace = true, optional = true }346frame-try-runtime = { workspace = true, optional = true }347serde = { workspace = true, optional = true }348349################################################################################350# Test dependencies351352pallet-test-utils = { workspace = true, optional = true }353354################################################################################355# Other Dependencies356357hex-literal = { workspace = true }358impl-trait-for-tuples = { workspace = true }359360[build-dependencies]361substrate-wasm-builder = { workspace = true }