0

我正在尝试rand::random在 Rust 中使用函数:

use rand::random;

fn main(){
  println!("{}",rand::random::<f64>());
}

它不起作用,rand默认情况下没有安装板条箱。所以我安装了它:

$ cargo install rand

但是,安装randcrate 后,程序还是没有运行,报错:

  |
8 | use rand::random;
  |     ^^^^ maybe a missing crate `rand`?

我希望使用rustc命令而不是cargo因为我需要指定不同的程序文件而不是main.rs

rustc -L rand myprog.rs

如何通过rustc命令使用 crates?

4

0 回答 0