git.delta.rocks / unique-network / refs/commits / 40455c4cbe68

difftreelog

source

runtime/unique/Cargo.toml15.9 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Unique Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'unique-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'unique-runtime']20limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']21pov-estimate = []22runtime-benchmarks = [23	'frame-benchmarking',24	'frame-support/runtime-benchmarks',25	'frame-system-benchmarking',26	'frame-system/runtime-benchmarks',27	'hex-literal',28	'pallet-app-promotion/runtime-benchmarks',29	'pallet-balances/runtime-benchmarks',30	'pallet-collator-selection/runtime-benchmarks',31	'pallet-common/runtime-benchmarks',32	'pallet-configuration/runtime-benchmarks',33	'pallet-ethereum/runtime-benchmarks',34	'pallet-evm-coder-substrate/runtime-benchmarks',35	'pallet-evm-migration/runtime-benchmarks',36	'pallet-foreign-assets/runtime-benchmarks',37	'pallet-fungible/runtime-benchmarks',38	'pallet-identity/runtime-benchmarks',39	'pallet-inflation/runtime-benchmarks',40	'pallet-maintenance/runtime-benchmarks',41	'pallet-nonfungible/runtime-benchmarks',42	'pallet-proxy-rmrk-core/runtime-benchmarks',43	'pallet-proxy-rmrk-equip/runtime-benchmarks',44	'pallet-refungible/runtime-benchmarks',45	'pallet-structure/runtime-benchmarks',46	'pallet-timestamp/runtime-benchmarks',47	'pallet-unique/runtime-benchmarks',48	'pallet-xcm/runtime-benchmarks',49	'sp-runtime/runtime-benchmarks',50	'up-data-structs/runtime-benchmarks',51	'xcm-builder/runtime-benchmarks',52]53std = [54	'codec/std',55	'cumulus-pallet-aura-ext/std',56	'cumulus-pallet-parachain-system/std',57	'cumulus-pallet-xcm/std',58	'cumulus-pallet-xcmp-queue/std',59	'cumulus-primitives-core/std',60	'cumulus-primitives-utility/std',61	'frame-executive/std',62	'frame-support/std',63	'frame-system-rpc-runtime-api/std',64	'frame-system/std',65	'frame-try-runtime/std',66	'pallet-aura/std',67	'pallet-balances/std',68	# 'pallet-contracts/std',69	# 'pallet-contracts-primitives/std',70	# 'pallet-contracts-rpc-runtime-api/std',71	# 'pallet-contract-helpers/std',72	"pallet-authorship/std",73	"pallet-identity/std",74	"pallet-session/std",75	"sp-consensus-aura/std",76	'app-promotion-rpc/std',77	'evm-coder/std',78	'fp-evm-mapping/std',79	'fp-rpc/std',80	'fp-self-contained/std',81	'pallet-app-promotion/std',82	'pallet-base-fee/std',83	'pallet-charge-transaction/std',84	'pallet-collator-selection/std',85	'pallet-common/std',86	'pallet-configuration/std',87	'pallet-ethereum/std',88	'pallet-evm-coder-substrate/std',89	'pallet-evm-contract-helpers/std',90	'pallet-evm-migration/std',91	'pallet-evm-transaction-payment/std',92	'pallet-evm/std',93	'pallet-fungible/std',94	'pallet-inflation/std',95	'pallet-nonfungible/std',96	'pallet-proxy-rmrk-core/std',97	'pallet-proxy-rmrk-equip/std',98	'pallet-randomness-collective-flip/std',99	'pallet-refungible/std',100	'pallet-structure/std',101	'pallet-sudo/std',102	'pallet-timestamp/std',103	'pallet-transaction-payment-rpc-runtime-api/std',104	'pallet-transaction-payment/std',105	'pallet-treasury/std',106	'pallet-unique/std',107	'parachain-info/std',108	'rmrk-rpc/std',109	'sp-api/std',110	'sp-block-builder/std',111	'sp-core/std',112	'sp-inherents/std',113	'sp-io/std',114	'sp-offchain/std',115	'sp-runtime/std',116	'sp-session/std',117	'sp-std/std',118	'sp-transaction-pool/std',119	'sp-version/std',120	'up-common/std',121	'up-data-structs/std',122	'up-pov-estimate-rpc/std',123	'up-rpc/std',124	'up-sponsorship/std',125	'xcm-builder/std',126	'xcm-executor/std',127	'xcm/std',128129	"orml-tokens/std",130	"orml-traits/std",131	"orml-vesting/std",132	"orml-xtokens/std",133	"pallet-foreign-assets/std",134	"pallet-maintenance/std",135]136stubgen = ["evm-coder/stubgen"]137try-runtime = [138	"pallet-authorship/try-runtime",139	"pallet-collator-selection/try-runtime",140	"pallet-identity/try-runtime",141	"pallet-session/try-runtime",142	'cumulus-pallet-aura-ext/try-runtime',143	'cumulus-pallet-dmp-queue/try-runtime',144	'cumulus-pallet-parachain-system/try-runtime',145	'cumulus-pallet-xcm/try-runtime',146	'cumulus-pallet-xcmp-queue/try-runtime',147	'fp-self-contained/try-runtime',148	'frame-executive/try-runtime',149	'frame-support/try-runtime',150	'frame-system/try-runtime',151	'frame-try-runtime',152	'orml-tokens/try-runtime',153	'orml-vesting/try-runtime',154	'orml-xtokens/try-runtime',155	'pallet-app-promotion/try-runtime',156	'pallet-aura/try-runtime',157	'pallet-balances/try-runtime',158	'pallet-charge-transaction/try-runtime',159	'pallet-common/try-runtime',160	'pallet-configuration/try-runtime',161	'pallet-ethereum/try-runtime',162	'pallet-evm-coder-substrate/try-runtime',163	'pallet-evm-contract-helpers/try-runtime',164	'pallet-evm-migration/try-runtime',165	'pallet-evm-transaction-payment/try-runtime',166	'pallet-evm/try-runtime',167	'pallet-foreign-assets/try-runtime',168	'pallet-fungible/try-runtime',169	'pallet-inflation/try-runtime',170	'pallet-maintenance/try-runtime',171	'pallet-nonfungible/try-runtime',172	'pallet-proxy-rmrk-core/try-runtime',173	'pallet-proxy-rmrk-equip/try-runtime',174	'pallet-randomness-collective-flip/try-runtime',175	'pallet-refungible/try-runtime',176	'pallet-structure/try-runtime',177	'pallet-sudo/try-runtime',178	'pallet-timestamp/try-runtime',179	'pallet-transaction-payment/try-runtime',180	'pallet-treasury/try-runtime',181	'pallet-unique/try-runtime',182	'pallet-xcm/try-runtime',183	'parachain-info/try-runtime',184]185unique-runtime = ['foreign-assets']186187collator-selection = []188foreign-assets = []189refungible = []190rmrk = []191scheduler = []192193################################################################################194# local dependencies195196[dependencies]197codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }198cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }199cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }200cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }201cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }202cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }203cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }204cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }205cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }206frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }207frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }208frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }209frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }210frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }211frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }212frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }213hex-literal = { optional = true, version = "0.3.3" }214orml-tokens.workspace = true215orml-traits.workspace = true216orml-vesting.workspace = true217orml-xtokens.workspace = true218pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }219pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }220pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }221pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }222pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }223pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }224pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }225pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }226pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }227pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }228pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }229parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }230polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }231smallvec = "1.6.1"232sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }233sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }234sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }235sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }236sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }237sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }238sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }239sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }240sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }241sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }242sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }243sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }244sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }245xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }246xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }247xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }248249app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }250derivative = "2.2.0"251log = { version = "0.4.16", default-features = false }252pallet-app-promotion = { path = "../../pallets/app-promotion", default-features = false }253pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }254pallet-common = { default-features = false, path = "../../pallets/common" }255pallet-configuration = { default-features = false, path = "../../pallets/configuration" }256pallet-fungible = { default-features = false, path = "../../pallets/fungible" }257pallet-identity = { default-features = false, path = "../../pallets/identity" }258pallet-inflation = { path = "../../pallets/inflation", default-features = false }259pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }260pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }261pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }262pallet-refungible = { default-features = false, path = "../../pallets/refungible" }263pallet-structure = { default-features = false, path = "../../pallets/structure" }264pallet-unique = { path = "../../pallets/unique", default-features = false }265rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }266scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }267up-common = { path = "../../primitives/common", default-features = false }268up-data-structs = { path = "../../primitives/data-structs", default-features = false }269up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }270up-rpc = { path = "../../primitives/rpc", default-features = false }271# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }272evm-coder = { default-features = false, path = "../../crates/evm-coder" }273fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }274fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }275fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }276fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }277num_enum = { version = "0.5.3", default-features = false }278pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }279pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }280pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }281pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }282pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }283pallet-evm-contract-helpers = { path = "../../pallets/evm-contract-helpers", default-features = false }284pallet-evm-migration = { path = "../../pallets/evm-migration", default-features = false }285pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }286pallet-evm-transaction-payment = { path = "../../pallets/evm-transaction-payment", default-features = false }287pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }288pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }289precompile-utils-macro.path = "../common/ethereum/precompiles/utils/macro"290up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }291292################################################################################293# Test dependencies294295pallet-test-utils = { default-features = false, path = "../../test-pallets/utils" }296297################################################################################298# Other Dependencies299300impl-trait-for-tuples = "0.2.2"301302[dev-dependencies]303logtest = "2.0.0"304305[build-dependencies]306substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }