4 releases
0.2.0 | Oct 28, 2019 |
---|---|
0.1.2 | Jan 29, 2019 |
0.1.1 | Jan 19, 2019 |
0.1.0 | Dec 5, 2018 |
#9 in #nng
41 downloads per month
Used in 3 crates
(2 directly)
12KB
209 lines
nng_async / RuNNG
Rust NNG (Nanomsg-Next-Generation):
NNG, like its predecessors nanomsg (and to some extent ZeroMQ), is a lightweight, broker-less library, offering a simple API to solve common recurring messaging problems, such as publish/subscribe, RPC-style request/reply, or service discovery. The API frees the programmer from worrying about details like connection management, retries, and other common considerations, so that they can focus on the application instead of the plumbing.
Repository | Crate | Details |
---|---|---|
nng_async / runng | high-level wrapper for NNG | |
nng-sys | bindings to native NNG library | |
runng_examples | Additional examples | |
runng_thrift | NNG as Apache Thrift transport |
Usage
In Cargo.toml
:
runng = "0.3"
Requirements:
- cmake in
PATH
- On Linux/macOS: default generator is "Unix Makefiles" and should just work
- On Windows: default generator is usually Visual Studio
- Optional libclang needed if using
build-bindgen
feature to run bindgen
Build
- Update submodules:
git submodule update --init --recursive
- Install requirements
cargo build
Dependencies
~2MB
~46K SLoC