aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/mspm0/Cargo.toml10
-rw-r--r--tests/nrf/Cargo.toml16
-rw-r--r--tests/perf-client/Cargo.toml6
-rw-r--r--tests/riscv32/Cargo.toml8
-rw-r--r--tests/rp/Cargo.toml16
-rw-r--r--tests/stm32/Cargo.toml12
6 files changed, 34 insertions, 34 deletions
diff --git a/tests/mspm0/Cargo.toml b/tests/mspm0/Cargo.toml
index 5cf1b0ed1..07fe779a0 100644
--- a/tests/mspm0/Cargo.toml
+++ b/tests/mspm0/Cargo.toml
@@ -12,12 +12,12 @@ mspm0g3519 = [ "embassy-mspm0/mspm0g3519pz" ]
12[dependencies] 12[dependencies]
13teleprobe-meta = "1.1" 13teleprobe-meta = "1.1"
14 14
15embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = [ "defmt" ] } 15embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = [ "defmt" ] }
16embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = [ "arch-cortex-m", "executor-thread", "defmt" ] } 16embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = [ "arch-cortex-m", "executor-thread", "defmt" ] }
17embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 17embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
18embassy-time = { version = "0.4.0", path = "../../embassy-time", features = [ "defmt" ] } 18embassy-time = { version = "0.5.0", path = "../../embassy-time", features = [ "defmt" ] }
19embassy-mspm0 = { version = "0.1.0", path = "../../embassy-mspm0", features = [ "rt", "defmt", "unstable-pac", "time-driver-any" ] } 19embassy-mspm0 = { version = "0.1.0", path = "../../embassy-mspm0", features = [ "rt", "defmt", "unstable-pac", "time-driver-any" ] }
20embassy-embedded-hal = { version = "0.4.0", path = "../../embassy-embedded-hal/"} 20embassy-embedded-hal = { version = "0.4.1", path = "../../embassy-embedded-hal/"}
21 21
22defmt = "1.0.1" 22defmt = "1.0.1"
23defmt-rtt = "1.0.0" 23defmt-rtt = "1.0.0"
diff --git a/tests/nrf/Cargo.toml b/tests/nrf/Cargo.toml
index b94b54f4e..efc297ccf 100644
--- a/tests/nrf/Cargo.toml
+++ b/tests/nrf/Cargo.toml
@@ -8,15 +8,15 @@ publish = false
8[dependencies] 8[dependencies]
9teleprobe-meta = "1" 9teleprobe-meta = "1"
10 10
11embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 11embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
12embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt", ] } 12embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = ["defmt", ] }
13embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } 13embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
14embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] } 14embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
15embassy-nrf = { version = "0.6.0", path = "../../embassy-nrf", features = ["defmt", "time-driver-rtc1", "gpiote", "unstable-pac"] } 15embassy-nrf = { version = "0.7.0", path = "../../embassy-nrf", features = ["defmt", "time-driver-rtc1", "gpiote", "unstable-pac"] }
16embedded-io-async = { version = "0.6.1", features = ["defmt-03"] } 16embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
17embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", ] } 17embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", ] }
18embassy-net-esp-hosted = { version = "0.2.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] } 18embassy-net-esp-hosted = { version = "0.2.1", path = "../../embassy-net-esp-hosted", features = ["defmt"] }
19embassy-net-enc28j60 = { version = "0.2.0", path = "../../embassy-net-enc28j60", features = ["defmt"] } 19embassy-net-enc28j60 = { version = "0.2.1", path = "../../embassy-net-enc28j60", features = ["defmt"] }
20embedded-hal-async = { version = "1.0" } 20embedded-hal-async = { version = "1.0" }
21embedded-hal-bus = { version = "0.1", features = ["async"] } 21embedded-hal-bus = { version = "0.1", features = ["async"] }
22static_cell = "2" 22static_cell = "2"
diff --git a/tests/perf-client/Cargo.toml b/tests/perf-client/Cargo.toml
index ea0663b6f..581b60d6f 100644
--- a/tests/perf-client/Cargo.toml
+++ b/tests/perf-client/Cargo.toml
@@ -5,7 +5,7 @@ edition = "2021"
5publish = false 5publish = false
6 6
7[dependencies] 7[dependencies]
8embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4"] } 8embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4"] }
9embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } 9embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", ] }
10embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 10embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
11defmt = "1.0.1" 11defmt = "1.0.1"
diff --git a/tests/riscv32/Cargo.toml b/tests/riscv32/Cargo.toml
index 781fec62f..c441e8ed3 100644
--- a/tests/riscv32/Cargo.toml
+++ b/tests/riscv32/Cargo.toml
@@ -7,10 +7,10 @@ publish = false
7 7
8[dependencies] 8[dependencies]
9critical-section = { version = "1.1.1", features = ["restore-state-bool"] } 9critical-section = { version = "1.1.1", features = ["restore-state-bool"] }
10embassy-sync = { version = "0.7.1", path = "../../embassy-sync" } 10embassy-sync = { version = "0.7.2", path = "../../embassy-sync" }
11embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-riscv32", "executor-thread"] } 11embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-riscv32", "executor-thread"] }
12embassy-time = { version = "0.4.0", path = "../../embassy-time" } 12embassy-time = { version = "0.5.0", path = "../../embassy-time" }
13embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 13embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
14 14
15riscv-rt = "0.12.2" 15riscv-rt = "0.12.2"
16riscv = { version = "0.11.1", features = ["critical-section-single-hart"] } 16riscv = { version = "0.11.1", features = ["critical-section-single-hart"] }
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml
index 088195a75..5afb0d110 100644
--- a/tests/rp/Cargo.toml
+++ b/tests/rp/Cargo.toml
@@ -13,14 +13,14 @@ rp235xb = ["embassy-rp/rp235xb"]
13[dependencies] 13[dependencies]
14teleprobe-meta = "1.1" 14teleprobe-meta = "1.1"
15 15
16embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt"] } 16embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = ["defmt"] }
17embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } 17embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
18embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } 18embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", ] }
19embassy-rp = { version = "0.7.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] } 19embassy-rp = { version = "0.8.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] }
20embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 20embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
21embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } 21embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
22embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] } 22embassy-net-wiznet = { version = "0.2.1", path = "../../embassy-net-wiznet", features = ["defmt"] }
23embassy-embedded-hal = { version = "0.4.0", path = "../../embassy-embedded-hal/"} 23embassy-embedded-hal = { version = "0.4.1", path = "../../embassy-embedded-hal/"}
24cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] } 24cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] }
25cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] } 25cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] }
26perf-client = { path = "../perf-client" } 26perf-client = { path = "../perf-client" }
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml
index 37d5161f8..aeca67659 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -65,13 +65,13 @@ cm0 = ["portable-atomic/unsafe-assume-single-core"]
65[dependencies] 65[dependencies]
66teleprobe-meta = "1" 66teleprobe-meta = "1"
67 67
68embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt"] } 68embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = ["defmt"] }
69embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } 69embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
70embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "tick-hz-131_072", "defmt-timestamp-uptime"] } 70embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", "tick-hz-131_072", "defmt-timestamp-uptime"] }
71embassy-stm32 = { version = "0.3.0", path = "../../embassy-stm32", features = [ "defmt", "unstable-pac", "memory-x", "time-driver-any"] } 71embassy-stm32 = { version = "0.4.0", path = "../../embassy-stm32", features = [ "defmt", "unstable-pac", "memory-x", "time-driver-any"] }
72embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 72embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
73embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", optional = true, features = ["defmt", "stm32wb55rg", "ble"] } 73embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", optional = true, features = ["defmt", "stm32wb55rg", "ble"] }
74embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } 74embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
75perf-client = { path = "../perf-client" } 75perf-client = { path = "../perf-client" }
76 76
77defmt = "1.0.1" 77defmt = "1.0.1"