From eac51cdd160cfd6db6937a8d22fdb76a761e823c Mon Sep 17 00:00:00 2001 From: Wilfried Chauveau Date: Thu, 6 Oct 2022 21:39:48 +0100 Subject: [PATCH] remove unused future dependency (#463) --- boards/rp-pico/Cargo.toml | 1 - boards/vcc-gnd-yd-rp2040/Cargo.toml | 1 - rp2040-hal/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/boards/rp-pico/Cargo.toml b/boards/rp-pico/Cargo.toml index cbaf9b1..6c860d6 100644 --- a/boards/rp-pico/Cargo.toml +++ b/boards/rp-pico/Cargo.toml @@ -17,7 +17,6 @@ rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } fugit = "0.3.5" usb-device= "0.2.9" -futures = { version = "0.3", default-features = false, optional = true } [dev-dependencies] rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0", features = [ "defmt" ] } diff --git a/boards/vcc-gnd-yd-rp2040/Cargo.toml b/boards/vcc-gnd-yd-rp2040/Cargo.toml index 8bc517b..4285e2e 100644 --- a/boards/vcc-gnd-yd-rp2040/Cargo.toml +++ b/boards/vcc-gnd-yd-rp2040/Cargo.toml @@ -17,7 +17,6 @@ rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } fugit = "0.3.5" usb-device= "0.2.9" -futures = { version = "0.3", default-features = false, optional = true } [dev-dependencies] panic-halt= "0.2.0" diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index fd3d0c8..5f18ec6 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -30,7 +30,6 @@ rand_core = "0.6.3" critical-section_0_2 = { package = "critical-section", version = "0.2.4", features = ["custom-impl"] } critical-section = { version = "1.0.0" } -futures = { version = "0.3", default-features = false, optional = true } chrono = { version = "0.4", default-features = false, optional = true } defmt = { version = ">=0.2.0, <0.4", optional = true }