在 lib.rs 我有这个:
extern crate tokio_core;
use tokio_core::channel::{channel, Sender, Receiver};
最终出现此错误:
error[E0432]: unresolved import `tokio_core::channel`
--> src/main.rs:2:17
|
2 | use tokio_core::channel::{channel, Sender, Receiver};
| ^^^^^^^ Could not find `channel` in `tokio_core`
查看tokio_core crate 的 lib.rs 文件,它导出channel
如下:
#[doc(hidden)]
pub mod channel;
对于我的生活,我无法弄清楚为什么这不起作用。我在 Rust 1.29 和 1.30.1 上都试过这个。