Rust 语言如果你在使用 tokio 出现 main
function is not allowed to be async
时,不要慌张,这是因为,你的 Cargo.toml
中的扩展语法是下面这样的
tokio = "1.13.0"
只要将它改成下面这样就可以了
tokio = { version = "1.13.0", features = ["full"] }
目前尚无回复
Rust 语言如果你在使用 tokio 出现 main
function is not allowed to be async
时,不要慌张,这是因为,你的 Cargo.toml
中的扩展语法是下面这样的
tokio = "1.13.0"
只要将它改成下面这样就可以了
tokio = { version = "1.13.0", features = ["full"] }
♥ 简单教程,简单编程 - IT 入门首选站
Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.