Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit bd3464f

Browse files
committed
Fix CI
1 parent c27ae45 commit bd3464f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ target = "xtensa-esp32-espidf"
44
#target = "xtensa-esp32s2-espidf"
55
#target = "xtensa-esp32s3-espidf"
66
#target = "riscv32imc-esp-espidf"
7-
#target = "riscv32imac-esp-espidf.json"
7+
#target = "riscv32imac-esp-espidf"
88

99
[target.xtensa-esp32-espidf]
1010
linker = "ldproxy"

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ opt-level = "s"
1717
debug = true # Symbols are nice and they don't increase the size on Flash
1818
opt-level = "z"
1919

20+
[patch.crates-io]
21+
crossbeam-utils = { git = "https://github.com/crossbeam-rs/crossbeam" }
22+
2023
[features]
2124
default = []
2225

@@ -64,7 +67,7 @@ mipidsi = "0.5"
6467
ssd1306 = "0.7"
6568
epd-waveshare = "0.5.0"
6669
async-io = "2"
67-
edge-executor = "0.4"
70+
async-executor = "1"
6871
futures-lite = "1"
6972

7073
[build-dependencies]

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ fn test_mqtt_client() -> Result<EspMqttClient<'static, ConnState<MessageImpl, Es
720720
fn test_tcp_bind_async() -> anyhow::Result<()> {
721721
use std::pin::pin;
722722

723-
use edge_executor::LocalExecutor;
723+
use async_executor::LocalExecutor;
724724

725725
async fn test_tcp_bind(executor: &LocalExecutor<'_>) -> std::io::Result<()> {
726726
/// Echoes messages from the client back to it.

0 commit comments

Comments
 (0)