I'm trying to use BigUints from the num crate in Rust, and I'm using this code to import them:
extern crate num;
use num::bigint::BigUint;
However, it returns the following error when I compile:
main.rs:1:1: 1:18 error: can't find crate for `num`
main.rs:1 extern crate num;
^~~~~~~~~~~~~~~~~
error: aborting due to previous error
I'm not using any compiler flags.
What am I doing wrong?