Make embassy-net nightly-only.

It's useless without async traits, so juggling the `nightly` feature
around is not worth the pain.
This commit is contained in:
Dario Nieuwenhuis
2022-05-19 05:54:15 +02:00
parent 0b2f43c391
commit e3b8e35498
7 changed files with 132 additions and 143 deletions

View File

@ -6,7 +6,7 @@ version = "0.1.0"
[dependencies]
embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", "time", "nightly"] }
embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["nightly", "std", "log", "medium-ethernet", "tcp", "dhcpv4", "pool-16"] }
embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "tcp", "dhcpv4", "pool-16"] }
embedded-io = { version = "0.3.0", features = ["async", "std", "futures"] }
async-io = "1.6.0"