spark_protos/
lib.rs

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