diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/mspm0/Cargo.toml | 10 | ||||
| -rw-r--r-- | tests/nrf/Cargo.toml | 16 | ||||
| -rw-r--r-- | tests/perf-client/Cargo.toml | 6 | ||||
| -rw-r--r-- | tests/riscv32/Cargo.toml | 8 | ||||
| -rw-r--r-- | tests/rp/Cargo.toml | 16 | ||||
| -rw-r--r-- | tests/stm32/Cargo.toml | 12 |
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] |
| 13 | teleprobe-meta = "1.1" | 13 | teleprobe-meta = "1.1" |
| 14 | 14 | ||
| 15 | embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = [ "defmt" ] } | 15 | embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = [ "defmt" ] } |
| 16 | embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = [ "arch-cortex-m", "executor-thread", "defmt" ] } | 16 | embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = [ "arch-cortex-m", "executor-thread", "defmt" ] } |
| 17 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 17 | embassy-futures = { version = "0.1.2", path = "../../embassy-futures" } |
| 18 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = [ "defmt" ] } | 18 | embassy-time = { version = "0.5.0", path = "../../embassy-time", features = [ "defmt" ] } |
| 19 | embassy-mspm0 = { version = "0.1.0", path = "../../embassy-mspm0", features = [ "rt", "defmt", "unstable-pac", "time-driver-any" ] } | 19 | embassy-mspm0 = { version = "0.1.0", path = "../../embassy-mspm0", features = [ "rt", "defmt", "unstable-pac", "time-driver-any" ] } |
| 20 | embassy-embedded-hal = { version = "0.4.0", path = "../../embassy-embedded-hal/"} | 20 | embassy-embedded-hal = { version = "0.4.1", path = "../../embassy-embedded-hal/"} |
| 21 | 21 | ||
| 22 | defmt = "1.0.1" | 22 | defmt = "1.0.1" |
| 23 | defmt-rtt = "1.0.0" | 23 | defmt-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] |
| 9 | teleprobe-meta = "1" | 9 | teleprobe-meta = "1" |
| 10 | 10 | ||
| 11 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 11 | embassy-futures = { version = "0.1.2", path = "../../embassy-futures" } |
| 12 | embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt", ] } | 12 | embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = ["defmt", ] } |
| 13 | embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } | 13 | embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } |
| 14 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] } | 14 | embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] } |
| 15 | embassy-nrf = { version = "0.6.0", path = "../../embassy-nrf", features = ["defmt", "time-driver-rtc1", "gpiote", "unstable-pac"] } | 15 | embassy-nrf = { version = "0.7.0", path = "../../embassy-nrf", features = ["defmt", "time-driver-rtc1", "gpiote", "unstable-pac"] } |
| 16 | embedded-io-async = { version = "0.6.1", features = ["defmt-03"] } | 16 | embedded-io-async = { version = "0.6.1", features = ["defmt-03"] } |
| 17 | embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", ] } | 17 | embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", ] } |
| 18 | embassy-net-esp-hosted = { version = "0.2.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] } | 18 | embassy-net-esp-hosted = { version = "0.2.1", path = "../../embassy-net-esp-hosted", features = ["defmt"] } |
| 19 | embassy-net-enc28j60 = { version = "0.2.0", path = "../../embassy-net-enc28j60", features = ["defmt"] } | 19 | embassy-net-enc28j60 = { version = "0.2.1", path = "../../embassy-net-enc28j60", features = ["defmt"] } |
| 20 | embedded-hal-async = { version = "1.0" } | 20 | embedded-hal-async = { version = "1.0" } |
| 21 | embedded-hal-bus = { version = "0.1", features = ["async"] } | 21 | embedded-hal-bus = { version = "0.1", features = ["async"] } |
| 22 | static_cell = "2" | 22 | static_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" | |||
| 5 | publish = false | 5 | publish = false |
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4"] } | 8 | embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4"] } |
| 9 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } | 9 | embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", ] } |
| 10 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 10 | embassy-futures = { version = "0.1.2", path = "../../embassy-futures" } |
| 11 | defmt = "1.0.1" | 11 | defmt = "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] |
| 9 | critical-section = { version = "1.1.1", features = ["restore-state-bool"] } | 9 | critical-section = { version = "1.1.1", features = ["restore-state-bool"] } |
| 10 | embassy-sync = { version = "0.7.1", path = "../../embassy-sync" } | 10 | embassy-sync = { version = "0.7.2", path = "../../embassy-sync" } |
| 11 | embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-riscv32", "executor-thread"] } | 11 | embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-riscv32", "executor-thread"] } |
| 12 | embassy-time = { version = "0.4.0", path = "../../embassy-time" } | 12 | embassy-time = { version = "0.5.0", path = "../../embassy-time" } |
| 13 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 13 | embassy-futures = { version = "0.1.2", path = "../../embassy-futures" } |
| 14 | 14 | ||
| 15 | riscv-rt = "0.12.2" | 15 | riscv-rt = "0.12.2" |
| 16 | riscv = { version = "0.11.1", features = ["critical-section-single-hart"] } | 16 | riscv = { 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] |
| 14 | teleprobe-meta = "1.1" | 14 | teleprobe-meta = "1.1" |
| 15 | 15 | ||
| 16 | embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt"] } | 16 | embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = ["defmt"] } |
| 17 | embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } | 17 | embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } |
| 18 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } | 18 | embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", ] } |
| 19 | embassy-rp = { version = "0.7.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] } | 19 | embassy-rp = { version = "0.8.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] } |
| 20 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 20 | embassy-futures = { version = "0.1.2", path = "../../embassy-futures" } |
| 21 | embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } | 21 | embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } |
| 22 | embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] } | 22 | embassy-net-wiznet = { version = "0.2.1", path = "../../embassy-net-wiznet", features = ["defmt"] } |
| 23 | embassy-embedded-hal = { version = "0.4.0", path = "../../embassy-embedded-hal/"} | 23 | embassy-embedded-hal = { version = "0.4.1", path = "../../embassy-embedded-hal/"} |
| 24 | cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] } | 24 | cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] } |
| 25 | cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] } | 25 | cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] } |
| 26 | perf-client = { path = "../perf-client" } | 26 | perf-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] |
| 66 | teleprobe-meta = "1" | 66 | teleprobe-meta = "1" |
| 67 | 67 | ||
| 68 | embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt"] } | 68 | embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = ["defmt"] } |
| 69 | embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } | 69 | embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] } |
| 70 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "tick-hz-131_072", "defmt-timestamp-uptime"] } | 70 | embassy-time = { version = "0.5.0", path = "../../embassy-time", features = ["defmt", "tick-hz-131_072", "defmt-timestamp-uptime"] } |
| 71 | embassy-stm32 = { version = "0.3.0", path = "../../embassy-stm32", features = [ "defmt", "unstable-pac", "memory-x", "time-driver-any"] } | 71 | embassy-stm32 = { version = "0.4.0", path = "../../embassy-stm32", features = [ "defmt", "unstable-pac", "memory-x", "time-driver-any"] } |
| 72 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 72 | embassy-futures = { version = "0.1.2", path = "../../embassy-futures" } |
| 73 | embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", optional = true, features = ["defmt", "stm32wb55rg", "ble"] } | 73 | embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", optional = true, features = ["defmt", "stm32wb55rg", "ble"] } |
| 74 | embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } | 74 | embassy-net = { version = "0.7.1", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } |
| 75 | perf-client = { path = "../perf-client" } | 75 | perf-client = { path = "../perf-client" } |
| 76 | 76 | ||
| 77 | defmt = "1.0.1" | 77 | defmt = "1.0.1" |
