Skip to content

mlz-ictrl/rust-zmq

 
 

Repository files navigation

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.

About

Rust zeromq bindings.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 100.0%