Closed faulesocke closed 4 years ago
Checking sh1106 v0.3.0-alpha.3 error[E0432]: unresolved import `self::embedded_graphics::Drawing` --> .../.cargo/registry/src/github.com-1ecc6299db9ec823/sh1106-0.3.0-alpha.3/src/mode/graphics.rs:176:5 | 176 | Drawing, | ^^^^^^^ no `Drawing` in the root error: aborting due to previous error
It looks like this was removed in embedded-graphics-0.6.0-alpha.3. A workaround is to put the following inside Cargo.toml:
embedded-graphics-0.6.0-alpha.3
Cargo.toml
embedded-graphics = "=0.6.0-alpha.2"
Thanks for spotting this. Version 0.3.0-alpha.4 should fix this. Let me know if you run into any more issues!
It looks like this was removed in
embedded-graphics-0.6.0-alpha.3
. A workaround is to put the following insideCargo.toml
: