simple-mdns 0.6.3

Rust implementation of mDNS for service discovering (DNS-SD)
Documentation
1
2
3
4
5
6
7
8
9
//! Contains the async (tokio) version of service discovery

mod oneshot_resolver;
mod service_discovery;
mod simple_responder;

pub use oneshot_resolver::OneShotMdnsResolver;
pub use service_discovery::ServiceDiscovery;
pub use simple_responder::SimpleMdnsResponder;