spark-protos 0.1.11

Protos for Spark (https://www.spark.money/). These protos are used to communicate with Spark Operators.
Documentation
//! # Spark Types Protobuf Definitions
//!
//! These are used to connect and make requests to Spark Operators.
//!
//! This module contains the generated code for the Spark Types.
//! It is generated by the build.rs script.

/// This module contains the generated code for the Spark Types.
#[allow(missing_docs)]
#[allow(clippy::all)]
#[allow(missing_docs)]
// Re-export prost to ensure it's available for the generated code
pub use prost;

/// The core for Spark proto types and service definitions. This module contains `spark.proto` and `spark_tree.proto` files.
pub mod spark {
    include!(concat!(env!("OUT_DIR"), "/spark.rs"));
}

/// Common types shared between different modules. This module contains the `common.proto` file.
pub mod common {
    include!(concat!(env!("OUT_DIR"), "/common.rs"));
}

/// FROST types and service definitions used by Spark Operators to sign and verify signatures. This module contains the `frost.proto` file.
pub mod frost {
    include!(concat!(env!("OUT_DIR"), "/frost.rs"));
}

/// Authentication types and service definitions used by Spark Operators to authenticate with each other. This module contains the `spark_authn.proto` file.
pub mod spark_authn {
    include!(concat!(env!("OUT_DIR"), "/spark_authn.rs"));
}