forked from little-dude/netlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 1.01 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
36
37
38
39
40
41
42
43
44
[package]
authors = ["Corentin Henry <[email protected]>"]
name = "netlink-proto"
version = "0.1.1"
edition = "2018"
homepage = "https://github.com/little-dude/netlink"
keywords = ["netlink", "linux", "tokio"]
license = "MIT"
readme = "../README.md"
repository = "https://github.com/little-dude/netlink"
description = "netlink protocol based on Tokio"
[dependencies]
bytes = "0.4.11"
lazy_static = "1.2.0"
log = "0.4.6"
futures = "0.1.25"
tokio-io = "0.1.10"
failure = "0.1.3"
[dependencies.netlink-sys]
optional = true
default-features = false
path = "../netlink-sys"
version = "0.1"
[dependencies.netlink-packet]
optional = true
default-features = false
path = "../netlink-packet"
version = "0.1"
[features]
default = ["netlink-sys/tokio_support", "netlink-packet"]
rtnetlink = ["netlink-sys/tokio_support", "netlink-packet/rtnetlink"]
audit = ["netlink-sys/tokio_support", "netlink-packet/audit"]
[dev-dependencies]
env_logger = "0.6.0"
[[example]]
name = "dump_links_tokio"
required-features = ["rtnetlink"]