diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-09-11 00:10:46 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-09-11 01:35:23 +0200 |
| commit | f2623e7e9b03bc6539827e8c9d1a9cb6dd7ede2e (patch) | |
| tree | b2b97c894dc78a907455a6718b9122d461ec87e5 /examples | |
| parent | 9082e5f6c5982e7d220f54c8e64e0dd27c6c579d (diff) | |
Update lots of deps
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/nrf/Cargo.toml | 8 | ||||
| -rw-r--r-- | examples/rp/Cargo.toml | 10 | ||||
| -rw-r--r-- | examples/std/Cargo.toml | 18 | ||||
| -rw-r--r-- | examples/std/src/serial_port.rs | 9 | ||||
| -rw-r--r-- | examples/stm32f0/Cargo.toml | 8 | ||||
| -rw-r--r-- | examples/stm32f4/Cargo.toml | 16 | ||||
| -rw-r--r-- | examples/stm32g0/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32h7/Cargo.toml | 16 | ||||
| -rw-r--r-- | examples/stm32l0/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32l4/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32wb55/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32wl55/Cargo.toml | 14 |
12 files changed, 76 insertions, 79 deletions
diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml index 0f932e25c..b71dfa0d4 100644 --- a/examples/nrf/Cargo.toml +++ b/examples/nrf/Cargo.toml | |||
| @@ -21,12 +21,12 @@ embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "def | |||
| 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } | 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } |
| 22 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "defmt-trace", "nrf52840", "time-driver-rtc1", "gpiote"] } | 22 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "defmt-trace", "nrf52840", "time-driver-rtc1", "gpiote"] } |
| 23 | 23 | ||
| 24 | defmt = "0.2.0" | 24 | defmt = "0.2.3" |
| 25 | defmt-rtt = "0.2.0" | 25 | defmt-rtt = "0.2.0" |
| 26 | 26 | ||
| 27 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 27 | cortex-m = { version = "0.7.3", features = ["inline-asm"] } |
| 28 | cortex-m-rt = "0.7.0" | 28 | cortex-m-rt = "0.7.0" |
| 29 | embedded-hal = { version = "0.2.4" } | 29 | embedded-hal = "0.2.6" |
| 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } | 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 31 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 31 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 32 | rand = { version = "0.8.4", default-features = false } | 32 | rand = { version = "0.8.4", default-features = false } |
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml index db222e071..d168c39fa 100644 --- a/examples/rp/Cargo.toml +++ b/examples/rp/Cargo.toml | |||
| @@ -19,16 +19,16 @@ defmt-error = [] | |||
| 19 | [dependencies] | 19 | [dependencies] |
| 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } | 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } |
| 21 | embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "defmt-trace"] } | 21 | embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "defmt-trace"] } |
| 22 | atomic-polyfill = { version = "0.1.1" } | 22 | atomic-polyfill = "0.1.3" |
| 23 | 23 | ||
| 24 | defmt = "0.2.0" | 24 | defmt = "0.2.3" |
| 25 | defmt-rtt = "0.2.0" | 25 | defmt-rtt = "0.2.0" |
| 26 | 26 | ||
| 27 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 27 | cortex-m = { version = "0.7.3", features = ["inline-asm"] } |
| 28 | cortex-m-rt = "0.7.0" | 28 | cortex-m-rt = "0.7.0" |
| 29 | embedded-hal = { version = "0.2.4" } | 29 | embedded-hal = "0.2.6" |
| 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } | 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 31 | futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } | 31 | futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } |
| 32 | display-interface-spi = "0.4.1" | 32 | display-interface-spi = "0.4.1" |
| 33 | embedded-graphics = "0.7.1" | 33 | embedded-graphics = "0.7.1" |
| 34 | st7789 = "0.6.1" | 34 | st7789 = "0.6.1" |
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 34b8ebb67..3ba495e59 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml | |||
| @@ -9,12 +9,12 @@ embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", | |||
| 9 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] } | 9 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] } |
| 10 | smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } | 10 | smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } |
| 11 | 11 | ||
| 12 | async-io = "1.3.1" | 12 | async-io = "1.6.0" |
| 13 | env_logger = "0.8.2" | 13 | env_logger = "0.9.0" |
| 14 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 14 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 15 | log = "0.4.11" | 15 | log = "0.4.14" |
| 16 | nix = "0.21.0" | 16 | nix = "0.22.1" |
| 17 | libc = "0.2.81" | 17 | libc = "0.2.101" |
| 18 | clap = { version = "3.0.0-beta.2", features = ["derive"] } | 18 | clap = { version = "3.0.0-beta.4", features = ["derive"] } |
| 19 | rand_core = { version = "0.6.0", features = ["std"] } | 19 | rand_core = { version = "0.6.3", features = ["std"] } |
| 20 | heapless = { version = "0.7.1", default-features = false } | 20 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/std/src/serial_port.rs b/examples/std/src/serial_port.rs index 7ac1b1edb..aadaeb81d 100644 --- a/examples/std/src/serial_port.rs +++ b/examples/std/src/serial_port.rs | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | use nix::errno::Errno; | ||
| 1 | use nix::fcntl::OFlag; | 2 | use nix::fcntl::OFlag; |
| 2 | use nix::sys::termios; | 3 | use nix::sys::termios; |
| 3 | use nix::Error; | ||
| 4 | use std::io; | 4 | use std::io; |
| 5 | use std::os::unix::io::{AsRawFd, RawFd}; | 5 | use std::os::unix::io::{AsRawFd, RawFd}; |
| 6 | 6 | ||
| @@ -63,9 +63,6 @@ impl io::Write for SerialPort { | |||
| 63 | } | 63 | } |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | fn to_io_error(e: Error) -> io::Error { | 66 | fn to_io_error(e: Errno) -> io::Error { |
| 67 | match e { | 67 | e.into() |
| 68 | Error::Sys(errno) => errno.into(), | ||
| 69 | e => io::Error::new(io::ErrorKind::InvalidInput, e), | ||
| 70 | } | ||
| 71 | } | 68 | } |
diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml index d37391e4f..2db98488d 100644 --- a/examples/stm32f0/Cargo.toml +++ b/examples/stm32f0/Cargo.toml | |||
| @@ -8,12 +8,12 @@ resolver = "2" | |||
| 8 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 8 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 9 | 9 | ||
| 10 | [dependencies] | 10 | [dependencies] |
| 11 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 11 | cortex-m = { version = "0.7.3", features = ["inline-asm"] } |
| 12 | cortex-m-rt = "0.7.0" | 12 | cortex-m-rt = "0.7.0" |
| 13 | defmt = "0.2.0" | 13 | defmt = "0.2.3" |
| 14 | defmt-rtt = "0.2.0" | 14 | defmt-rtt = "0.2.0" |
| 15 | panic-probe = { version = "0.2.0" } | 15 | panic-probe = "0.2.0" |
| 16 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 16 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 17 | embassy = { path = "../../embassy", features = ["defmt"] } | 17 | embassy = { path = "../../embassy", features = ["defmt"] } |
| 18 | embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "stm32f030f4", "time-driver-tim3"] } | 18 | embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "stm32f030f4", "time-driver-tim3"] } |
| 19 | 19 | ||
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml index 8a7f45877..ce3a26bbf 100644 --- a/examples/stm32f4/Cargo.toml +++ b/examples/stm32f4/Cargo.toml | |||
| @@ -22,14 +22,14 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32f429zi", "unstable-pac", "memory-x", "time-driver-tim2"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32f429zi", "unstable-pac", "memory-x", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
| 35 | nb = { version = "1.0" } | 35 | nb = "1.0.0" |
diff --git a/examples/stm32g0/Cargo.toml b/examples/stm32g0/Cargo.toml index 83f535b91..58a62f7be 100644 --- a/examples/stm32g0/Cargo.toml +++ b/examples/stm32g0/Cargo.toml | |||
| @@ -22,13 +22,13 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "time-driver-tim2", "stm32g071rb", "unstable-pac"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "time-driver-tim2", "stm32g071rb", "unstable-pac"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml index 1370cd9ab..94586b8ac 100644 --- a/examples/stm32h7/Cargo.toml +++ b/examples/stm32h7/Cargo.toml | |||
| @@ -24,17 +24,17 @@ embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | |||
| 24 | embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt-debug", "defmt", "tcp", "medium-ethernet", "pool-16"] } | 24 | embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt-debug", "defmt", "tcp", "medium-ethernet", "pool-16"] } |
| 25 | embassy-macros = { path = "../../embassy-macros" } | 25 | embassy-macros = { path = "../../embassy-macros" } |
| 26 | 26 | ||
| 27 | defmt = "0.2.0" | 27 | defmt = "0.2.3" |
| 28 | defmt-rtt = "0.2.0" | 28 | defmt-rtt = "0.2.0" |
| 29 | 29 | ||
| 30 | cortex-m = "0.7.1" | 30 | cortex-m = "0.7.3" |
| 31 | cortex-m-rt = "0.7.0" | 31 | cortex-m-rt = "0.7.0" |
| 32 | embedded-hal = { version = "0.2.4" } | 32 | embedded-hal = "0.2.6" |
| 33 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 33 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 34 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 34 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 35 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 35 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 36 | heapless = { version = "0.7.1", default-features = false } | 36 | heapless = { version = "0.7.5", default-features = false } |
| 37 | rand_core = { version = "0.6.2" } | 37 | rand_core = "0.6.3" |
| 38 | critical-section = "0.2.1" | 38 | critical-section = "0.2.1" |
| 39 | 39 | ||
| 40 | micromath = "2.0.0" | 40 | micromath = "2.0.0" |
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml index 07b033c1e..7dfcdb0fe 100644 --- a/examples/stm32l0/Cargo.toml +++ b/examples/stm32l0/Cargo.toml | |||
| @@ -23,13 +23,13 @@ embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = [" | |||
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | embassy-macros = { path = "../../embassy-macros" } | 24 | embassy-macros = { path = "../../embassy-macros" } |
| 25 | 25 | ||
| 26 | defmt = "0.2.0" | 26 | defmt = "0.2.3" |
| 27 | defmt-rtt = "0.2.0" | 27 | defmt-rtt = "0.2.0" |
| 28 | 28 | ||
| 29 | cortex-m = "0.7.1" | 29 | cortex-m = "0.7.3" |
| 30 | cortex-m-rt = "0.7.0" | 30 | cortex-m-rt = "0.7.0" |
| 31 | embedded-hal = { version = "0.2.4" } | 31 | embedded-hal = "0.2.6" |
| 32 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 32 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 33 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 33 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 34 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 34 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 35 | heapless = { version = "0.7.1", default-features = false } | 35 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/stm32l4/Cargo.toml b/examples/stm32l4/Cargo.toml index 3fa6fa467..26d4cae48 100644 --- a/examples/stm32l4/Cargo.toml +++ b/examples/stm32l4/Cargo.toml | |||
| @@ -22,16 +22,16 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "unstable-pac", "stm32l4s5vi", "time-driver-tim2"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "unstable-pac", "stm32l4s5vi", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
| 35 | 35 | ||
| 36 | micromath = "2.0.0" | 36 | micromath = "2.0.0" |
| 37 | 37 | ||
diff --git a/examples/stm32wb55/Cargo.toml b/examples/stm32wb55/Cargo.toml index c12e489f7..3a6f63baf 100644 --- a/examples/stm32wb55/Cargo.toml +++ b/examples/stm32wb55/Cargo.toml | |||
| @@ -22,13 +22,13 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wb55cc", "time-driver-tim2"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wb55cc", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/stm32wl55/Cargo.toml b/examples/stm32wl55/Cargo.toml index 1bdfe9bc9..d0c727862 100644 --- a/examples/stm32wl55/Cargo.toml +++ b/examples/stm32wl55/Cargo.toml | |||
| @@ -22,13 +22,13 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wl55jc_cm4", "time-driver-tim2", "memory-x", "subghz"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wl55jc_cm4", "time-driver-tim2", "memory-x", "subghz"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
