15 releases

Uses old Rust 2015

0.12.0 Nov 4, 2022
0.11.0 Sep 21, 2019
0.9.1 May 30, 2019
0.9.0 Dec 14, 2018
0.6.0 Dec 9, 2014

#1529 in Network programming

Download history 9864/week @ 2023-12-14 7092/week @ 2023-12-21 6859/week @ 2023-12-28 10017/week @ 2024-01-04 10540/week @ 2024-01-11 10517/week @ 2024-01-18 11900/week @ 2024-01-25 12854/week @ 2024-02-01 13837/week @ 2024-02-08 12672/week @ 2024-02-15 12399/week @ 2024-02-22 11814/week @ 2024-02-29 12494/week @ 2024-03-07 11177/week @ 2024-03-14 12561/week @ 2024-03-21 10197/week @ 2024-03-28

48,775 downloads per month
Used in 350 crates (5 directly)

MIT/Apache

34KB
958 lines

Rust ZeroMQ bindings.

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

Documentation

Release Notes

About

The zmq crate provides bindings for the libzmq library from the ZeroMQ project. The API exposed by zmq should be safe (in the usual Rust sense), but it follows the C API closely, so it is not very idiomatic.

Compatibility

The aim of this project is to track latest zmq releases as close as possible.

Regarding the minimum Rust version required, zmq is CI-tested on current stable channels of Rust.

Usage

zmq is a pretty straight forward port of the C API into Rust:

fn main() {
    let ctx = zmq::Context::new();

    let socket = ctx.socket(zmq::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/erickt/rust-zmq/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
~20K SLoC