aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYuri Astrakhan <[email protected]>2025-05-18 20:51:15 +0200
committerDario Nieuwenhuis <[email protected]>2025-05-18 20:52:09 +0200
commitef0f29f0ede245671ffd82fcf384a9105f174c24 (patch)
treefeeeb499bf2772a77b1b71b503b173b6890ec22e /tests
parent51d0252194cd69f73bade2aaeef3163f3cc7453f (diff)
Update defmt dependencies
Diffstat (limited to 'tests')
-rw-r--r--tests/mspm0/Cargo.toml2
-rw-r--r--tests/nrf/Cargo.toml6
-rw-r--r--tests/perf-client/Cargo.toml2
-rw-r--r--tests/rp/Cargo.toml6
-rw-r--r--tests/stm32/Cargo.toml6
5 files changed, 11 insertions, 11 deletions
diff --git a/tests/mspm0/Cargo.toml b/tests/mspm0/Cargo.toml
index 0566807d7..b77747e5d 100644
--- a/tests/mspm0/Cargo.toml
+++ b/tests/mspm0/Cargo.toml
@@ -23,7 +23,7 @@ cortex-m = { version = "0.7.6", features = [ "inline-asm", "critical-section-sin
23cortex-m-rt = "0.7.0" 23cortex-m-rt = "0.7.0"
24embedded-hal = { package = "embedded-hal", version = "1.0" } 24embedded-hal = { package = "embedded-hal", version = "1.0" }
25embedded-hal-async = { version = "1.0" } 25embedded-hal-async = { version = "1.0" }
26panic-probe = { version = "0.3.0", features = ["print-defmt"] } 26panic-probe = { version = "1.0.0", features = ["print-defmt"] }
27static_cell = "2" 27static_cell = "2"
28portable-atomic = { version = "1.5", features = ["critical-section"] } 28portable-atomic = { version = "1.5", features = ["critical-section"] }
29 29
diff --git a/tests/nrf/Cargo.toml b/tests/nrf/Cargo.toml
index 410d62bdd..32087940e 100644
--- a/tests/nrf/Cargo.toml
+++ b/tests/nrf/Cargo.toml
@@ -21,12 +21,12 @@ embedded-hal-bus = { version = "0.1", features = ["async"] }
21static_cell = "2" 21static_cell = "2"
22perf-client = { path = "../perf-client" } 22perf-client = { path = "../perf-client" }
23 23
24defmt = "0.3" 24defmt = "1.0.1"
25defmt-rtt = "0.4" 25defmt-rtt = "1.0.0"
26 26
27cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 27cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
28cortex-m-rt = "0.7.0" 28cortex-m-rt = "0.7.0"
29panic-probe = { version = "0.3", features = ["print-defmt"] } 29panic-probe = { version = "1.0.0", features = ["print-defmt"] }
30portable-atomic = { version = "1.6.0" } 30portable-atomic = { version = "1.6.0" }
31 31
32[features] 32[features]
diff --git a/tests/perf-client/Cargo.toml b/tests/perf-client/Cargo.toml
index 9620972c3..e31d6361b 100644
--- a/tests/perf-client/Cargo.toml
+++ b/tests/perf-client/Cargo.toml
@@ -7,4 +7,4 @@ edition = "2021"
7embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4"] } 7embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4"] }
8embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } 8embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] }
9embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 9embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
10defmt = "0.3" 10defmt = "1.0.1"
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml
index 46dc820ab..2c2ed73cc 100644
--- a/tests/rp/Cargo.toml
+++ b/tests/rp/Cargo.toml
@@ -24,8 +24,8 @@ cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] }
24cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] } 24cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] }
25perf-client = { path = "../perf-client" } 25perf-client = { path = "../perf-client" }
26 26
27defmt = "0.3" 27defmt = "1.0.1"
28defmt-rtt = "0.4" 28defmt-rtt = "1.0.0"
29 29
30cortex-m = { version = "0.7.6" } 30cortex-m = { version = "0.7.6" }
31cortex-m-rt = "0.7.0" 31cortex-m-rt = "0.7.0"
@@ -33,7 +33,7 @@ embedded-hal = "0.2.6"
33embedded-hal-1 = { package = "embedded-hal", version = "1.0" } 33embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
34embedded-hal-async = { version = "1.0" } 34embedded-hal-async = { version = "1.0" }
35embedded-hal-bus = { version = "0.1", features = ["async"] } 35embedded-hal-bus = { version = "0.1", features = ["async"] }
36panic-probe = { version = "0.3.0", features = ["print-defmt"] } 36panic-probe = { version = "1.0.0", features = ["print-defmt"] }
37embedded-io-async = { version = "0.6.1" } 37embedded-io-async = { version = "0.6.1" }
38embedded-storage = { version = "0.3" } 38embedded-storage = { version = "0.3" }
39static_cell = "2" 39static_cell = "2"
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml
index b230e619e..6036a5a97 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -70,8 +70,8 @@ embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", opt
70embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } 70embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
71perf-client = { path = "../perf-client" } 71perf-client = { path = "../perf-client" }
72 72
73defmt = "0.3" 73defmt = "1.0.1"
74defmt-rtt = "0.4" 74defmt-rtt = "1.0.0"
75 75
76cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 76cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
77cortex-m-rt = "0.7.0" 77cortex-m-rt = "0.7.0"
@@ -80,7 +80,7 @@ embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
80embedded-hal-async = { version = "1.0" } 80embedded-hal-async = { version = "1.0" }
81embedded-can = { version = "0.4" } 81embedded-can = { version = "0.4" }
82micromath = "2.0.0" 82micromath = "2.0.0"
83panic-probe = { version = "0.3.0", features = ["print-defmt"] } 83panic-probe = { version = "1.0.0", features = ["print-defmt"] }
84rand_core = { version = "0.9.1", default-features = false } 84rand_core = { version = "0.9.1", default-features = false }
85rand_chacha = { version = "0.9.0", default-features = false } 85rand_chacha = { version = "0.9.0", default-features = false }
86static_cell = "2" 86static_cell = "2"