An open API service indexing awesome lists of open source software.

https://github.com/plietar/rust-mdns

Pure rust mDNS responder
https://github.com/plietar/rust-mdns

Last synced: about 1 year ago
JSON representation

Pure rust mDNS responder

Awesome Lists containing this project

README

          

# rust-mdns - Rust mDNS responder

rust-mdns is a pure rust implementation of the mDNS ([RFC 6762]) and DNS-SD ([RFC 6763]) protocols.

## Usage

To use it, first add this to your `Cargo.toml`:

```toml
[dependencies.mdns]
git = "https://github.com/plietar/rust-mdns"
```

Then, add this to your crate root:

```rust
extern crate mdns;
```

[RFC 6762]: https://tools.ietf.org/html/rfc6762
[RFC 6763]: https://tools.ietf.org/html/rfc6763