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
- Host: GitHub
- URL: https://github.com/plietar/rust-mdns
- Owner: plietar
- License: mit
- Created: 2016-05-07T11:39:23.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-07-15T21:41:42.000Z (almost 7 years ago)
- Last Synced: 2025-03-21T18:21:19.236Z (about 1 year ago)
- Language: Rust
- Size: 40 KB
- Stars: 56
- Watchers: 6
- Forks: 28
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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