https://github.com/bschwind/mqtt
An exercise in learning rust by implementing an MQTT broker
https://github.com/bschwind/mqtt
Last synced: about 2 months ago
JSON representation
An exercise in learning rust by implementing an MQTT broker
- Host: GitHub
- URL: https://github.com/bschwind/mqtt
- Owner: bschwind
- Created: 2016-10-18T14:03:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-12T02:28:03.000Z (over 9 years ago)
- Last Synced: 2026-01-26T22:11:05.782Z (5 months ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mqtt
An exercise in learning rust by implementing an MQTT broker. This is super not ready for anything yet. I'm still learning the best ways to organize async code in Rust, and checking out Nom as a parser.
Dependencies
------------
* [Rust](https://www.rustup.rs/)
* [Cargo](https://crates.io/)
Build
-----
```
cargo build
```
Run
---
```
cargo run
```
Test
----
```
cargo test
```