From fcd495e888d2d7357bfd9958bcf492e35d726bf0 Mon Sep 17 00:00:00 2001 From: Richard Meadows <962920+richardeoin@users.noreply.github.com> Date: Sun, 4 Feb 2024 12:46:30 +0100 Subject: [PATCH] Upgrade smoltcp to 0.11.0 Also remove extra "proto-ipv6" feature that is not needed by examples --- Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 68c0c63b..b8a8c9cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ fdcan = { version = "0.2", optional = true } embedded-storage = "0.3" [dependencies.smoltcp] -version = "0.10.0" +version = "0.11.0" default-features = false features = ["medium-ethernet", "proto-ipv4", "socket-raw"] optional = true @@ -84,11 +84,6 @@ embedded-graphics = "0.8" otm8009a = "0.1" eg-seven-segment = "0.2.0" -[dev-dependencies.smoltcp] -version = "0.10.0" -default-features = false -features = ["medium-ethernet", "proto-ipv4", "proto-ipv6", "socket-raw"] - [features] default = ["rt"] device-selected = []