diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-01-11 23:51:47 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-11 23:51:47 +0100 |
| commit | d1a62733cd459d3c7778aa0707f58e7cfa75a94a (patch) | |
| tree | 3047442f625ae2384ed26fc3c5373ee2bdee8a4d /examples/std | |
| parent | 0d62e9c96ca14d9d9596f72d090e41855050e83c (diff) | |
| parent | 9f6517e408f3a4b0a3fb00387a99deade55d6528 (diff) | |
Merge pull request #2439 from embassy-rs/release-misc-stuff
More misc cleanups for release.
Diffstat (limited to 'examples/std')
| -rw-r--r-- | examples/std/Cargo.toml | 6 | ||||
| -rw-r--r-- | examples/std/src/bin/serial.rs | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 969c3d36a..f05565e84 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml | |||
| @@ -6,9 +6,9 @@ license = "MIT OR Apache-2.0" | |||
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | embassy-sync = { version = "0.5.0", path = "../../embassy-sync", features = ["log"] } | 8 | embassy-sync = { version = "0.5.0", path = "../../embassy-sync", features = ["log"] } |
| 9 | embassy-executor = { version = "0.4.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-std", "executor-thread", "log", "integrated-timers"] } | 9 | embassy-executor = { version = "0.5.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-std", "executor-thread", "log", "integrated-timers"] } |
| 10 | embassy-time = { version = "0.2", path = "../../embassy-time", features = ["log", "std", ] } | 10 | embassy-time = { version = "0.3.0", path = "../../embassy-time", features = ["log", "std", ] } |
| 11 | embassy-net = { version = "0.3", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] } | 11 | embassy-net = { version = "0.4.0", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] } |
| 12 | embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" } | 12 | embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" } |
| 13 | embassy-net-ppp = { version = "0.1.0", path = "../../embassy-net-ppp", features = ["log"]} | 13 | embassy-net-ppp = { version = "0.1.0", path = "../../embassy-net-ppp", features = ["log"]} |
| 14 | embedded-io-async = { version = "0.6.1" } | 14 | embedded-io-async = { version = "0.6.1" } |
diff --git a/examples/std/src/bin/serial.rs b/examples/std/src/bin/serial.rs index 435089aad..10c85511d 100644 --- a/examples/std/src/bin/serial.rs +++ b/examples/std/src/bin/serial.rs | |||
| @@ -3,6 +3,7 @@ mod serial_port; | |||
| 3 | 3 | ||
| 4 | use async_io::Async; | 4 | use async_io::Async; |
| 5 | use embassy_executor::Executor; | 5 | use embassy_executor::Executor; |
| 6 | use embassy_time as _; | ||
| 6 | use embedded_io_async::Read; | 7 | use embedded_io_async::Read; |
| 7 | use log::*; | 8 | use log::*; |
| 8 | use nix::sys::termios; | 9 | use nix::sys::termios; |
