mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-24 21:45:41 +00:00
PVF: Add missing crate descriptions (#7587)
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polkadot-node-core-candidate-validation"
|
name = "polkadot-node-core-candidate-validation"
|
||||||
|
description = "Polkadot crate that implements the Candidate Validation subsystem. Handles requests to validate candidates according to a PVF."
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polkadot-node-core-pvf-checker"
|
name = "polkadot-node-core-pvf-checker"
|
||||||
|
description = "Polkadot crate that implements the PVF pre-checking subsystem. Responsible for checking and voting for PVFs that are pending approval."
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polkadot-node-core-pvf"
|
name = "polkadot-node-core-pvf"
|
||||||
|
description = "Polkadot crate that implements the PVF validation host. Responsible for coordinating preparation and execution of PVFs."
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polkadot-node-core-pvf-common"
|
name = "polkadot-node-core-pvf-common"
|
||||||
|
description = "Polkadot crate that contains functionality related to PVFs that is shared by the PVF host and the PVF workers."
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
//! Functionality that is shared by the host and the workers.
|
//! Contains functionality related to PVFs that is shared by the PVF host and the PVF workers.
|
||||||
|
|
||||||
pub mod error;
|
pub mod error;
|
||||||
pub mod execute;
|
pub mod execute;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polkadot-node-core-pvf-execute-worker"
|
name = "polkadot-node-core-pvf-execute-worker"
|
||||||
|
description = "Polkadot crate that contains the logic for executing PVFs. Used by the polkadot-execute-worker binary."
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
//! Contains the logic for executing PVFs. Used by the polkadot-execute-worker binary.
|
||||||
|
|
||||||
pub use polkadot_node_core_pvf_common::executor_intf::Executor;
|
pub use polkadot_node_core_pvf_common::executor_intf::Executor;
|
||||||
|
|
||||||
// NOTE: Initializing logging in e.g. tests will not have an effect in the workers, as they are
|
// NOTE: Initializing logging in e.g. tests will not have an effect in the workers, as they are
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polkadot-node-core-pvf-prepare-worker"
|
name = "polkadot-node-core-pvf-prepare-worker"
|
||||||
|
description = "Polkadot crate that contains the logic for preparing PVFs. Used by the polkadot-prepare-worker binary."
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
//! Contains the logic for preparing PVFs. Used by the polkadot-prepare-worker binary.
|
||||||
|
|
||||||
mod executor_intf;
|
mod executor_intf;
|
||||||
mod memory_stats;
|
mod memory_stats;
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
//! A crate that implements the PVF validation host.
|
//! The PVF validation host. Responsible for coordinating preparation and execution of PVFs.
|
||||||
//!
|
//!
|
||||||
//! For more background, refer to the Implementer's Guide: [PVF
|
//! For more background, refer to the Implementer's Guide: [PVF
|
||||||
//! Pre-checking](https://paritytech.github.io/polkadot/book/pvf-prechecking.html) and [Candidate
|
//! Pre-checking](https://paritytech.github.io/polkadot/book/pvf-prechecking.html) and [Candidate
|
||||||
|
|||||||
Reference in New Issue
Block a user