forked from bltavares/multicast-socket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 779 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
24
25
26
27
28
29
[package]
name = 'multicast-socket'
description = 'Single-socket multi-interface multicast socket'
version = "0.2.2"
authors = ['Bruno Tavares <[email protected]>']
edition = '2018'
homepage = 'https://github.com/bltavares/multicast-socket'
repository = 'https://github.com/bltavares/multicast-socket'
readme = 'README.md'
license = 'MIT OR Apache-2.0'
keywords = ['multicast']
[dependencies]
get_if_addrs = '0.5.3'
tokio = { version = "1.20.1", features = ["full"] }
[dependencies.socket2]
version = '0.3.19'
features = ['reuseport']
[target.'cfg(windows)'.dependencies.winapi]
version = '0.3.9'
features = ['mswsock', 'iphlpapi']
[target.'cfg(not(windows))'.dependencies.nix]
version = '0.19.1'
[target.'cfg(not(windows))'.dependencies.libc]
version = '0.2.85'