ivmarkov / rust-esp32-std-demo

Rust on ESP32 STD demo app. A demo STD binary crate for the ESP32[XX] and ESP-IDF, which connects to WiFi, Ethernet, drives a small HTTP server and draws on a LED screen.
Apache License 2.0
784 stars 105 forks source link

clippy errors #65

Closed brianmay closed 2 years ago

brianmay commented 2 years ago

Just curious what is wrong with clippy in the CI?

e.g. https://github.com/ivmarkov/rust-esp32-std-demo/runs/5257226106?check_suite_focus=true

It seems to be complaining about errors in embedded-svc.

But my understanding is that as we use the --no-deps option we shouldn't be checking for errors in dependencies.

Also if I run the same command locally it works.

ivmarkov commented 2 years ago

Issues with latest Rust nightly and GATs.

ivmarkov commented 2 years ago

Looking at it since an hour or so, but not sure what is going on. Might be a regression in the compiler itself, as the error looks bogus.

ivmarkov commented 2 years ago

Apparently they fixed something because since this morning, we get clean CIs again.

Perhaps this one.