aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-08-16 00:40:56 +0200
committerGitHub <[email protected]>2023-08-16 00:40:56 +0200
commitf26dd54f6378be87a71f0c9f351b56851df96014 (patch)
tree6fbaea24c44d4fbbe01b08a0d87b9d8e49a4ad5a /tests
parentffe96889525105ac37cb74add67ac73f148726f6 (diff)
Update embedded-hal to 1.0.0-rc.1 (#1783)
Diffstat (limited to 'tests')
-rw-r--r--tests/nrf/Cargo.toml3
-rw-r--r--tests/nrf/src/bin/wifi_esp_hosted_perf.rs2
-rw-r--r--tests/rp/Cargo.toml4
-rw-r--r--tests/stm32/Cargo.toml4
4 files changed, 7 insertions, 6 deletions
diff --git a/tests/nrf/Cargo.toml b/tests/nrf/Cargo.toml
index 974a9413f..e2dab81af 100644
--- a/tests/nrf/Cargo.toml
+++ b/tests/nrf/Cargo.toml
@@ -15,7 +15,8 @@ embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defm
15embedded-io-async = { version = "0.5.0" } 15embedded-io-async = { version = "0.5.0" }
16embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "nightly"] } 16embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "nightly"] }
17embassy-net-esp-hosted = { version = "0.1.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] } 17embassy-net-esp-hosted = { version = "0.1.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] }
18embedded-hal-async = { version = "0.2.0-alpha.2" } 18embedded-hal-async = { version = "1.0.0-rc.1" }
19embedded-hal-bus = { version = "0.1.0-rc.1", features = ["async"] }
19static_cell = { version = "1.1", features = [ "nightly" ] } 20static_cell = { version = "1.1", features = [ "nightly" ] }
20 21
21defmt = "0.3" 22defmt = "0.3"
diff --git a/tests/nrf/src/bin/wifi_esp_hosted_perf.rs b/tests/nrf/src/bin/wifi_esp_hosted_perf.rs
index e2adfe0be..16055fae8 100644
--- a/tests/nrf/src/bin/wifi_esp_hosted_perf.rs
+++ b/tests/nrf/src/bin/wifi_esp_hosted_perf.rs
@@ -15,7 +15,7 @@ use embassy_nrf::rng::Rng;
15use embassy_nrf::spim::{self, Spim}; 15use embassy_nrf::spim::{self, Spim};
16use embassy_nrf::{bind_interrupts, peripherals}; 16use embassy_nrf::{bind_interrupts, peripherals};
17use embassy_time::{with_timeout, Delay, Duration, Timer}; 17use embassy_time::{with_timeout, Delay, Duration, Timer};
18use embedded_hal_async::spi::ExclusiveDevice; 18use embedded_hal_bus::spi::ExclusiveDevice;
19use static_cell::make_static; 19use static_cell::make_static;
20use {defmt_rtt as _, embassy_net_esp_hosted as hosted, panic_probe as _}; 20use {defmt_rtt as _, embassy_net_esp_hosted as hosted, panic_probe as _};
21 21
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml
index 90a3bd0cf..c69bf7a88 100644
--- a/tests/rp/Cargo.toml
+++ b/tests/rp/Cargo.toml
@@ -22,8 +22,8 @@ defmt-rtt = "0.4"
22cortex-m = { version = "0.7.6" } 22cortex-m = { version = "0.7.6" }
23cortex-m-rt = "0.7.0" 23cortex-m-rt = "0.7.0"
24embedded-hal = "0.2.6" 24embedded-hal = "0.2.6"
25embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" } 25embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.1" }
26embedded-hal-async = { version = "=0.2.0-alpha.2" } 26embedded-hal-async = { version = "=1.0.0-rc.1" }
27panic-probe = { version = "0.3.0", features = ["print-defmt"] } 27panic-probe = { version = "0.3.0", features = ["print-defmt"] }
28futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 28futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
29embedded-io-async = { version = "0.5.0" } 29embedded-io-async = { version = "0.5.0" }
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml
index 17320649e..e26388976 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -41,8 +41,8 @@ defmt-rtt = "0.4"
41cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 41cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
42cortex-m-rt = "0.7.0" 42cortex-m-rt = "0.7.0"
43embedded-hal = "0.2.6" 43embedded-hal = "0.2.6"
44embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" } 44embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.1" }
45embedded-hal-async = { version = "=0.2.0-alpha.2" } 45embedded-hal-async = { version = "=1.0.0-rc.1" }
46micromath = "2.0.0" 46micromath = "2.0.0"
47panic-probe = { version = "0.3.0", features = ["print-defmt"] } 47panic-probe = { version = "0.3.0", features = ["print-defmt"] }
48rand_core = { version = "0.6", default-features = false } 48rand_core = { version = "0.6", default-features = false }