From c86d67b15cb07e9f0eaaa9513aeb5add67d02a20 Mon Sep 17 00:00:00 2001 From: linuswck Date: Tue, 27 Aug 2024 16:11:55 +0800 Subject: [PATCH] firmware: do not display smoltcp log --- Cargo.lock | 1 - Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d83c562..e08c544 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -878,7 +878,6 @@ dependencies = [ "byteorder", "cfg-if", "heapless 0.8.0", - "log", "managed", ] diff --git a/Cargo.toml b/Cargo.toml index 74875d3..f7bae9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ cortex-m-log = { version = "0.7.0", features = ["log-integration", "semihosting" stm32f4xx-hal = { version = "0.20.0", features = ["stm32f407", "otg-fs", "usb_fs"] } stm32-eth = { version = "0.6.0", features = ["stm32f407", "smoltcp-phy", "smoltcp"] } ieee802_3_miim = "0.8.0" -smoltcp = { version = "0.11.0", default-features = false, features = ["proto-ipv4", "socket-tcp", "log", "medium-ethernet", "iface-neighbor-cache-count-16"] } +smoltcp = { version = "0.11.0", default-features = false, features = ["proto-ipv4", "socket-tcp", "medium-ethernet", "iface-neighbor-cache-count-16"] } uom = { version = "0.30", default-features = false, features = ["autoconvert", "si", "f32", "use_serde"] } num-traits = { version = "0.2.15", default-features = false, features = ["libm"] } usb-device = "0.3.2"