This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
== Versioning * rtnetlink 0.10.1 -> 0.11.0 * netlink-packet-route 0.12.0 -> 0.13.0 == Breaking Changes * netlink-packet-route: `rtnl::link::nlas::InfoData::Bond` changed from `Vec<u8>` to `Vec<InfoBond>`. (99b5765) == New Features * Add support bond. (99b5765) == Bug fixes * Fix the flag of link deletion. (9dccf92) Signed-off-by: Gris Ge <[email protected]>
- Loading branch information
Showing
6 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = ["Corentin Henry <[email protected]>"] | ||
name = "netlink-packet-route" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
edition = "2018" | ||
|
||
homepage = "https://github.com/little-dude/netlink" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rtnetlink" | ||
version = "0.10.1" | ||
version = "0.11.0" | ||
authors = ["Corentin Henry <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -21,7 +21,7 @@ smol_socket = ["netlink-proto/smol_socket", "async-global-executor"] | |
futures = "0.3.11" | ||
log = "0.4.8" | ||
thiserror = "1" | ||
netlink-packet-route = { version = "0.12.0", path = "../netlink-packet-route" } | ||
netlink-packet-route = { version = "0.13.0", path = "../netlink-packet-route" } | ||
netlink-proto = { default-features = false, version = "0.10", path = "../netlink-proto" } | ||
nix = { version = "0.24.1" , default-features = false, features = ["fs", "mount", "sched", "signal"] } | ||
tokio = { version = "1.0.1", features = ["rt"], optional = true} | ||
|