razel 0.5.7

a command executor with caching for data processing pipelines
Documentation
#![allow(clippy::all, dead_code)]

pub use build::bazel::remote::execution::v2::*;
pub use google::*;

mod google {
    pub mod rpc {
        tonic::include_proto!("google.rpc");
    }

    pub mod longrunning {
        tonic::include_proto!("google.longrunning");
    }

    pub mod bytestream {
        tonic::include_proto!("google.bytestream");
    }

    #[cfg(not(doctest))]
    mod api {
        tonic::include_proto!("google.api");
    }
}

mod build {
    pub mod bazel {
        mod semver {
            tonic::include_proto!("build.bazel.semver");
        }

        pub mod remote {
            pub mod execution {
                pub mod v2 {
                    tonic::include_proto!("build.bazel.remote.execution.v2");
                }
            }
        }
    }
}