5 releases (breaking)
0.5.0 | Mar 4, 2022 |
---|---|
0.4.0 | Mar 4, 2022 |
0.3.0 | Mar 4, 2022 |
0.2.0 | Mar 1, 2022 |
0.1.0 | Feb 27, 2022 |
#1449 in Network programming
286 downloads per month
Used in 28 crates
(8 directly)
105KB
2K
SLoC
Rust ZeroMQ bindings.
About
The zmq2
crate provides bindings for the libzmq
library from the
ZeroMQ project. This project is a fork of the
https://github.com/erickt/rust-zmq project, with the intent
of keeping it actively maintained.
This project removes the cmake
dependency of this project, as well as
update the dependencies. It has also removed the pkgconfig
build in
favor of always building a vendored version of this library.
Compatibility
The aim of this fork is to track latest zmq releases as close as possible,
while in the beginning aming to be a drop in replacement of the original
zmq
library. Though over time we'll most likely abandon that, in favor
of our own library features.
Usage
zmq2
is a pretty straight forward port of the C API into Rust:
fn main() {
let ctx = zmq2::Context::new();
let socket = ctx.socket(zmq2::REQ).unwrap();
socket.connect("tcp://127.0.0.1:1234").unwrap();
socket.send("hello world!", 0).unwrap();
}
You can find more usage examples in https://github.com/Traverse-Research/zmq2/tree/master/examples.
Contributing
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed under the terms of both the Apache License, Version 2.0 and the MIT license without any additional terms or conditions.
See the contribution guidelines for what to watch out for when submitting a pull request.
Dependencies
~0–1.8MB
~27K SLoC