-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tracing sources for runtime-3001
- Loading branch information
Showing
119 changed files
with
60,668 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
[package] | ||
authors = { workspace = true } | ||
description = "Common code shared between runtimes" | ||
edition = "2021" | ||
homepage = "https://moonbeam.network" | ||
license = "GPL-3.0-only" | ||
name = "moonbeam-runtime-common" | ||
version = "0.8.0-dev" | ||
|
||
[dependencies] | ||
hex-literal = "0.3.4" | ||
impl-trait-for-tuples = "0.2.1" | ||
log = "0.4" | ||
|
||
# Moonbeam | ||
moonbeam-core-primitives = { workspace = true } | ||
moonbeam-xcm-benchmarks = { workspace = true } | ||
pallet-asset-manager = { workspace = true } | ||
pallet-author-mapping = { workspace = true } | ||
pallet-conviction-voting = { workspace = true } | ||
pallet-ethereum-xcm = { workspace = true } | ||
pallet-migrations = { workspace = true } | ||
pallet-moonbeam-lazy-migrations = { workspace = true } | ||
pallet-parachain-staking = { workspace = true } | ||
pallet-precompile-benchmarks = { workspace = true } | ||
pallet-randomness = { workspace = true } | ||
pallet-relay-storage-roots = { workspace = true } | ||
pallet-xcm-transactor = { workspace = true } | ||
precompile-utils = { workspace = true } | ||
xcm-primitives = { workspace = true } | ||
|
||
# Substrate | ||
cumulus-pallet-parachain-system = { workspace = true } | ||
cumulus-pallet-xcmp-queue = { workspace = true } | ||
frame-benchmarking = { workspace = true } | ||
frame-support = { workspace = true } | ||
frame-system = { workspace = true } | ||
pallet-assets = { workspace = true } | ||
pallet-balances = { workspace = true } | ||
pallet-collective = { workspace = true } | ||
pallet-crowdloan-rewards = { workspace = true } | ||
pallet-identity = { workspace = true } | ||
pallet-moonbeam-orbiters = { workspace = true } | ||
pallet-multisig = { workspace = true } | ||
pallet-preimage = { workspace = true } | ||
pallet-proxy = { workspace = true } | ||
pallet-referenda = { workspace = true } | ||
pallet-scheduler = { workspace = true } | ||
pallet-sudo = { workspace = true } | ||
pallet-timestamp = { workspace = true } | ||
pallet-treasury = { workspace = true } | ||
pallet-utility = { workspace = true } | ||
pallet-whitelist = { workspace = true } | ||
pallet-xcm = { workspace = true } | ||
sp-api = { workspace = true } | ||
sp-consensus-slots = { workspace = true } | ||
sp-core = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
sp-std = { workspace = true } | ||
sp-genesis-builder = { workspace = true } | ||
frame-try-runtime = { workspace = true } | ||
|
||
# Frontier | ||
fp-ethereum = { workspace = true } | ||
fp-evm = { workspace = true } | ||
pallet-evm = { workspace = true, features = ["forbid-evm-reentrancy"] } | ||
pallet-evm-chain-id = { workspace = true } | ||
|
||
# Moonkit | ||
nimbus-primitives = { workspace = true } | ||
pallet-async-backing = { workspace = true } | ||
pallet-author-inherent = { workspace = true } | ||
pallet-author-slot-filter = { workspace = true } | ||
|
||
# Polkadot | ||
xcm = { workspace = true } | ||
xcm-builder = { workspace = true } | ||
xcm-executor = { workspace = true } | ||
|
||
# Parity | ||
parity-scale-codec = { workspace = true } | ||
|
||
account = { workspace = true } | ||
|
||
[features] | ||
std = [ | ||
"cumulus-pallet-parachain-system/std", | ||
"fp-ethereum/std", | ||
"fp-evm/std", | ||
"frame-support/std", | ||
"moonbeam-core-primitives/std", | ||
"pallet-asset-manager/std", | ||
"pallet-async-backing/std", | ||
"pallet-author-inherent/std", | ||
"pallet-author-mapping/std", | ||
"pallet-ethereum-xcm/std", | ||
"pallet-evm/std", | ||
"pallet-migrations/std", | ||
"pallet-parachain-staking/std", | ||
"pallet-randomness/std", | ||
"pallet-referenda/std", | ||
"pallet-scheduler/std", | ||
"pallet-xcm-transactor/std", | ||
"pallet-moonbeam-lazy-migrations/std", | ||
"pallet-identity/std", | ||
"parity-scale-codec/std", | ||
"precompile-utils/std", | ||
"sp-consensus-slots/std", | ||
"sp-core/std", | ||
"sp-runtime/std", | ||
"sp-std/std", | ||
"sp-genesis-builder/std", | ||
"xcm-executor/std", | ||
"xcm/std", | ||
"account/std", | ||
] | ||
runtime-benchmarks = [ | ||
"cumulus-pallet-parachain-system/runtime-benchmarks", | ||
"cumulus-pallet-xcmp-queue/runtime-benchmarks", | ||
"frame-benchmarking/runtime-benchmarks", | ||
"pallet-asset-manager/runtime-benchmarks", | ||
"pallet-assets/runtime-benchmarks", | ||
"pallet-author-inherent/runtime-benchmarks", | ||
"pallet-author-mapping/runtime-benchmarks", | ||
"pallet-author-slot-filter/runtime-benchmarks", | ||
"pallet-balances/runtime-benchmarks", | ||
"pallet-conviction-voting/runtime-benchmarks", | ||
"pallet-crowdloan-rewards/runtime-benchmarks", | ||
"pallet-ethereum-xcm/runtime-benchmarks", | ||
"pallet-evm/runtime-benchmarks", | ||
"pallet-identity/runtime-benchmarks", | ||
"pallet-moonbeam-orbiters/runtime-benchmarks", | ||
"pallet-multisig/runtime-benchmarks", | ||
"pallet-parachain-staking/runtime-benchmarks", | ||
"pallet-preimage/runtime-benchmarks", | ||
"pallet-proxy/runtime-benchmarks", | ||
"pallet-randomness/runtime-benchmarks", | ||
"pallet-referenda/runtime-benchmarks", | ||
"pallet-referenda/runtime-benchmarks", | ||
"pallet-scheduler/runtime-benchmarks", | ||
"pallet-sudo/runtime-benchmarks", | ||
"pallet-timestamp/runtime-benchmarks", | ||
"pallet-treasury/runtime-benchmarks", | ||
"pallet-utility/runtime-benchmarks", | ||
"pallet-whitelist/runtime-benchmarks", | ||
"pallet-xcm-transactor/runtime-benchmarks", | ||
"pallet-xcm/runtime-benchmarks", | ||
"pallet-moonbeam-lazy-migrations/runtime-benchmarks", | ||
"moonbeam-xcm-benchmarks/runtime-benchmarks", | ||
] | ||
try-runtime = ["cumulus-pallet-parachain-system/try-runtime", "frame-support/try-runtime", "pallet-migrations/try-runtime"] |
Oops, something went wrong.