You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2020. It is now read-only.
Hi,
It seems like the nightly rust have already built in await macro which conflict with this crate.
Is there any suggestion to resolve this problem before futures 0.3 was settled?
Thanks
error[E0659]: await is ambiguous
--> src/raft/client.rs:152:5
|
152 | #[async(boxed)]
| ^^^^^^^^^^^^^^^
|
note: await could refer to the name imported here
--> src/raft/client.rs:20:5
|
20 | use futures::prelude::*;
| ^^^^^^^^^^^^^^^^^^^
= note: await is also a builtin macro
= note: consider adding an explicit import of await to disambiguate
Hi,
It seems like the nightly rust have already built in
awaitmacro which conflict with this crate.Is there any suggestion to resolve this problem before futures 0.3 was settled?
Thanks