Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.53 KB

README.md

File metadata and controls

54 lines (40 loc) · 1.53 KB

Rust ZeroMQ bindings.

Travis Build Status Appveyor Build status Coverage Status Apache 2.0 licensed MIT licensed crates.io

Installation

rust-zmq uses cargo to install. Users should add this to their Cargo.toml file:

[dependencies.zmq]
git = "https://github.com/erickt/rust-zmq.git"

Install for developers:

% git clone https://github.com/erickt/rust-zmq
% cd rust-zmq
% cargo build

Usage

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

extern crate zmq;

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

	let mut socket = match ctx.socket(zmq::REQ) {
	  Ok(socket) => { socket },
	  Err(e) => { panic!(e) }
	};

	match socket.connect("tcp://127.0.0.1:1234") {
	  Ok(()) => (),
	  Err(e) => panic!(e)
	}

	match socket.send_str("hello world!", 0) {
	  Ok(()) => (),
	  Err(e) => panic!(e)
	}
}

You can find more usage examples in https://github.com/erickt/rust-zmq/tree/master/examples.