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

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Nov 19, 2023
1 parent c27ae45 commit bd3464f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ target = "xtensa-esp32-espidf"
#target = "xtensa-esp32s2-espidf"
#target = "xtensa-esp32s3-espidf"
#target = "riscv32imc-esp-espidf"
#target = "riscv32imac-esp-espidf.json"
#target = "riscv32imac-esp-espidf"

[target.xtensa-esp32-espidf]
linker = "ldproxy"
Expand Down
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ opt-level = "s"
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"

[patch.crates-io]
crossbeam-utils = { git = "https://github.com/crossbeam-rs/crossbeam" }

[features]
default = []

Expand Down Expand Up @@ -64,7 +67,7 @@ mipidsi = "0.5"
ssd1306 = "0.7"
epd-waveshare = "0.5.0"
async-io = "2"
edge-executor = "0.4"
async-executor = "1"
futures-lite = "1"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ fn test_mqtt_client() -> Result<EspMqttClient<'static, ConnState<MessageImpl, Es
fn test_tcp_bind_async() -> anyhow::Result<()> {
use std::pin::pin;

use edge_executor::LocalExecutor;
use async_executor::LocalExecutor;

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

0 comments on commit bd3464f

Please sign in to comment.