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

#118 in #protocol

Download history 94/week @ 2023-12-18 63/week @ 2023-12-25 33/week @ 2024-01-01 92/week @ 2024-01-08 73/week @ 2024-01-15 60/week @ 2024-01-22 35/week @ 2024-01-29 73/week @ 2024-02-05 75/week @ 2024-02-12 58/week @ 2024-02-19 110/week @ 2024-02-26 106/week @ 2024-03-04 80/week @ 2024-03-11 106/week @ 2024-03-18 144/week @ 2024-03-25 209/week @ 2024-04-01

565 downloads per month
Used in 26 crates (6 directly)

MIT/Apache

105KB
2K SLoC

Rust ZeroMQ bindings.

Travis Build Status Appveyor Build status Coverage Status Apache 2.0 licensed MIT licensed docs

Documentation

Release Notes

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–1MB
~22K SLoC