diff --git a/Cargo.lock b/Cargo.lock index 44b5cfde..31df89b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -593,13 +593,13 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "embedded-graphics" -version = "0.7.1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "750082c65094fbcc4baf9ba31583ce9a8bb7f52cadfb96f6164b1bc7f922f32b" +checksum = "0649998afacf6d575d126d83e68b78c0ab0e00ca2ac7e9b3db11b4cbe8274ef0" dependencies = [ "az", "byteorder", - "embedded-graphics-core", + "embedded-graphics-core 0.4.0", "float-cmp", "micromath", ] @@ -614,6 +614,16 @@ dependencies = [ "byteorder", ] +[[package]] +name = "embedded-graphics-core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba9ecd261f991856250d2207f6d8376946cd9f412a2165d3b75bc87a0bc7a044" +dependencies = [ + "az", + "byteorder", +] + [[package]] name = "enum-iterator" version = "1.4.0" @@ -703,9 +713,9 @@ dependencies = [ [[package]] name = "float-cmp" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4" +checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" dependencies = [ "num-traits", ] @@ -936,7 +946,7 @@ dependencies = [ name = "hal-core" version = "0.1.0" dependencies = [ - "embedded-graphics-core", + "embedded-graphics-core 0.3.3", "mycelium-util", "tracing 0.2.0", ] @@ -1377,9 +1387,9 @@ checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" [[package]] name = "micromath" -version = "1.1.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc4010833aea396656c2f91ee704d51a6f1329ec2ab56ffd00bfd56f7481ea94" +checksum = "39617bc909d64b068dcffd0e3e31679195b5576d0c83fadc52690268cc2b2b55" [[package]] name = "mime" diff --git a/Cargo.toml b/Cargo.toml index 10ef8e5d..95e1cdea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ rlibc = "1.0" # script is not that good, and breaks if you put this in `cfg(...).dependencies` # instead of normal [dependencies]. don't move this. bootloader_api = { version = "0.11" } -embedded-graphics = "0.7" +embedded-graphics = "0.8" mycotest = { path = "mycotest" } futures-util = { version = "0.3", default-features = false, features = ["async-await", "async-await-macro"] } # we don't depend on this directly, but we need to ensure that `tracing` uses a diff --git a/trace/Cargo.toml b/trace/Cargo.toml index aefb37d4..9a76ea41 100644 --- a/trace/Cargo.toml +++ b/trace/Cargo.toml @@ -16,4 +16,4 @@ tracing-core = {git = "https://github.com/tokio-rs/tracing", default_features = tracing = { git = "https://github.com/tokio-rs/tracing", default_features = false } hal-core = { path = "../hal-core" } mycelium-util = { path = "../util" } -embedded-graphics = { version = "0.7", optional = true } +embedded-graphics = { version = "0.8", optional = true }