mtls_grpc/
lib.rs

1//! gRPC adapter for mTLS authentication.
2//!
3//! This crate provides gRPC (tonic) interceptors and credentials for mTLS authentication with IP whitelisting.
4
5#![warn(missing_docs)]
6
7/// gRPC interceptors and credentials for mTLS.
8pub mod grpc;
9
10/// Re-export commonly used types.
11pub mod prelude {
12    pub use crate::grpc::*;
13}