Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Runtime Missing Crate Descriptions #1909

Merged
merged 3 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "contracts-rococo-runtime"
version = "0.2.0"
description = "Parachain testnet runtime for FRAME Contracts pallet."
authors.workspace = true
edition.workspace = true

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "glutton-runtime"
version = "1.0.0"
description = "Glutton parachain runtime."
authors.workspace = true
edition.workspace = true

Expand Down
1 change: 1 addition & 0 deletions cumulus/parachains/runtimes/starters/seedling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "seedling-runtime"
version = "0.1.0"
description = "Seedling parachain runtime. A starter runtime for solochain to parachain migration."
authors.workspace = true
edition.workspace = true

Expand Down
1 change: 1 addition & 0 deletions cumulus/parachains/runtimes/starters/shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "shell-runtime"
version = "0.1.0"
description = "A minimal runtime to test Relay Chain consensus."
authors.workspace = true
edition.workspace = true

Expand Down
1 change: 1 addition & 0 deletions polkadot/core-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "polkadot-core-primitives"
version = "1.0.0"
description = "Core Polkadot types used by Relay Chains and parachains."
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions polkadot/runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "polkadot-runtime-common"
version = "1.0.0"
description = "Pallets and constants used in Relay Chain networks."
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions polkadot/runtime/rococo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "rococo-runtime"
build = "build.rs"
version = "1.0.0"
description = "Rococo testnet Relay Chain runtime."
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions polkadot/runtime/rococo/constants/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "rococo-runtime-constants"
version = "1.0.0"
description = "Constants used throughout the Rococo network."
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions polkadot/runtime/westend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "westend-runtime"
build = "build.rs"
version = "1.0.0"
description = "Westend testnet Relay Chain runtime."
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions polkadot/runtime/westend/constants/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "westend-runtime-constants"
version = "1.0.0"
description = "Constants used throughout the Westend network."
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions polkadot/xcm/pallet-xcm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "pallet-xcm"
version = "1.0.0"
description = "A pallet for handling XCM programs."
authors.workspace = true
edition.workspace = true
license.workspace = true
version = "1.0.0"


[dependencies]
bounded-collections = { version = "0.1.8", default-features = false }
Expand Down