Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to Edge-Http #7

Merged
merged 10 commits into from
Feb 3, 2025
Prev Previous commit
Next Next commit
:wip: Compiling but panicking
  • Loading branch information
mawoka-myblock committed Feb 1, 2025
commit 1cbd74b85c9aa760bfe593abbc2f1dfe46afe367
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ smart-leds = "0.4"
#edge-captive = { version = "0.3", features = ["std", "io"] }
#edge-nal-std = "0.3"
#async-io-mini = "0.2"
embassy-time = { version = "0.4.0", features = ["log", "std"] }
embassy-time = { version = "0.4.0", features = ["log", "std", "generic-queue-8"] }
embassy-executor = { version = "0.7.0", features = ["arch-std"] }

[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 @@ -163,7 +163,7 @@ fn main() -> Result<(), ()> {
let cloned_nvs_for_algo = Arc::new(nvs.clone());
let mut server = DefaultServer::new();

futures_lite::future::block_on(run(&mut server)).unwrap();
block_on(run(&mut server)).unwrap();
Ok(())
}

Expand Down