-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 847 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "libmdns"
version = "0.10.1"
authors = ["Will Stott <willstott101+libmdns@gmail.com>"]
description = "mDNS Responder library for building discoverable LAN services in Rust"
repository = "https://github.com/librespot-org/libmdns"
readme = "README.md"
license = "MIT"
edition = "2018"
rust-version = "1.74"
[dependencies]
byteorder = "1.5"
futures-util = "0.3"
hostname = "0.4"
if-addrs = { version = "0.14", features = ["link-local"] }
log = "0.4"
multimap = { version = "0.10", default-features = false }
rand = "0.9"
socket2 = { version = "0.6", features = ["all"] }
thiserror = "2"
tokio = { version = "1", default-features = false, features = [
"sync",
"net",
"rt",
] }
[dev-dependencies]
env_logger = { version = "0.11", default-features = false, features = [
"color",
"humantime",
"auto-color",
] }