cat-in-136 / ws2812-esp32-rmt-driver

WS2812 driver using ESP32 RMT for Rust
MIT License
40 stars 21 forks source link

Use standard Result type instead of anyhow since it's not needed #36

Closed faern closed 5 months ago

faern commented 6 months ago

Anyhow is pulled in here for very little gain, just costs an extra build time dependency. I did the same towards the esp32 template a while back and that was accepted there: https://github.com/esp-rs/esp-idf-template/pull/73

cat-in-136 commented 5 months ago

Thanks!