Client SDKsRust
Rust SDK
Install the KubeMQ Rust SDK and send your first message with step-by-step instructions.
The KubeMQ Rust SDK provides an async gRPC client for all messaging patterns. It is built on Tokio and Tonic, supports all five KubeMQ patterns (Events, Events Store, Queues, Commands, Queries), and is compatible with KubeMQ server v2.2+.
Installation
cargo add kubemqThe SDK requires an async runtime. Add Tokio if you haven't already:
cargo add tokio --features fullNext: send your first message
With the SDK installed, continue to the first-message tutorial to connect a client and publish and receive your first message.
Was this page helpful?