iqkms_proto/
lib.rs

1//! iqkms protobuf and gRPC client/server definitions.
2//!
3//! Mechanically generated using `prost` and `tonic`.
4
5#![allow(clippy::derive_partial_eq_without_eq)]
6#![doc = include_str!("../README.md")]
7#![doc(
8    html_logo_url = "https://raw.githubusercontent.com/iqlusioninc/iqkms/main/.img/iqkms-sq.svg"
9)]
10#![forbid(unsafe_code)]
11#![warn(missing_docs, rust_2018_idioms, unused_lifetimes)]
12
13/// Ethereum support.
14pub mod ethereum {
15    tonic::include_proto!("iqkms.ethereum");
16}