-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
35 lines (31 loc) · 1.04 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "async-dnssd"
build = "build.rs"
# also bump version in src/lib.rs
version = "0.5.1"
authors = ["Stefan Bühler <[email protected]>"]
description = "Asynchronous wrapper for DNS-SD C libraries"
documentation = "https://stbuehler.github.io/rustdocs/async-dnssd/async_dnssd/"
homepage = "https://github.com/stbuehler/rust-async-dnssd"
repository = "https://github.com/stbuehler/rust-async-dnssd"
readme = "README.md"
keywords = ["dnssd", "dns-sd", "mdns", "network", "async"]
license = "MIT"
edition = "2021"
[build-dependencies]
pkg-config = "0.3.9"
[dependencies]
bitflags = "1.0.4"
futures-channel = "0.3.1"
futures-core = "0.3.1"
futures-util = { version = "0.3.1", default-features = false, features = ["std"] }
libc = "0.2.65"
log = "0.4.8"
pin-utils = "0.1.0"
tokio = { version = "1.1", features = ["time", "rt", "net", "sync"] }
[target.'cfg(windows)'.dependencies]
futures-executor = "0.3.1"
winapi = { version = "0.3.6", features = ["winsock2"] }
[dev-dependencies]
futures = "0.3.1"
tokio = { version = "1.1", features = ["macros"] }