git.delta.rocks / unique-network / refs/commits / 59b04441b9eb

difftreelog

source

runtime/quartz/Cargo.toml10.0 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.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19become-sapphire = []20default = ['quartz-runtime', 'std']21state-version-0 = []22limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']23pov-estimate = []24quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'preimage', 'refungible']25runtime-benchmarks = [26	"pallet-preimage/runtime-benchmarks",27	'cumulus-pallet-parachain-system/runtime-benchmarks',28	'frame-benchmarking',29	'frame-support/runtime-benchmarks',30	'frame-system-benchmarking',31	'frame-system/runtime-benchmarks',32	'hex-literal',33	'pallet-app-promotion/runtime-benchmarks',34	'pallet-balances/runtime-benchmarks',35	'pallet-collator-selection/runtime-benchmarks',36	'pallet-common/runtime-benchmarks',37	'pallet-configuration/runtime-benchmarks',38	'pallet-ethereum/runtime-benchmarks',39	'pallet-evm-coder-substrate/runtime-benchmarks',40	'pallet-evm-migration/runtime-benchmarks',41	'pallet-foreign-assets/runtime-benchmarks',42	'pallet-fungible/runtime-benchmarks',43	'pallet-identity/runtime-benchmarks',44	'pallet-inflation/runtime-benchmarks',45	'pallet-maintenance/runtime-benchmarks',46	'pallet-nonfungible/runtime-benchmarks',47	'pallet-refungible/runtime-benchmarks',48	'pallet-structure/runtime-benchmarks',49	'pallet-timestamp/runtime-benchmarks',50	'pallet-unique/runtime-benchmarks',51	'pallet-xcm/runtime-benchmarks',52	'sp-runtime/runtime-benchmarks',53	'xcm-builder/runtime-benchmarks',54]55std = [56	'codec/std',57	'cumulus-pallet-aura-ext/std',58	'cumulus-pallet-parachain-system/std',59	'cumulus-pallet-xcm/std',60	'cumulus-pallet-xcmp-queue/std',61	'cumulus-primitives-core/std',62	'cumulus-primitives-utility/std',63	'frame-executive/std',64	'frame-support/std',65	'frame-system-rpc-runtime-api/std',66	'frame-system/std',67	'frame-try-runtime/std',68	'pallet-aura/std',69	'pallet-balances/std',70	'pallet-balances-adapter/std',71	# 'pallet-contracts/std',72	# 'pallet-contracts-primitives/std',73	# 'pallet-contracts-rpc-runtime-api/std',74	# 'pallet-contract-helpers/std',75	"pallet-authorship/std",76	"pallet-identity/std",77	"pallet-preimage/std",78	"pallet-session/std",79	"pallet-state-trie-migration/std",80	"sp-consensus-aura/std",81	'app-promotion-rpc/std',82	'evm-coder/std',83	'fp-rpc/std',84	'fp-self-contained/std',85	'pallet-app-promotion/std',86	'pallet-base-fee/std',87	'pallet-charge-transaction/std',88	'pallet-collator-selection/std',89	'pallet-common/std',90	'pallet-configuration/std',91	'pallet-ethereum/std',92	'pallet-evm-coder-substrate/std',93	'pallet-evm-contract-helpers/std',94	'pallet-evm-migration/std',95	'pallet-evm-transaction-payment/std',96	'pallet-evm/std',97	'pallet-fungible/std',98	'pallet-inflation/std',99	'pallet-nonfungible/std',100	'pallet-refungible/std',101	'pallet-structure/std',102	'pallet-sudo/std',103	'pallet-timestamp/std',104	'pallet-transaction-payment-rpc-runtime-api/std',105	'pallet-transaction-payment/std',106	'pallet-treasury/std',107	'pallet-unique/std',108	'parachain-info/std',109	'serde',110	'sp-api/std',111	'sp-block-builder/std',112	'sp-core/std',113	'sp-inherents/std',114	'sp-io/std',115	'sp-offchain/std',116	'sp-runtime/std',117	'sp-session/std',118	'sp-std/std',119	'sp-transaction-pool/std',120	'sp-version/std',121	'up-common/std',122	'up-data-structs/std',123	'up-pov-estimate-rpc/std',124	'up-rpc/std',125	'up-sponsorship/std',126	'xcm-builder/std',127	'xcm-executor/std',128	'xcm/std',129130	"orml-tokens/std",131	"orml-traits/std",132	"orml-vesting/std",133	"orml-xcm-support/std",134	"orml-xtokens/std",135	"pallet-foreign-assets/std",136	"pallet-maintenance/std",137]138try-runtime = [139	"pallet-authorship/try-runtime",140	"pallet-collator-selection/try-runtime",141	"pallet-identity/try-runtime",142	"pallet-preimage/try-runtime",143	"pallet-session/try-runtime",144	"pallet-state-trie-migration/try-runtime",145	'cumulus-pallet-aura-ext/try-runtime',146	'cumulus-pallet-dmp-queue/try-runtime',147	'cumulus-pallet-parachain-system/try-runtime',148	'cumulus-pallet-xcm/try-runtime',149	'cumulus-pallet-xcmp-queue/try-runtime',150	'fp-self-contained/try-runtime',151	'frame-executive/try-runtime',152	'frame-support/try-runtime',153	'frame-system/try-runtime',154	'frame-try-runtime',155	'orml-tokens/try-runtime',156	'orml-vesting/try-runtime',157	'orml-xtokens/try-runtime',158	'pallet-app-promotion/try-runtime',159	'pallet-aura/try-runtime',160	'pallet-balances/try-runtime',161	'pallet-balances-adapter/try-runtime',162	'pallet-charge-transaction/try-runtime',163	'pallet-common/try-runtime',164	'pallet-configuration/try-runtime',165	'pallet-ethereum/try-runtime',166	'pallet-evm-coder-substrate/try-runtime',167	'pallet-evm-contract-helpers/try-runtime',168	'pallet-evm-migration/try-runtime',169	'pallet-evm-transaction-payment/try-runtime',170	'pallet-evm/try-runtime',171	'pallet-foreign-assets/try-runtime',172	'pallet-fungible/try-runtime',173	'pallet-inflation/try-runtime',174	'pallet-maintenance/try-runtime',175	'pallet-nonfungible/try-runtime',176	'pallet-refungible/try-runtime',177	'pallet-structure/try-runtime',178	'pallet-sudo/try-runtime',179	'pallet-timestamp/try-runtime',180	'pallet-transaction-payment/try-runtime',181	'pallet-treasury/try-runtime',182	'pallet-unique/try-runtime',183	'pallet-xcm/try-runtime',184	'parachain-info/try-runtime',185]186187app-promotion = []188collator-selection = []189foreign-assets = []190preimage = []191refungible = []192scheduler = []193194################################################################################195# local dependencies196197[dependencies]198# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.199codec = { workspace = true, package = "parity-scale-codec" }200201cumulus-pallet-aura-ext = { workspace = true }202cumulus-pallet-dmp-queue = { workspace = true }203cumulus-pallet-parachain-system = { workspace = true }204cumulus-pallet-xcm = { workspace = true }205cumulus-pallet-xcmp-queue = { workspace = true }206cumulus-primitives-core = { workspace = true }207cumulus-primitives-timestamp = { workspace = true }208cumulus-primitives-utility = { workspace = true }209frame-executive = { workspace = true }210frame-support = { workspace = true }211frame-system = { workspace = true }212frame-system-rpc-runtime-api = { workspace = true }213orml-tokens = { workspace = true }214orml-traits = { workspace = true }215orml-vesting = { workspace = true }216orml-xcm-support = { workspace = true }217orml-xtokens = { workspace = true }218pallet-aura = { workspace = true }219pallet-authorship = { workspace = true }220pallet-balances = { features = ["insecure_zero_ed"], workspace = true }221pallet-preimage = { workspace = true }222pallet-session = { workspace = true }223pallet-state-trie-migration = { workspace = true }224pallet-sudo = { workspace = true }225pallet-timestamp = { workspace = true }226pallet-transaction-payment = { workspace = true }227pallet-transaction-payment-rpc-runtime-api = { workspace = true }228pallet-treasury = { workspace = true }229pallet-xcm = { workspace = true }230parachain-info = { workspace = true }231polkadot-parachain = { workspace = true }232smallvec = { workspace = true }233sp-api = { workspace = true }234sp-arithmetic = { workspace = true }235sp-block-builder = { workspace = true }236sp-consensus-aura = { workspace = true }237sp-core = { workspace = true }238sp-inherents = { workspace = true }239sp-io = { workspace = true }240sp-offchain = { workspace = true }241sp-runtime = { workspace = true }242sp-session = { workspace = true }243sp-std = { workspace = true }244sp-transaction-pool = { workspace = true }245sp-version = { workspace = true }246xcm = { workspace = true }247xcm-builder = { workspace = true }248xcm-executor = { workspace = true }249250app-promotion-rpc = { workspace = true }251derivative = { workspace = true }252fp-evm = { workspace = true }253log = { workspace = true }254pallet-app-promotion = { workspace = true }255pallet-balances-adapter = { workspace = true }256pallet-collator-selection = { workspace = true }257pallet-common = { workspace = true }258pallet-configuration = { workspace = true }259pallet-fungible = { workspace = true }260pallet-identity = { workspace = true }261pallet-inflation = { workspace = true }262pallet-nonfungible = { workspace = true }263pallet-refungible = { workspace = true }264pallet-structure = { workspace = true }265pallet-unique = { workspace = true }266scale-info = { workspace = true }267up-common = { workspace = true }268up-data-structs = { workspace = true }269up-pov-estimate-rpc = { workspace = true }270up-rpc = { workspace = true }271# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }272evm-coder = { workspace = true }273fp-rpc = { workspace = true }274fp-self-contained = { workspace = true }275num_enum = { version = "0.5.3", default-features = false }276pallet-base-fee = { workspace = true }277pallet-charge-transaction = { workspace = true }278pallet-ethereum = { workspace = true }279pallet-evm = { workspace = true }280pallet-evm-coder-substrate = { workspace = true }281pallet-evm-contract-helpers = { workspace = true }282pallet-evm-migration = { workspace = true }283pallet-evm-precompile-simple = { workspace = true }284pallet-evm-transaction-payment = { workspace = true }285pallet-foreign-assets = { workspace = true }286pallet-maintenance = { workspace = true }287precompile-utils-macro = { workspace = true }288up-sponsorship = { workspace = true }289290################################################################################291# Optional dependencies292293frame-benchmarking = { workspace = true, optional = true }294frame-system-benchmarking = { workspace = true, optional = true }295frame-try-runtime = { workspace = true, optional = true }296hex-literal = { workspace = true, optional = true }297serde = { workspace = true, optional = true }298299300################################################################################301# Test dependencies302303pallet-test-utils = { workspace = true }304305################################################################################306# Other Dependencies307308impl-trait-for-tuples = { workspace = true }309310[build-dependencies]311substrate-wasm-builder = { workspace = true }