Skip to content

Commit

Permalink
Run toml-maid
Browse files Browse the repository at this point in the history
  • Loading branch information
imstar15 committed Sep 3, 2024
1 parent b3f039b commit 28be6ce
Show file tree
Hide file tree
Showing 7 changed files with 489 additions and 490 deletions.
606 changes: 303 additions & 303 deletions Cargo.toml

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions ava-protocol-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
[package]
name = "ava-protocol-primitives"
version = "1.0.0"
authors = [ "Ava Protocol Team" ]
description = "Ava Protocol Runtime primitives"
authors = ["Ava Protocol Team"]
license = "GPL-3.0"
homepage = "https://avaprotocol.org"
repository = 'https://github.com/AvaProtocol/tanssi-integration'
edition = "2021"
homepage = "https://avaprotocol.org"
license = "GPL-3.0"
repository = "https://github.com/AvaProtocol/tanssi-integration"
version = "1.0.0"

[dependencies]
impl-trait-for-tuples = { workspace = true }
parity-scale-codec = { workspace = true, features = ["derive"] }
scale-info = { workspace = true, features = ["derive"] }
parity-scale-codec = { workspace = true, features = [ "derive" ] }
scale-info = { workspace = true, features = [ "derive" ] }

# Substrate Dependencies
## Substrate Primitive Dependencies
sp-std = { workspace = true }
sp-consensus-aura = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }

## Substrate FRAME Dependencies
frame-support = { workspace = true }

## Polkdadot deps
staging-xcm = { workspace = true }
staging-xcm-executor = { workspace = true }
staging-xcm-builder = { workspace = true }
staging-xcm-executor = { workspace = true }

## ORML deps
orml-traits = { workspace = true }

[features]
default = ["std"]
default = [ "std" ]
std = [
"frame-support/std",
"parity-scale-codec/std",
"scale-info/std",
"sp-consensus-aura/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"staging-xcm-executor/std",
"staging-xcm/std",
"staging-xcm-builder/std",
"frame-support/std",
"parity-scale-codec/std",
"scale-info/std",
"sp-consensus-aura/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"staging-xcm-builder/std",
"staging-xcm-executor/std",
"staging-xcm/std",
]
6 changes: 3 additions & 3 deletions container-chains/nodes/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ cumulus-relay-chain-interface = { workspace = true }
orml-asset-registry = { workspace = true }

# Ava Protocol
common-runtime = { workspace = true }
ava-protocol-primitives = { workspace = true }
common-runtime = { workspace = true }

[build-dependencies]
substrate-build-script-utils = { workspace = true }
Expand All @@ -120,21 +120,21 @@ runtime-benchmarks = [
"frame-benchmarking-cli/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"nimbus-primitives/runtime-benchmarks",
"orml-asset-registry/runtime-benchmarks",
"polkadot-cli/runtime-benchmarks",
"polkadot-parachain-primitives/runtime-benchmarks",
"polkadot-primitives/runtime-benchmarks",
"polkadot-service/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"tc-service-container-chain/runtime-benchmarks",
"orml-asset-registry/runtime-benchmarks",
]
try-runtime = [
"container-chain-template-simple-runtime/try-runtime",
"nimbus-primitives/try-runtime",
"orml-asset-registry/try-runtime",
"polkadot-cli/try-runtime",
"polkadot-service/try-runtime",
"sp-runtime/try-runtime",
"tc-service-container-chain/try-runtime",
"orml-asset-registry/try-runtime",
]
36 changes: 18 additions & 18 deletions container-chains/runtime-templates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "common-runtime"
version = "0.1.0"
authors = [ "Ava Protocol Team" ]
description = "The commonalities between runtimes"
authors = ["Ava Protocol Team"]
license = "GPL-3.0"
homepage = "https://avaprotocol.org"
repository = 'https://github.com/AvaProtocol/tanssi-integration'
edition = "2021"
homepage = "https://avaprotocol.org"
license = "GPL-3.0"
repository = "https://github.com/AvaProtocol/tanssi-integration"
version = "0.1.0"

