From 79fbf79bd8b9154399dd75cac2f67be39d32a4f8 Mon Sep 17 00:00:00 2001 From: demo Date: Thu, 23 Jan 2025 11:38:43 +0200 Subject: [PATCH 1/2] potential for cleanup --- host/Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/host/Cargo.toml b/host/Cargo.toml index af5526bb..cb3bd142 100644 --- a/host/Cargo.toml +++ b/host/Cargo.toml @@ -22,8 +22,6 @@ static_cell = "2.1.0" # Logging log = { version = "0.4.16", optional = true } defmt = { version = "0.3", optional = true } -num_enum = { version = "0.7.3", default-features = false } -thiserror = { version = "2.0.0", default-features = false } [dev-dependencies] tokio = { version = "1", default-features = false, features = [ @@ -35,7 +33,6 @@ embedded-io-adapters = { version = "0.6.1", features = ["tokio-1"] } embedded-io = { version = "0.6.1" } tokio-serial = "5.4" env_logger = "0.11" -critical-section = { version = "1", features = ["std"] } rand = "0.8.5" heapless = "0.8.0" From 75b115f16318f9aad2a8f1051a01d675cff3a4cd Mon Sep 17 00:00:00 2001 From: demo Date: Sat, 25 Jan 2025 16:14:27 +0200 Subject: [PATCH 2/2] 'critical-section' back; please squash at merge --- host/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/host/Cargo.toml b/host/Cargo.toml index cb3bd142..23b08f63 100644 --- a/host/Cargo.toml +++ b/host/Cargo.toml @@ -33,6 +33,7 @@ embedded-io-adapters = { version = "0.6.1", features = ["tokio-1"] } embedded-io = { version = "0.6.1" } tokio-serial = "5.4" env_logger = "0.11" +critical-section = { version = "1", features = ["std"] } # needed for CI builds rand = "0.8.5" heapless = "0.8.0"