diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-08-25 18:50:10 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-25 18:50:10 +0000 |
| commit | 8339423a2f194d31f3f26d956f68dfcef46f8891 (patch) | |
| tree | 66cab744cca03f0575a08a7e24394b3bb6f85efb /examples/std/Cargo.toml | |
| parent | 295542f4d3636e98c0e9a305a23bd226852bfefc (diff) | |
| parent | d812cc574571e60a092f10727046c494face09c9 (diff) | |
Merge pull request #1821 from embassy-rs/net-ppp
Add embassy-net-ppp driver.
Diffstat (limited to 'examples/std/Cargo.toml')
| -rw-r--r-- | examples/std/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 0d4d5fa12..7b0d0bda2 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml | |||
| @@ -8,11 +8,13 @@ license = "MIT OR Apache-2.0" | |||
| 8 | embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["log"] } | 8 | embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["log"] } |
| 9 | embassy-executor = { version = "0.3.0", path = "../../embassy-executor", features = ["arch-std", "executor-thread", "log", "nightly", "integrated-timers"] } | 9 | embassy-executor = { version = "0.3.0", path = "../../embassy-executor", features = ["arch-std", "executor-thread", "log", "nightly", "integrated-timers"] } |
| 10 | embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["log", "std", "nightly"] } | 10 | embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["log", "std", "nightly"] } |
| 11 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "nightly", "log", "medium-ethernet", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] } | 11 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "nightly", "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 | embedded-io-async = { version = "0.5.0" } | 14 | embedded-io-async = { version = "0.5.0" } |
| 14 | embedded-io-adapters = { version = "0.5.0", features = ["futures-03"] } | 15 | embedded-io-adapters = { version = "0.5.0", features = ["futures-03"] } |
| 15 | critical-section = { version = "1.1", features = ["std"] } | 16 | critical-section = { version = "1.1", features = ["std"] } |
| 17 | smoltcp = { version = "0.10.0", features = ["dns-max-server-count-4"] } | ||
| 16 | 18 | ||
| 17 | async-io = "1.6.0" | 19 | async-io = "1.6.0" |
| 18 | env_logger = "0.9.0" | 20 | env_logger = "0.9.0" |
