diff options
author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2022-08-30 19:25:36 +0200 |
---|---|---|
committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2022-08-30 19:43:32 +0200 |
commit | 464ae67108c74efe38326b6ac8fedd29857e9412 (patch) | |
tree | 773ad62cfef9dfd10b4802086dee18b6007edd54 /examples/std | |
parent | 92ed95780df854b136eaf0095b51badd34f7581b (diff) | |
download | embassy-464ae67108c74efe38326b6ac8fedd29857e9412.zip |
net: feature-gate nightly-only async traits to allow building on stable.
Diffstat (limited to 'examples/std')
-rw-r--r-- | examples/std/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index c7cec6b1..dbfd9d62 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml @@ -7,7 +7,7 @@ version = "0.1.0" embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["log"] } embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["log", "std", "nightly", "integrated-timers"] } embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["log", "std", "nightly"] } -embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "tcp", "udp", "dhcpv4", "pool-16"] } +embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "nightly", "log", "medium-ethernet", "tcp", "udp", "dhcpv4", "pool-16"] } embedded-io = { version = "0.3.0", features = ["async", "std", "futures"] } critical-section = { version = "1.1", features = ["std"] } |