From e962de08a0dc4232ba470b582a3607ed8fd5b4c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 15:23:32 +0000 Subject: [PATCH] Update smoltcp requirement from 0.8.0 to 0.10.0 in /lib/vmxnet3 Updates the requirements on [smoltcp](https://github.com/smoltcp-rs/smoltcp) to permit the latest version. - [Changelog](https://github.com/smoltcp-rs/smoltcp/blob/main/CHANGELOG.md) - [Commits](https://github.com/smoltcp-rs/smoltcp/compare/v0.8.0...v0.10.0) --- updated-dependencies: - dependency-name: smoltcp dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- lib/vmxnet3/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vmxnet3/Cargo.toml b/lib/vmxnet3/Cargo.toml index 40dca74fb..ce0d6f110 100644 --- a/lib/vmxnet3/Cargo.toml +++ b/lib/vmxnet3/Cargo.toml @@ -14,7 +14,7 @@ x86 = { version = "0.52", features = ["unstable"] } arrayvec = { version = "0.7.0", default-features = false } custom_error = { version = "1.9", default-features = false, features = ["unstable"] } driverkit = "0.24" -smoltcp = { version = "0.8.0", default-features = false, features = [ "alloc", "log", "proto-ipv4", "proto-igmp", "proto-dhcpv4", "socket-raw", "socket-icmp", "socket-udp", "socket-tcp", "medium-ethernet" ] } +smoltcp = { version = "0.10.0", default-features = false, features = [ "alloc", "log", "proto-ipv4", "proto-igmp", "proto-dhcpv4", "socket-raw", "socket-icmp", "socket-udp", "socket-tcp", "medium-ethernet" ] } [target.'cfg(target_family = "unix")'.dev-dependencies] env_logger = "0.9"