Note that this library is in the very early stages of development! Anything and everything may change!
Zedmq is a native implementation of ØMQ in Rust focusing on:
```rust use zedmq::prelude::*;
fn main() -> std::io::Result<()> { let mut socket = Pull::connect("127.0.0.1:5678")?;
while let Ok(message) = socket.recv() {
dbg!(message);
}
Ok(())
} ```
License: MIT