From: Yann Dirson Date: Mon, 5 Feb 2024 09:25:00 +0000 (+0100) Subject: netlink: declare compatibility with netlink-packet-route 0.19 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8f0b1ed26c834d596faf6da6ae833f800e7d4201;p=xen-guest-agent.git netlink: declare compatibility with netlink-packet-route 0.19 Signed-off-by: Yann Dirson --- diff --git a/Cargo.toml b/Cargo.toml index 6fc8de3..a707160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ futures = "0.3.26" libc = "0.2.139" tokio = { version = "1.25.0", features = ["full"] } netlink-packet-core = { version = "0.7.0", optional = true } -netlink-packet-route = { version = "0.18.0", optional = true } +netlink-packet-route = { version = ">=0.18.0, <0.20", optional = true } netlink-proto = { version = "0.11.2", optional = true } rtnetlink = { version = "0.14.0", optional = true } async-stream = "0.3.4"