Skip to main content

converge_protocol/
lib.rs

1// Copyright 2024-2026 Reflective Labs
2// SPDX-License-Identifier: MIT
3
4//! Generated protobuf and gRPC contracts for Converge.
5//!
6//! This crate is the Rust representation of the versioned `converge.v1` wire
7//! protocol defined in `schema/proto/converge.proto`.
8
9pub use prost;
10pub use prost_types;
11pub use tonic;
12
13pub mod v1 {
14    #![allow(clippy::default_trait_access)]
15    #![allow(clippy::doc_markdown)]
16    #![allow(clippy::missing_errors_doc)]
17    #![allow(clippy::must_use_candidate)]
18    #![allow(clippy::similar_names)]
19
20    tonic::include_proto!("converge.v1");
21}