//! # faucet-source-grpc
//!
//! A config-driven gRPC source that uses protobuf reflection to call
//! any gRPC service dynamically and return records as JSON.
//!
//! Supports both [`RpcKind::Unary`] (one request → one response) and
//! [`RpcKind::ServerStreaming`] (one request → server-driven stream of
//! responses) — see the crate README for the differences in batching and
//! reconnect behaviour.
//!
//! Requires a compiled `FileDescriptorSet` (produced by
//! `protoc --descriptor_set_out=descriptor.bin`).
pub use ;
pub use ;
pub use GrpcStream;