[dependencies]
# Substrate Dependencies
## Substrate Primitive Dependencies
sp-std = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }

## Substrate FRAME Dependencies
frame-support = { workspace = true }
Expand All @@ -27,23 +27,23 @@ pallet-treasury = { workspace = true }
polkadot-primitives = { workspace = true }

## ORML
orml-traits = { workspace = true }
orml-tokens = { workspace = true }
orml-traits = { workspace = true }

# Local Dependencies
ava-protocol-primitives = { workspace = true }

[features]
default = ["std"]
default = [ "std" ]
std = [
"frame-support/std",
"sp-runtime/std",
"sp-std/std",
"pallet-balances/std",
"pallet-transaction-payment/std",
"pallet-treasury/std",
"polkadot-primitives/std",
"ava-protocol-primitives/std",
"orml-traits/std",
"orml-tokens/std",
"ava-protocol-primitives/std",
"frame-support/std",
"orml-tokens/std",
"orml-traits/std",
"pallet-balances/std",
"pallet-transaction-payment/std",
"pallet-treasury/std",
"polkadot-primitives/std",
"sp-runtime/std",
"sp-std/std",
]
54 changes: 27 additions & 27 deletions container-chains/runtime-templates/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ serde = { workspace = true, features = [ "derive" ] }
smallvec = { workspace = true }

# Local
ava-protocol-primitives = { workspace = true }
common-runtime = { workspace = true }
dp-consensus = { workspace = true }
dp-impl-tanssi-pallets-config = { workspace = true }
dp-slot-duration-runtime-api = { workspace = true }
pallet-automation-time = { workspace = true }
pallet-cc-authorities-noting = { workspace = true }
pallet-xcmp-handler = { workspace = true }
pallet-automation-time = { workspace = true }
tanssi-runtime-common = { workspace = true }
ava-protocol-primitives = { workspace = true }
common-runtime = { workspace = true }

# Moonkit
async-backing-primitives = { workspace = true }
Expand Down Expand Up @@ -107,11 +107,11 @@ parachains-common = { workspace = true }


# ORML
orml-currencies = { workspace = true }
orml-asset-registry = { workspace = true }
orml-xtokens = { workspace = true }
orml-traits = { workspace = true }
orml-currencies = { workspace = true }
orml-tokens = { workspace = true }
orml-traits = { workspace = true }
orml-xtokens = { workspace = true }

