forked from keepsimple1/mdns-sd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (21 loc) · 902 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "mdns-sd"
version = "0.5.9"
authors = ["keepsimple <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/keepsimple1/mdns-sd"
documentation = "https://docs.rs/mdns-sd"
keywords = ["mdns", "discovery", "service-discovery", "zeroconf", "dns-sd"]
categories = ["network-programming"]
description = "mDNS Service Discovery library with no async runtime dependency"
[features]
async = ["flume/async"]
logging = ["log"]
default = ["async", "logging"]
[dependencies]
flume = { version = "0.10", default-features = false } # channel between threads
if-addrs = "0.7" # get local IP addresses
log = { version = "0.4.14", optional = true } # logging
polling = "2.1.0" # select/poll sockets
socket2 = { version = "0.4", features = ["all"] } # socket APIs