Open JimLynchCodes opened 4 years ago
I had same issue: maybe https://github.com/hyperium/hyperium.github.io/pull/60 can help
If someone is stuck with "use of undeclared type or module futures_util
", replace line
use futures_util::TryStreamExt;
with
use futures::stream::TryStreamExt;
(Rust version - 1.46)
Hi, I straight up copied the echo example and am trying to run it.
I tried putting this in my Cargo.toml [dependencies]
But when in my IDE and when I try to run it I see these two errors: