diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-08-03 14:23:11 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-03 14:23:11 +0200 |
| commit | 4d60c715e683aaadf25d9f066bde805c725fefb4 (patch) | |
| tree | d3601429cef8850fba4a99df0e148da19fd96efc /examples/std/Cargo.toml | |
| parent | 2c96fe917de6e0120053e80d8da5a98d0d0f35d0 (diff) | |
net: move tuntap from std example to separate crate. (#1737)
Diffstat (limited to 'examples/std/Cargo.toml')
| -rw-r--r-- | examples/std/Cargo.toml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 42adede10..544176828 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml | |||
| @@ -9,7 +9,7 @@ embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["lo | |||
| 9 | embassy-executor = { version = "0.2.0", path = "../../embassy-executor", features = ["arch-std", "executor-thread", "log", "nightly", "integrated-timers"] } | 9 | embassy-executor = { version = "0.2.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", "unstable-traits", "proto-ipv6"] } | 11 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "nightly", "log", "medium-ethernet", "tcp", "udp", "dns", "dhcpv4", "unstable-traits", "proto-ipv6"] } |
| 12 | embassy-net-driver = { version = "0.1.0", path = "../../embassy-net-driver" } | 12 | embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" } |
| 13 | embedded-io = { version = "0.4.0", features = ["async", "std", "futures"] } | 13 | embedded-io = { version = "0.4.0", features = ["async", "std", "futures"] } |
| 14 | critical-section = { version = "1.1", features = ["std"] } | 14 | critical-section = { version = "1.1", features = ["std"] } |
| 15 | 15 | ||
| @@ -18,7 +18,6 @@ env_logger = "0.9.0" | |||
| 18 | futures = { version = "0.3.17" } | 18 | futures = { version = "0.3.17" } |
| 19 | log = "0.4.14" | 19 | log = "0.4.14" |
| 20 | nix = "0.26.2" | 20 | nix = "0.26.2" |
| 21 | libc = "0.2.101" | ||
| 22 | clap = { version = "3.0.0-beta.5", features = ["derive"] } | 21 | clap = { version = "3.0.0-beta.5", features = ["derive"] } |
| 23 | rand_core = { version = "0.6.3", features = ["std"] } | 22 | rand_core = { version = "0.6.3", features = ["std"] } |
| 24 | heapless = { version = "0.7.5", default-features = false } | 23 | heapless = { version = "0.7.5", default-features = false } |
