Skip to content

Commit 151f217

Browse files
committed
Use latest rust-netlink crates
Signed-off-by: Gris Ge <[email protected]>
1 parent ebcb57d commit 151f217

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ async-std = { version = "1.9.0", optional = true}
2525
byteorder = "1.4.3"
2626
futures = "0.3.17"
2727
log = "0.4.14"
28-
genetlink = { default-features = false, version = "0.2.1"}
29-
netlink-packet-core = { version = "0.4.2"}
30-
netlink-packet-generic = { version = "0.3.1" }
31-
netlink-packet-utils = { version = "0.5.1" }
32-
netlink-proto = { default-features = false, version = "0.10" }
33-
netlink-sys = { version = "0.8.3" }
28+
genetlink = { default-features = false, version = "0.2.4"}
29+
netlink-packet-core = { version = "0.5.0"}
30+
netlink-packet-generic = { version = "0.3.2" }
31+
netlink-packet-utils = { version = "0.5.2" }
32+
netlink-proto = { default-features = false, version = "0.11.1" }
33+
netlink-sys = { version = "0.8.4" }
3434
thiserror = "1.0.29"
3535
tokio = { version = "1.0.1", features = ["rt"], optional = true}
3636

src/message.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// SPDX-License-Identifier: MIT
22

3-
use netlink_packet_core::DecodeError;
43
use netlink_packet_generic::{GenlFamily, GenlHeader};
5-
use netlink_packet_utils::{nla::Nla, Emitable, ParseableParametrized};
4+
use netlink_packet_utils::{
5+
nla::Nla, DecodeError, Emitable, ParseableParametrized,
6+
};
67

78
use crate::{
89
coalesce::{parse_coalesce_nlas, EthtoolCoalesceAttr},

0 commit comments

Comments
 (0)