nightly-async-nats

Crates.ionightly-async-nats
lib.rsnightly-async-nats
version0.27.1
sourcesrc
created_at2023-02-01 15:41:39.375385
updated_at2023-02-01 15:41:39.375385
descriptionA async Rust NATS client
homepagehttps://github.com/nats-io/nats.rs
repositoryhttps://github.com/nats-io/nats.rs
max_upload_size
id773865
size835,178
NB (NorbertBodziony)

documentation

https://docs.rs/async-nats

README

A Rust client for the NATS messaging system.

Motivation

Rust may be one of the most interesting new languages the NATS ecosystem has seen. We believe this client will have a large impact on NATS, distributed systems, and embedded and IoT environments. With Rust, we wanted to be as idiomatic as we could be and lean into the strengths of the language. We moved many things that would have been runtime checks and errors to the compiler, most notably options on connections, and having subscriptions generate multiple styles of iterators since iterators are first-class citizens in Rust. We also wanted to be aligned with the NATS philosophy of simple, secure, and fast!

Clients

There are two clients available in two separate crates:

async-nats

License Apache 2 Crates.io Documentation Build Status

New async Tokio-based NATS client.

Supports:

  • Core NATS
  • JetStream API
  • JetStream Management API
  • Key Value Store
  • Object Store

Any feedback related to this client is welcomed.

Note: async client is still <1.0.0 version and will introduce breaking changes.

nats

License Apache 2 Crates.io Documentation Build Status

Legacy synchronous client that supports:

  • Core NATS
  • JetStream API
  • JetStream Management API
  • Key Value Store
  • Object Store

This client will be deprecated soon, when async-nats reaches version 1.0, with a sync wrapper around it.

Documentation

Please refer each crate docs for API reference and examples.

Feedback

We encourage all folks in the NATS and Rust ecosystems to help us improve this library. Please open issues, submit PRs, etc. We're available in the rust channel on the NATS slack as well!

Commit count: 1771

cargo fmt