spark_protos/
lib.rs

1//! This crate contains the protofile compilations to allow Spark gRPC requests.
2
3pub mod common {
4    #![allow(clippy::derive_partial_eq_without_eq, missing_docs)]
5    include!(concat!(
6        env!("CARGO_MANIFEST_DIR"),
7        "/src/generated/common.rs"
8    ));
9}
10
11pub mod spark {
12    #![allow(clippy::derive_partial_eq_without_eq, missing_docs)]
13    include!(concat!(
14        env!("CARGO_MANIFEST_DIR"),
15        "/src/generated/spark.rs"
16    ));
17}
18
19pub mod spark_tree {
20    #![allow(clippy::derive_partial_eq_without_eq, missing_docs)]
21    include!(concat!(
22        env!("CARGO_MANIFEST_DIR"),
23        "/src/generated/spark_tree.rs"
24    ));
25}
26
27pub mod frost {
28    #![allow(clippy::derive_partial_eq_without_eq, missing_docs)]
29    include!(concat!(
30        env!("CARGO_MANIFEST_DIR"),
31        "/src/generated/frost.rs"
32    ));
33}
34
35pub mod authn {
36    #![allow(clippy::derive_partial_eq_without_eq, missing_docs)]
37    include!(concat!(
38        env!("CARGO_MANIFEST_DIR"),
39        "/src/generated/spark_authn.rs"
40    ));
41}