我正在尝试rand::random
在 Rust 中使用函数:
use rand::random;
fn main(){
println!("{}",rand::random::<f64>());
}
它不起作用,rand
默认情况下没有安装板条箱。所以我安装了它:
$ cargo install rand
但是,安装rand
crate 后,程序还是没有运行,报错:
|
8 | use rand::random;
| ^^^^ maybe a missing crate `rand`?
我希望使用rustc
命令而不是cargo
因为我需要指定不同的程序文件而不是main.rs
:
rustc -L rand myprog.rs
如何通过rustc
命令使用 crates?