zeroconf_tokio/
lib.rs

1//! `zeroconf-tokio` is a Tokio-based wrapper around the `zeroconf` crate, which provides mDNS service discovery and
2//! registration capabilities.
3#[macro_use]
4extern crate log;
5
6pub use zeroconf::*;
7
8pub mod browser;
9pub mod event_processor;
10pub mod service;
11
12pub use browser::MdnsBrowserAsync;
13pub use service::MdnsServiceAsync;