# Benchmarking
frame-benchmarking = { workspace = true, optional = true }
Expand All @@ -124,6 +124,8 @@ substrate-wasm-builder = { workspace = true }
default = [ "std" ]
std = [
"async-backing-primitives/std",
"ava-protocol-primitives/std",
"common-runtime/std",
"cumulus-pallet-dmp-queue/std",
"cumulus-pallet-parachain-system/std",
"cumulus-pallet-session-benchmarking/std",
Expand All @@ -145,16 +147,22 @@ std = [
"frame-try-runtime/std",
"log/std",
"nimbus-primitives/std",
"orml-asset-registry/std",
"orml-currencies/std",
"orml-tokens/std",
"orml-traits/std",
"orml-xtokens/std",
"pallet-asset-rate/std",
"pallet-assets/std",
"pallet-async-backing/std",
"pallet-author-inherent/std",
"pallet-automation-time/std",
"pallet-balances/std",
"pallet-cc-authorities-noting/std",
"pallet-collective/std",
"pallet-membership/std",
"pallet-foreign-asset-creator/std",
"pallet-maintenance-mode/std",
"pallet-membership/std",
"pallet-message-queue/std",
"pallet-migrations/std",
"pallet-multisig/std",
Expand All @@ -171,7 +179,6 @@ std = [
"pallet-xcm-executor-utils/std",
"pallet-xcm/std",
"pallet-xcmp-handler/std",
"pallet-automation-time/std",
"parachain-info/std",
"parachains-common/std",
"parity-scale-codec/std",
Expand All @@ -198,15 +205,8 @@ std = [
"staging-xcm-executor/std",
"staging-xcm/std",
"tanssi-runtime-common/std",
"orml-currencies/std",
"orml-asset-registry/std",
"orml-xtokens/std",
"orml-traits/std",
"xcm-primitives/std",
"xcm-runtime-apis/std",
"ava-protocol-primitives/std",
"common-runtime/std",
"orml-tokens/std",
]

# Allow to print logs details (no wasm:stripped)
Expand All @@ -225,13 +225,18 @@ runtime-benchmarks = [
"frame-system-benchmarking/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"nimbus-primitives/runtime-benchmarks",
"orml-asset-registry/runtime-benchmarks",
"orml-tokens/runtime-benchmarks",
"orml-xtokens/runtime-benchmarks",
"pallet-asset-rate/runtime-benchmarks",
"pallet-assets/runtime-benchmarks",
"pallet-author-inherent/runtime-benchmarks",
"pallet-automation-time/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-cc-authorities-noting/runtime-benchmarks",
"pallet-collective/runtime-benchmarks",
"pallet-foreign-asset-creator/runtime-benchmarks",
"pallet-membership/runtime-benchmarks",
"pallet-message-queue/runtime-benchmarks",
"pallet-migrations/runtime-benchmarks",
"pallet-multisig/runtime-benchmarks",
Expand All @@ -243,6 +248,7 @@ runtime-benchmarks = [
"pallet-xcm-benchmarks/runtime-benchmarks",
"pallet-xcm-executor-utils/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"pallet-xcmp-handler/runtime-benchmarks",
"parachains-common/runtime-benchmarks",
"polkadot-parachain-primitives/runtime-benchmarks",
"polkadot-runtime-common/runtime-benchmarks",
Expand All @@ -252,12 +258,6 @@ runtime-benchmarks = [
"tanssi-runtime-common/runtime-benchmarks",
"xcm-primitives/runtime-benchmarks",
"xcm-runtime-apis/runtime-benchmarks",
"orml-asset-registry/runtime-benchmarks",
"orml-tokens/runtime-benchmarks",
"orml-xtokens/runtime-benchmarks",
"pallet-membership/runtime-benchmarks",
"pallet-automation-time/runtime-benchmarks",
"pallet-xcmp-handler/runtime-benchmarks",
]

try-runtime = [
Expand All @@ -271,10 +271,15 @@ try-runtime = [
"frame-try-runtime",
"frame-try-runtime/try-runtime",
"nimbus-primitives/try-runtime",
"orml-asset-registry/try-runtime",
"orml-currencies/try-runtime",
"orml-tokens/try-runtime",
"orml-xtokens/try-runtime",
"pallet-asset-rate/try-runtime",
"pallet-assets/try-runtime",
"pallet-async-backing/try-runtime",
"pallet-author-inherent/try-runtime",
"pallet-automation-time/try-runtime",
"pallet-balances/try-runtime",
"pallet-cc-authorities-noting/try-runtime",
"pallet-collective/try-runtime",
Expand All @@ -294,14 +299,9 @@ try-runtime = [
"pallet-utility/try-runtime",
"pallet-xcm-executor-utils/try-runtime",
"pallet-xcm/try-runtime",
"pallet-xcmp-handler/try-runtime",
"parachain-info/try-runtime",
"polkadot-runtime-common/try-runtime",
"sp-runtime/try-runtime",
"tanssi-runtime-common/try-runtime",
"orml-asset-registry/try-runtime",
"orml-currencies/try-runtime",
"orml-xtokens/try-runtime",
"orml-tokens/try-runtime",
"pallet-automation-time/try-runtime",
"pallet-xcmp-handler/try-runtime",
]
Loading

0 comments on commit 28be6ce

Please sign in to comment.