Note that this library is in the very early stages of development! Anything and everything may change!

zedmq

A Lightweight, Safe, pure-Rust ØMQ/ZMTP library implementation

Index

Brief

Zedmq is a native implementation of ØMQ in Rust focusing on:

Examples

```rust use zedmq::prelude::*;

fn main() -> std::io::Result<()> { let mut socket = ::bind("tcp://127.0.0.1:5678")?;

while Some(message) = socket.recv() {
    dbg!(message);
}

Ok(())

} ```

License: MIT